@ory/elements-react 1.0.0-next.33 → 1.0.0-next.36

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.
@@ -105,13 +105,6 @@ var ComponentContext = createContext({
105
105
  nodeSorter: () => 0,
106
106
  groupSorter: () => 0
107
107
  });
108
- function useComponents() {
109
- const ctx = useContext(ComponentContext);
110
- if (!ctx) {
111
- throw new Error("useComponents must be used within a ComponentProvider");
112
- }
113
- return ctx.components;
114
- }
115
108
  var defaultGroupOrder = [
116
109
  UiNodeGroupEnum.Default,
117
110
  UiNodeGroupEnum.Profile,
@@ -125,54 +118,6 @@ var defaultGroupOrder = [
125
118
  ];
126
119
 
127
120
  // src/util/ui/index.ts
128
- function triggerToWindowCall(trigger) {
129
- if (!trigger) {
130
- return;
131
- }
132
- const fn = triggerToFunction(trigger);
133
- if (fn) {
134
- fn();
135
- return;
136
- }
137
- let i = 0;
138
- const ms = 100;
139
- const interval = setInterval(() => {
140
- i++;
141
- if (i > 100) {
142
- clearInterval(interval);
143
- throw new Error(
144
- "Unable to load Ory's WebAuthn script. Is it being blocked or otherwise failing to load? If you are running an old version of Ory Elements, please upgrade. For more information, please check your browser's developer console."
145
- );
146
- }
147
- const fn2 = triggerToFunction(trigger);
148
- if (fn2) {
149
- clearInterval(interval);
150
- return fn2();
151
- }
152
- }, ms);
153
- return;
154
- }
155
- function triggerToFunction(trigger) {
156
- if (typeof window === "undefined") {
157
- console.debug(
158
- "The Ory SDK is missing a required function: window is undefined."
159
- );
160
- return void 0;
161
- }
162
- const typedWindow = window;
163
- if (!(trigger in typedWindow) || !typedWindow[trigger]) {
164
- console.debug(`The Ory SDK is missing a required function: ${trigger}.`);
165
- return void 0;
166
- }
167
- const triggerFn = typedWindow[trigger];
168
- if (typeof triggerFn !== "function") {
169
- console.debug(
170
- `The Ory SDK is missing a required function: ${trigger}. It is not a function.`
171
- );
172
- return void 0;
173
- }
174
- return triggerFn;
175
- }
176
121
  function nodesToAuthMethodGroups(nodes, excludeAuthMethods = []) {
177
122
  var _a;
178
123
  const groups = {};
@@ -352,7 +297,7 @@ function VerificationCardFooter() {
352
297
  }
353
298
 
354
299
  // src/theme/default/components/card/header.tsx
355
- import { useComponents as useComponents2, useOryFlow as useOryFlow3 } from "@ory/elements-react";
300
+ import { useComponents, useOryFlow as useOryFlow3 } from "@ory/elements-react";
356
301
 
357
302
  // src/theme/default/utils/constructCardHeader.ts
358
303
  import {
@@ -668,7 +613,7 @@ function guessRegistrationBackButton(uiNodes) {
668
613
  // src/theme/default/components/card/header.tsx
669
614
  import { jsx as jsx8, jsxs as jsxs6 } from "react/jsx-runtime";
670
615
  function InnerCardHeader({ title, text }) {
671
- const { Card } = useComponents2();
616
+ const { Card } = useComponents();
672
617
  return /* @__PURE__ */ jsxs6("header", { className: "flex flex-col gap-8 antialiased", children: [
673
618
  /* @__PURE__ */ jsx8(Card.Logo, {}),
674
619
  /* @__PURE__ */ jsxs6("div", { className: "flex flex-col gap-2", children: [
@@ -1660,7 +1605,7 @@ import {
1660
1605
  import {
1661
1606
  messageTestId as messageTestId3,
1662
1607
  uiTextToFormattedMessage as uiTextToFormattedMessage7,
1663
- useComponents as useComponents3,
1608
+ useComponents as useComponents2,
1664
1609
  useOryFlow as useOryFlow8
1665
1610
  } from "@ory/elements-react";
1666
1611
  import { useFormContext as useFormContext5 } from "react-hook-form";
@@ -1679,7 +1624,7 @@ function DefaultLabel({
1679
1624
  }) {
1680
1625
  const intl = useIntl10();
1681
1626
  const label = getNodeLabel4(node);
1682
- const { Message } = useComponents3();
1627
+ const { Message } = useComponents2();
1683
1628
  const { config, flowType, flow } = useOryFlow8();
1684
1629
  const { setValue, formState } = useFormContext5();
1685
1630
  const isPassword = attributes.type === "password";
@@ -1922,29 +1867,11 @@ function DefaultText({ node, attributes }) {
1922
1867
  }
1923
1868
 
1924
1869
  // src/theme/default/components/generic/page-header.tsx
1925
- import { useComponents as useComponents4 } from "@ory/elements-react";
1870
+ import { useComponents as useComponents3 } from "@ory/elements-react";
1926
1871
 
1927
1872
  // src/theme/default/components/ui/user-menu.tsx
1928
- import { DropdownMenuLabel as DropdownMenuLabel2 } from "@radix-ui/react-dropdown-menu";
1929
- import { useCallback, useEffect as useEffect3, useState as useState3 } from "react";
1930
1873
  import { useOryFlow as useOryFlow10 } from "@ory/elements-react";
1931
-
1932
- // src/util/client.ts
1933
- import {
1934
- Configuration,
1935
- FrontendApi
1936
- } from "@ory/client-fetch";
1937
- function frontendClient(sdkUrl, opts = {}) {
1938
- const config = new Configuration({
1939
- ...opts,
1940
- basePath: sdkUrl,
1941
- headers: {
1942
- Accept: "application/json",
1943
- ...opts.headers
1944
- }
1945
- });
1946
- return new FrontendApi(config);
1947
- }
1874
+ import { DropdownMenuLabel as DropdownMenuLabel2 } from "@radix-ui/react-dropdown-menu";
1948
1875
 
1949
1876
  // src/theme/default/assets/icons/logout.svg
1950
1877
  import * as React27 from "react";
@@ -1967,6 +1894,39 @@ var SvgSettings = (props) => {
1967
1894
  };
1968
1895
  var settings_default = SvgSettings;
1969
1896
 
1897
+ // src/theme/default/utils/logout.ts
1898
+ import { useCallback, useEffect as useEffect3, useState as useState3 } from "react";
1899
+
1900
+ // src/util/client.ts
1901
+ import {
1902
+ Configuration,
1903
+ FrontendApi
1904
+ } from "@ory/client-fetch";
1905
+ function frontendClient(sdkUrl, opts = {}) {
1906
+ const config = new Configuration({
1907
+ ...opts,
1908
+ basePath: sdkUrl,
1909
+ headers: {
1910
+ Accept: "application/json",
1911
+ ...opts.headers
1912
+ }
1913
+ });
1914
+ return new FrontendApi(config);
1915
+ }
1916
+
1917
+ // src/theme/default/utils/logout.ts
1918
+ function useClientLogout(config) {
1919
+ const [logoutFlow, setLogoutFlow] = useState3();
1920
+ const fetchLogoutFlow = useCallback(async () => {
1921
+ const flow = await frontendClient(config.sdk.url).createBrowserLogoutFlow();
1922
+ setLogoutFlow(flow);
1923
+ }, [config.sdk.url]);
1924
+ useEffect3(() => {
1925
+ void fetchLogoutFlow();
1926
+ }, [fetchLogoutFlow]);
1927
+ return logoutFlow;
1928
+ }
1929
+
1970
1930
  // src/theme/default/utils/user.ts
1971
1931
  function isTraitsIndexable(traits) {
1972
1932
  return typeof traits === "object" && traits !== null;
@@ -2106,14 +2066,7 @@ import { jsx as jsx56, jsxs as jsxs30 } from "react/jsx-runtime";
2106
2066
  var UserMenu = ({ session }) => {
2107
2067
  const { config } = useOryFlow10();
2108
2068
  const initials = getUserInitials(session);
2109
- const [logoutFlow, setLogoutFlow] = useState3();
2110
- const fetchLogoutFlow = useCallback(async () => {
2111
- const flow = await frontendClient(config.sdk.url).createBrowserLogoutFlow();
2112
- setLogoutFlow(flow);
2113
- }, [config.sdk.url]);
2114
- useEffect3(() => {
2115
- void fetchLogoutFlow();
2116
- }, [fetchLogoutFlow]);
2069
+ const logoutFlow = useClientLogout(config);
2117
2070
  return /* @__PURE__ */ jsxs30(DropdownMenu, { children: [
2118
2071
  /* @__PURE__ */ jsx56(DropdownMenuTrigger, { asChild: true, children: /* @__PURE__ */ jsx56(UserAvatar, { initials }) }),
2119
2072
  /* @__PURE__ */ jsxs30(DropdownMenuContent, { children: [
@@ -2140,7 +2093,7 @@ var UserMenu = ({ session }) => {
2140
2093
  import { useSession } from "@ory/elements-react/client";
2141
2094
  import { jsx as jsx57, jsxs as jsxs31 } from "react/jsx-runtime";
2142
2095
  var DefaultPageHeader = (_props) => {
2143
- const { Card } = useComponents4();
2096
+ const { Card } = useComponents3();
2144
2097
  const { session } = useSession();
2145
2098
  return /* @__PURE__ */ jsx57("div", { className: "mt-16 flex max-w-screen-sm w-full md:max-w-[712px] lg:max-w-[802px] xl:max-w-[896px] flex-col gap-3 px-4", children: /* @__PURE__ */ jsx57("div", { className: "flex flex-col gap-12", children: /* @__PURE__ */ jsxs31("div", { className: "flex max-h-10 flex-1 justify-between gap-2", children: [
2146
2099
  /* @__PURE__ */ jsx57("div", { className: "relative h-10 flex-1", children: /* @__PURE__ */ jsx57(Card.Logo, {}) }),
@@ -2238,7 +2191,7 @@ function UnlinkRow({ button }) {
2238
2191
  }
2239
2192
 
2240
2193
  // src/theme/default/components/settings/settings-passkey.tsx
2241
- import { useComponents as useComponents5 } from "@ory/elements-react";
2194
+ import { useComponents as useComponents4 } from "@ory/elements-react";
2242
2195
  import { useFormContext as useFormContext8 } from "react-hook-form";
2243
2196
  import { jsx as jsx60, jsxs as jsxs33 } from "react/jsx-runtime";
2244
2197
  function DefaultSettingsPasskey({
@@ -2248,7 +2201,7 @@ function DefaultSettingsPasskey({
2248
2201
  const {
2249
2202
  formState: { isSubmitting }
2250
2203
  } = useFormContext8();
2251
- const { Node: Node2 } = useComponents5();
2204
+ const { Node: Node2 } = useComponents4();
2252
2205
  const hasRemoveButtons = removeButtons.length > 0;
2253
2206
  return /* @__PURE__ */ jsxs33("div", { className: "flex flex-col gap-8", children: [
2254
2207
  /* @__PURE__ */ jsx60("div", { className: "flex max-w-[60%] items-end gap-3", children: triggerButton && /* @__PURE__ */ jsx60(
@@ -2429,7 +2382,7 @@ function DefaultSettingsRecoveryCodes({
2429
2382
  }
2430
2383
 
2431
2384
  // src/theme/default/components/settings/settings-totp.tsx
2432
- import { useComponents as useComponents6 } from "@ory/elements-react";
2385
+ import { useComponents as useComponents5 } from "@ory/elements-react";
2433
2386
 
2434
2387
  // src/theme/default/assets/icons/qrcode.svg
2435
2388
  import * as React33 from "react";
@@ -2450,7 +2403,7 @@ function DefaultSettingsTotp({
2450
2403
  totpUnlink,
2451
2404
  onUnlink
2452
2405
  }) {
2453
- const { Node: Node2, Card } = useComponents6();
2406
+ const { Node: Node2, Card } = useComponents5();
2454
2407
  const {
2455
2408
  formState: { isSubmitting }
2456
2409
  } = useFormContext10();
@@ -2539,7 +2492,7 @@ function DefaultSettingsTotp({
2539
2492
  }
2540
2493
 
2541
2494
  // src/theme/default/components/settings/settings-webauthn.tsx
2542
- import { useComponents as useComponents7 } from "@ory/elements-react";
2495
+ import { useComponents as useComponents6 } from "@ory/elements-react";
2543
2496
 
2544
2497
  // src/theme/default/assets/icons/key.svg
2545
2498
  import * as React34 from "react";
@@ -2561,7 +2514,7 @@ function DefaultSettingsWebauthn({
2561
2514
  const {
2562
2515
  formState: { isSubmitting }
2563
2516
  } = useFormContext11();
2564
- const { Node: Node2, Card } = useComponents7();
2517
+ const { Node: Node2, Card } = useComponents6();
2565
2518
  const hasRemoveButtons = removeButtons.length > 0;
2566
2519
  return /* @__PURE__ */ jsxs36("div", { className: "flex flex-col gap-8", children: [
2567
2520
  /* @__PURE__ */ jsxs36("div", { className: "flex md:max-w-96 sm:items-end gap-3 flex-col sm:flex-row", children: [
@@ -2654,77 +2607,177 @@ function DefaultAuthMethodListContainer({
2654
2607
  }
2655
2608
 
2656
2609
  // src/theme/default/components/form/captcha.tsx
2657
- import { isUiNodeInputAttributes as isUiNodeInputAttributes7 } from "@ory/client-fetch";
2610
+ import { isUiNodeInputAttributes as isUiNodeInputAttributes3 } from "@ory/client-fetch";
2658
2611
  import { Turnstile } from "@marsidev/react-turnstile";
2659
- import { useRef as useRef3 } from "react";
2660
- import { useFormContext as useFormContext23 } from "react-hook-form";
2612
+ import { useRef as useRef2 } from "react";
2613
+ import { useFormContext as useFormContext12 } from "react-hook-form";
2614
+ import { jsx as jsx69 } from "react/jsx-runtime";
2615
+ var DefaultCaptcha = ({ node }) => {
2616
+ const { setValue } = useFormContext12();
2617
+ const ref = useRef2();
2618
+ const nodes = [];
2619
+ if (isUiNodeInputAttributes3(node.attributes)) {
2620
+ if (node.attributes.name === "transient_payload.captcha_turnstile_response") {
2621
+ nodes.push(
2622
+ /* @__PURE__ */ jsx69(DefaultInput, { node, attributes: node.attributes }, 1)
2623
+ );
2624
+ }
2625
+ }
2626
+ if (isUiNodeInputAttributes3(node.attributes) && node.attributes.name === "captcha_turnstile_options") {
2627
+ const options = JSON.parse(node.attributes.value);
2628
+ nodes.push(
2629
+ /* @__PURE__ */ jsx69(
2630
+ Turnstile,
2631
+ {
2632
+ ref,
2633
+ siteKey: options.sitekey,
2634
+ options: {
2635
+ action: options.action,
2636
+ size: "flexible",
2637
+ theme: options.theme,
2638
+ responseField: false,
2639
+ responseFieldName: options.response_field_name
2640
+ },
2641
+ onExpire: () => {
2642
+ var _a;
2643
+ return (_a = ref.current) == null ? void 0 : _a.reset();
2644
+ },
2645
+ onSuccess: (token) => {
2646
+ setValue(options.response_field_name, token);
2647
+ }
2648
+ },
2649
+ 2
2650
+ )
2651
+ );
2652
+ }
2653
+ return nodes;
2654
+ };
2655
+
2656
+ // src/theme/default/components/default-components.tsx
2657
+ function getOryComponents(overrides) {
2658
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B, _C, _D, _E, _F, _G, _H, _I, _J, _K, _L, _M, _N, _O, _P, _Q, _R, _S, _T, _U, _V, _W, _X, _Y, _Z, __, _$, _aa, _ba, _ca, _da, _ea, _fa, _ga, _ha, _ia, _ja;
2659
+ return {
2660
+ Card: {
2661
+ Root: (_b = (_a = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _a.Root) != null ? _b : DefaultCard,
2662
+ Footer: (_d = (_c = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _c.Footer) != null ? _d : DefaultCardFooter,
2663
+ Header: (_f = (_e = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _e.Header) != null ? _f : DefaultCardHeader,
2664
+ Content: (_h = (_g = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _g.Content) != null ? _h : DefaultCardContent,
2665
+ Logo: (_j = (_i = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _i.Logo) != null ? _j : DefaultCardLogo,
2666
+ Divider: (_l = (_k = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _k.Divider) != null ? _l : DefaultHorizontalDivider,
2667
+ AuthMethodListContainer: (_n = (_m = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _m.AuthMethodListContainer) != null ? _n : DefaultAuthMethodListContainer,
2668
+ AuthMethodListItem: (_p = (_o = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _o.AuthMethodListItem) != null ? _p : DefaultAuthMethodListItem,
2669
+ SettingsSection: (_r = (_q = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _q.SettingsSection) != null ? _r : DefaultFormSection,
2670
+ SettingsSectionContent: (_t = (_s = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _s.SettingsSectionContent) != null ? _t : DefaultFormSectionContent,
2671
+ SettingsSectionFooter: (_v = (_u = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _u.SettingsSectionFooter) != null ? _v : DefaultFormSectionFooter
2672
+ },
2673
+ Node: {
2674
+ Button: (_x = (_w = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _w.Button) != null ? _x : DefaultButton,
2675
+ OidcButton: (_z = (_y = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _y.OidcButton) != null ? _z : DefaultButtonSocial,
2676
+ Input: (_B = (_A = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _A.Input) != null ? _B : DefaultInput,
2677
+ CodeInput: (_D = (_C = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _C.CodeInput) != null ? _D : DefaultPinCodeInput,
2678
+ Image: (_F = (_E = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _E.Image) != null ? _F : DefaultImage,
2679
+ Label: (_H = (_G = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _G.Label) != null ? _H : DefaultLabel,
2680
+ Checkbox: (_J = (_I = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _I.Checkbox) != null ? _J : DefaultCheckbox,
2681
+ Text: (_L = (_K = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _K.Text) != null ? _L : DefaultText,
2682
+ Anchor: (_N = (_M = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _M.Anchor) != null ? _N : DefaultLinkButton,
2683
+ Captcha: (_P = (_O = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _O.Captcha) != null ? _P : DefaultCaptcha
2684
+ },
2685
+ Form: {
2686
+ Root: (_R = (_Q = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _Q.Root) != null ? _R : DefaultFormContainer,
2687
+ Group: (_T = (_S = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _S.Group) != null ? _T : DefaultGroupContainer,
2688
+ OidcRoot: (_V = (_U = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _U.OidcRoot) != null ? _V : DefaultSocialButtonContainer,
2689
+ RecoveryCodesSettings: (_X = (_W = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _W.RecoveryCodesSettings) != null ? _X : DefaultSettingsRecoveryCodes,
2690
+ TotpSettings: (_Z = (_Y = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _Y.TotpSettings) != null ? _Z : DefaultSettingsTotp,
2691
+ OidcSettings: (_$ = (__ = overrides == null ? void 0 : overrides.Form) == null ? void 0 : __.OidcSettings) != null ? _$ : DefaultSettingsOidc,
2692
+ WebauthnSettings: (_ba = (_aa = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _aa.WebauthnSettings) != null ? _ba : DefaultSettingsWebauthn,
2693
+ PasskeySettings: (_da = (_ca = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _ca.PasskeySettings) != null ? _da : DefaultSettingsPasskey
2694
+ },
2695
+ Message: {
2696
+ Root: (_fa = (_ea = overrides == null ? void 0 : overrides.Message) == null ? void 0 : _ea.Root) != null ? _fa : DefaultMessageContainer,
2697
+ Content: (_ha = (_ga = overrides == null ? void 0 : overrides.Message) == null ? void 0 : _ga.Content) != null ? _ha : DefaultMessage
2698
+ },
2699
+ Page: {
2700
+ Header: (_ja = (_ia = overrides == null ? void 0 : overrides.Page) == null ? void 0 : _ia.Header) != null ? _ja : DefaultPageHeader
2701
+ }
2702
+ };
2703
+ }
2704
+
2705
+ // src/theme/default/flows/error.tsx
2706
+ import {
2707
+ instanceOfFlowError,
2708
+ instanceOfGenericError
2709
+ } from "@ory/client-fetch";
2710
+ import { useMemo as useMemo2 } from "react";
2711
+
2712
+ // src/context/intl-context.tsx
2713
+ import { IntlProvider as OriginalIntlProvider } from "react-intl";
2661
2714
 
2662
2715
  // src/context/flow-context.tsx
2663
2716
  import {
2664
2717
  createContext as createContext2,
2665
2718
  useContext as useContext3,
2666
- useState as useState4
2719
+ useState as useState5
2667
2720
  } from "react";
2668
2721
 
2669
2722
  // src/context/form-state.ts
2670
2723
  import { FlowType as FlowType9 } from "@ory/client-fetch";
2671
- import { useReducer } from "react";
2724
+ import { useReducer, useState as useState4 } from "react";
2672
2725
 
2673
2726
  // src/components/card/card-two-step.utils.ts
2674
2727
  import { FlowType as FlowType8, UiNodeGroupEnum as UiNodeGroupEnum3 } from "@ory/client-fetch";
2675
2728
 
2676
2729
  // src/context/flow-context.tsx
2677
- import { jsx as jsx69 } from "react/jsx-runtime";
2730
+ import { jsx as jsx70 } from "react/jsx-runtime";
2678
2731
  var OryFlowContext = createContext2(null);
2679
2732
 
2680
- // src/context/intl-context.tsx
2681
- import { IntlProvider as OriginalIntlProvider } from "react-intl";
2733
+ // src/context/provider.tsx
2734
+ import { jsx as jsx71 } from "react/jsx-runtime";
2682
2735
 
2683
2736
  // src/components/card/header.tsx
2684
- import { jsx as jsx70 } from "react/jsx-runtime";
2737
+ import { jsx as jsx72 } from "react/jsx-runtime";
2685
2738
 
2686
2739
  // src/components/form/form-provider.tsx
2687
2740
  import { UiNodeGroupEnum as UiNodeGroupEnum5 } from "@ory/client-fetch";
2688
2741
  import { FormProvider, useForm as useForm2 } from "react-hook-form";
2689
2742
 
2690
2743
  // src/components/form/form-helpers.ts
2691
- import { isUiNodeInputAttributes as isUiNodeInputAttributes3 } from "@ory/client-fetch";
2744
+ import { isUiNodeInputAttributes as isUiNodeInputAttributes4 } from "@ory/client-fetch";
2692
2745
 
2693
2746
  // src/components/form/form-resolver.ts
2694
- import { isUiNodeInputAttributes as isUiNodeInputAttributes4 } from "@ory/client-fetch";
2747
+ import { isUiNodeInputAttributes as isUiNodeInputAttributes5 } from "@ory/client-fetch";
2695
2748
 
2696
2749
  // src/components/form/form-provider.tsx
2697
- import { jsx as jsx71 } from "react/jsx-runtime";
2750
+ import { jsx as jsx73 } from "react/jsx-runtime";
2698
2751
 
2699
2752
  // src/components/card/card.tsx
2700
- import { jsx as jsx72 } from "react/jsx-runtime";
2753
+ import { jsx as jsx74 } from "react/jsx-runtime";
2701
2754
 
2702
2755
  // src/components/card/footer.tsx
2703
- import { jsx as jsx73 } from "react/jsx-runtime";
2756
+ import { jsx as jsx75 } from "react/jsx-runtime";
2704
2757
 
2705
2758
  // src/components/card/content.tsx
2706
- import { jsx as jsx74 } from "react/jsx-runtime";
2759
+ import { jsx as jsx76 } from "react/jsx-runtime";
2707
2760
 
2708
2761
  // src/components/card/card-two-step.tsx
2709
2762
  import { UiNodeGroupEnum as UiNodeGroupEnum7 } from "@ory/client-fetch";
2710
- import { useFormContext as useFormContext15 } from "react-hook-form";
2763
+ import { useFormContext as useFormContext17 } from "react-hook-form";
2711
2764
 
2712
2765
  // src/components/form/form.tsx
2713
2766
  import {
2714
2767
  FlowType as FlowType16,
2715
2768
  isUiNodeAnchorAttributes,
2716
2769
  isUiNodeImageAttributes,
2717
- isUiNodeInputAttributes as isUiNodeInputAttributes5,
2770
+ isUiNodeInputAttributes as isUiNodeInputAttributes6,
2718
2771
  isUiNodeScriptAttributes
2719
2772
  } from "@ory/client-fetch";
2720
- import { useFormContext as useFormContext13 } from "react-hook-form";
2773
+ import { useFormContext as useFormContext14 } from "react-hook-form";
2721
2774
  import { useIntl as useIntl13 } from "react-intl";
2722
2775
 
2723
2776
  // src/components/form/useOryFormSubmit.ts
2724
2777
  import {
2725
2778
  FlowType as FlowType15
2726
2779
  } from "@ory/client-fetch";
2727
- import { useFormContext as useFormContext12 } from "react-hook-form";
2780
+ import { useFormContext as useFormContext13 } from "react-hook-form";
2728
2781
 
2729
2782
  // src/util/onSubmitLogin.ts
2730
2783
  import {
@@ -2768,41 +2821,49 @@ import {
2768
2821
  } from "@ory/client-fetch";
2769
2822
 
2770
2823
  // src/components/form/form.tsx
2771
- import { Fragment as Fragment6, jsx as jsx75, jsxs as jsxs37 } from "react/jsx-runtime";
2824
+ import { Fragment as Fragment6, jsx as jsx77, jsxs as jsxs37 } from "react/jsx-runtime";
2772
2825
 
2773
2826
  // src/components/form/messages.tsx
2774
- import { jsx as jsx76 } from "react/jsx-runtime";
2827
+ import { jsx as jsx78 } from "react/jsx-runtime";
2828
+
2829
+ // src/components/form/nodes/input.tsx
2830
+ import {
2831
+ UiNodeInputAttributesTypeEnum
2832
+ } from "@ory/client-fetch";
2833
+ import { useEffect as useEffect5, useRef as useRef3 } from "react";
2834
+ import { useFormContext as useFormContext15 } from "react-hook-form";
2835
+ import { jsx as jsx79 } from "react/jsx-runtime";
2775
2836
 
2776
2837
  // src/components/form/nodes/node.tsx
2777
2838
  import {
2778
2839
  isUiNodeAnchorAttributes as isUiNodeAnchorAttributes2,
2779
2840
  isUiNodeImageAttributes as isUiNodeImageAttributes2,
2780
- isUiNodeInputAttributes as isUiNodeInputAttributes6,
2841
+ isUiNodeInputAttributes as isUiNodeInputAttributes7,
2781
2842
  isUiNodeScriptAttributes as isUiNodeScriptAttributes2,
2782
2843
  isUiNodeTextAttributes,
2783
2844
  UiNodeGroupEnum as UiNodeGroupEnum6
2784
2845
  } from "@ory/client-fetch";
2785
- import { jsx as jsx77 } from "react/jsx-runtime";
2846
+ import { jsx as jsx80 } from "react/jsx-runtime";
2786
2847
 
2787
2848
  // src/components/form/social.tsx
2788
- import { useFormContext as useFormContext14 } from "react-hook-form";
2789
- import { jsx as jsx78 } from "react/jsx-runtime";
2849
+ import { useFormContext as useFormContext16 } from "react-hook-form";
2850
+ import { jsx as jsx81 } from "react/jsx-runtime";
2790
2851
 
2791
2852
  // src/components/card/card-two-step.tsx
2792
- import { Fragment as Fragment7, jsx as jsx79, jsxs as jsxs38 } from "react/jsx-runtime";
2853
+ import { Fragment as Fragment7, jsx as jsx82, jsxs as jsxs38 } from "react/jsx-runtime";
2793
2854
 
2794
2855
  // src/components/form/groups.tsx
2795
- import { jsx as jsx80 } from "react/jsx-runtime";
2856
+ import { jsx as jsx83 } from "react/jsx-runtime";
2796
2857
 
2797
2858
  // src/components/form/section.tsx
2798
- import { useFormContext as useFormContext16 } from "react-hook-form";
2799
- import { jsx as jsx81 } from "react/jsx-runtime";
2859
+ import { useFormContext as useFormContext18 } from "react-hook-form";
2860
+ import { jsx as jsx84 } from "react/jsx-runtime";
2800
2861
 
2801
2862
  // src/components/generic/divider.tsx
2802
- import { jsx as jsx82 } from "react/jsx-runtime";
2863
+ import { jsx as jsx85 } from "react/jsx-runtime";
2803
2864
 
2804
2865
  // src/components/generic/page-header.tsx
2805
- import { jsx as jsx83 } from "react/jsx-runtime";
2866
+ import { jsx as jsx86 } from "react/jsx-runtime";
2806
2867
 
2807
2868
  // src/components/settings/settings-card.tsx
2808
2869
  import { UiNodeGroupEnum as UiNodeGroupEnum8 } from "@ory/client-fetch";
@@ -2810,231 +2871,2380 @@ import { useIntl as useIntl19 } from "react-intl";
2810
2871
 
2811
2872
  // src/components/settings/oidc-settings.tsx
2812
2873
  import { useIntl as useIntl14 } from "react-intl";
2813
- import { useFormContext as useFormContext17 } from "react-hook-form";
2814
- import { Fragment as Fragment8, jsx as jsx84, jsxs as jsxs39 } from "react/jsx-runtime";
2874
+ import { useFormContext as useFormContext19 } from "react-hook-form";
2875
+ import { Fragment as Fragment8, jsx as jsx87, jsxs as jsxs39 } from "react/jsx-runtime";
2815
2876
 
2816
2877
  // src/components/settings/passkey-settings.tsx
2817
- import { useFormContext as useFormContext18 } from "react-hook-form";
2878
+ import { useFormContext as useFormContext20 } from "react-hook-form";
2818
2879
  import { useIntl as useIntl15 } from "react-intl";
2819
- import { Fragment as Fragment9, jsx as jsx85, jsxs as jsxs40 } from "react/jsx-runtime";
2880
+ import { Fragment as Fragment9, jsx as jsx88, jsxs as jsxs40 } from "react/jsx-runtime";
2820
2881
 
2821
2882
  // src/components/settings/recovery-codes-settings.tsx
2822
2883
  import { useIntl as useIntl16 } from "react-intl";
2823
- import { useFormContext as useFormContext19 } from "react-hook-form";
2824
- import { Fragment as Fragment10, jsx as jsx86, jsxs as jsxs41 } from "react/jsx-runtime";
2884
+ import { useFormContext as useFormContext21 } from "react-hook-form";
2885
+ import { Fragment as Fragment10, jsx as jsx89, jsxs as jsxs41 } from "react/jsx-runtime";
2825
2886
 
2826
2887
  // src/components/settings/totp-settings.tsx
2827
- import { useFormContext as useFormContext20 } from "react-hook-form";
2888
+ import { useFormContext as useFormContext22 } from "react-hook-form";
2828
2889
  import { useIntl as useIntl17 } from "react-intl";
2829
- import { Fragment as Fragment11, jsx as jsx87, jsxs as jsxs42 } from "react/jsx-runtime";
2890
+ import { Fragment as Fragment11, jsx as jsx90, jsxs as jsxs42 } from "react/jsx-runtime";
2830
2891
 
2831
2892
  // src/components/settings/webauthn-settings.tsx
2832
- import { useFormContext as useFormContext21 } from "react-hook-form";
2893
+ import { useFormContext as useFormContext23 } from "react-hook-form";
2833
2894
  import { useIntl as useIntl18 } from "react-intl";
2834
- import { Fragment as Fragment12, jsx as jsx88, jsxs as jsxs43 } from "react/jsx-runtime";
2895
+ import { Fragment as Fragment12, jsx as jsx91, jsxs as jsxs43 } from "react/jsx-runtime";
2835
2896
 
2836
2897
  // src/components/settings/settings-card.tsx
2837
- import { Fragment as Fragment13, jsx as jsx89, jsxs as jsxs44 } from "react/jsx-runtime";
2898
+ import { Fragment as Fragment13, jsx as jsx92, jsxs as jsxs44 } from "react/jsx-runtime";
2899
+
2900
+ // src/locales/en.json
2901
+ var en_default = {
2902
+ "consent.action-accept": "Allow",
2903
+ "consent.action-reject": "Deny",
2904
+ "consent.description": "Only grant permissions if you trust this site or app. You do not need to accept all permissions.",
2905
+ "consent.privacy-policy-label": "Privacy Policy",
2906
+ "consent.remember-label": "Remember this decision for next time. The application will not be able to ask for additional permissions without your consent.",
2907
+ "consent.remember-tooltip": "remember my decision",
2908
+ "consent.requested-permissions-label": "The application requests access to the following permissions:",
2909
+ "consent.terms-of-service-label": "Terms of Service",
2910
+ "error.back-button": "Go Back",
2911
+ "error.description": "An error occurred with the following message:",
2912
+ "error.support-email-link": "If the problem persists, please contact <a>{contactSupportEmail}</a>",
2913
+ "error.title": "An error occurred",
2914
+ "error.title-internal-server-error": "Internal Server Error",
2915
+ "error.title-not-found": "404 - Page not found",
2916
+ "identities.messages.1010001": "Sign in",
2917
+ "identities.messages.1010002": "Sign in with {provider}",
2918
+ "identities.messages.1010003": "Please confirm this action by verifying that it is you.",
2919
+ "identities.messages.1010004": "Please complete the second authentication challenge.",
2920
+ "identities.messages.1010005": "Verify",
2921
+ "identities.messages.1010006": "Authentication code",
2922
+ "identities.messages.1010007": "Backup recovery code",
2923
+ "identities.messages.1010008": "Continue with hardware key",
2924
+ "identities.messages.1010009": "Continue",
2925
+ "identities.messages.1010010": "Continue",
2926
+ "identities.messages.1010011": "Sign in with hardware key",
2927
+ "identities.messages.1010012": "Prepare your WebAuthn device (e.g. security key, biometrics scanner, ...) and press continue.",
2928
+ "identities.messages.1010013": "Continue",
2929
+ "identities.messages.1010014": "A code has been sent to the address you provided. If you have not received an message, check the spelling of the address and retry the login.",
2930
+ "identities.messages.1010015": "Send sign in code",
2931
+ "identities.messages.1010016": 'You tried to sign in with "{duplicateIdentifier}", but that email is already used by another account. Sign in to your account with one of the options below to add your account "{duplicateIdentifier}" at "{provider}" as another way to sign in.',
2932
+ "identities.messages.1010017": "Sign in and link",
2933
+ "identities.messages.1010018": "Confirm with {provider}",
2934
+ "identities.messages.1010019": "Request code to continue",
2935
+ "identities.messages.1010021": "Sign in with passkey",
2936
+ "identities.messages.1010022": "Sign in with password",
2937
+ "identities.messages.1010023": "Send code to {address}",
2938
+ "identities.messages.1040001": "Sign up",
2939
+ "identities.messages.1040002": "Sign up with {provider}",
2940
+ "identities.messages.1040003": "Continue",
2941
+ "identities.messages.1040004": "Sign up with security key",
2942
+ "identities.messages.1040005": "A code has been sent to the address(es) you provided. If you have not received a message, check the spelling of the address and retry the registration.",
2943
+ "identities.messages.1040006": "Send sign up code",
2944
+ "identities.messages.1040007": "Sign up with passkey",
2945
+ "identities.messages.1040008": "Back",
2946
+ "identities.messages.1040009": "Please choose a credential to authenticate yourself with.",
2947
+ "identities.messages.1050001": "Your changes have been saved!",
2948
+ "identities.messages.1050002": "Link {provider}",
2949
+ "identities.messages.1050003": "Unlink {provider}",
2950
+ "identities.messages.1050004": "Unlink TOTP Authenticator App",
2951
+ "identities.messages.1050005": "Authenticator app QR code",
2952
+ "identities.messages.1050006": "{secret}",
2953
+ "identities.messages.1050007": "Reveal backup recovery codes",
2954
+ "identities.messages.1050008": "Enable",
2955
+ "identities.messages.1050009": "{secret}",
2956
+ "identities.messages.1050010": "These are your back up recovery codes. Please keep them in a safe place!",
2957
+ "identities.messages.1050011": "Confirm backup recovery codes",
2958
+ "identities.messages.1050012": "Add security key",
2959
+ "identities.messages.1050013": "Name of the security key",
2960
+ "identities.messages.1050014": "Secret was used at {used_at, date, long}",
2961
+ "identities.messages.1050015": "{secrets_list}",
2962
+ "identities.messages.1050016": "Disable this method",
2963
+ "identities.messages.1050017": "Authenticator Secret",
2964
+ "identities.messages.1050018": 'Remove security key "{display_name}"',
2965
+ "identities.messages.1050019": "Add passkey",
2966
+ "identities.messages.1050020": 'Remove passkey "{display_name}"',
2967
+ "identities.messages.1060001": "You successfully recovered your account. Please change your password or set up an alternative login method (e.g. social sign in) within the next {privileged_session_expires_at_unix_until_minutes} minutes.",
2968
+ "identities.messages.1060002": "An email containing a recovery link has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
2969
+ "identities.messages.1060003": "An email containing a recovery code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
2970
+ "identities.messages.1070001": "Password",
2971
+ "identities.messages.1070002": "{title}",
2972
+ "identities.messages.1070003": "Save",
2973
+ "identities.messages.1070004": "ID",
2974
+ "identities.messages.1070005": "Submit",
2975
+ "identities.messages.1070006": "Verify code",
2976
+ "identities.messages.1070007": "Email",
2977
+ "identities.messages.1070008": "Resend code",
2978
+ "identities.messages.1070009": "Continue",
2979
+ "identities.messages.1070010": "Recovery code",
2980
+ "identities.messages.1070011": "Verification code",
2981
+ "identities.messages.1070012": "Registration code",
2982
+ "identities.messages.1070013": "Login code",
2983
+ "identities.messages.1070014": "Login and link credential",
2984
+ "identities.messages.1070015": "Please complete the captcha challenge to continue.",
2985
+ "identities.messages.1080001": "An email containing a verification link has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
2986
+ "identities.messages.1080002": "You successfully verified your email address.",
2987
+ "identities.messages.1080003": "An email containing a verification code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
2988
+ "identities.messages.4000001": "{reason}",
2989
+ "identities.messages.4000002": "Please enter the {property} and try again.",
2990
+ "identities.messages.4000003": "length must be >= {min_length}, but got {actual_length}",
2991
+ "identities.messages.4000004": 'does not match pattern "{pattern}"',
2992
+ "identities.messages.4000005": "The password can not be used because {reason}.",
2993
+ "identities.messages.4000006": "The provided credentials are invalid, check for spelling mistakes in your password or username, email address, or phone number.",
2994
+ "identities.messages.4000007": "An account with the same identifier (email, phone, username, ...) exists already.",
2995
+ "identities.messages.4000008": "The provided authentication code is invalid, please try again.",
2996
+ "identities.messages.4000009": "Could not find any login identifiers. Did you forget to set them? This could also be caused by a server misconfiguration.",
2997
+ "identities.messages.4000010": "Account not active yet. Did you forget to verify your email address?",
2998
+ "identities.messages.4000011": "You have no TOTP device set up.",
2999
+ "identities.messages.4000012": "This backup recovery code has already been used.",
3000
+ "identities.messages.4000013": "You have no WebAuthn device set up.",
3001
+ "identities.messages.4000014": "You have no backup recovery codes set up.",
3002
+ "identities.messages.4000015": "This account does not exist or has no security key set up.",
3003
+ "identities.messages.4000016": "The backup recovery code is not valid.",
3004
+ "identities.messages.4000017": "length must be <= {max_length}, but got {actual_length}",
3005
+ "identities.messages.4000018": "must be >= {minimum} but found {actual}",
3006
+ "identities.messages.4000019": "must be > {minimum} but found {actual}",
3007
+ "identities.messages.4000020": "must be <= {maximum} but found {actual}",
3008
+ "identities.messages.4000021": "must be < {maximum} but found {actual}",
3009
+ "identities.messages.4000022": "{actual} not multipleOf {base}",
3010
+ "identities.messages.4000023": "maximum {max_items} items allowed, but found {actual_items} items",
3011
+ "identities.messages.4000024": "minimum {min_items} items allowed, but found {actual_items} items",
3012
+ "identities.messages.4000025": "items at index {index_a} and {index_b} are equal",
3013
+ "identities.messages.4000026": "expected {allowed_types_list}, but got {actual_type}",
3014
+ "identities.messages.4000027": "An account with the same identifier (email, phone, username, ...) exists already. Please sign in to your existing account to link your social profile.",
3015
+ "identities.messages.4000028": "You tried signing in with {credential_identifier_hint} which is already in use by another account. You can sign in using {available_credential_types_list}. You can sign in using one of the following social sign in providers: {Available_oidc_providers_list}.",
3016
+ "identities.messages.4000029": "must be equal to constant {expected}",
3017
+ "identities.messages.4000030": "const failed",
3018
+ "identities.messages.4000031": "The password can not be used because it is too similar to the identifier.",
3019
+ "identities.messages.4000032": "The password must be at least {min_length} characters long, but got {actual_length}.",
3020
+ "identities.messages.4000033": "The password must be at most {max_length} characters long, but got {actual_length}.",
3021
+ "identities.messages.4000034": "The password has been found in data breaches and must no longer be used.",
3022
+ "identities.messages.4000035": "This account does not exist or has not setup sign in with code.",
3023
+ "identities.messages.4000036": "The provided traits do not match the traits previously associated with this flow.",
3024
+ "identities.messages.4000037": "This account does not exist or has no login method configured.",
3025
+ "identities.messages.4000038": "Captcha verification failed, please try again.",
3026
+ "identities.messages.4010001": "The login flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
3027
+ "identities.messages.4010002": "Could not find a strategy to log you in with. Did you fill out the form correctly?",
3028
+ "identities.messages.4010003": "Could not find a strategy to sign you up with. Did you fill out the form correctly?",
3029
+ "identities.messages.4010004": "Could not find a strategy to update your settings. Did you fill out the form correctly?",
3030
+ "identities.messages.4010005": "Could not find a strategy to recover your account with. Did you fill out the form correctly?",
3031
+ "identities.messages.4010006": "Could not find a strategy to verify your account with. Did you fill out the form correctly?",
3032
+ "identities.messages.4010007": "The request was already completed successfully and can not be retried.",
3033
+ "identities.messages.4010008": "The login code is invalid or has already been used. Please try again.",
3034
+ "identities.messages.4010009": "Linked credentials do not match.",
3035
+ "identities.messages.4010010": "The address you entered does not match any known addresses in the current account.",
3036
+ "identities.messages.4040001": "The registration flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
3037
+ "identities.messages.4040002": "The request was already completed successfully and can not be retried.",
3038
+ "identities.messages.4040003": "The registration code is invalid or has already been used. Please try again.",
3039
+ "identities.messages.4050001": "The settings flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
3040
+ "identities.messages.4060001": "The request was already completed successfully and can not be retried.",
3041
+ "identities.messages.4060002": "The recovery flow reached a failure state and must be retried.",
3042
+ "identities.messages.4060004": "The recovery token is invalid or has already been used. Please retry the flow.",
3043
+ "identities.messages.4060005": "The recovery flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
3044
+ "identities.messages.4060006": "The recovery code is invalid or has already been used. Please try again.",
3045
+ "identities.messages.4070001": "The verification token is invalid or has already been used. Please retry the flow.",
3046
+ "identities.messages.4070002": "The request was already completed successfully and can not be retried.",
3047
+ "identities.messages.4070003": "The verification flow reached a failure state and must be retried.",
3048
+ "identities.messages.4070005": "The verification flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
3049
+ "identities.messages.4070006": "The verification code is invalid or has already been used. Please try again.",
3050
+ "identities.messages.5000001": "{reason}",
3051
+ "login.cancel-button": "Cancel",
3052
+ "login.cancel-label": "Not the right account?",
3053
+ "login.forgot-password": "Forgot password?",
3054
+ "login.logged-in-as-label": "You are using:",
3055
+ "login.logout-button": "Logout",
3056
+ "login.logout-label": "Something's not working?",
3057
+ "login.registration-button": "Sign up",
3058
+ "login.registration-label": "Don't have an account?",
3059
+ "login.subtitle-oauth2": "To authenticate {clientName}",
3060
+ "login.title": "Sign in",
3061
+ "login.subtitle": "Sign in with {parts}",
3062
+ "login.title-aal2": "Second factor authentication",
3063
+ "login.subtitle-aal2": "Choose a way to complete your second factor authentication",
3064
+ "login.code.subtitle": "A verification code will be sent by email",
3065
+ "login.webauthn.subtitle": "Please prepare your WebAuthN device",
3066
+ "login.totp.subtitle": "Please enter the code generated by your Authenticator App",
3067
+ "login.lookup_secret.subtitle": "Please enter one of your 8-digit backup recovery codes",
3068
+ "login.title-refresh": "Reauthenticate",
3069
+ "login.subtitle-refresh": "Confirm your identity with {parts}",
3070
+ "login.2fa.go-back": "Something isn't working?",
3071
+ "login.2fa.go-back.link": "Go back",
3072
+ "login.2fa.method.go-back": "Choose another method",
3073
+ "logout.accept-button": "Yes",
3074
+ "logout.reject-button": "No",
3075
+ "logout.title": "Do you wish to log out?",
3076
+ "recovery.login-button": "Sign in",
3077
+ "recovery.login-label": "Remember your credentials?",
3078
+ "recovery.title": "Recover your account",
3079
+ "recovery.subtitle": "Enter the email address associated with your account to receive a one-time access code",
3080
+ "registration.login-button": "Sign in",
3081
+ "registration.login-label": "Already have an account?",
3082
+ "registration.subtitle-oauth2": "To authenticate {clientName}",
3083
+ "registration.title": "Register an account",
3084
+ "registration.subtitle": "Sign up with {parts}",
3085
+ "settings.navigation-back-button": "Back",
3086
+ "settings.navigation-backup-codes": "2FA Backup Codes",
3087
+ "settings.navigation-logout": "Logout",
3088
+ "settings.navigation-oidc": "Social Sign In",
3089
+ "settings.navigation-password": "Password",
3090
+ "settings.navigation-profile": "Profile",
3091
+ "settings.navigation-totp": "Authenticator App",
3092
+ "settings.navigation-webauthn": "Hardware Tokens",
3093
+ "settings.navigation-passkey": "Passkeys",
3094
+ "settings.subtitle-instructions": "Here you can manage settings related to your account. Keep in mind that certain actions require you to re-authenticate.",
3095
+ "settings.subtitle": "Update your account settings",
3096
+ "settings.title-lookup-secret": "Manage 2FA Backup Recovery Codes",
3097
+ "settings.title-navigation": "Account Settings",
3098
+ "settings.title-oidc": "Social Sign In",
3099
+ "settings.title-password": "Change Password",
3100
+ "settings.title-profile": "Profile Settings",
3101
+ "settings.title-totp": "Manage 2FA TOTP Authenticator App",
3102
+ "settings.title-webauthn": "Manage Hardware Tokens",
3103
+ "settings.title-passkey": "Manage Passkeys",
3104
+ "settings.title": "Account Settings",
3105
+ "settings.navigation.title": "Account Settings",
3106
+ "settings.password.title": "Change Password",
3107
+ "settings.password.description": "Modify your password",
3108
+ "settings.profile.title": "Profile Settings",
3109
+ "settings.profile.description": "Update your profile information",
3110
+ "settings.webauthn.title": "Manage Hardware Tokens",
3111
+ "settings.webauthn.description": "Manage your hardware token settings",
3112
+ "verification.registration-button": "Sign up",
3113
+ "verification.registration-label": "Don't have an account?",
3114
+ "verification.title": "Verify your account",
3115
+ "verification.subtitle": "Enter the email address associated with your account to verify it",
3116
+ "verification.back-button": "Back",
3117
+ "two-step.password.title": "Password",
3118
+ "two-step.password.description": "Enter your password associated with your account",
3119
+ "two-step.code.title": "Email code",
3120
+ "two-step.code.description": "A verification code will be sent to your email",
3121
+ "two-step.webauthn.title": "Security key",
3122
+ "two-step.webauthn.description": "Use your security key to authenticate",
3123
+ "two-step.passkey.title": "Passkey (recommended)",
3124
+ "two-step.passkey.description": "Use your device's for fingerprint or face recognition",
3125
+ "two-step.totp.title": "Use your Authenticator App (TOTP)",
3126
+ "two-step.totp.description": "Use a 6-digit one-time code from your authenticator app",
3127
+ "two-step.lookup_secret.title": "Backup recovery code",
3128
+ "two-step.lookup_secret.description": "Use up one of your 8-digit backup codes to authenticate",
3129
+ "identities.messages.1010020": "",
3130
+ "input.placeholder": "Enter your {placeholder}",
3131
+ "card.header.parts.oidc": "a social provider",
3132
+ "card.header.parts.password.registration": "your {identifierLabel} and a password",
3133
+ "card.header.parts.password.login": "your {identifierLabel} and password",
3134
+ "card.header.parts.code": "a code sent to your email",
3135
+ "card.header.parts.passkey": "a Passkey",
3136
+ "card.header.parts.webauthn": "a security key",
3137
+ "card.header.parts.identifier-first": "your {identifierLabel}",
3138
+ "card.header.description.login": "Sign in with {identifierLabel}",
3139
+ "card.header.description.registration": "Sign up with {identifierLabel}",
3140
+ "misc.or": "or",
3141
+ "forms.label.forgot-password": "Forgot Password?",
3142
+ "settings.totp.title": "Authenticator App",
3143
+ "settings.totp.description": "Add a TOTP Authenticator App to your account to improve your account security. Popular Authenticator Apps are LastPass and Google Authenticator",
3144
+ "settings.totp.info.not-linked": "To enable scan the QR code with your authenticator and enter the code.",
3145
+ "settings.totp.info.linked": "You currently have an authenticator app connected.",
3146
+ "settings.lookup_secret.title": "Backup Recovery Codes (second factor)",
3147
+ "settings.lookup_secret.description": "Recovery codes are a secure backup for 2FA, allowing you to regain access to your account if you lose your 2FA device.",
3148
+ "settings.oidc.title": "Connected accounts",
3149
+ "settings.oidc.description": "Connect a social login provider with your account.",
3150
+ "settings.oidc.info": "Connected accounts from these providers can be used to login to your account",
3151
+ "settings.webauthn.info": "Hardware Tokens are used for second-factor authentication or as first-factor with Passkeys",
3152
+ "settings.passkey.title": "Manage Passkeys",
3153
+ "settings.passkey.description": "Manage your passkey settings",
3154
+ "settings.passkey.info": "Manage your passkey settings",
3155
+ "card.footer.select-another-method": "Select another method",
3156
+ "account-linking.title": "Link account",
3157
+ "property.password": "password",
3158
+ "property.email": "email",
3159
+ "property.phone": "phone",
3160
+ "property.username": "username",
3161
+ "property.identifier": "identifier",
3162
+ "property.code": "code",
3163
+ "error.title.what-happened": "What happened?",
3164
+ "error.title.what-can-i-do": "What can I do?",
3165
+ "error.instructions": "Please try again in a few minutes or contact the website operator.",
3166
+ "error.footer.text": "When reporting this error, please include the following information:",
3167
+ "error.footer.copy": "Copy",
3168
+ "error.action.go-back": "Go back"
3169
+ };
2838
3170
 
2839
- // src/context/intl-context.tsx
2840
- import { jsx as jsx90 } from "react/jsx-runtime";
3171
+ // src/locales/de.json
3172
+ var de_default = {
3173
+ "consent.action-accept": "Zustimmen",
3174
+ "consent.action-reject": "Ablehnen",
3175
+ "consent.description": "Geben Sie nur Berechtigungen frei, wenn Sie dieser Website oder App vertrauen. Sie m\xFCssen nicht alle Berechtigungen akzeptieren.",
3176
+ "consent.privacy-policy-label": "Datenschutzrichtlinie",
3177
+ "consent.remember-label": "Diese Entscheidung f\xFCr das n\xE4chste Mal merken. Die Anwendung wird keine zus\xE4tzlichen Berechtigungen ohne Ihre Zustimmung anfordern k\xF6nnen.",
3178
+ "consent.remember-tooltip": "meine Entscheidung merken",
3179
+ "consent.requested-permissions-label": "Die Anwendung ben\xF6tigt Zugriff auf folgende Berechtigungen:",
3180
+ "consent.terms-of-service-label": "Nutzungsbedingungen",
3181
+ "error.back-button": "Zur\xFCck",
3182
+ "error.description": "Es ist ein Fehler aufgetreten mit folgender Nachricht:",
3183
+ "error.support-email-link": "Wenn das Problem bestehen bleibt, kontaktieren Sie bitte <a>{contactSupportEmail}</a>",
3184
+ "error.title": "Ein Fehler ist aufgetreten",
3185
+ "error.title-internal-server-error": "Interner Serverfehler",
3186
+ "error.title-not-found": "404 - Seite nicht gefunden",
3187
+ "identities.messages.1010001": "Anmelden",
3188
+ "identities.messages.1010002": "Mit {provider} anmelden",
3189
+ "identities.messages.1010003": "Bitte best\xE4tigen Sie diese Aktion, indem Sie \xFCberpr\xFCfen, dass Sie es sind.",
3190
+ "identities.messages.1010004": "Bitte schlie\xDFen Sie die zweite Authentifizierungspr\xFCfung ab.",
3191
+ "identities.messages.1010005": "Verifizieren",
3192
+ "identities.messages.1010006": "Authentifizierungscode",
3193
+ "identities.messages.1010007": "Backup-Wiederherstellungscode",
3194
+ "identities.messages.1010008": "Mit Sicherheitsschl\xFCssel fortfahren",
3195
+ "identities.messages.1010009": "Weiter",
3196
+ "identities.messages.1010010": "Weiter",
3197
+ "identities.messages.1010011": "Mit Sicherheitsschl\xFCssel fortfahren",
3198
+ "identities.messages.1010012": "Bereiten Sie Ihr WebAuthn-Ger\xE4t vor (z. B. Sicherheitsschl\xFCssel, biometrischer Scanner, ...) und dr\xFCcken Sie auf Weiter.",
3199
+ "identities.messages.1010013": "Weiter",
3200
+ "identities.messages.1010014": "Eine E-Mail mit einem Code wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, \xFCberpr\xFCfen Sie bitte die Schreibweise der Adresse und versuchen Sie erneut, sich anzumelden.",
3201
+ "identities.messages.1010015": "Mit Code anmelden",
3202
+ "identities.messages.1040001": "Registrieren",
3203
+ "identities.messages.1040002": "Mit {provider} registrieren",
3204
+ "identities.messages.1040003": "Fortfahren",
3205
+ "identities.messages.1040004": "Mit Sicherheitsschl\xFCssel registrieren",
3206
+ "identities.messages.1040005": "Eine E-Mail mit einem Code wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, \xFCberpr\xFCfen Sie bitte die Schreibweise der Adresse und versuchen Sie erneut, sich zu registrieren.",
3207
+ "identities.messages.1040006": "Mit Code registrieren",
3208
+ "identities.messages.1050001": "Ihre \xC4nderungen wurden gespeichert!",
3209
+ "identities.messages.1050002": "{provider} verkn\xFCpfen",
3210
+ "identities.messages.1050003": "{provider} entkn\xFCpfen",
3211
+ "identities.messages.1050004": "Authentifizierungs-App entkn\xFCpfen",
3212
+ "identities.messages.1050005": "Authentifizierungs-App QR-Code",
3213
+ "identities.messages.1050006": "{secret}",
3214
+ "identities.messages.1050007": "Backup-Wiederherstellungscode anzeigen",
3215
+ "identities.messages.1050008": "Neue Backup-Wiederherstellungscode generieren",
3216
+ "identities.messages.1050009": "{secret}",
3217
+ "identities.messages.1050010": "Dies sind Ihre Backup-Wiederherstellungscode. Bewahren Sie sie an einem sicheren Ort auf!",
3218
+ "identities.messages.1050011": "Backup-Wiederherstellungscode best\xE4tigen",
3219
+ "identities.messages.1050012": "Sicherheitsschl\xFCssel hinzuf\xFCgen",
3220
+ "identities.messages.1050013": "Name des Sicherheitsschl\xFCssels",
3221
+ "identities.messages.1050014": "<del>Verwendet</del>",
3222
+ "identities.messages.1050015": "{secrets_list}",
3223
+ "identities.messages.1050016": "Diese Methode deaktivieren",
3224
+ "identities.messages.1050017": "Dies ist Ihr Authentifizierungs-App-Geheimnis. Verwenden Sie es, wenn Sie den QR-Code nicht scannen k\xF6nnen.",
3225
+ "identities.messages.1050018": 'Sicherheitsschl\xFCssel "{display_name}" entfernen',
3226
+ "identities.messages.1060001": "Sie haben Ihr Konto erfolgreich wiederhergestellt. Bitte \xE4ndern Sie Ihr Passwort oder richten Sie eine alternative Anmeldemethode ein (z. B. Anmeldung \xFCber soziale Medien) innerhalb der n\xE4chsten {privileged_session_expires_at_unix_until_minutes} Minuten ein.",
3227
+ "identities.messages.1060002": "Eine E-Mail mit einem Wiederherstellungslink wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, \xFCberpr\xFCfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
3228
+ "identities.messages.1060003": "Eine E-Mail mit einem Wiederherstellungscode wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, \xFCberpr\xFCfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
3229
+ "identities.messages.1070001": "Passwort",
3230
+ "identities.messages.1070002": "{title}",
3231
+ "identities.messages.1070003": "Speichern",
3232
+ "identities.messages.1070004": "ID",
3233
+ "identities.messages.1070005": "Absenden",
3234
+ "identities.messages.1070006": "Verifizierungscode",
3235
+ "identities.messages.1070007": "E-Mail",
3236
+ "identities.messages.1070008": "Code erneut senden",
3237
+ "identities.messages.1070009": "Weiter",
3238
+ "identities.messages.1070010": "Wiederherstellungscode",
3239
+ "identities.messages.1070011": "Verifikationscode",
3240
+ "identities.messages.1070012": "Registrierungscode",
3241
+ "identities.messages.1070013": "Anmeldecode",
3242
+ "identities.messages.1080001": "Eine E-Mail mit einem Best\xE4tigungslink wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, \xFCberpr\xFCfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
3243
+ "identities.messages.1080002": "Sie haben Ihre E-Mail-Adresse erfolgreich best\xE4tigt.",
3244
+ "identities.messages.1080003": "Eine E-Mail mit einem Best\xE4tigungscode wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, \xFCberpr\xFCfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
3245
+ "identities.messages.4000001": "{reason}",
3246
+ "identities.messages.4000002": "Das Feld {property} muss ausgef\xFCllt werden.",
3247
+ "identities.messages.4000003": "Die L\xE4nge muss >= {min_length} sein, wurde jedoch {actual_length} erhalten.",
3248
+ "identities.messages.4000004": 'entspricht nicht dem Muster "{pattern}"',
3249
+ "identities.messages.4000005": "Das Passwort kann nicht verwendet werden, weil {reason}.",
3250
+ "identities.messages.4000006": "Die bereitgestellten Anmeldedaten sind ung\xFCltig. \xDCberpr\xFCfen Sie auf Rechtschreibfehler in Ihrem Passwort, Benutzernamen, E-Mail-Adresse oder Telefonnummer.",
3251
+ "identities.messages.4000007": "Ein Konto mit demselben Identifikator (E-Mail, Telefon, Benutzername, ...) existiert bereits.",
3252
+ "identities.messages.4000008": "Der bereitgestellte Authentifizierungscode ist ung\xFCltig. Bitte versuchen Sie es erneut.",
3253
+ "identities.messages.4000009": "Es konnten keine Anmeldeidentifikatoren gefunden werden. Haben Sie vergessen, diese festzulegen? Dies k\xF6nnte auch durch eine Serverfehlkonfiguration verursacht werden.",
3254
+ "identities.messages.4000010": "Konto ist noch nicht aktiv. Haben Sie vergessen, Ihre E-Mail-Adresse zu best\xE4tigen?",
3255
+ "identities.messages.4000011": "Sie haben kein TOTP-Ger\xE4t eingerichtet.",
3256
+ "identities.messages.4000012": "Dieser Backup-Wiederherstellungscode wurde bereits verwendet.",
3257
+ "identities.messages.4000013": "Sie haben kein WebAuthn-Ger\xE4t eingerichtet.",
3258
+ "identities.messages.4000014": "Sie haben keine Backup-Wiederherstellungscode eingerichtet.",
3259
+ "identities.messages.4000015": "Dieses Konto existiert nicht oder hat keinen Sicherheitsschl\xFCssel eingerichtet.",
3260
+ "identities.messages.4000016": "Der Backup-Wiederherstellungscode ist ung\xFCltig.",
3261
+ "identities.messages.4000017": "Die L\xE4nge muss <= {max_length} sein, wurde jedoch {actual_length} erhalten.",
3262
+ "identities.messages.4000018": "muss >= {minimum} sein, wurde jedoch {actual} gefunden.",
3263
+ "identities.messages.4000019": "muss > {minimum} sein, wurde jedoch {actual} gefunden.",
3264
+ "identities.messages.4000020": "muss <= {maximum} sein, wurde jedoch {actual} gefunden.",
3265
+ "identities.messages.4000021": "muss < {maximum} sein, wurde jedoch {actual} gefunden.",
3266
+ "identities.messages.4000022": "{actual} ist nicht ein Vielfaches von {base}",
3267
+ "identities.messages.4000023": "maximal {max_items} Elemente erlaubt, wurden jedoch {actual_items} Elemente gefunden.",
3268
+ "identities.messages.4000024": "mindestens {min_items} Elemente erforderlich, wurden jedoch {actual_items} Elemente gefunden.",
3269
+ "identities.messages.4000025": "Elemente an Index {index_a} und {index_b} sind gleich.",
3270
+ "identities.messages.4000026": "erwartete {allowed_types_list}, wurden jedoch {actual_type} gefunden.",
3271
+ "identities.messages.4000027": "Ein Konto mit demselben Identifikator (E-Mail, Telefon, Benutzername, ...) existiert bereits. Bitte melden Sie sich in Ihrem bestehenden Konto an und verkn\xFCpfen Sie Ihr soziales Profil auf der Einstellungsseite.",
3272
+ "identities.messages.4000028": "Sie haben versucht, sich mit {credential_identifier_hint} anzumelden, das bereits von einem anderen Konto verwendet wird. Sie k\xF6nnen sich mit {available_credential_types_list} anmelden. Sie k\xF6nnen sich mit einem der folgenden sozialen Anmeldeanbieter anmelden: {Available_oidc_providers_list}.",
3273
+ "identities.messages.4000029": "muss gleich der Konstanten {expected} sein.",
3274
+ "identities.messages.4000030": "const fehlgeschlagen",
3275
+ "identities.messages.4000031": "Das Passwort kann nicht verwendet werden, da es zu \xE4hnlich dem Identifikator ist.",
3276
+ "identities.messages.4000032": "Das Passwort muss mindestens {min_length} Zeichen lang sein, wurde jedoch {actual_length} erhalten.",
3277
+ "identities.messages.4000033": "Das Passwort muss h\xF6chstens {max_length} Zeichen lang sein, wurde jedoch {actual_length} erhalten.",
3278
+ "identities.messages.4000034": "Das Passwort wurde in Datenlecks gefunden und darf nicht mehr verwendet werden.",
3279
+ "identities.messages.4000035": "Dieses Konto existiert nicht oder hat keine Anmeldung per Code eingerichtet.",
3280
+ "identities.messages.4000036": "Die bereitgestellten Merkmale stimmen nicht mit den zuvor mit diesem Flow assoziierten Merkmalen \xFCberein.",
3281
+ "identities.messages.4010001": "Der Anmeldevorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
3282
+ "identities.messages.4010002": "Es konnte keine Strategie gefunden werden, um Sie anzumelden. Haben Sie das Formular korrekt ausgef\xFCllt?",
3283
+ "identities.messages.4010003": "Es konnte keine Strategie gefunden werden, um Sie zu registrieren. Haben Sie das Formular korrekt ausgef\xFCllt?",
3284
+ "identities.messages.4010004": "Es konnte keine Strategie gefunden werden, um Ihre Einstellungen zu aktualisieren. Haben Sie das Formular korrekt ausgef\xFCllt?",
3285
+ "identities.messages.4010005": "Es konnte keine Strategie gefunden werden, um Ihr Konto wiederherzustellen. Haben Sie das Formular korrekt ausgef\xFCllt?",
3286
+ "identities.messages.4010006": "Es konnte keine Strategie gefunden werden, um Ihr Konto zu verifizieren. Haben Sie das Formular korrekt ausgef\xFCllt?",
3287
+ "identities.messages.4010007": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
3288
+ "identities.messages.4010008": "Der Anmeldecode ist ung\xFCltig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
3289
+ "identities.messages.4040001": "Der Registrierungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
3290
+ "identities.messages.4040002": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
3291
+ "identities.messages.4040003": "Der Registrierungscode ist ung\xFCltig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
3292
+ "identities.messages.4050001": "Der Einstellungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
3293
+ "identities.messages.4060001": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
3294
+ "identities.messages.4060002": "Der Wiederherstellungsvorgang erreichte einen Fehlerzustand und muss erneut versucht werden.",
3295
+ "identities.messages.4060004": "Der Wiederherstellungstoken ist ung\xFCltig oder wurde bereits verwendet. Bitte wiederholen Sie den Vorgang.",
3296
+ "identities.messages.4060005": "Der Wiederherstellungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
3297
+ "identities.messages.4060006": "Der Wiederherstellungscode ist ung\xFCltig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
3298
+ "identities.messages.4070001": "Der Verifizierungstoken ist ung\xFCltig oder wurde bereits verwendet. Bitte wiederholen Sie den Vorgang.",
3299
+ "identities.messages.4070002": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
3300
+ "identities.messages.4070003": "Der Verifizierungsvorgang erreichte einen Fehlerzustand und muss erneut versucht werden.",
3301
+ "identities.messages.4070005": "Der Verifizierungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
3302
+ "identities.messages.4070006": "Der Verifizierungscode ist ung\xFCltig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
3303
+ "identities.messages.5000001": "{reason}",
3304
+ "login.forgot-password": "Passwort vergessen?",
3305
+ "login.logged-in-as-label": "Sie sind angemeldet als:",
3306
+ "login.logout-button": "Abmelden",
3307
+ "login.logout-label": "Etwas funktioniert nicht?",
3308
+ "login.registration-button": "Registrieren",
3309
+ "login.registration-label": "Sie haben noch kein Konto?",
3310
+ "login.subtitle-oauth2": "Zur Authentifizierung bei {clientName}",
3311
+ "login.title": "Anmelden",
3312
+ "login.title-aal2": "Zweitfaktor-Authentifizierung",
3313
+ "login.subtitle-aal2": "W\xE4hlen Sie eine Methode zur Best\xE4tigung Ihrer Zwei-Faktor-Authentifizierung",
3314
+ "login.code.subtitle": "Ein Best\xE4tigungscode wird per E-Mail gesendet",
3315
+ "login.webauthn.subtitle": "Bitte bereiten Sie Ihr WebAuthN-Ger\xE4t vor",
3316
+ "login.totp.subtitle": "Bitte geben Sie den Code aus Ihrer Authenticator-App ein",
3317
+ "login.lookup_secret.subtitle": "Bitte geben Sie einen Ihrer 8-stelligen Backup-Wiederherstellungscodes ein",
3318
+ "login.title-refresh": "Best\xE4tigen Sie, dass Sie es sind",
3319
+ "login.2fa.go-back": "Funktioniert etwas nicht?",
3320
+ "login.2fa.go-back.link": "Zur\xFCck",
3321
+ "login.2fa.method.go-back": "Eine andere Methode w\xE4hlen",
3322
+ "logout.accept-button": "Ja",
3323
+ "logout.reject-button": "Nein",
3324
+ "logout.title": "M\xF6chten Sie sich abmelden?",
3325
+ "recovery.login-button": "Anmelden",
3326
+ "recovery.login-label": "Erinnern Sie sich an Ihre Anmeldedaten?",
3327
+ "recovery.title": "Ihr Konto wiederherstellen",
3328
+ "registration.login-button": "Anmelden",
3329
+ "registration.login-label": "Sie haben bereits ein Konto?",
3330
+ "registration.subtitle-oauth2": "Zur Authentifizierung bei {clientName}",
3331
+ "registration.title": "Konto registrieren",
3332
+ "verification.registration-button": "Registrieren",
3333
+ "verification.registration-label": "Sie haben noch kein Konto?",
3334
+ "verification.title": "Verifizieren Sie ihr Konto",
3335
+ "verification.back-button": "Zur\xFCck",
3336
+ "two-step.code.description": "Ein Best\xE4tigungscode wird an Ihre E-Mail gesendet.",
3337
+ "two-step.code.title": "E-Mail-Code",
3338
+ "two-step.passkey.description": "Verwenden Sie die Fingerabdruck- oder Gesichtserkennung Ihres Ger\xE4ts",
3339
+ "two-step.passkey.title": "Passwort (empfohlen)",
3340
+ "two-step.password.description": "Geben Sie Ihr Passwort ein, das mit Ihrem Konto verkn\xFCpft ist",
3341
+ "two-step.password.title": "Passwort",
3342
+ "two-step.webauthn.title": "Sicherheitsschl\xFCssel",
3343
+ "two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschl\xFCssel zur Authentifizierung",
3344
+ "two-step.totp.title": "Verwenden Sie Ihre Authenticator-App (TOTP)",
3345
+ "two-step.totp.description": "Verwenden Sie einen 6-stelligen Einmal-Code aus Ihrer Authenticator-App",
3346
+ "two-step.lookup_secret.title": "Backup-Wiederherstellungscode",
3347
+ "two-step.lookup_secret.description": "Verwenden Sie einen Ihrer 8-stelligen Backup-Codes, um sich zu authentifizieren",
3348
+ "identities.messages.1070014": "Login- und Link-Zugangsdaten",
3349
+ "identities.messages.1070015": "Bitte schlie\xDFen Sie die Captcha-Challenge ab, um fortzufahren.",
3350
+ "identities.messages.4000038": "Die Captcha-\xDCberpr\xFCfung ist fehlgeschlagen. Bitte versuchen Sie es erneut.",
3351
+ "login.cancel-button": "Abbrechen",
3352
+ "login.cancel-label": "Nicht das richtige Konto?",
3353
+ "identities.messages.1010023": "Code an {address} senden",
3354
+ "identities.messages.1010016": "Sie haben versucht, sich mit \u201E{duplicateIdentifier}\u201C anzumelden, aber diese E-Mail-Adresse wird bereits von einem anderen Konto verwendet. \nMelden Sie sich mit einer der folgenden Optionen bei Ihrem Konto an, um Ihr Konto \u201E{duplicateIdentifier}\u201C bei \u201E{provider}\u201C als weitere Anmeldem\xF6glichkeit hinzuzuf\xFCgen.",
3355
+ "identities.messages.1010017": "",
3356
+ "identities.messages.1010018": "",
3357
+ "identities.messages.1010019": "",
3358
+ "identities.messages.1010020": "",
3359
+ "identities.messages.1010021": "",
3360
+ "identities.messages.1010022": "",
3361
+ "identities.messages.1040007": "",
3362
+ "identities.messages.1040008": "",
3363
+ "identities.messages.1040009": "",
3364
+ "identities.messages.1050019": "Passkey hinzuf\xFCgen",
3365
+ "identities.messages.1050020": "",
3366
+ "identities.messages.4000037": "",
3367
+ "identities.messages.4010009": "",
3368
+ "identities.messages.4010010": "",
3369
+ "input.placeholder": "{placeholder} eingeben",
3370
+ "card.header.parts.code": "einem Code per E-Mail",
3371
+ "card.header.parts.identifier-first": "Ihr {identifierLabel}",
3372
+ "card.header.parts.oidc": "ein sozialer Anbieter",
3373
+ "card.header.parts.passkey": "ein Passkey",
3374
+ "card.header.parts.password.login": "Ihrer {identifierLabel} und Ihrem Passwort",
3375
+ "card.header.parts.password.registration": "Ihrer {identifierLabel} und einem Passwort",
3376
+ "card.header.parts.webauthn": "ein Sicherheitsschl\xFCssel",
3377
+ "recovery.subtitle": "Geben Sie die mit Ihrem Konto verkn\xFCpfte E-Mail-Adresse ein, um einen einmaligen Zugangscode zu erhalten",
3378
+ "verification.subtitle": "Geben Sie die mit Ihrem Konto verkn\xFCpfte E-Mail-Adresse ein, um es zu best\xE4tigen",
3379
+ "card.header.description.login": "Melden Sie sich mit {identifierLabel} an",
3380
+ "card.header.description.registration": "Registrieren Sie sich mit {identifierLabel}",
3381
+ "login.subtitle": "Melden Sie sich mit {parts} an",
3382
+ "login.subtitle-refresh": "Best\xE4tigen Sie ihre Identit\xE4t mit {parts}",
3383
+ "misc.or": "oder",
3384
+ "registration.subtitle": "Registrieren Sie sich mit {parts}",
3385
+ "forms.label.forgot-password": "Passwort vergessen?",
3386
+ "settings.title": "Kontoeinstellungen",
3387
+ "settings.navigation.title": "Kontoeinstellungen",
3388
+ "settings.subtitle": "Aktualisieren Sie Ihre Kontoeinstellungen",
3389
+ "settings.navigation-back-button": "Zur\xFCck",
3390
+ "settings.navigation-backup-codes": "2FA-Backup-Codes",
3391
+ "settings.navigation-logout": "Abmelden",
3392
+ "settings.navigation-oidc": "Soziale Medien",
3393
+ "settings.navigation-password": "Passwort",
3394
+ "settings.navigation-profile": "Profil",
3395
+ "settings.navigation-totp": "Zwei-Faktor App",
3396
+ "settings.navigation-webauthn": "Sicherheitsschl\xFCssel",
3397
+ "settings.navigation-passkey": "Passkeys",
3398
+ "settings.subtitle-instructions": "Hier k\xF6nnen Sie Einstellungen zu Ihrem Konto vornehmen. F\xFCr manche Einstellungen m\xFCssen Sie Ihre Identit\xE4t erneut best\xE4tigen.",
3399
+ "settings.totp.info.linked": "Sie haben derzeit eine Authenticator-App verbunden.",
3400
+ "settings.totp.info.not-linked": "Um dies zu erm\xF6glichen, scannen Sie den QR-Code mit Ihrem Authenticator und geben Sie den Code ein.",
3401
+ "settings.totp.title": "Authenticator App",
3402
+ "settings.totp.description": "F\xFCgen Sie eine TOTP Authenticator App zu Ihrem Konto hinzu, um die Sicherheit Ihres Kontos zu verbessern. Beliebte Authenticator Apps sind LastPass und Google Authenticator.",
3403
+ "settings.lookup_secret.description": "Verwalten Sie Ihre 2FA-Backup-Wiederherstellungscodes",
3404
+ "settings.lookup_secret.title": "Wiederherstellungscodes",
3405
+ "settings.oidc.description": "Verwalten Sie Ihre Einstellungen f\xFCr die soziale Anmeldung",
3406
+ "settings.oidc.title": "Soziales Anmelden",
3407
+ "settings.passkey.description": "Verwalten Sie Ihre Passworteinstellungen",
3408
+ "settings.passkey.title": "Passkeys verwalten",
3409
+ "settings.password.description": "\xC4ndern Sie Ihr Passwort",
3410
+ "settings.password.title": "Passwort \xE4ndern",
3411
+ "settings.profile.description": "Aktualisieren Sie Ihre Profilinformationen",
3412
+ "settings.profile.title": "Profileinstellungen",
3413
+ "settings.webauthn.description": "Verwalten Sie Ihre Hardware-Token-Einstellungen",
3414
+ "settings.webauthn.title": "Hardware-Token verwalten",
3415
+ "settings.oidc.info": "Verbundene Konten dieser Anbieter k\xF6nnen f\xFCr die Anmeldung bei Ihrem Konto verwendet werden",
3416
+ "settings.passkey.info": "Verwalten Sie Ihre Passkey-Einstellungen",
3417
+ "settings.title-lookup-secret": "Verwalten Sie 2FA-Backup-Wiederherstellungscodes",
3418
+ "settings.title-navigation": "Kontoeinstellungen",
3419
+ "settings.title-oidc": "Social Sign In",
3420
+ "settings.title-passkey": "Passkeys verwalten",
3421
+ "settings.title-password": "Kennwort \xE4ndern",
3422
+ "settings.title-profile": "Profileinstellungen",
3423
+ "settings.title-totp": "Verwalten Sie die 2FA TOTP Authenticator-App",
3424
+ "settings.title-webauthn": "Hardware-Token verwalten",
3425
+ "settings.webauthn.info": "Hardware-Tokens werden f\xFCr die Zweitfaktor-Authentifizierung oder als Erstfaktor-Authentifizierung mit Passkeys verwendet",
3426
+ "card.footer.select-another-method": "Eine andere Methode verwenden",
3427
+ "account-linking.title": "Account Verbinden",
3428
+ "property.email": "E-Mail",
3429
+ "property.identifier": "Kennung",
3430
+ "property.password": "Passwort",
3431
+ "property.phone": "Telefon",
3432
+ "property.code": "Code",
3433
+ "property.username": "Benutzername",
3434
+ "error.title.what-happened": "Was ist passiert?",
3435
+ "error.footer.copy": "Kopieren",
3436
+ "error.footer.text": "Bitte f\xFCgen Sie bei der Meldung dieses Fehlers die folgenden Informationen hinzu:",
3437
+ "error.instructions": "Bitte versuchen Sie es in wenigen Minuten erneut oder wenden Sie sich an den Website-Betreiber.",
3438
+ "error.title.what-can-i-do": "Was kann ich tun?",
3439
+ "error.action.go-back": "Zur\xFCck"
3440
+ };
2841
3441
 
2842
- // src/context/provider.tsx
2843
- import { jsx as jsx91 } from "react/jsx-runtime";
3442
+ // src/locales/es.json
3443
+ var es_default = {
3444
+ "consent.action-accept": "Permitir",
3445
+ "consent.action-reject": "Rechazar",
3446
+ "consent.description": "Solo otorgue permisos si conf\xEDa en este sitio o aplicaci\xF3n. No es necesario aceptar todos los permisos.",
3447
+ "consent.privacy-policy-label": "Pol\xEDtica de Privacidad",
3448
+ "consent.remember-label": "Recuerde esta decisi\xF3n para la pr\xF3xima vez. La aplicaci\xF3n no podr\xE1 solicitar permisos adicionales sin su consentimiento.",
3449
+ "consent.remember-tooltip": "recordar mi decisi\xF3n",
3450
+ "consent.requested-permissions-label": "La aplicaci\xF3n solicita acceso a los siguientes permisos:",
3451
+ "consent.terms-of-service-label": "T\xE9rminos de Servicio",
3452
+ "error.back-button": "Regresar",
3453
+ "error.description": "Ocurri\xF3 un error con el siguiente mensaje:",
3454
+ "error.support-email-link": "Si el problema persiste, por favor contacte a <a>{contactSupportEmail}</a>",
3455
+ "error.title": "",
3456
+ "error.title-internal-server-error": "Error Interno del Servidor",
3457
+ "error.title-not-found": "404 - P\xE1gina no encontrada",
3458
+ "identities.messages.1010001": "Iniciar sesi\xF3n",
3459
+ "identities.messages.1010002": "Iniciar sesi\xF3n con {provider}",
3460
+ "identities.messages.1010003": "Por favor confirme esta acci\xF3n verificando que es usted.",
3461
+ "identities.messages.1010004": "Por favor complete el segundo desaf\xEDo de autenticaci\xF3n.",
3462
+ "identities.messages.1010005": "Verificar",
3463
+ "identities.messages.1010006": "C\xF3digo de autenticaci\xF3n",
3464
+ "identities.messages.1010007": "C\xF3digo de recuperaci\xF3n de respaldo",
3465
+ "identities.messages.1010008": "Continuar con la llave de hardware",
3466
+ "identities.messages.1010009": "Continuar",
3467
+ "identities.messages.1010010": "Continuar",
3468
+ "identities.messages.1010011": "Continuar con llave de seguridad",
3469
+ "identities.messages.1010012": "Prepare su dispositivo WebAuthn (por ejemplo, llave de seguridad, esc\xE1ner biom\xE9trico, ...) y presione continuar.",
3470
+ "identities.messages.1010013": "Continuar",
3471
+ "identities.messages.1010014": "Se ha enviado un correo electr\xF3nico con un c\xF3digo a la direcci\xF3n de correo electr\xF3nico que proporcion\xF3. Si no ha recibido un correo electr\xF3nico, verifique la ortograf\xEDa de la direcci\xF3n e intente iniciar sesi\xF3n nuevamente.",
3472
+ "identities.messages.1010015": "Iniciar sesi\xF3n con c\xF3digo",
3473
+ "identities.messages.1040001": "Registrarse",
3474
+ "identities.messages.1040002": "Registrarse con {provider}",
3475
+ "identities.messages.1040003": "Continuar",
3476
+ "identities.messages.1040004": "Registrarse con llave de seguridad",
3477
+ "identities.messages.1040005": "Se ha enviado un correo electr\xF3nico con un c\xF3digo a la direcci\xF3n de correo electr\xF3nico que proporcion\xF3. Si no ha recibido un correo electr\xF3nico, verifique la ortograf\xEDa de la direcci\xF3n e intente registrarse nuevamente.",
3478
+ "identities.messages.1040006": "Registrarse con c\xF3digo",
3479
+ "identities.messages.1050001": "\xA1Sus cambios han sido guardados!",
3480
+ "identities.messages.1050002": "Vincular {provider}",
3481
+ "identities.messages.1050003": "Desvincular {provider}",
3482
+ "identities.messages.1050004": "Desvincular App Autenticadora TOTP",
3483
+ "identities.messages.1050005": "C\xF3digo QR de la app autenticadora",
3484
+ "identities.messages.1050006": "{secret}",
3485
+ "identities.messages.1050007": "Mostrar c\xF3digos de recuperaci\xF3n de respaldo",
3486
+ "identities.messages.1050008": "Generar nuevos c\xF3digos de recuperaci\xF3n de respaldo",
3487
+ "identities.messages.1050009": "{secret}",
3488
+ "identities.messages.1050010": "Estos son sus c\xF3digos de recuperaci\xF3n de respaldo. \xA1Por favor gu\xE1rdelos en un lugar seguro!",
3489
+ "identities.messages.1050011": "Confirmar c\xF3digos de recuperaci\xF3n de respaldo",
3490
+ "identities.messages.1050012": "Agregar llave de seguridad",
3491
+ "identities.messages.1050013": "Nombre de la llave de seguridad",
3492
+ "identities.messages.1050014": "<del>Usado</del>",
3493
+ "identities.messages.1050015": "{secrets_list}",
3494
+ "identities.messages.1050016": "Deshabilitar este m\xE9todo",
3495
+ "identities.messages.1050017": "Este es el secreto de su app autenticadora. \xDAselo si no puede escanear el c\xF3digo QR.",
3496
+ "identities.messages.1050018": 'Eliminar llave de seguridad "{display_name}"',
3497
+ "identities.messages.1060001": "Ha recuperado exitosamente su cuenta. Por favor cambie su contrase\xF1a o configure un m\xE9todo de inicio de sesi\xF3n alternativo (por ejemplo, inicio de sesi\xF3n social) en los pr\xF3ximos {privileged_session_expires_at_unix_until_minutes} minutos.",
3498
+ "identities.messages.1060002": "Se ha enviado un correo electr\xF3nico con un enlace de recuperaci\xF3n a la direcci\xF3n de correo electr\xF3nico que proporcion\xF3. Si no ha recibido un correo electr\xF3nico, verifique la ortograf\xEDa de la direcci\xF3n y aseg\xFArese de usar la direcci\xF3n con la que se registr\xF3.",
3499
+ "identities.messages.1060003": "Se ha enviado un correo electr\xF3nico con un c\xF3digo de recuperaci\xF3n a la direcci\xF3n de correo electr\xF3nico que proporcion\xF3. Si no ha recibido un correo electr\xF3nico, verifique la ortograf\xEDa de la direcci\xF3n y aseg\xFArese de usar la direcci\xF3n con la que se registr\xF3.",
3500
+ "identities.messages.1070001": "Contrase\xF1a",
3501
+ "identities.messages.1070002": "{title}",
3502
+ "identities.messages.1070003": "Guardar",
3503
+ "identities.messages.1070004": "ID",
3504
+ "identities.messages.1070005": "Enviar",
3505
+ "identities.messages.1070006": "Verificar c\xF3digo",
3506
+ "identities.messages.1070007": "Correo electr\xF3nico",
3507
+ "identities.messages.1070008": "Reenviar c\xF3digo",
3508
+ "identities.messages.1070009": "Continuar",
3509
+ "identities.messages.1070010": "C\xF3digo de recuperaci\xF3n",
3510
+ "identities.messages.1070011": "C\xF3digo de verificaci\xF3n",
3511
+ "identities.messages.1070012": "C\xF3digo de registro",
3512
+ "identities.messages.1070013": "C\xF3digo de inicio de sesi\xF3n",
3513
+ "identities.messages.1080001": "Se ha enviado un correo electr\xF3nico con un enlace de verificaci\xF3n a la direcci\xF3n que proporcion\xF3. Si no ha recibido un correo electr\xF3nico, verifique la ortograf\xEDa de la direcci\xF3n y aseg\xFArese de usar la direcci\xF3n con la que se registr\xF3.",
3514
+ "identities.messages.1080002": "Ha verificado exitosamente su direcci\xF3n de correo electr\xF3nico.",
3515
+ "identities.messages.1080003": "Se ha enviado un correo electr\xF3nico con un c\xF3digo de verificaci\xF3n a la direcci\xF3n que proporcion\xF3. Si no ha recibido un correo electr\xF3nico, verifique la ortograf\xEDa de la direcci\xF3n y aseg\xFArese de usar la direcci\xF3n con la que se registr\xF3.",
3516
+ "identities.messages.4000001": "{reason}",
3517
+ "identities.messages.4000002": "Falta la propiedad {property}.",
3518
+ "identities.messages.4000003": "la longitud debe ser >= {min_length}, pero es {actual_length}",
3519
+ "identities.messages.4000004": 'no coincide con el patr\xF3n "{pattern}"',
3520
+ "identities.messages.4000005": "La contrase\xF1a no puede ser utilizada porque {reason}.",
3521
+ "identities.messages.4000006": "Las credenciales proporcionadas son inv\xE1lidas, verifique si hay errores en su contrase\xF1a o nombre de usuario, direcci\xF3n de correo electr\xF3nico o n\xFAmero de tel\xE9fono.",
3522
+ "identities.messages.4000007": "Ya existe una cuenta con el mismo identificador (correo, tel\xE9fono, nombre de usuario, ...).",
3523
+ "identities.messages.4000008": "El c\xF3digo de autenticaci\xF3n proporcionado es inv\xE1lido, por favor intente nuevamente.",
3524
+ "identities.messages.4000009": "No se encontraron identificadores de inicio de sesi\xF3n. \xBFOlvid\xF3 establecerlos? Esto tambi\xE9n podr\xEDa ser causado por una mala configuraci\xF3n del servidor.",
3525
+ "identities.messages.4000010": "La cuenta a\xFAn no est\xE1 activa. \xBFOlvid\xF3 verificar su direcci\xF3n de correo electr\xF3nico?",
3526
+ "identities.messages.4000011": "No tiene configurado ning\xFAn dispositivo TOTP.",
3527
+ "identities.messages.4000012": "Este c\xF3digo de recuperaci\xF3n de respaldo ya ha sido utilizado.",
3528
+ "identities.messages.4000013": "No tiene configurado ning\xFAn dispositivo WebAuthn.",
3529
+ "identities.messages.4000014": "No ha configurado ning\xFAn c\xF3digo de recuperaci\xF3n de respaldo.",
3530
+ "identities.messages.4000015": "Esta cuenta no existe o no tiene configurada una llave de seguridad.",
3531
+ "identities.messages.4000016": "El c\xF3digo de recuperaci\xF3n de respaldo no es v\xE1lido.",
3532
+ "identities.messages.4000017": "la longitud debe ser <= {max_length}, pero es {actual_length}",
3533
+ "identities.messages.4000018": "debe ser >= {minimum} pero es {actual}",
3534
+ "identities.messages.4000019": "debe ser > {minimum} pero es {actual}",
3535
+ "identities.messages.4000020": "debe ser <= {maximum} pero es {actual}",
3536
+ "identities.messages.4000021": "debe ser < {maximum} pero es {actual}",
3537
+ "identities.messages.4000022": "{actual} no es m\xFAltiplo de {base}",
3538
+ "identities.messages.4000023": "m\xE1ximo {max_items} \xEDtems permitidos, pero se encontraron {actual_items} \xEDtems",
3539
+ "identities.messages.4000024": "m\xEDnimo {min_items} \xEDtems permitidos, pero se encontraron {actual_items} \xEDtems",
3540
+ "identities.messages.4000025": "los \xEDtems en los \xEDndices {index_a} y {index_b} son iguales",
3541
+ "identities.messages.4000026": "se esperaba {allowed_types_list}, pero se obtuvo {actual_type}",
3542
+ "identities.messages.4000027": "Ya existe una cuenta con el mismo identificador (correo, tel\xE9fono, nombre de usuario, ...). Por favor, inicie sesi\xF3n en su cuenta existente y vincule su perfil social en la p\xE1gina de configuraci\xF3n.",
3543
+ "identities.messages.4000028": "Intent\xF3 iniciar sesi\xF3n con {credential_identifier_hint} que ya est\xE1 en uso por otra cuenta. Puede iniciar sesi\xF3n usando {available_credential_types_list}. Puede iniciar sesi\xF3n usando uno de los siguientes proveedores de inicio de sesi\xF3n social: {Available_oidc_providers_list}.",
3544
+ "identities.messages.4000029": "debe ser igual a la constante {expected}",
3545
+ "identities.messages.4000030": "constante fallida",
3546
+ "identities.messages.4000031": "La contrase\xF1a no puede ser utilizada porque es muy similar al identificador.",
3547
+ "identities.messages.4000032": "La contrase\xF1a debe tener al menos {min_length} caracteres de longitud, pero tiene {actual_length}.",
3548
+ "identities.messages.4000033": "La contrase\xF1a debe tener como m\xE1ximo {max_length} caracteres de longitud, pero tiene {actual_length}.",
3549
+ "identities.messages.4000034": "La contrase\xF1a ha sido encontrada en brechas de datos y ya no debe ser utilizada.",
3550
+ "identities.messages.4000035": "Esta cuenta no existe o no tiene configurado el inicio de sesi\xF3n con c\xF3digo.",
3551
+ "identities.messages.4000036": "Las caracter\xEDsticas proporcionadas no coinciden con las caracter\xEDsticas previamente asociadas con este flujo.",
3552
+ "identities.messages.4010001": "El flujo de inicio de sesi\xF3n expir\xF3 hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
3553
+ "identities.messages.4010002": "No se pudo encontrar una estrategia para iniciar sesi\xF3n. \xBFLlen\xF3 correctamente el formulario?",
3554
+ "identities.messages.4010003": "No se pudo encontrar una estrategia para registrarse. \xBFLlen\xF3 correctamente el formulario?",
3555
+ "identities.messages.4010004": "No se pudo encontrar una estrategia para actualizar sus configuraciones. \xBFLlen\xF3 correctamente el formulario?",
3556
+ "identities.messages.4010005": "No se pudo encontrar una estrategia para recuperar su cuenta. \xBFLlen\xF3 correctamente el formulario?",
3557
+ "identities.messages.4010006": "No se pudo encontrar una estrategia para verificar su cuenta. \xBFLlen\xF3 correctamente el formulario?",
3558
+ "identities.messages.4010007": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
3559
+ "identities.messages.4010008": "El c\xF3digo de inicio de sesi\xF3n es inv\xE1lido o ya ha sido utilizado. Por favor, intente nuevamente.",
3560
+ "identities.messages.4040001": "El flujo de registro expir\xF3 hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
3561
+ "identities.messages.4040002": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
3562
+ "identities.messages.4040003": "El c\xF3digo de registro es inv\xE1lido o ya ha sido utilizado. Por favor, intente nuevamente.",
3563
+ "identities.messages.4050001": "El flujo de configuraci\xF3n expir\xF3 hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
3564
+ "identities.messages.4060001": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
3565
+ "identities.messages.4060002": "El flujo de recuperaci\xF3n alcanz\xF3 un estado de fallo y debe ser reintentado.",
3566
+ "identities.messages.4060004": "El token de recuperaci\xF3n es inv\xE1lido o ya ha sido utilizado. Por favor, reinicie el flujo.",
3567
+ "identities.messages.4060005": "El flujo de recuperaci\xF3n expir\xF3 hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
3568
+ "identities.messages.4060006": "El c\xF3digo de recuperaci\xF3n es inv\xE1lido o ya ha sido utilizado. Por favor, intente nuevamente.",
3569
+ "identities.messages.4070001": "El token de verificaci\xF3n es inv\xE1lido o ya ha sido utilizado. Por favor, reinicie el flujo.",
3570
+ "identities.messages.4070002": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
3571
+ "identities.messages.4070003": "El flujo de verificaci\xF3n alcanz\xF3 un estado de fallo y debe ser reintentado.",
3572
+ "identities.messages.4070005": "El flujo de verificaci\xF3n expir\xF3 hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
3573
+ "identities.messages.4070006": "El c\xF3digo de verificaci\xF3n es inv\xE1lido o ya ha sido utilizado. Por favor, intente nuevamente.",
3574
+ "identities.messages.5000001": "{reason}",
3575
+ "login.forgot-password": "\xBFOlvid\xF3 su contrase\xF1a?",
3576
+ "login.logged-in-as-label": "Ha iniciado sesi\xF3n como:",
3577
+ "login.logout-button": "Cerrar sesi\xF3n",
3578
+ "login.logout-label": "\xBFAlgo no funciona correctamente?",
3579
+ "login.registration-button": "Registrarse",
3580
+ "login.registration-label": "\xBFNo tiene una cuenta?",
3581
+ "login.subtitle-oauth2": "Para autenticar a {clientName}",
3582
+ "login.title": "Iniciar sesi\xF3n",
3583
+ "login.title-aal2": "Autenticaci\xF3n de dos factores",
3584
+ "login.subtitle-aal2": "Elija una forma de completar su autenticaci\xF3n de segundo factor",
3585
+ "login.code.subtitle": "Se enviar\xE1 un c\xF3digo de verificaci\xF3n por correo electr\xF3nico",
3586
+ "login.webauthn.subtitle": "Por favor, prepare su dispositivo WebAuthN",
3587
+ "login.totp.subtitle": "Ingrese el c\xF3digo generado por su aplicaci\xF3n de autenticaci\xF3n",
3588
+ "login.lookup_secret.subtitle": "Ingrese uno de sus c\xF3digos de recuperaci\xF3n de respaldo de 8 d\xEDgitos",
3589
+ "login.title-refresh": "Confirme que es usted",
3590
+ "login.2fa.go-back": "\xBFAlgo no funciona?",
3591
+ "login.2fa.go-back.link": "Volver",
3592
+ "login.2fa.method.go-back": "Elegir otro m\xE9todo",
3593
+ "logout.accept-button": "S\xED",
3594
+ "logout.reject-button": "No",
3595
+ "logout.title": "\xBFDesea cerrar sesi\xF3n?",
3596
+ "recovery.login-button": "Iniciar sesi\xF3n",
3597
+ "recovery.login-label": "\xBFRecuerda sus credenciales?",
3598
+ "recovery.title": "Recuperar su cuenta",
3599
+ "registration.login-button": "Iniciar sesi\xF3n",
3600
+ "registration.login-label": "\xBFYa tiene una cuenta?",
3601
+ "registration.subtitle-oauth2": "Para autenticar a {clientName}",
3602
+ "registration.title": "Registrar una cuenta",
3603
+ "settings.navigation-back-button": "Regresar",
3604
+ "settings.navigation-backup-codes": "C\xF3digos de Respaldo de 2FA",
3605
+ "settings.navigation-logout": "Cerrar sesi\xF3n",
3606
+ "settings.navigation-oidc": "Inicio de Sesi\xF3n Social",
3607
+ "settings.navigation-password": "Contrase\xF1a",
3608
+ "settings.navigation-profile": "Perfil",
3609
+ "settings.navigation-totp": "Aplicaci\xF3n Autenticadora",
3610
+ "settings.navigation-webauthn": "Tokens de Hardware",
3611
+ "settings.navigation-passkey": "Passkeys",
3612
+ "settings.subtitle-instructions": "Aqu\xED puede gestionar las configuraciones relacionadas con su cuenta. Tenga en cuenta que ciertas acciones requieren que vuelva a autenticarse.",
3613
+ "settings.title": "Configuraciones de la Cuenta",
3614
+ "verification.registration-button": "Registrarse",
3615
+ "verification.registration-label": "\xBFNo tiene una cuenta?",
3616
+ "verification.title": "Verificar su cuenta",
3617
+ "verification.back-button": "Regresar",
3618
+ "two-step.code.description": "Se enviar\xE1 un c\xF3digo de verificaci\xF3n a tu correo electr\xF3nico.",
3619
+ "two-step.code.title": "C\xF3digo de correo electr\xF3nico",
3620
+ "two-step.passkey.description": "Utiliza el reconocimiento de huellas dactilares o facial de tu dispositivo.",
3621
+ "two-step.passkey.title": "Clave de acceso (recomendada)",
3622
+ "two-step.password.description": "Ingrese la contrase\xF1a asociada con su cuenta",
3623
+ "two-step.password.title": "Contrase\xF1a",
3624
+ "two-step.webauthn.title": "Clave de Seguridad",
3625
+ "two-step.webauthn.description": "Utilice su llave de seguridad para autenticase",
3626
+ "two-step.totp.title": "Utilice su aplicaci\xF3n de autenticaci\xF3n (TOTP)",
3627
+ "two-step.totp.description": "Utilice un c\xF3digo de un solo uso de 6 d\xEDgitos de su aplicaci\xF3n de autenticaci\xF3n",
3628
+ "two-step.lookup_secret.title": "C\xF3digo de recuperaci\xF3n de respaldo",
3629
+ "two-step.lookup_secret.description": "Utilice uno de sus c\xF3digos de respaldo de 8 d\xEDgitos para autenticarse",
3630
+ "identities.messages.1010016": "",
3631
+ "identities.messages.1010017": "",
3632
+ "identities.messages.1010018": "",
3633
+ "identities.messages.1010019": "",
3634
+ "identities.messages.1010020": "",
3635
+ "identities.messages.1010021": "",
3636
+ "identities.messages.1010022": "",
3637
+ "identities.messages.1010023": "",
3638
+ "identities.messages.1040007": "",
3639
+ "identities.messages.1040008": "",
3640
+ "identities.messages.1040009": "",
3641
+ "identities.messages.1050019": "",
3642
+ "identities.messages.1050020": "",
3643
+ "identities.messages.1070014": "",
3644
+ "identities.messages.1070015": "",
3645
+ "identities.messages.4000037": "",
3646
+ "identities.messages.4000038": "",
3647
+ "identities.messages.4010009": "",
3648
+ "identities.messages.4010010": "",
3649
+ "login.cancel-button": "",
3650
+ "login.cancel-label": "",
3651
+ "input.placeholder": "",
3652
+ "card.header.description.login": "",
3653
+ "card.header.description.registration": "",
3654
+ "card.header.parts.code": "",
3655
+ "card.header.parts.identifier-first": "",
3656
+ "card.header.parts.oidc": "",
3657
+ "card.header.parts.passkey": "",
3658
+ "card.header.parts.password.login": "",
3659
+ "card.header.parts.password.registration": "",
3660
+ "card.header.parts.webauthn": "",
3661
+ "forms.label.forgot-password": "",
3662
+ "login.subtitle": "",
3663
+ "login.subtitle-refresh": "",
3664
+ "misc.or": "",
3665
+ "recovery.subtitle": "",
3666
+ "registration.subtitle": "",
3667
+ "settings.subtitle": "",
3668
+ "verification.subtitle": "",
3669
+ "settings.totp.info.linked": "Actualmente tienes una aplicaci\xF3n de autenticaci\xF3n conectada.",
3670
+ "settings.totp.info.not-linked": "Para habilitar, escanea el c\xF3digo QR con tu autenticador e ingresa el c\xF3digo.",
3671
+ "settings.totp.title": "Aplicaci\xF3n Autenticadora",
3672
+ "settings.totp.description": "Agrega una aplicaci\xF3n de autenticaci\xF3n TOTP a tu cuenta para mejorar la seguridad de tu cuenta. Las aplicaciones de autenticaci\xF3n populares son LastPass y Google Authenticator.",
3673
+ "settings.lookup_secret.description": "Gestiona tus c\xF3digos de recuperaci\xF3n de respaldo 2FA",
3674
+ "settings.lookup_secret.title": "C\xF3digos de Recuperaci\xF3n",
3675
+ "settings.navigation.title": "Configuraci\xF3n de la Cuenta",
3676
+ "settings.oidc.description": "Administra la configuraci\xF3n de tu inicio de sesi\xF3n social",
3677
+ "settings.oidc.title": "Inicio de Sesi\xF3n Social",
3678
+ "settings.passkey.description": "Administra la configuraci\xF3n de tu clave de acceso",
3679
+ "settings.passkey.title": "Gestionar Claves de Acceso",
3680
+ "settings.password.description": "Modifica tu contrase\xF1a",
3681
+ "settings.password.title": "Cambiar Contrase\xF1a",
3682
+ "settings.profile.description": "Actualiza la informaci\xF3n de tu perfil",
3683
+ "settings.profile.title": "Configuraci\xF3n de Perfil",
3684
+ "settings.webauthn.description": "Administra la configuraci\xF3n de tu token de hardware",
3685
+ "settings.webauthn.title": "Gestionar Tokens de Hardware",
3686
+ "settings.oidc.info": "",
3687
+ "settings.passkey.info": "",
3688
+ "settings.title-lookup-secret": "",
3689
+ "settings.title-navigation": "",
3690
+ "settings.title-oidc": "",
3691
+ "settings.title-passkey": "",
3692
+ "settings.title-password": "",
3693
+ "settings.title-profile": "",
3694
+ "settings.title-totp": "",
3695
+ "settings.title-webauthn": "",
3696
+ "settings.webauthn.info": "",
3697
+ "card.footer.select-another-method": "",
3698
+ "account-linking.title": "",
3699
+ "property.code": "",
3700
+ "property.email": "",
3701
+ "property.identifier": "",
3702
+ "property.password": "",
3703
+ "property.phone": "",
3704
+ "property.username": "",
3705
+ "error.action.go-back": "",
3706
+ "error.footer.copy": "",
3707
+ "error.footer.text": "",
3708
+ "error.instructions": "",
3709
+ "error.title.what-can-i-do": "",
3710
+ "error.title.what-happened": ""
3711
+ };
2844
3712
 
2845
- // src/components/form/nodes/input.tsx
2846
- import {
2847
- UiNodeInputAttributesTypeEnum
2848
- } from "@ory/client-fetch";
2849
- import { useEffect as useEffect5, useRef as useRef2 } from "react";
2850
- import { useFormContext as useFormContext22 } from "react-hook-form";
2851
- import { jsx as jsx92 } from "react/jsx-runtime";
2852
- var NodeInput = ({
2853
- node,
2854
- attributes
2855
- }) => {
2856
- var _a;
2857
- const { Node: Node2 } = useComponents();
2858
- const { setValue } = useFormContext22();
2859
- const {
2860
- onloadTrigger,
2861
- onclickTrigger,
2862
- // These properties do not exist on input fields so we remove them (as we already have handled them).
2863
- onclick: _ignoredOnclick,
2864
- onload: _ignoredOnload,
2865
- //
2866
- ...attrs
2867
- } = attributes;
2868
- const isResendNode = ((_a = node.meta.label) == null ? void 0 : _a.id) === 1070008;
2869
- const isScreenSelectionNode = "name" in node.attributes && node.attributes.name === "screen";
2870
- const setFormValue = () => {
2871
- if (attrs.value && !(isResendNode || isScreenSelectionNode)) {
2872
- setValue(attrs.name, attrs.value);
2873
- }
2874
- };
2875
- const hasRun = useRef2(false);
2876
- useEffect5(
2877
- () => {
2878
- setFormValue();
2879
- if (!hasRun.current && onloadTrigger) {
2880
- hasRun.current = true;
2881
- triggerToWindowCall(onloadTrigger);
2882
- }
2883
- },
2884
- // TODO(jonas): make sure onloadTrigger is stable
2885
- // eslint-disable-next-line react-hooks/exhaustive-deps -- ignore onloadTrigger for now, until we make sure this is stable
2886
- []
2887
- );
2888
- const handleClick = () => {
2889
- setFormValue();
2890
- if (onclickTrigger) {
2891
- triggerToWindowCall(onclickTrigger);
2892
- }
2893
- };
2894
- const isSocial = (attrs.name === "provider" || attrs.name === "link") && node.group === "oidc";
2895
- const isPinCodeInput = attrs.name === "code" && node.group === "code" || attrs.name === "totp_code" && node.group === "totp";
2896
- switch (attributes.type) {
2897
- case UiNodeInputAttributesTypeEnum.Submit:
2898
- case UiNodeInputAttributesTypeEnum.Button:
2899
- if (isSocial) {
2900
- return null;
2901
- }
2902
- if (isResendNode || isScreenSelectionNode) {
2903
- return null;
2904
- }
2905
- return /* @__PURE__ */ jsx92(
2906
- Node2.Label,
2907
- {
2908
- attributes: { ...attrs, label: void 0 },
2909
- node: { ...node, meta: { ...node.meta, label: void 0 } },
2910
- children: /* @__PURE__ */ jsx92(Node2.Button, { attributes: attrs, node, onClick: handleClick })
2911
- }
2912
- );
2913
- case UiNodeInputAttributesTypeEnum.DatetimeLocal:
2914
- throw new Error("Not implemented");
2915
- case UiNodeInputAttributesTypeEnum.Checkbox:
2916
- return /* @__PURE__ */ jsx92(
2917
- Node2.Label,
2918
- {
2919
- attributes: { ...attrs, label: void 0 },
2920
- node: { ...node, meta: { ...node.meta, label: void 0 } },
2921
- children: /* @__PURE__ */ jsx92(Node2.Checkbox, { attributes: attrs, node, onClick: handleClick })
2922
- }
2923
- );
2924
- case UiNodeInputAttributesTypeEnum.Hidden:
2925
- return /* @__PURE__ */ jsx92(Node2.Input, { attributes: attrs, node, onClick: handleClick });
2926
- default:
2927
- if (isPinCodeInput) {
2928
- return /* @__PURE__ */ jsx92(Node2.Label, { attributes: attrs, node, children: /* @__PURE__ */ jsx92(
2929
- Node2.CodeInput,
2930
- {
2931
- attributes: attrs,
2932
- node,
2933
- onClick: handleClick
2934
- }
2935
- ) });
2936
- }
2937
- return /* @__PURE__ */ jsx92(Node2.Label, { attributes: attrs, node, children: /* @__PURE__ */ jsx92(Node2.Input, { attributes: attrs, node, onClick: handleClick }) });
2938
- }
3713
+ // src/locales/fr.json
3714
+ var fr_default = {
3715
+ "consent.action-accept": "Autoriser",
3716
+ "consent.action-reject": "Refuser",
3717
+ "consent.description": "N'accordez des permissions que si vous faites confiance \xE0 ce site ou \xE0 cette application. Vous n'avez pas besoin d'accepter toutes les permissions.",
3718
+ "consent.privacy-policy-label": "Politique de confidentialit\xE9",
3719
+ "consent.remember-label": "M\xE9moriser cette d\xE9cision pour la prochaine fois. L'application ne pourra pas demander des permissions suppl\xE9mentaires sans votre consentement.",
3720
+ "consent.remember-tooltip": "m\xE9moriser ma d\xE9cision",
3721
+ "consent.requested-permissions-label": "L'application demande l'acc\xE8s aux permissions suivantes :",
3722
+ "consent.terms-of-service-label": "Conditions d'utilisation",
3723
+ "error.back-button": "Revenir en arri\xE8re",
3724
+ "error.description": "Une erreur est survenue avec le message suivant :",
3725
+ "error.support-email-link": "Si le probl\xE8me persiste, veuillez contacter <a>{contactSupportEmail}</a>",
3726
+ "error.title": "Une erreur est survenue",
3727
+ "error.title-internal-server-error": "Erreur interne du serveur",
3728
+ "error.title-not-found": "404 - Page non trouv\xE9e",
3729
+ "identities.messages.1010001": "Se connecter",
3730
+ "identities.messages.1010002": "Se connecter avec {provider}",
3731
+ "identities.messages.1010003": "Veuillez confirmer cette action en v\xE9rifiant que c'est bien vous.",
3732
+ "identities.messages.1010004": "Veuillez terminer le deuxi\xE8me d\xE9fi d'authentification.",
3733
+ "identities.messages.1010005": "V\xE9rifier",
3734
+ "identities.messages.1010006": "Code d'authentification",
3735
+ "identities.messages.1010007": "Code de r\xE9cup\xE9ration de secours",
3736
+ "identities.messages.1010008": "Continuer avec la cl\xE9 mat\xE9rielle",
3737
+ "identities.messages.1010009": "Continuer",
3738
+ "identities.messages.1010010": "Continuer",
3739
+ "identities.messages.1010011": "Continuer avec la cl\xE9 de s\xE9curit\xE9",
3740
+ "identities.messages.1010012": "Pr\xE9parez votre appareil WebAuthn (par exemple, une cl\xE9 de s\xE9curit\xE9, un scanner biom\xE9trique, ...) et appuyez sur Continuer.",
3741
+ "identities.messages.1010013": "Continuer",
3742
+ "identities.messages.1010014": "Un e-mail contenant un code a \xE9t\xE9 envoy\xE9 \xE0 l'adresse e-mail que vous avez fournie. Si vous n'avez pas re\xE7u d'e-mail, v\xE9rifiez l'orthographe de l'adresse et r\xE9essayez la connexion.",
3743
+ "identities.messages.1010015": "Se connecter avec un code",
3744
+ "identities.messages.1040001": "S'inscrire",
3745
+ "identities.messages.1040002": "S'inscrire avec {provider}",
3746
+ "identities.messages.1040003": "Continuer",
3747
+ "identities.messages.1040004": "S'inscrire avec une cl\xE9 de s\xE9curit\xE9",
3748
+ "identities.messages.1040005": "Un e-mail contenant un code a \xE9t\xE9 envoy\xE9 \xE0 l'adresse e-mail que vous avez fournie. Si vous n'avez pas re\xE7u d'e-mail, v\xE9rifiez l'orthographe de l'adresse et r\xE9essayez l'inscription.",
3749
+ "identities.messages.1040006": "S'inscrire avec un code",
3750
+ "identities.messages.1050001": "Vos modifications ont \xE9t\xE9 enregistr\xE9es avec succ\xE8s !",
3751
+ "identities.messages.1050002": "Lier {provider}",
3752
+ "identities.messages.1050003": "D\xE9lier {provider}",
3753
+ "identities.messages.1050004": "D\xE9lier l'application d'authentification TOTP",
3754
+ "identities.messages.1050005": "Code QR de l'application d'authentification",
3755
+ "identities.messages.1050006": "{secret}",
3756
+ "identities.messages.1050007": "Afficher les codes de r\xE9cup\xE9ration de secours",
3757
+ "identities.messages.1050008": "G\xE9n\xE9rer de nouveaux codes de r\xE9cup\xE9ration de secours",
3758
+ "identities.messages.1050009": "{secret}",
3759
+ "identities.messages.1050010": "Ce sont vos codes de r\xE9cup\xE9ration de secours. Veuillez les conserver dans un endroit s\xFBr !",
3760
+ "identities.messages.1050011": "Confirmer les codes de r\xE9cup\xE9ration de secours",
3761
+ "identities.messages.1050012": "Ajouter une cl\xE9 de s\xE9curit\xE9",
3762
+ "identities.messages.1050013": "Nom de la cl\xE9 de s\xE9curit\xE9",
3763
+ "identities.messages.1050014": "<del>Utilis\xE9</del>",
3764
+ "identities.messages.1050015": "{secrets_list}",
3765
+ "identities.messages.1050016": "D\xE9sactiver cette m\xE9thode",
3766
+ "identities.messages.1050017": "Il s'agit de votre code secret de l'application d'authentification. Utilisez-le si vous ne pouvez pas scanner le code QR.",
3767
+ "identities.messages.1050018": 'Supprimer la cl\xE9 de s\xE9curit\xE9 "{display_name}"',
3768
+ "identities.messages.1060001": "Vous avez r\xE9ussi \xE0 r\xE9cup\xE9rer votre compte. Veuillez changer votre mot de passe ou configurer une m\xE9thode de connexion alternative (par exemple, une connexion sociale) dans les prochaines {privileged_session_expires_at_unix_until_minutes} minutes.",
3769
+ "identities.messages.1060002": "Un e-mail contenant un lien de r\xE9cup\xE9ration a \xE9t\xE9 envoy\xE9 \xE0 l'adresse e-mail que vous avez fournie. Si vous n'avez pas re\xE7u d'e-mail, v\xE9rifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous \xEAtes enregistr\xE9.",
3770
+ "identities.messages.1060003": "Un e-mail contenant un code de r\xE9cup\xE9ration a \xE9t\xE9 envoy\xE9 \xE0 l'adresse e-mail que vous avez fournie. Si vous n'avez pas re\xE7u d'e-mail, v\xE9rifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous \xEAtes enregistr\xE9.",
3771
+ "identities.messages.1070001": "Mot de passe",
3772
+ "identities.messages.1070002": "{title}",
3773
+ "identities.messages.1070003": "Enregistrer",
3774
+ "identities.messages.1070004": "ID",
3775
+ "identities.messages.1070005": "Soumettre",
3776
+ "identities.messages.1070006": "V\xE9rifier le code",
3777
+ "identities.messages.1070007": "E-mail",
3778
+ "identities.messages.1070008": "Renvoyer le code",
3779
+ "identities.messages.1070009": "Continuer",
3780
+ "identities.messages.1070010": "Code de r\xE9cup\xE9ration",
3781
+ "identities.messages.1070011": "Code de v\xE9rification",
3782
+ "identities.messages.1070012": "Code d'inscription",
3783
+ "identities.messages.1070013": "Code de connexion",
3784
+ "identities.messages.1080001": "Un e-mail contenant un lien de v\xE9rification a \xE9t\xE9 envoy\xE9 \xE0 l'adresse e-mail que vous avez fournie. Si vous n'avez pas re\xE7u d'e-mail, v\xE9rifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous \xEAtes enregistr\xE9.",
3785
+ "identities.messages.1080002": "Vous avez r\xE9ussi \xE0 v\xE9rifier votre adresse e-mail.",
3786
+ "identities.messages.1080003": "Un e-mail contenant un code de v\xE9rification a \xE9t\xE9 envoy\xE9 \xE0 l'adresse e-mail que vous avez fournie. Si vous n'avez pas re\xE7u d'e-mail, v\xE9rifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous \xEAtes enregistr\xE9.",
3787
+ "identities.messages.4000001": "{reason}",
3788
+ "identities.messages.4000002": "La propri\xE9t\xE9 {property} est manquante.",
3789
+ "identities.messages.4000003": "La longueur doit \xEAtre >= {min_length}, mais a \xE9t\xE9 {actual_length}",
3790
+ "identities.messages.4000004": 'Ne correspond pas au motif "{pattern}"',
3791
+ "identities.messages.4000005": "Le mot de passe ne peut pas \xEAtre utilis\xE9 en raison de {reason}.",
3792
+ "identities.messages.4000006": "Les informations d'identification fournies sont invalides. Veuillez v\xE9rifier les fautes d'orthographe dans votre mot de passe ou nom d'utilisateur, adresse e-mail ou num\xE9ro de t\xE9l\xE9phone.",
3793
+ "identities.messages.4000007": "Un compte avec le m\xEAme identifiant (e-mail, t\xE9l\xE9phone, nom d'utilisateur, ...) existe d\xE9j\xE0.",
3794
+ "identities.messages.4000008": "Le code d'authentification fourni est invalide. Veuillez r\xE9essayer.",
3795
+ "identities.messages.4000009": "Impossible de trouver des identifiants de connexion. Avez-vous oubli\xE9 de les configurer ? Cela peut \xE9galement \xEAtre d\xFB \xE0 une mauvaise configuration du serveur.",
3796
+ "identities.messages.4000010": "Le compte n'est pas encore actif. Avez-vous oubli\xE9 de v\xE9rifier votre adresse e-mail ?",
3797
+ "identities.messages.4000011": "Vous n'avez pas configur\xE9 de dispositif TOTP.",
3798
+ "identities.messages.4000012": "Ce code de r\xE9cup\xE9ration de secours a d\xE9j\xE0 \xE9t\xE9 utilis\xE9.",
3799
+ "identities.messages.4000013": "Vous n'avez pas configur\xE9 de dispositif WebAuthn.",
3800
+ "identities.messages.4000014": "Vous n'avez pas configur\xE9 de codes de r\xE9cup\xE9ration de secours.",
3801
+ "identities.messages.4000015": "Ce compte n'existe pas ou n'a pas configur\xE9 de cl\xE9 de s\xE9curit\xE9.",
3802
+ "identities.messages.4000016": "Le code de r\xE9cup\xE9ration de secours n'est pas valide.",
3803
+ "identities.messages.4000017": "La longueur doit \xEAtre <= {max_length}, mais a \xE9t\xE9 {actual_length}",
3804
+ "identities.messages.4000018": "Doit \xEAtre >= {minimum} mais a \xE9t\xE9 {actual}",
3805
+ "identities.messages.4000019": "Doit \xEAtre > {minimum} mais a \xE9t\xE9 {actual}",
3806
+ "identities.messages.4000020": "Doit \xEAtre <= {maximum} mais a \xE9t\xE9 {actual}",
3807
+ "identities.messages.4000021": "Doit \xEAtre < {maximum} mais a \xE9t\xE9 {actual}",
3808
+ "identities.messages.4000022": "{actual} n'est pas multiple de {base}",
3809
+ "identities.messages.4000023": "Un maximum de {max_items} \xE9l\xE9ments est autoris\xE9, mais {actual_items} \xE9l\xE9ments ont \xE9t\xE9 trouv\xE9s",
3810
+ "identities.messages.4000024": "Un minimum de {min_items} \xE9l\xE9ments est autoris\xE9, mais {actual_items} \xE9l\xE9ments ont \xE9t\xE9 trouv\xE9s",
3811
+ "identities.messages.4000025": "Les \xE9l\xE9ments aux indices {index_a} et {index_b} sont \xE9gaux",
3812
+ "identities.messages.4000026": "Les types autoris\xE9s \xE9taient {allowed_types_list}, mais le type actuel est {actual_type}",
3813
+ "identities.messages.4000027": "Un compte avec le m\xEAme identifiant (e-mail, t\xE9l\xE9phone, nom d'utilisateur, ...) existe d\xE9j\xE0. Veuillez vous connecter \xE0 votre compte existant et lier votre profil social dans la page des param\xE8tres.",
3814
+ "identities.messages.4000028": "Vous avez essay\xE9 de vous connecter avec {credential_identifier_hint} qui est d\xE9j\xE0 utilis\xE9 par un autre compte. Vous pouvez vous connecter en utilisant {available_credential_types_list}. Vous pouvez vous connecter en utilisant l'un des fournisseurs de connexion sociale suivants : {Available_oidc_providers_list}.",
3815
+ "identities.messages.4000029": "Doit \xEAtre \xE9gal \xE0 la constante {expected}",
3816
+ "identities.messages.4000030": "\xC9chec de la constante",
3817
+ "identities.messages.4000031": "Le mot de passe ne peut pas \xEAtre utilis\xE9 car il est trop similaire \xE0 l'identifiant.",
3818
+ "identities.messages.4000032": "Le mot de passe doit comporter au moins {min_length} caract\xE8res, mais en comporte {actual_length}.",
3819
+ "identities.messages.4000033": "Le mot de passe doit comporter au plus {max_length} caract\xE8res, mais en comporte {actual_length}.",
3820
+ "identities.messages.4000034": "Le mot de passe a \xE9t\xE9 trouv\xE9 dans des violations de donn\xE9es et ne doit plus \xEAtre utilis\xE9.",
3821
+ "identities.messages.4000035": "Ce compte n'existe pas ou n'a pas configur\xE9 de connexion avec code.",
3822
+ "identities.messages.4000036": "Les traits fournis ne correspondent pas aux traits associ\xE9s pr\xE9c\xE9demment \xE0 ce flux.",
3823
+ "identities.messages.4010001": "Le flux de connexion a expir\xE9 il y a {expired_at_unix_since_minutes} minutes, veuillez r\xE9essayer.",
3824
+ "identities.messages.4010002": "Impossible de trouver une strat\xE9gie pour vous connecter. Avez-vous rempli correctement le formulaire ?",
3825
+ "identities.messages.4010003": "Impossible de trouver une strat\xE9gie pour vous inscrire. Avez-vous rempli correctement le formulaire ?",
3826
+ "identities.messages.4010004": "Impossible de trouver une strat\xE9gie pour mettre \xE0 jour vos param\xE8tres. Avez-vous rempli correctement le formulaire ?",
3827
+ "identities.messages.4010005": "Impossible de trouver une strat\xE9gie pour r\xE9cup\xE9rer votre compte. Avez-vous rempli correctement le formulaire ?",
3828
+ "identities.messages.4010006": "Impossible de trouver une strat\xE9gie pour v\xE9rifier votre compte. Avez-vous rempli correctement le formulaire ?",
3829
+ "identities.messages.4010007": "La demande a d\xE9j\xE0 \xE9t\xE9 effectu\xE9e avec succ\xE8s et ne peut pas \xEAtre r\xE9essay\xE9e.",
3830
+ "identities.messages.4010008": "Le code de connexion est invalide ou a d\xE9j\xE0 \xE9t\xE9 utilis\xE9. Veuillez r\xE9essayer.",
3831
+ "identities.messages.4040001": "Le flux d'inscription a expir\xE9 il y a {expired_at_unix_since_minutes} minutes, veuillez r\xE9essayer.",
3832
+ "identities.messages.4040002": "La demande a d\xE9j\xE0 \xE9t\xE9 effectu\xE9e avec succ\xE8s et ne peut pas \xEAtre r\xE9essay\xE9e.",
3833
+ "identities.messages.4040003": "Le code d'inscription est invalide ou a d\xE9j\xE0 \xE9t\xE9 utilis\xE9. Veuillez r\xE9essayer.",
3834
+ "identities.messages.4050001": "Le flux de param\xE8tres a expir\xE9 il y a {expired_at_unix_since_minutes} minutes, veuillez r\xE9essayer.",
3835
+ "identities.messages.4060001": "La demande a d\xE9j\xE0 \xE9t\xE9 effectu\xE9e avec succ\xE8s et ne peut pas \xEAtre r\xE9essay\xE9e.",
3836
+ "identities.messages.4060002": "Le flux de r\xE9cup\xE9ration a atteint un \xE9tat d'\xE9chec et doit \xEAtre r\xE9essay\xE9.",
3837
+ "identities.messages.4060004": "Le jeton de r\xE9cup\xE9ration est invalide ou a d\xE9j\xE0 \xE9t\xE9 utilis\xE9. Veuillez r\xE9essayer le flux.",
3838
+ "identities.messages.4060005": "Le flux de r\xE9cup\xE9ration a expir\xE9 il y a {expired_at_unix_since_minutes} minutes, veuillez r\xE9essayer.",
3839
+ "identities.messages.4060006": "Le code de r\xE9cup\xE9ration est invalide ou a d\xE9j\xE0 \xE9t\xE9 utilis\xE9. Veuillez r\xE9essayer.",
3840
+ "identities.messages.4070001": "Le jeton de v\xE9rification est invalide ou a d\xE9j\xE0 \xE9t\xE9 utilis\xE9. Veuillez r\xE9essayer le flux.",
3841
+ "identities.messages.4070002": "La demande a d\xE9j\xE0 \xE9t\xE9 effectu\xE9e avec succ\xE8s et ne peut pas \xEAtre r\xE9essay\xE9e.",
3842
+ "identities.messages.4070003": "Le flux de v\xE9rification a atteint un \xE9tat d'\xE9chec et doit \xEAtre r\xE9essay\xE9.",
3843
+ "identities.messages.4070005": "Le flux de v\xE9rification a expir\xE9 il y a {expired_at_unix_since_minutes} minutes, veuillez r\xE9essayer.",
3844
+ "identities.messages.4070006": "Le code de v\xE9rification est invalide ou a d\xE9j\xE0 \xE9t\xE9 utilis\xE9. Veuillez r\xE9essayer.",
3845
+ "identities.messages.5000001": "{reason}",
3846
+ "login.forgot-password": "Mot de passe oubli\xE9 ?",
3847
+ "login.logged-in-as-label": "Vous \xEAtes connect\xE9 en tant que :",
3848
+ "login.logout-button": "D\xE9connexion",
3849
+ "login.logout-label": "Quelque chose ne fonctionne pas ?",
3850
+ "login.registration-button": "S'inscrire",
3851
+ "login.registration-label": "Vous n'avez pas de compte ?",
3852
+ "login.subtitle-oauth2": "Pour vous authentifier sur {clientName}",
3853
+ "login.title": "Se connecter",
3854
+ "login.title-aal2": "Authentification \xE0 deux facteurs",
3855
+ "login.subtitle-aal2": "Choisissez une m\xE9thode pour compl\xE9ter votre authentification \xE0 deux facteurs",
3856
+ "login.code.subtitle": "Un code de v\xE9rification sera envoy\xE9 par e-mail",
3857
+ "login.webauthn.subtitle": "Veuillez pr\xE9parer votre dispositif WebAuthN",
3858
+ "login.totp.subtitle": "Veuillez saisir le code g\xE9n\xE9r\xE9 par votre application d'authentification",
3859
+ "login.lookup_secret.subtitle": "Veuillez saisir l'un de vos codes de r\xE9cup\xE9ration de secours \xE0 8 chiffres",
3860
+ "login.title-refresh": "Confirmez que c'est bien vous",
3861
+ "login.2fa.go-back": "Quelque chose ne fonctionne pas ?",
3862
+ "login.2fa.go-back.link": "Retour",
3863
+ "login.2fa.method.go-back": "Choisir une autre m\xE9thode",
3864
+ "logout.accept-button": "Oui",
3865
+ "logout.reject-button": "Non",
3866
+ "logout.title": "Souhaitez-vous vous d\xE9connecter ?",
3867
+ "recovery.login-button": "Se connecter",
3868
+ "recovery.login-label": "Vous souvenez-vous de vos informations d'identification ?",
3869
+ "recovery.title": "R\xE9cup\xE9rer votre compte",
3870
+ "registration.login-button": "Se connecter",
3871
+ "registration.login-label": "Vous avez d\xE9j\xE0 un compte ?",
3872
+ "registration.subtitle-oauth2": "Pour vous authentifier sur {clientName}",
3873
+ "registration.title": "Cr\xE9er un compte",
3874
+ "settings.navigation-back-button": "Revenir en arri\xE8re",
3875
+ "settings.navigation-backup-codes": "Codes de secours 2FA",
3876
+ "settings.navigation-logout": "D\xE9connexion",
3877
+ "settings.navigation-oidc": "Connexion sociale",
3878
+ "settings.navigation-password": "Mot de passe",
3879
+ "settings.navigation-profile": "Profil",
3880
+ "settings.navigation-totp": "Application d'authentification TOTP",
3881
+ "settings.navigation-webauthn": "Tokens mat\xE9riels",
3882
+ "settings.navigation-passkey": "Passkeys",
3883
+ "settings.subtitle-instructions": "Ici, vous pouvez g\xE9rer les param\xE8tres li\xE9s \xE0 votre compte. Gardez \xE0 l'esprit que certaines actions n\xE9cessitent une nouvelle authentification.",
3884
+ "settings.title": "Param\xE8tres du compte",
3885
+ "verification.registration-button": "S'inscrire",
3886
+ "verification.registration-label": "Vous n'avez pas de compte ?",
3887
+ "verification.title": "V\xE9rifiez votre compte",
3888
+ "verification.back-button": "Revenir en arri\xE8re",
3889
+ "two-step.code.description": "Un code de v\xE9rification sera envoy\xE9 \xE0 votre email",
3890
+ "two-step.code.title": "Code de courrier \xE9lectronique",
3891
+ "two-step.passkey.description": "Utilisez l'appareil pour la reconnaissance d'empreintes digitales ou de visage",
3892
+ "two-step.passkey.title": "Cl\xE9 de passe (recommand\xE9e)",
3893
+ "two-step.password.description": "Entrez votre mot de passe associ\xE9 \xE0 votre compte",
3894
+ "two-step.password.title": "Mot de passe",
3895
+ "two-step.webauthn.title": "Cl\xE9 de S\xE9curit\xE9",
3896
+ "two-step.webauthn.description": "Utilisez votre cl\xE9 de s\xE9curit\xE9 pour vous authentifier",
3897
+ "two-step.totp.title": "Utilisez votre application d'authentification (TOTP)",
3898
+ "two-step.totp.description": "Utilisez un code \xE0 usage unique \xE0 6 chiffres provenant de votre application d'authentification",
3899
+ "two-step.lookup_secret.title": "Code de r\xE9cup\xE9ration de secours",
3900
+ "two-step.lookup_secret.description": "Utilisez l'un de vos codes de secours \xE0 8 chiffres pour vous authentifier",
3901
+ "identities.messages.1010023": "",
3902
+ "identities.messages.1070015": "",
3903
+ "identities.messages.4000038": "",
3904
+ "login.cancel-button": "",
3905
+ "login.cancel-label": "",
3906
+ "identities.messages.1010016": "",
3907
+ "identities.messages.1010017": "",
3908
+ "identities.messages.1010018": "",
3909
+ "identities.messages.1010019": "",
3910
+ "identities.messages.1010020": "",
3911
+ "identities.messages.1010021": "",
3912
+ "identities.messages.1010022": "",
3913
+ "identities.messages.1040007": "",
3914
+ "identities.messages.1040008": "",
3915
+ "identities.messages.1040009": "",
3916
+ "identities.messages.1050019": "",
3917
+ "identities.messages.1050020": "",
3918
+ "identities.messages.1070014": "",
3919
+ "identities.messages.4000037": "",
3920
+ "identities.messages.4010009": "",
3921
+ "identities.messages.4010010": "",
3922
+ "input.placeholder": "",
3923
+ "card.header.description.login": "",
3924
+ "card.header.description.registration": "",
3925
+ "card.header.parts.code": "",
3926
+ "card.header.parts.identifier-first": "",
3927
+ "card.header.parts.oidc": "",
3928
+ "card.header.parts.passkey": "",
3929
+ "card.header.parts.password.login": "",
3930
+ "card.header.parts.password.registration": "",
3931
+ "card.header.parts.webauthn": "",
3932
+ "forms.label.forgot-password": "",
3933
+ "login.subtitle": "",
3934
+ "login.subtitle-refresh": "",
3935
+ "misc.or": "",
3936
+ "recovery.subtitle": "",
3937
+ "registration.subtitle": "",
3938
+ "settings.subtitle": "",
3939
+ "verification.subtitle": "",
3940
+ "settings.totp.info.linked": "Vous avez actuellement une application d'authentification connect\xE9e.",
3941
+ "settings.totp.info.not-linked": "Pour activer, scannez le QR code avec votre authentificateur et entrez le code.",
3942
+ "settings.totp.title": "Application d'authentification",
3943
+ "settings.totp.description": "Ajoutez une application d'authentification TOTP \xE0 votre compte pour am\xE9liorer la s\xE9curit\xE9 de votre compte. Les applications d'authentification populaires sont LastPass et Google Authenticator.",
3944
+ "settings.lookup_secret.description": "",
3945
+ "settings.lookup_secret.title": "",
3946
+ "settings.navigation.title": "",
3947
+ "settings.oidc.description": "",
3948
+ "settings.oidc.info": "",
3949
+ "settings.oidc.title": "",
3950
+ "settings.passkey.description": "",
3951
+ "settings.passkey.info": "",
3952
+ "settings.passkey.title": "",
3953
+ "settings.password.description": "",
3954
+ "settings.password.title": "",
3955
+ "settings.profile.description": "",
3956
+ "settings.profile.title": "",
3957
+ "settings.title-lookup-secret": "",
3958
+ "settings.title-navigation": "",
3959
+ "settings.title-oidc": "",
3960
+ "settings.title-passkey": "",
3961
+ "settings.title-password": "",
3962
+ "settings.title-profile": "",
3963
+ "settings.title-totp": "",
3964
+ "settings.title-webauthn": "",
3965
+ "settings.webauthn.description": "",
3966
+ "settings.webauthn.info": "",
3967
+ "settings.webauthn.title": "",
3968
+ "card.footer.select-another-method": "",
3969
+ "account-linking.title": "",
3970
+ "property.code": "",
3971
+ "property.email": "",
3972
+ "property.identifier": "",
3973
+ "property.password": "",
3974
+ "property.phone": "",
3975
+ "property.username": "",
3976
+ "error.action.go-back": "",
3977
+ "error.footer.copy": "",
3978
+ "error.footer.text": "",
3979
+ "error.title.what-can-i-do": "",
3980
+ "error.title.what-happened": "",
3981
+ "error.instructions": ""
2939
3982
  };
2940
3983
 
2941
- // src/theme/default/components/form/captcha.tsx
3984
+ // src/locales/nl.json
3985
+ var nl_default = {
3986
+ "consent.action-accept": "Toestaan",
3987
+ "consent.action-reject": "Weigeren",
3988
+ "consent.description": "Verleen alleen toestemming als u deze site of app vertrouwt. U hoeft niet alle toestemmingen te accepteren.",
3989
+ "consent.privacy-policy-label": "Privacybeleid",
3990
+ "consent.remember-label": "Onthoud deze beslissing voor de volgende keer. De toepassing kan geen aanvullende toestemming vragen zonder uw toestemming.",
3991
+ "consent.remember-tooltip": "Onthoud mijn beslissing",
3992
+ "consent.requested-permissions-label": "De toepassing vraagt toegang tot de volgende toestemmingen:",
3993
+ "consent.terms-of-service-label": "Gebruiksvoorwaarden",
3994
+ "error.back-button": "Ga terug",
3995
+ "error.description": "Er is een fout opgetreden met de volgende melding:",
3996
+ "error.support-email-link": "Als het probleem aanhoudt, neem dan contact op met <a>{contactSupportEmail}</a>",
3997
+ "error.title": "Er is een fout opgetreden",
3998
+ "error.title-internal-server-error": "Interne serverfout",
3999
+ "error.title-not-found": "404 - Pagina niet gevonden",
4000
+ "identities.messages.1010001": "Aanmelden",
4001
+ "identities.messages.1010002": "Aanmelden met {provider}",
4002
+ "identities.messages.1010003": "Bevestig deze actie door te verifi\xEBren dat u het bent.",
4003
+ "identities.messages.1010004": "Voltooi alstublieft de tweede authenticatie-uitdaging.",
4004
+ "identities.messages.1010005": "Verifi\xEBren",
4005
+ "identities.messages.1010006": "Verificatiecode",
4006
+ "identities.messages.1010007": "Back-up herstelcode",
4007
+ "identities.messages.1010008": "Ga verder met hardware-sleutel",
4008
+ "identities.messages.1010009": "Doorgaan",
4009
+ "identities.messages.1010010": "Doorgaan",
4010
+ "identities.messages.1010011": "Doorgaan met beveiligingssleutel",
4011
+ "identities.messages.1010012": "Bereid uw WebAuthn-apparaat voor (bijv. beveiligingssleutel, biometrische scanner, ...) en druk op doorgaan.",
4012
+ "identities.messages.1010013": "Doorgaan",
4013
+ "identities.messages.1010014": "Er is een e-mail met een code verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het adres en probeer opnieuw in te loggen.",
4014
+ "identities.messages.1010015": "Aanmelden met code",
4015
+ "identities.messages.1040001": "Registreren",
4016
+ "identities.messages.1040002": "Registreren met {provider}",
4017
+ "identities.messages.1040003": "Doorgaan",
4018
+ "identities.messages.1040004": "Registreren met beveiligingssleutel",
4019
+ "identities.messages.1040005": "Er is een e-mail met een code verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het adres en probeer opnieuw te registreren.",
4020
+ "identities.messages.1040006": "Registreren met code",
4021
+ "identities.messages.1050001": "Uw wijzigingen zijn opgeslagen!",
4022
+ "identities.messages.1050002": "Koppelen aan {provider}",
4023
+ "identities.messages.1050003": "Ontkoppelen van {provider}",
4024
+ "identities.messages.1050004": "Ontkoppelen van TOTP Authenticator-app",
4025
+ "identities.messages.1050005": "QR-code voor Authenticator-app",
4026
+ "identities.messages.1050006": "{secret}",
4027
+ "identities.messages.1050007": "Toon back-up herstelcodes",
4028
+ "identities.messages.1050008": "Nieuwe back-up herstelcodes genereren",
4029
+ "identities.messages.1050009": "{secret}",
4030
+ "identities.messages.1050010": "Dit zijn uw back-up herstelcodes. Bewaar ze op een veilige plaats!",
4031
+ "identities.messages.1050011": "Bevestig back-up herstelcodes",
4032
+ "identities.messages.1050012": "Beveiligingssleutel toevoegen",
4033
+ "identities.messages.1050013": "Naam van de beveiligingssleutel",
4034
+ "identities.messages.1050014": "<del>Gebruikt</del>",
4035
+ "identities.messages.1050015": "{secrets_list}",
4036
+ "identities.messages.1050016": "Deze methode uitschakelen",
4037
+ "identities.messages.1050017": "Dit is uw geheime Authenticator-app. Gebruik het als u de QR-code niet kunt scannen.",
4038
+ "identities.messages.1050018": 'Beveiligingssleutel verwijderen "{display_name}"',
4039
+ "identities.messages.1060001": "U heeft met succes uw account hersteld. Wijzig alstublieft uw wachtwoord of stel een alternatieve aanmeldingsmethode in (bijv. sociale aanmelding) binnen de komende {privileged_session_expires_at_unix_until_minutes} minuten.",
4040
+ "identities.messages.1060002": "Er is een e-mail met een herstelkoppeling verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat u het e-mailadres gebruikt waarmee u zich heeft geregistreerd.",
4041
+ "identities.messages.1060003": "Er is een e-mail met een herstelcode verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat u het e-mailadres gebruikt waarmee u zich heeft geregistreerd.",
4042
+ "identities.messages.1070001": "Wachtwoord",
4043
+ "identities.messages.1070002": "{title}",
4044
+ "identities.messages.1070003": "Opslaan",
4045
+ "identities.messages.1070004": "ID",
4046
+ "identities.messages.1070005": "Verzenden",
4047
+ "identities.messages.1070006": "Verificatiecode controleren",
4048
+ "identities.messages.1070007": "E-mail",
4049
+ "identities.messages.1070008": "Code opnieuw verzenden",
4050
+ "identities.messages.1070009": "Doorgaan",
4051
+ "identities.messages.1070010": "Herstelcode",
4052
+ "identities.messages.1070011": "Verificatiecode",
4053
+ "identities.messages.1070012": "Registratiecode",
4054
+ "identities.messages.1070013": "Aanmeldingscode",
4055
+ "identities.messages.1080001": "Er is een e-mail met een verificatielink naar het opgegeven e-mailadres gestuurd. Als je geen e-mail hebt ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat je het e-mailadres hebt gebruikt waarmee je hebt geregistreerd.",
4056
+ "identities.messages.1080002": "Je hebt succesvol je e-mailadres geverifieerd.",
4057
+ "identities.messages.1080003": "Er is een e-mail met een verificatiecode naar het opgegeven e-mailadres gestuurd. Als je geen e-mail hebt ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat je het e-mailadres hebt gebruikt waarmee je hebt geregistreerd.",
4058
+ "identities.messages.4000001": "{reason}",
4059
+ "identities.messages.4000002": "Eigenschap {property} ontbreekt.",
4060
+ "identities.messages.4000003": "lengte moet >= {min_length} zijn, maar is {actual_length}",
4061
+ "identities.messages.4000004": 'komt niet overeen met patroon "{pattern}"',
4062
+ "identities.messages.4000005": "Het wachtwoord kan niet worden gebruikt vanwege {reason}.",
4063
+ "identities.messages.4000006": "De verstrekte referenties zijn ongeldig, controleer op typefouten in je wachtwoord of gebruikersnaam, e-mailadres of telefoonnummer.",
4064
+ "identities.messages.4000007": "Er bestaat al een account met dezelfde identificatiegegevens (e-mail, telefoon, gebruikersnaam, ...).",
4065
+ "identities.messages.4000008": "De verstrekte verificatiecode is ongeldig, probeer het opnieuw.",
4066
+ "identities.messages.4000009": "Kon geen aanmeldingsidentificatoren vinden. Ben je ze vergeten in te stellen? Dit kan ook worden veroorzaakt door een servermisconfiguratie.",
4067
+ "identities.messages.4000010": "Account nog niet actief. Ben je vergeten je e-mailadres te verifi\xEBren?",
4068
+ "identities.messages.4000011": "Je hebt geen TOTP-apparaat ingesteld.",
4069
+ "identities.messages.4000012": "Deze herstelcode is al gebruikt.",
4070
+ "identities.messages.4000013": "Je hebt geen WebAuthn-apparaat ingesteld.",
4071
+ "identities.messages.4000014": "Je hebt geen herstelcodes ingesteld.",
4072
+ "identities.messages.4000015": "Dit account bestaat niet of heeft geen beveiligingssleutel ingesteld.",
4073
+ "identities.messages.4000016": "De herstelcode is niet geldig.",
4074
+ "identities.messages.4000017": "lengte moet <= {max_length} zijn, maar is {actual_length}",
4075
+ "identities.messages.4000018": "moet >= {minimum} zijn, maar is {actual}",
4076
+ "identities.messages.4000019": "moet > {minimum} zijn, maar is {actual}",
4077
+ "identities.messages.4000020": "moet <= {maximum} zijn, maar is {actual}",
4078
+ "identities.messages.4000021": "moet < {maximum} zijn, maar is {actual}",
4079
+ "identities.messages.4000022": "{actual} is geen veelvoud van {base}",
4080
+ "identities.messages.4000023": "maximaal {max_items} items toegestaan, maar er zijn {actual_items} items gevonden",
4081
+ "identities.messages.4000024": "minimaal {min_items} items toegestaan, maar er zijn {actual_items} items gevonden",
4082
+ "identities.messages.4000025": "items op index {index_a} en {index_b} zijn gelijk",
4083
+ "identities.messages.4000026": "verwacht {allowed_types_list}, maar kreeg {actual_type}",
4084
+ "identities.messages.4000027": "Er bestaat al een account met dezelfde identificatiegegevens (e-mail, telefoon, gebruikersnaam, ...). Meld je aan bij je bestaande account en koppel je sociale profiel in de instellingenpagina.",
4085
+ "identities.messages.4000028": "Je hebt geprobeerd in te loggen met {credential_identifier_hint}, dat al wordt gebruikt door een ander account. Je kunt inloggen met {available_credential_types_list}. Je kunt inloggen met een van de volgende sociale aanmeldingsproviders: {Available_oidc_providers_list}.",
4086
+ "identities.messages.4000029": "moet gelijk zijn aan constante {expected}",
4087
+ "identities.messages.4000030": "constante mislukt",
4088
+ "identities.messages.4000031": "Het wachtwoord kan niet worden gebruikt omdat het te veel lijkt op de identificatiegegevens.",
4089
+ "identities.messages.4000032": "Het wachtwoord moet minstens {min_length} tekens lang zijn, maar is {actual_length}.",
4090
+ "identities.messages.4000033": "Het wachtwoord mag hoogstens {max_length} tekens lang zijn, maar is {actual_length}.",
4091
+ "identities.messages.4000034": "Het wachtwoord is gevonden in datalekken en mag niet langer worden gebruikt.",
4092
+ "identities.messages.4000035": "Dit account bestaat niet of heeft geen aanmelding met code ingesteld.",
4093
+ "identities.messages.4000036": "De verstrekte kenmerken komen niet overeen met de eerder geassocieerde kenmerken met deze stroom.",
4094
+ "identities.messages.4010001": "De aanmeldingsstroom is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
4095
+ "identities.messages.4010002": "Kon geen strategie vinden om mee in te loggen. Heb je het formulier correct ingevuld?",
4096
+ "identities.messages.4010003": "Kon geen strategie vinden om je mee aan te melden. Heb je het formulier correct ingevuld?",
4097
+ "identities.messages.4010004": "Kon geen strategie vinden om je instellingen bij te werken. Heb je het formulier correct ingevuld?",
4098
+ "identities.messages.4010005": "Kon geen strategie vinden om je account mee te herstellen. Heb je het formulier correct ingevuld?",
4099
+ "identities.messages.4010006": "Kon geen strategie vinden om je account mee te verifi\xEBren. Heb je het formulier correct ingevuld?",
4100
+ "identities.messages.4010007": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
4101
+ "identities.messages.4010008": "De aanmeldingscode is ongeldig of is al gebruikt. Probeer het opnieuw.",
4102
+ "identities.messages.4040001": "De registratie flowis verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
4103
+ "identities.messages.4040002": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
4104
+ "identities.messages.4040003": "De registratiecode is ongeldig of is al gebruikt. Probeer het opnieuw.",
4105
+ "identities.messages.4050001": "De instellingen flow is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
4106
+ "identities.messages.4060001": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
4107
+ "identities.messages.4060002": "De herstel flow heeft een fout bereikt en moet opnieuw worden geprobeerd.",
4108
+ "identities.messages.4060004": "De hersteltoken is ongeldig of is al gebruikt. Probeer de flow opnieuw.",
4109
+ "identities.messages.4060005": "De herstel flow is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
4110
+ "identities.messages.4060006": "De herstelcode is ongeldig of is al gebruikt. Probeer het opnieuw.",
4111
+ "identities.messages.4070001": "De verificatietoken is ongeldig of is al gebruikt. Probeer de flow opnieuw.",
4112
+ "identities.messages.4070002": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
4113
+ "identities.messages.4070003": "De verificatie flow heeft een fout bereikt en moet opnieuw worden geprobeerd.",
4114
+ "identities.messages.4070005": "De verificatie flow is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
4115
+ "identities.messages.4070006": "De verificatiecode is ongeldig of is al gebruikt. Probeer het opnieuw.",
4116
+ "identities.messages.5000001": "{reason}",
4117
+ "login.forgot-password": "Wachtwoord vergeten?",
4118
+ "login.logged-in-as-label": "Je bent ingelogd als:",
4119
+ "login.logout-button": "Uitloggen",
4120
+ "login.logout-label": "Er is iets mis?",
4121
+ "login.registration-button": "Registreren",
4122
+ "login.registration-label": "Heb je nog geen account?",
4123
+ "login.subtitle-oauth2": "Om te authenticeren bij {clientName}",
4124
+ "login.title": "Inloggen",
4125
+ "login.title-aal2": "Tweefactorauthenticatie",
4126
+ "login.subtitle-aal2": "Kies een manier om uw tweefactorauthenticatie te voltooien",
4127
+ "login.code.subtitle": "Er wordt een verificatiecode per e-mail verzonden",
4128
+ "login.webauthn.subtitle": "Bereid uw WebAuthN-apparaat voor",
4129
+ "login.totp.subtitle": "Voer de code in die door uw Authenticator-app is gegenereerd",
4130
+ "login.lookup_secret.subtitle": "Voer een van uw 8-cijferige back-up herstelcodes in",
4131
+ "login.title-refresh": "Bevestig dat jij het bent",
4132
+ "login.2fa.go-back": "Werkt er iets niet?",
4133
+ "login.2fa.go-back.link": "Ga terug",
4134
+ "login.2fa.method.go-back": "Kies een andere methode",
4135
+ "logout.accept-button": "Ja",
4136
+ "logout.reject-button": "Nee",
4137
+ "logout.title": "Wil je uitloggen?",
4138
+ "recovery.login-button": "Inloggen",
4139
+ "recovery.login-label": "Herinner je je inloggegevens?",
4140
+ "recovery.title": "Herstel je account",
4141
+ "registration.login-button": "Inloggen",
4142
+ "registration.login-label": "Heb je al een account?",
4143
+ "registration.subtitle-oauth2": "Om te authenticeren bij {clientName}",
4144
+ "registration.title": "Registreer een account",
4145
+ "settings.navigation-back-button": "Ga terug",
4146
+ "settings.navigation-backup-codes": "2FA Backupcodes",
4147
+ "settings.navigation-logout": "Uitloggen",
4148
+ "settings.navigation-oidc": "Sociaal Inloggen",
4149
+ "settings.navigation-password": "Wachtwoord",
4150
+ "settings.navigation-profile": "Profiel",
4151
+ "settings.navigation-totp": "Authenticator App",
4152
+ "settings.navigation-webauthn": "Hardware Tokens",
4153
+ "settings.navigation-passkey": "Passkeys",
4154
+ "settings.subtitle-instructions": "Hier kun je instellingen beheren die verband houden met je account. Houd er rekening mee dat bepaalde acties vereisen dat je opnieuw wordt geauthenticeerd.",
4155
+ "settings.title": "Accountinstellingen",
4156
+ "verification.registration-button": "Registreren",
4157
+ "verification.registration-label": "Heb je nog geen account?",
4158
+ "verification.title": "Verifieer je account",
4159
+ "verification.back-button": "Ga terug",
4160
+ "two-step.code.description": "Een verificatiecode wordt naar uw e-mail gestuurd",
4161
+ "two-step.code.title": "E-mailcode",
4162
+ "two-step.passkey.description": "Gebruik de vingerafdruk- of gezichtsherkenning van uw apparaat",
4163
+ "two-step.passkey.title": "Toegangscode (aanbevolen)",
4164
+ "two-step.password.description": "Voer uw wachtwoord in dat is gekoppeld aan uw account",
4165
+ "two-step.password.title": "Wachtwoord",
4166
+ "two-step.webauthn.title": "Beveiligingssleutel",
4167
+ "two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifi\xEBren",
4168
+ "two-step.totp.title": "Gebruik uw Authenticator-app (TOTP)",
4169
+ "two-step.totp.description": "Gebruik een 6-cijferige eenmalige code van uw authenticator-app",
4170
+ "two-step.lookup_secret.title": "Herstelcode",
4171
+ "two-step.lookup_secret.description": "Gebruik een van uw 8-cijferige back-upcodes om te authenticeren",
4172
+ "identities.messages.1010023": "",
4173
+ "identities.messages.1070014": "",
4174
+ "identities.messages.1070015": "",
4175
+ "identities.messages.4000038": "",
4176
+ "login.cancel-button": "",
4177
+ "login.cancel-label": "",
4178
+ "identities.messages.1010016": "",
4179
+ "identities.messages.1010017": "",
4180
+ "identities.messages.1010018": "",
4181
+ "identities.messages.1010019": "",
4182
+ "identities.messages.1010020": "",
4183
+ "identities.messages.1010021": "",
4184
+ "identities.messages.1010022": "",
4185
+ "identities.messages.1040007": "",
4186
+ "identities.messages.1040008": "",
4187
+ "identities.messages.1040009": "",
4188
+ "identities.messages.1050019": "",
4189
+ "identities.messages.1050020": "",
4190
+ "identities.messages.4000037": "",
4191
+ "identities.messages.4010009": "",
4192
+ "identities.messages.4010010": "",
4193
+ "input.placeholder": "",
4194
+ "card.header.description.login": "",
4195
+ "card.header.description.registration": "",
4196
+ "card.header.parts.code": "",
4197
+ "card.header.parts.identifier-first": "",
4198
+ "card.header.parts.oidc": "",
4199
+ "card.header.parts.passkey": "",
4200
+ "card.header.parts.password.login": "",
4201
+ "card.header.parts.password.registration": "",
4202
+ "card.header.parts.webauthn": "",
4203
+ "forms.label.forgot-password": "",
4204
+ "login.subtitle": "",
4205
+ "login.subtitle-refresh": "",
4206
+ "misc.or": "",
4207
+ "recovery.subtitle": "",
4208
+ "registration.subtitle": "",
4209
+ "settings.subtitle": "",
4210
+ "verification.subtitle": "",
4211
+ "settings.totp.info.linked": "U heeft momenteel een authenticator-app verbonden.",
4212
+ "settings.totp.info.not-linked": "Om te activeren, scan de QR-code met je authenticator en voer de code in.",
4213
+ "settings.totp.title": "",
4214
+ "settings.totp.description": "Voeg een TOTP Authenticator App toe aan uw account om de beveiliging van uw account te verbeteren. Populaire Authenticator Apps zijn LastPass en Google Authenticator.",
4215
+ "settings.lookup_secret.description": "",
4216
+ "settings.lookup_secret.title": "",
4217
+ "settings.navigation.title": "",
4218
+ "settings.oidc.description": "",
4219
+ "settings.oidc.info": "",
4220
+ "settings.oidc.title": "",
4221
+ "settings.passkey.description": "",
4222
+ "settings.passkey.info": "",
4223
+ "settings.passkey.title": "",
4224
+ "settings.password.description": "",
4225
+ "settings.password.title": "",
4226
+ "settings.profile.description": "",
4227
+ "settings.profile.title": "",
4228
+ "settings.title-lookup-secret": "",
4229
+ "settings.title-navigation": "",
4230
+ "settings.title-oidc": "",
4231
+ "settings.title-passkey": "",
4232
+ "settings.title-password": "",
4233
+ "settings.title-profile": "",
4234
+ "settings.title-totp": "",
4235
+ "settings.title-webauthn": "",
4236
+ "settings.webauthn.description": "",
4237
+ "settings.webauthn.info": "",
4238
+ "settings.webauthn.title": "",
4239
+ "card.footer.select-another-method": "",
4240
+ "account-linking.title": "",
4241
+ "property.code": "",
4242
+ "property.email": "",
4243
+ "property.identifier": "",
4244
+ "property.password": "",
4245
+ "property.phone": "",
4246
+ "property.username": "",
4247
+ "error.action.go-back": "",
4248
+ "error.footer.copy": "",
4249
+ "error.footer.text": "",
4250
+ "error.title.what-can-i-do": "",
4251
+ "error.title.what-happened": "",
4252
+ "error.instructions": ""
4253
+ };
4254
+
4255
+ // src/locales/pl.json
4256
+ var pl_default = {
4257
+ "consent.action-accept": "Zezw\xF3l",
4258
+ "consent.action-reject": "Odm\xF3w",
4259
+ "consent.description": "Udzielaj uprawnie\u0144 tylko wtedy, gdy ufasz tej witrynie lub aplikacji. Nie musisz akceptowa\u0107 wszystkich uprawnie\u0144.",
4260
+ "consent.privacy-policy-label": "Polityka Prywatno\u015Bci",
4261
+ "consent.remember-label": "Zapami\u0119taj t\u0119 decyzj\u0119. Aplikacja nie b\u0119dzie mog\u0142a prosi\u0107 o dodatkowe uprawnienia bez Twojej zgody.",
4262
+ "consent.remember-tooltip": "zapami\u0119taj moj\u0105 decyzj\u0119",
4263
+ "consent.requested-permissions-label": "Aplikacja \u017C\u0105da dost\u0119pu do nast\u0119puj\u0105cych uprawnie\u0144:",
4264
+ "consent.terms-of-service-label": "Warunki \u015Bwiadczenia us\u0142ug",
4265
+ "error.back-button": "Cofnij",
4266
+ "error.description": "Wyst\u0105pi\u0142 b\u0142\u0105d z nast\u0119puj\u0105cym komunikatem:",
4267
+ "error.support-email-link": "Je\u017Celi problem nie ust\u0119puje skontaktuj si\u0119 z <a>{contactSupportEmail}</a>",
4268
+ "error.title": "Wyst\u0105pi\u0142 b\u0142\u0105d",
4269
+ "error.title-internal-server-error": "Wewn\u0119trzny b\u0142\u0105d serwera",
4270
+ "error.title-not-found": "404 - Nie odnaleziono takiej strony",
4271
+ "identities.messages.1010001": "Zaloguj si\u0119",
4272
+ "identities.messages.1010002": "Zaloguj si\u0119 za pomoc\u0105 {provider}",
4273
+ "identities.messages.1010003": "Potwierd\u017A t\u0119 czynno\u015B\u0107, potwierdzaj\u0105c, \u017Ce to Ty.",
4274
+ "identities.messages.1010004": "Uko\u0144cz drugi etap uwierzytelnienia.",
4275
+ "identities.messages.1010005": "Zweryifkuj",
4276
+ "identities.messages.1010006": "Kod autentykacyjny",
4277
+ "identities.messages.1010007": "Zapasowe kody odzyskiwania",
4278
+ "identities.messages.1010008": "Kontynuuj z kluczem sprz\u0119towym",
4279
+ "identities.messages.1010009": "Kontynuuj",
4280
+ "identities.messages.1010010": "Kontynuuj",
4281
+ "identities.messages.1010011": "Kontynuuj za pomoc\u0105 klucza bezpiecze\u0144stwa",
4282
+ "identities.messages.1010012": "Przygotuj swoje urz\u0105dzenie WebAuthn (np. klucz bezpiecze\u0144stwa, czytnik biometryczny, ...) a nast\u0119pnie kliknij kontynuuj.",
4283
+ "identities.messages.1010013": "Kontynuuj",
4284
+ "identities.messages.1010014": "Email zawieraj\u0105cy kod zosta\u0142 wys\u0142any na wskazany adres email. Je\u017Celi nie otrzymasz wiadomo\u015Bci to sprawd\u017A pisowni\u0119 adresu i spr\xF3buj zalogowa\u0107 si\u0119 ponownie.",
4285
+ "identities.messages.1010015": "Zaloguj si\u0119 kodem",
4286
+ "identities.messages.1040001": "Zarejestruj si\u0119",
4287
+ "identities.messages.1040002": "Zarejestruj si\u0119 za pomoc\u0105 {provider}",
4288
+ "identities.messages.1040003": "Kontynuuj",
4289
+ "identities.messages.1040004": "Zarejestruj si\u0119 kluczem bezpiecze\u0144stwa",
4290
+ "identities.messages.1040005": "Email zawieraj\u0105cy kod zosta\u0142 wys\u0142any na wskazany adres email. Je\u017Celi nie otrzymasz wiadomo\u015Bci to sprawd\u017A pisowni\u0119 adresu i pon\xF3w rejestracj\u0119.",
4291
+ "identities.messages.1040006": "Zarejestruj si\u0119 kodem",
4292
+ "identities.messages.1050001": "Twoje zmiany zosta\u0142y zapisane!",
4293
+ "identities.messages.1050002": "Po\u0142\u0105cz {provider}",
4294
+ "identities.messages.1050003": "Od\u0142\u0105cz {provider}",
4295
+ "identities.messages.1050004": "Od\u0142\u0105cz Apikacj\u0119 Autentykator TOTP",
4296
+ "identities.messages.1050005": "Kod QR aplikacji Autentykator",
4297
+ "identities.messages.1050006": "{secret}",
4298
+ "identities.messages.1050007": "Poka\u017C zapasowe kody odzyskiwania",
4299
+ "identities.messages.1050008": "Wygeneruj nowe zapasowe kody odzyskiwania",
4300
+ "identities.messages.1050009": "{secret}",
4301
+ "identities.messages.1050010": "To s\u0105 Twoje zapasowe kody odzyskiwania. Trzymaj je w bezpiecznym miejscu!",
4302
+ "identities.messages.1050011": "Potwierd\u017A zapasowe kody odzyskiwania",
4303
+ "identities.messages.1050012": "Dodaj klucz bezpiecze\u0144stwa",
4304
+ "identities.messages.1050013": "Nazwa klucza bezpiecze\u0144stwa",
4305
+ "identities.messages.1050014": "<del>Wykorzystany</del>",
4306
+ "identities.messages.1050015": "{secrets_list}",
4307
+ "identities.messages.1050016": "Wy\u0142\u0105cz t\u0105 metod\u0119",
4308
+ "identities.messages.1050017": "To jest sekret twojej aplikacji autentykator. U\u017Cyj go je\u017Celi nie mo\u017Cesz zeskanowa\u0107 kodu QR.",
4309
+ "identities.messages.1050018": 'Usu\u0144 klucz bezpiecze\u0144stwa "{display_name}"',
4310
+ "identities.messages.1060001": "Pomy\u015Blnie odzyska\u0142e\u015B swoje konto. Prosz\u0119 zmie\u0144 swoj\u0119 has\u0142o lub ustanowi\u0107 alternatywn\u0105 method\u0119 logowania (np. logowanie zewn\u0119trzne) w ci\u0105gu najbli\u017Cszych {privileged_session_expires_at_unix_until_minutes} minut.",
4311
+ "identities.messages.1060002": "Email zawieraj\u0105cy link odzyskiwania zosta\u0142 wys\u0142any na wskazany adres email. Je\u017Celi nie otrzymasz wiadomo\u015Bci to sprawd\u017A pisowni\u0119 adresu i upewnij si\u0119 \u017Ce u\u017Cywasz adresu u\u017Cytego do rejestracji.",
4312
+ "identities.messages.1060003": "Email zawieraj\u0105cy kod odzyskiwania zosta\u0142 wys\u0142any na wskazany adres email. Je\u017Celi nie otrzymasz wiadomo\u015Bci to sprawd\u017A pisowni\u0119 adresu i upewnij si\u0119 \u017Ce u\u017Cywasz adresu u\u017Cytego do rejestracji.",
4313
+ "identities.messages.1070001": "Has\u0142o",
4314
+ "identities.messages.1070002": "{title}",
4315
+ "identities.messages.1070003": "Zapisz",
4316
+ "identities.messages.1070004": "ID",
4317
+ "identities.messages.1070005": "Wy\u015Blij",
4318
+ "identities.messages.1070006": "Zweryfikuj kod",
4319
+ "identities.messages.1070007": "Email",
4320
+ "identities.messages.1070008": "Wy\u015Blij kod ponownie",
4321
+ "identities.messages.1070009": "Kontynuuj",
4322
+ "identities.messages.1070010": "Kod odzyskiwania",
4323
+ "identities.messages.1070011": "Kod weryfikacyjny",
4324
+ "identities.messages.1070012": "Kod rejestracji",
4325
+ "identities.messages.1070013": "Kod logowania",
4326
+ "identities.messages.1080001": "Email zawieraj\u0105cy link weryfikacyjny zosta\u0142 wys\u0142any na wskazany adres email. Je\u017Celi nie otrzymasz wiadomo\u015Bci to sprawd\u017A pisowni\u0119 adresu i upewnij si\u0119 \u017Ce u\u017Cywasz adresu u\u017Cytego do rejestracji.",
4327
+ "identities.messages.1080002": "Poprawnie zweryfikowano adres email.",
4328
+ "identities.messages.1080003": "Email zawieraj\u0105cy kod weryfikacyjny zosta\u0142 wys\u0142any na wskazany adres email. Je\u017Celi nie otrzymasz wiadomo\u015Bci to sprawd\u017A pisowni\u0119 adresu i upewnij si\u0119 \u017Ce u\u017Cywasz adresu u\u017Cytego do rejestracji.",
4329
+ "identities.messages.4000001": "{reason}",
4330
+ "identities.messages.4000002": "Brakuje pola {property}.",
4331
+ "identities.messages.4000003": "d\u0142ugo\u015B\u0107 musi by\u0107 >= {min_length}, otrzymano {actual_length}",
4332
+ "identities.messages.4000004": 'nie pasuje do wzoru "{pattern}"',
4333
+ "identities.messages.4000005": "Has\u0142o nie mo\u017Ce by\u0107 u\u017Cyte poniewa\u017C {reason}.",
4334
+ "identities.messages.4000006": "Podane po\u015Bwiadczenia s\u0105 nieprawid\u0142owe, sprawd\u017A czy nie ma liter\xF3wek w twoim ha\u015Ble, nazwie u\u017Cytkownika, adresie email lub numerze telefonu.",
4335
+ "identities.messages.4000007": "Istnieje ju\u017C konto o takim samym identyfikatorze (email, telefon, nazwa u\u017Cytkownika, ...).",
4336
+ "identities.messages.4000008": "Podany kod autentykacyjny jest nieprawid\u0142owy, spr\xF3buj ponownie.",
4337
+ "identities.messages.4000009": "Nie odnaleziono \u017Cadnych identyfikator\xF3w logowania. Czy zapomnia\u0142e\u015B je ustawi\u0107? Mo\u017Ce te\u017C by\u0107 to spowodowane nieprawid\u0142ow\u0105 konfiguracj\u0105 serwera.",
4338
+ "identities.messages.4000010": "Konto nie jest jeszcze aktywne. Czy zapomnia\u0142e\u015B/\u0142a\u015B zweryfikowa\u0107 sw\xF3j adres email?",
4339
+ "identities.messages.4000011": "Nie ustanowiono urz\u0105dzenia TOTP.",
4340
+ "identities.messages.4000012": "Ten kod odzyskiwania jest ju\u017C wykorzystany.",
4341
+ "identities.messages.4000013": "Nie ustanowiono urz\u0105dzenia WebAuthn.",
4342
+ "identities.messages.4000014": "Nie ustanowiono kod\xF3w odzyskiwania.",
4343
+ "identities.messages.4000015": "To konto nie istnieje lub nie zezwala na logowanie kluczem odzyskiwania.",
4344
+ "identities.messages.4000016": "Kod odzyskiwania jest nieprawid\u0142owy.",
4345
+ "identities.messages.4000017": "d\u0142ugo\u015Bc musi by\u0107 <= {max_length}, otrzymano {actual_length}",
4346
+ "identities.messages.4000018": "musi by\u0107 >= {minimum} otrzymano {actual}",
4347
+ "identities.messages.4000019": "musi by\u0107 > {minimum} otrzymano {actual}",
4348
+ "identities.messages.4000020": "musi by\u0107 <= {maximum} otrzymano {actual}",
4349
+ "identities.messages.4000021": "musi by\u0107 < {maximum} otrzymano {actual}",
4350
+ "identities.messages.4000022": "{actual} nie jest wielokrotno\u015Bci\u0105 {base}",
4351
+ "identities.messages.4000023": "maksymalnie {max_items} wpis\xF3w, otrzymano {actual_items} wpis\xF3w",
4352
+ "identities.messages.4000024": "minimum {min_items} wpis\xF3w, otrzymano {actual_items} wpis\xF3w",
4353
+ "identities.messages.4000025": "wpis\xF3w w indeksie {index_a} i {index_b} s\u0105 takie same",
4354
+ "identities.messages.4000026": "spodziewano {allowed_types_list}, otrzymano {actual_type}",
4355
+ "identities.messages.4000027": "Istnieje ju\u017C konto o takim samym identyfikatorze (email, telefon, nazwa u\u017Cytkownika, ...). Zaloguj si\u0119 do swojego konta i po\u0142\u0105cz sw\xF3j profil zewn\u0119trzny na stronie ustawie\u0144.",
4356
+ "identities.messages.4000028": "Pr\xF3bowano si\u0119 zalogowa\u0107 za pomoc\u0105 {credential_identifier_hint} kt\xF3ry jest ju\u017C u\u017Cywany przez inne konto. Mo\u017Cesz si\u0119 zalogowa\u0107 za pomoc\u0105 {available_credential_types_list}. Mo\u017Cesz si\u0119 zalogowa\u0107 za pomoc\u0105 nast\u0119puj\u0105cych zewn\u0119trznch dostawc\xF3w logowania: {Available_oidc_providers_list}.",
4357
+ "identities.messages.4000029": "musi by\u0107 r\xF3wne sta\u0142ej {expected}",
4358
+ "identities.messages.4000030": "const nie powiod\u0142a si\u0119",
4359
+ "identities.messages.4000031": "Has\u0142o nie mo\u017Ce by\u0107 u\u017Cyt\u0119 poniewa\u017C jest zbyt podobne do identyfikatora.",
4360
+ "identities.messages.4000032": "Has\u0142o musi by\u0107 d\u0142ugie na co najmniej {min_length} znak\xF3w, wprowadzono {actual_length} znak\xF3w.",
4361
+ "identities.messages.4000033": "Has\u0142o musi by\u0107 nie d\u0142u\u017Csze ni\u017C {max_length} znak\xF3w, wprowadzono {actual_length} znak\xF3w.",
4362
+ "identities.messages.4000034": "Has\u0142o wyciek\u0142o w wyniku naruszenia danych i nie mo\u017Ce by\u0107 u\u017Cyte.",
4363
+ "identities.messages.4000035": "To konto nie istnieje lub nie pozwala na logowanie kodem.",
4364
+ "identities.messages.4000036": "Podane atrybuty nie odpowiadaj\u0105 atrybutom wcze\u015Bniej powi\u0105zanym z tym procesem.",
4365
+ "identities.messages.4010001": "Proces logowania wygas\u0142 {expired_at_unix_since_minutes} minut temu, spr\xF3buj ponownie.",
4366
+ "identities.messages.4010002": "Nie odnaleziono strategii do logowania. Czy formularz zosta\u0142 poprawnie wype\u0142niony?",
4367
+ "identities.messages.4010003": "Nie odnaleziono strategii do rejestracji. Czy formularz zosta\u0142 poprawnie wype\u0142niony?",
4368
+ "identities.messages.4010004": "Nie odnaleziono strategii do aktualizacji ustawie\u0144. Czy formularz zosta\u0142 poprawnie wype\u0142niony?",
4369
+ "identities.messages.4010005": "Nie odnaleziono strategii do odzyskiwania konta. Czy formularz zosta\u0142 poprawnie wype\u0142niony?",
4370
+ "identities.messages.4010006": "Nie odnaleziono strategii do weryfikacj konta. Czy formularz zosta\u0142 poprawnie wype\u0142niony?",
4371
+ "identities.messages.4010007": "\u017B\u0105danie zosta\u0142o poprawnie zako\u0144czone i nie mo\u017Ce by\u0107 ponowione.",
4372
+ "identities.messages.4010008": "Kod logowania jest niepoprawny lub zosta\u0142 wykorzystany. Spr\xF3buj ponownie.",
4373
+ "identities.messages.4040001": "Proces rejestracji wygas\u0142 {expired_at_unix_since_minutes} minut temu, spr\xF3buj ponownie.",
4374
+ "identities.messages.4040002": "\u017B\u0105danie zosta\u0142o poprawnie zako\u0144czone i nie mo\u017Ce by\u0107 ponowione.",
4375
+ "identities.messages.4040003": "Kod rejestracji jest niepoprawny lub zosta\u0142 wykorzystany. Spr\xF3buj ponownie.",
4376
+ "identities.messages.4050001": "Proces ustawie\u0144 wygas\u0142 {expired_at_unix_since_minutes} minut temu, spr\xF3buj ponownie.",
4377
+ "identities.messages.4060001": "\u017B\u0105danie zosta\u0142o poprawnie zako\u0144czone i nie mo\u017Ce by\u0107 ponowione.",
4378
+ "identities.messages.4060002": "Proces odzyskiwania jest niepoprawny i musi zosta\u0107 ponowiony.",
4379
+ "identities.messages.4060004": "Token odzyskiwania jest niepoprawny lub zosta\u0142 wykorzystany. Prosz\u0119 ponowi\u0107 proces.",
4380
+ "identities.messages.4060005": "Proces odzyskiwania wygas\u0142 {expired_at_unix_since_minutes} minut temu, spr\xF3buj ponownie.",
4381
+ "identities.messages.4060006": "Kod odzyskiwania jest nieprawid\u0142owy lub zosta\u0142 wykorzystany. Spr\xF3buj ponownie.",
4382
+ "identities.messages.4070001": "Token weryfikacyjny jest nieprawid\u0142owy lub zosta\u0142 wykorzystany. Prosz\u0119 ponowi\u0107 proces.",
4383
+ "identities.messages.4070002": "\u017B\u0105danie zosta\u0142o poprawnie zako\u0144czone i nie mo\u017Ce by\u0107 ponowione.",
4384
+ "identities.messages.4070003": "Proces weryfikacyjny jest nieprawid\u0142owy i musi zosta\u0107 ponowiony.",
4385
+ "identities.messages.4070005": "Proces weryfikacyjny wygas\u0142 {expired_at_unix_since_minutes} minut temu, spr\xF3buj ponownie.",
4386
+ "identities.messages.4070006": "Kod weryfikacyjny jest nieprawid\u0142owy lub zosta\u0142 wykorzystany. Spr\xF3buj ponownie.",
4387
+ "identities.messages.5000001": "{reason}",
4388
+ "login.forgot-password": "Zapomnia\u0142e\u015B/\u0142a\u015B has\u0142a?",
4389
+ "login.logged-in-as-label": "Jeste\u015B zalogowany jako:",
4390
+ "login.logout-button": "Wyloguj",
4391
+ "login.logout-label": "Co\u015B nie dzia\u0142a?",
4392
+ "login.registration-button": "Zarejestruj si\u0119",
4393
+ "login.registration-label": "Nie posiadasz konta?",
4394
+ "login.subtitle-oauth2": "Do autentykacji {clientName}",
4395
+ "login.title": "Zaloguj si\u0119",
4396
+ "login.title-aal2": "Uwierzytelnianie dwusk\u0142adnikowe",
4397
+ "login.subtitle-aal2": "Wybierz spos\xF3b, aby zako\u0144czy\u0107 uwierzytelnianie dwusk\u0142adnikowe",
4398
+ "login.code.subtitle": "Kod weryfikacyjny zostanie wys\u0142any e-mailem",
4399
+ "login.webauthn.subtitle": "Prosz\u0119 przygotowa\u0107 urz\u0105dzenie WebAuthN",
4400
+ "login.totp.subtitle": "Prosz\u0119 wprowadzi\u0107 kod wygenerowany przez Twoj\u0105 aplikacj\u0119 uwierzytelniaj\u0105c\u0105",
4401
+ "login.lookup_secret.subtitle": "Prosz\u0119 wprowadzi\u0107 jeden z Twoich 8-cyfrowych kod\xF3w odzyskiwania zapasowego",
4402
+ "login.title-refresh": "Potwierd\u017A \u017Ce to Ty",
4403
+ "login.2fa.go-back": "Co\u015B nie dzia\u0142a?",
4404
+ "login.2fa.go-back.link": "Wr\xF3\u0107",
4405
+ "login.2fa.method.go-back": "Wybierz inn\u0105 metod\u0119",
4406
+ "logout.accept-button": "Tak",
4407
+ "logout.reject-button": "Nie",
4408
+ "logout.title": "Czy chcesz si\u0119 wylogowa\u0107?",
4409
+ "recovery.login-button": "Zaloguj si\u0119",
4410
+ "recovery.login-label": "Pami\u0119tasz dane logowania?",
4411
+ "recovery.title": "Odzyskaj konto",
4412
+ "registration.login-button": "Zaloguj si\u0119",
4413
+ "registration.login-label": "Posiadasz ju\u017C konto?",
4414
+ "registration.subtitle-oauth2": "Do autentykacji {clientName}",
4415
+ "registration.title": "Zarejestruj konto",
4416
+ "settings.navigation-back-button": "Cofnij",
4417
+ "settings.navigation-backup-codes": "Kody zapasowe 2FA",
4418
+ "settings.navigation-logout": "Wyloguj",
4419
+ "settings.navigation-oidc": "Zewn\u0119trzne logowanie",
4420
+ "settings.navigation-password": "Has\u0142o",
4421
+ "settings.navigation-profile": "Profil",
4422
+ "settings.navigation-totp": "Aplikacja Autentykator",
4423
+ "settings.navigation-webauthn": "Tokeny Sprz\u0119towe",
4424
+ "settings.navigation-passkey": "Passkeys",
4425
+ "settings.subtitle-instructions": "Tutaj mo\u017Cesz zarz\u0105dza\u0107 ustawieniami zwi\u0105zanymi z Twoim kontem. Miej na uwadze \u017Ce niekt\xF3re akcje mog\u0105 wymaga\u0107 ponownej uwierzytelnienia.",
4426
+ "settings.title": "Ustawienia Konta",
4427
+ "verification.registration-button": "Zarejestruj si\u0119",
4428
+ "verification.registration-label": "Nie posiadasz konta?",
4429
+ "verification.title": "Zweryfikuj konto",
4430
+ "verification.back-button": "Cofnij",
4431
+ "two-step.code.description": "Kod weryfikacyjny zostanie wys\u0142any na Tw\xF3j adres email.",
4432
+ "two-step.code.title": "Kod email",
4433
+ "two-step.passkey.description": "U\u017Cyj swojego urz\u0105dzenia lub funkcji rozpoznawania twarzy na swoim urz\u0105dzeniu.",
4434
+ "two-step.passkey.title": "Klucz dost\u0119pu (zalecany)",
4435
+ "two-step.password.description": "Wprowad\u017A has\u0142o powi\u0105zane z twoim kontem",
4436
+ "two-step.password.title": "Has\u0142o",
4437
+ "two-step.webauthn.title": "Klucz bezpiecze\u0144stwa",
4438
+ "two-step.webauthn.description": "U\u017Cyj swojego klucza bezpiecze\u0144stwa do uwierzytelnienia",
4439
+ "two-step.totp.title": "U\u017Cyj swojej aplikacji uwierzytelniaj\u0105cej (TOTP)",
4440
+ "two-step.totp.description": "U\u017Cyj 6-cyfrowego jednorazowego kodu z Twojej aplikacji uwierzytelniaj\u0105cej",
4441
+ "two-step.lookup_secret.title": "Kod odzyskiwania zapasowego",
4442
+ "two-step.lookup_secret.description": "U\u017Cyj jednego z Twoich 8-cyfrowych kod\xF3w zapasowych, aby si\u0119 uwierzytelni\u0107",
4443
+ "identities.messages.1010016": "",
4444
+ "identities.messages.1010017": "",
4445
+ "identities.messages.1010018": "",
4446
+ "identities.messages.1010019": "",
4447
+ "identities.messages.1010020": "",
4448
+ "identities.messages.1010021": "",
4449
+ "identities.messages.1010022": "",
4450
+ "identities.messages.1010023": "",
4451
+ "identities.messages.1040007": "",
4452
+ "identities.messages.1040008": "",
4453
+ "identities.messages.1040009": "",
4454
+ "identities.messages.1050019": "",
4455
+ "identities.messages.1050020": "",
4456
+ "identities.messages.1070014": "",
4457
+ "identities.messages.1070015": "",
4458
+ "identities.messages.4000037": "",
4459
+ "identities.messages.4000038": "",
4460
+ "identities.messages.4010009": "",
4461
+ "identities.messages.4010010": "",
4462
+ "login.cancel-button": "",
4463
+ "login.cancel-label": "",
4464
+ "input.placeholder": "",
4465
+ "card.header.description.login": "",
4466
+ "card.header.description.registration": "",
4467
+ "card.header.parts.code": "",
4468
+ "card.header.parts.identifier-first": "",
4469
+ "card.header.parts.oidc": "",
4470
+ "card.header.parts.passkey": "",
4471
+ "card.header.parts.password.login": "",
4472
+ "card.header.parts.password.registration": "",
4473
+ "card.header.parts.webauthn": "",
4474
+ "forms.label.forgot-password": "",
4475
+ "login.subtitle": "",
4476
+ "login.subtitle-refresh": "",
4477
+ "misc.or": "",
4478
+ "recovery.subtitle": "",
4479
+ "registration.subtitle": "",
4480
+ "settings.subtitle": "",
4481
+ "verification.subtitle": "",
4482
+ "settings.totp.info.linked": "Aktualnie masz pod\u0142\u0105czon\u0105 aplikacj\u0119 uwierzytelniaj\u0105c\u0105.",
4483
+ "settings.totp.info.not-linked": "Aby w\u0142\u0105czy\u0107, zeskanuj kod QR za pomoc\u0105 swojego uwierzytelniaj\u0105cego i wprowad\u017A kod.",
4484
+ "settings.totp.title": "",
4485
+ "settings.totp.description": "Dodaj aplikacj\u0119 do uwierzytelniania TOTP do swojego konta, aby poprawi\u0107 bezpiecze\u0144stwo swojego konta. Popularne aplikacje uwierzytelniaj\u0105ce to LastPass i Google Authenticator.",
4486
+ "settings.lookup_secret.description": "",
4487
+ "settings.lookup_secret.title": "",
4488
+ "settings.navigation.title": "",
4489
+ "settings.oidc.description": "",
4490
+ "settings.oidc.info": "",
4491
+ "settings.oidc.title": "",
4492
+ "settings.passkey.description": "",
4493
+ "settings.passkey.info": "",
4494
+ "settings.passkey.title": "",
4495
+ "settings.password.description": "",
4496
+ "settings.password.title": "",
4497
+ "settings.profile.description": "",
4498
+ "settings.profile.title": "",
4499
+ "settings.title-lookup-secret": "",
4500
+ "settings.title-navigation": "",
4501
+ "settings.title-oidc": "",
4502
+ "settings.title-passkey": "",
4503
+ "settings.title-password": "",
4504
+ "settings.title-profile": "",
4505
+ "settings.title-totp": "",
4506
+ "settings.title-webauthn": "",
4507
+ "settings.webauthn.description": "",
4508
+ "settings.webauthn.info": "",
4509
+ "settings.webauthn.title": "",
4510
+ "card.footer.select-another-method": "",
4511
+ "account-linking.title": "",
4512
+ "property.code": "",
4513
+ "property.email": "",
4514
+ "property.password": "",
4515
+ "property.phone": "",
4516
+ "property.username": "",
4517
+ "property.identifier": "",
4518
+ "error.action.go-back": "",
4519
+ "error.footer.copy": "",
4520
+ "error.footer.text": "",
4521
+ "error.title.what-can-i-do": "",
4522
+ "error.title.what-happened": "",
4523
+ "error.instructions": ""
4524
+ };
4525
+
4526
+ // src/locales/pt.json
4527
+ var pt_default = {
4528
+ "consent.action-accept": "Permitir",
4529
+ "consent.action-reject": "Rejeitar",
4530
+ "consent.description": "Conceda permiss\xF5es somente se confiar neste site ou aplica\xE7\xE3o. N\xE3o precisa aceitar todas as permiss\xF5es.",
4531
+ "consent.privacy-policy-label": "Pol\xEDtica de Privacidade",
4532
+ "consent.remember-label": "Lembrar decis\xE3o para a pr\xF3xima vez. A aplica\xE7\xE3o n\xE3o poder\xE1 solicitar permiss\xF5es adicionais sem o seu consentimento.",
4533
+ "consent.remember-tooltip": "lembrar minha decis\xE3o",
4534
+ "consent.requested-permissions-label": "A aplica\xE7\xE3o solicita acesso \xE0s seguintes permiss\xF5es:",
4535
+ "consent.terms-of-service-label": "Termos de Servi\xE7o",
4536
+ "error.back-button": "Voltar",
4537
+ "error.description": "Ocorreu um erro com a seguinte mensagem:",
4538
+ "error.support-email-link": "Se o problema persistir, entre em contato com <a>{contactSupportEmail}</a>",
4539
+ "error.title": "Ocorreu um erro",
4540
+ "error.title-internal-server-error": "Erro Interno do Servidor",
4541
+ "error.title-not-found": "404 - P\xE1gina n\xE3o encontrada",
4542
+ "identities.messages.1010001": "Entrar",
4543
+ "identities.messages.1010002": "Entrar com {provider}",
4544
+ "identities.messages.1010003": "Confirme esta a\xE7\xE3o e verifique que \xE9 voc\xEA.",
4545
+ "identities.messages.1010004": "Complete o segundo desafio de autentica\xE7\xE3o, por favor.",
4546
+ "identities.messages.1010005": "Verificar",
4547
+ "identities.messages.1010006": "C\xF3digo de Autentica\xE7\xE3o",
4548
+ "identities.messages.1010007": "C\xF3digo de Recupera\xE7\xE3o de Backup",
4549
+ "identities.messages.1010008": "Continuar com chave de hardware",
4550
+ "identities.messages.1010009": "Continuar",
4551
+ "identities.messages.1010010": "Continuar",
4552
+ "identities.messages.1010011": "Continuar com a chave de seguran\xE7a",
4553
+ "identities.messages.1010012": "Prepare o seu dispositivo WebAuthn (por exemplo, chave de seguran\xE7a, scanner biom\xE9trico, ...) e pressione continuar.",
4554
+ "identities.messages.1010013": "Continuar",
4555
+ "identities.messages.1010014": "Um e-mail com um c\xF3digo foi enviado para o endere\xE7o de e-mail introduzido. N\xE3o recebeu um e-mail? Verifique o endere\xE7o introduzido e efetue novamente o login.",
4556
+ "identities.messages.1010015": "Entrar com c\xF3digo",
4557
+ "identities.messages.1040001": "Registar",
4558
+ "identities.messages.1040002": "Registar com {provider}",
4559
+ "identities.messages.1040003": "Continuar",
4560
+ "identities.messages.1040004": "Registar com chave de seguran\xE7a",
4561
+ "identities.messages.1040005": "Um e-mail com o c\xF3digo foi enviado para o endere\xE7o de e-mail introduzido. N\xE3o recebeu um e-mail? Verifique a ortografia do endere\xE7o e registe-se novamente.",
4562
+ "identities.messages.1040006": "Registar com c\xF3digo",
4563
+ "identities.messages.1050001": "Altera\xE7\xF5es foram salvas com sucesso!",
4564
+ "identities.messages.1050002": "Vincular {provider}",
4565
+ "identities.messages.1050003": "Desvincular {provider}",
4566
+ "identities.messages.1050004": "Desvincular o Aplica\xE7\xE3o Autenticador TOTP",
4567
+ "identities.messages.1050005": "C\xF3digo QR da aplica\xE7\xE3o Autenticador",
4568
+ "identities.messages.1050006": "{secret}",
4569
+ "identities.messages.1050007": "Revelar c\xF3digos de recupera\xE7\xE3o de backup",
4570
+ "identities.messages.1050008": "Gerar novos c\xF3digos de recupera\xE7\xE3o de backup",
4571
+ "identities.messages.1050009": "{secret}",
4572
+ "identities.messages.1050010": "Os seus c\xF3digos de recupera\xE7\xE3o de backup. Guarde-os num local seguro!",
4573
+ "identities.messages.1050011": "Confirmar c\xF3digos de recupera\xE7\xE3o de backup",
4574
+ "identities.messages.1050012": "Adicionar chave de seguran\xE7a",
4575
+ "identities.messages.1050013": "Nome da chave de seguran\xE7a",
4576
+ "identities.messages.1050014": "<del>Usado</del>",
4577
+ "identities.messages.1050015": "{secrets_list}",
4578
+ "identities.messages.1050016": "Desativar este m\xE9todo",
4579
+ "identities.messages.1050017": "Este \xE9 o segredo da sua aplica\xE7\xE3o autenticador. Use-o se n\xE3o puder ler o c\xF3digo QR.",
4580
+ "identities.messages.1050018": 'Remover chave de seguran\xE7a "{display_name}"',
4581
+ "identities.messages.1060001": "Recuperou com sucesso a sua conta. Por favor, altere a sua password ou configure um m\xE9todo de login alternativo (por exemplo, login social) nos pr\xF3ximos {privileged_session_expires_at_unix_until_minutes} minutos.",
4582
+ "identities.messages.1060002": "Um e-mail com um link de recupera\xE7\xE3o foi enviado para o endere\xE7o de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endere\xE7o e verifique se est\xE1 usando o endere\xE7o com o qual se registou.",
4583
+ "identities.messages.1060003": "Um e-mail com um c\xF3digo de recupera\xE7\xE3o foi enviado para o endere\xE7o de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endere\xE7o e verifique se est\xE1 usando o endere\xE7o com o qual se registou.",
4584
+ "identities.messages.1070001": "Password",
4585
+ "identities.messages.1070002": "{title}",
4586
+ "identities.messages.1070003": "Salvar",
4587
+ "identities.messages.1070004": "ID",
4588
+ "identities.messages.1070005": "Enviar",
4589
+ "identities.messages.1070006": "Verificar c\xF3digo",
4590
+ "identities.messages.1070007": "E-mail",
4591
+ "identities.messages.1070008": "Reenviar c\xF3digo",
4592
+ "identities.messages.1070009": "Continuar",
4593
+ "identities.messages.1070010": "C\xF3digo de recupera\xE7\xE3o",
4594
+ "identities.messages.1070011": "C\xF3digo de verifica\xE7\xE3o",
4595
+ "identities.messages.1070012": "C\xF3digo de registo",
4596
+ "identities.messages.1070013": "C\xF3digo de login",
4597
+ "identities.messages.1080001": "Um e-mail com um link de verifica\xE7\xE3o foi enviado para o endere\xE7o de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endere\xE7o e verifique se est\xE1 usando o endere\xE7o com o qual se registou.",
4598
+ "identities.messages.1080002": "Endere\xE7o de e-mail verificado com sucesso.",
4599
+ "identities.messages.1080003": "Um e-mail com um c\xF3digo de verifica\xE7\xE3o foi enviado para o endere\xE7o de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endere\xE7o e verifique se est\xE1 usando o endere\xE7o com o qual se registou.",
4600
+ "identities.messages.4000001": "{reason}",
4601
+ "identities.messages.4000002": "A propriedade {property} n\xE3o foi encontrada.",
4602
+ "identities.messages.4000003": "O comprimento deve ser >= {min_length}, mas foi {actual_length}",
4603
+ "identities.messages.4000004": 'n\xE3o corresponde ao padr\xE3o "{pattern}"',
4604
+ "identities.messages.4000005": "A password n\xE3o pode ser utilizada porque {reason}.",
4605
+ "identities.messages.4000006": "As credenciais fornecidas s\xE3o inv\xE1lidas, verifique erros na defini\xE7\xE3o da password ou no nome de usu\xE1rio, endere\xE7o de e-mail ou n\xFAmero de telefone.",
4606
+ "identities.messages.4000007": "J\xE1 existe uma conta com o mesmo username (e-mail, telefone, nome de usu\xE1rio, ...).",
4607
+ "identities.messages.4000008": "O c\xF3digo de autentica\xE7\xE3o fornecido \xE9 inv\xE1lido, tente novamente.",
4608
+ "identities.messages.4000009": "N\xE3o foi poss\xEDvel encontrar nenhum username de login. Esqueceu-se de defini-los? Isso tamb\xE9m pode ser causado por uma m\xE1 configura\xE7\xE3o do servidor.",
4609
+ "identities.messages.4000010": "Conta ainda n\xE3o est\xE1 ativa. Esqueceu-se de verificar o seu endere\xE7o de e-mail?",
4610
+ "identities.messages.4000011": "N\xE3o tem um dispositivo TOTP configurado.",
4611
+ "identities.messages.4000012": "Este c\xF3digo de recupera\xE7\xE3o de backup j\xE1 foi usado.",
4612
+ "identities.messages.4000013": "N\xE3o tem um dispositivo WebAuthn configurado.",
4613
+ "identities.messages.4000014": "N\xE3o tem c\xF3digos de recupera\xE7\xE3o de backup configurados.",
4614
+ "identities.messages.4000015": "Esta conta n\xE3o existe ou n\xE3o tem uma chave de seguran\xE7a configurada.",
4615
+ "identities.messages.4000016": "O c\xF3digo de recupera\xE7\xE3o de backup n\xE3o \xE9 v\xE1lido.",
4616
+ "identities.messages.4000017": "O comprimento deve ser <= {max_length}, mas foi {actual_length}",
4617
+ "identities.messages.4000018": "deve ser >= {minimum} mas foi encontrado {actual}",
4618
+ "identities.messages.4000019": "deve ser > {minimum} mas foi encontrado {actual}",
4619
+ "identities.messages.4000020": "deve ser <= {maximum} mas foi encontrado {actual}",
4620
+ "identities.messages.4000021": "deve ser < {maximum} mas foi encontrado {actual}",
4621
+ "identities.messages.4000022": "{actual} n\xE3o \xE9 m\xFAltiplo de {base}",
4622
+ "identities.messages.4000023": "m\xE1ximo de {max_items} itens permitidos, mas foram encontrados {actual_items} itens",
4623
+ "identities.messages.4000024": "m\xEDnimo de {min_items} itens permitidos, mas foram encontrados {actual_items} itens",
4624
+ "identities.messages.4000025": "itens nos \xEDndices {index_a} e {index_b} s\xE3o iguais",
4625
+ "identities.messages.4000026": "esperado {allowed_types_list}, mas foi {actual_type}",
4626
+ "identities.messages.4000027": "J\xE1 existe uma conta com o mesmo username (e-mail, telefone, nome de usu\xE1rio, ...). Fa\xE7a login na sua conta existente e vincule seu perfil social na p\xE1gina de configura\xE7\xF5es.",
4627
+ "identities.messages.4000028": "Tentou fazer login com {credential_identifier_hint}, que j\xE1 est\xE1 sendo usado por outra conta. Pode fazer login usando {available_credential_types_list}. Pode fazer login usando um dos seguintes provedores de login social: {Available_oidc_providers_list}.",
4628
+ "identities.messages.4000029": "deve ser igual a constante {expected}",
4629
+ "identities.messages.4000030": "constante falhou",
4630
+ "identities.messages.4000031": "A password n\xE3o pode ser utilizada porque \xE9 muito semelhante ao username.",
4631
+ "identities.messages.4000032": "A password deve conter ter pelo menos {min_length} caracteres, mas cont\xE9m {actual_length}.",
4632
+ "identities.messages.4000033": "A password deve conter ter no m\xE1ximo {max_length} caracteres, mas cont\xE9m {actual_length}.",
4633
+ "identities.messages.4000034": "A password foi encontrada em viola\xE7\xF5es de dados e n\xE3o deve mais ser utilizada.",
4634
+ "identities.messages.4000035": "Esta conta n\xE3o existe ou n\xE3o configurou o login com c\xF3digo.",
4635
+ "identities.messages.4000036": "Os tra\xE7os fornecidos n\xE3o correspondem aos tra\xE7os associados anteriormente a este fluxo.",
4636
+ "identities.messages.4010001": "O fluxo de login expirou {expired_at_unix_since_minutes} minutos atr\xE1s, tente novamente.",
4637
+ "identities.messages.4010002": "N\xE3o foi encontrada uma estrat\xE9gia para fazer login. Preencheu o formul\xE1rio corretamente?",
4638
+ "identities.messages.4010003": "N\xE3o foi encontrada uma estrat\xE9gia para Registar. Preencheu o formul\xE1rio corretamente?",
4639
+ "identities.messages.4010004": "N\xE3o foi encontrada uma estrat\xE9gia para atualizar suas configura\xE7\xF5es. Preencheu o formul\xE1rio corretamente?",
4640
+ "identities.messages.4010005": "N\xE3o foi encontrada uma estrat\xE9gia para recuperar sua conta. Preencheu o formul\xE1rio corretamente?",
4641
+ "identities.messages.4010006": "N\xE3o foi encontrada uma estrat\xE9gia para verificar sua conta. Preencheu o formul\xE1rio corretamente?",
4642
+ "identities.messages.4010007": "A solicita\xE7\xE3o j\xE1 foi conclu\xEDda com sucesso e n\xE3o pode ser tentada novamente.",
4643
+ "identities.messages.4010008": "O c\xF3digo de login \xE9 inv\xE1lido ou j\xE1 foi usado. Tente novamente.",
4644
+ "identities.messages.4040001": "O fluxo de registo expirou {expired_at_unix_since_minutes} minutos atr\xE1s, tente novamente.",
4645
+ "identities.messages.4040002": "A solicita\xE7\xE3o j\xE1 foi conclu\xEDda com sucesso e n\xE3o pode ser tentada novamente.",
4646
+ "identities.messages.4040003": "O c\xF3digo de registo \xE9 inv\xE1lido ou j\xE1 foi usado. Tente novamente.",
4647
+ "identities.messages.4050001": "O fluxo de configura\xE7\xF5es expirou {expired_at_unix_since_minutes} minutos atr\xE1s, tente novamente.",
4648
+ "identities.messages.4060001": "A solicita\xE7\xE3o j\xE1 foi conclu\xEDda com sucesso e n\xE3o pode ser tentada novamente.",
4649
+ "identities.messages.4060002": "O fluxo de recupera\xE7\xE3o atingiu um estado de falha e deve ser tentado novamente.",
4650
+ "identities.messages.4060004": "O token de recupera\xE7\xE3o \xE9 inv\xE1lido ou j\xE1 foi usado. Por favor, tente o fluxo novamente.",
4651
+ "identities.messages.4060005": "O fluxo de recupera\xE7\xE3o expirou {expired_at_unix_since_minutes} minutos atr\xE1s, tente novamente.",
4652
+ "identities.messages.4060006": "O c\xF3digo de recupera\xE7\xE3o \xE9 inv\xE1lido ou j\xE1 foi usado. Tente novamente.",
4653
+ "identities.messages.4070001": "O token de verifica\xE7\xE3o \xE9 inv\xE1lido ou j\xE1 foi usado. Tente novamente.",
4654
+ "identities.messages.4070002": "A solicita\xE7\xE3o j\xE1 foi conclu\xEDda com sucesso e n\xE3o pode ser solicitada novamente.",
4655
+ "identities.messages.4070003": "O fluxo de verifica\xE7\xE3o atingiu um estado de falha e deve ser tentado novamente.",
4656
+ "identities.messages.4070005": "O fluxo de verifica\xE7\xE3o expirou {expired_at_unix_since_minutes} minutos atr\xE1s, tente novamente.",
4657
+ "identities.messages.4070006": "O c\xF3digo de verifica\xE7\xE3o \xE9 inv\xE1lido ou j\xE1 foi usado. Tente novamente.",
4658
+ "identities.messages.5000001": "{reason}",
4659
+ "login.forgot-password": "Esqueceu a password?",
4660
+ "login.logged-in-as-label": "Est\xE1 conectado como:",
4661
+ "login.logout-button": "Sair",
4662
+ "login.logout-label": "Algo n\xE3o est\xE1 a funcionar?",
4663
+ "login.registration-button": "Registar",
4664
+ "login.registration-label": "N\xE3o tem uma conta?",
4665
+ "login.subtitle-oauth2": "Para autenticar {clientName}",
4666
+ "login.title": "Entrar",
4667
+ "login.title-aal2": "Autentica\xE7\xE3o de dois fatores",
4668
+ "login.subtitle-aal2": "Escolha uma forma de completar sua autentica\xE7\xE3o de segundo fator",
4669
+ "login.code.subtitle": "Um c\xF3digo de verifica\xE7\xE3o ser\xE1 enviado por e-mail",
4670
+ "login.webauthn.subtitle": "Por favor, prepare seu dispositivo WebAuthN",
4671
+ "login.totp.subtitle": "Digite o c\xF3digo gerado pelo seu aplicativo autenticador",
4672
+ "login.lookup_secret.subtitle": "Digite um dos seus c\xF3digos de recupera\xE7\xE3o de 8 d\xEDgitos",
4673
+ "login.title-refresh": "Confirme que \xE9 voc\xEA",
4674
+ "login.2fa.go-back": "Algo n\xE3o est\xE1 funcionando?",
4675
+ "login.2fa.go-back.link": "Voltar",
4676
+ "login.2fa.method.go-back": "Escolher outro m\xE9todo",
4677
+ "logout.accept-button": "Sim",
4678
+ "logout.reject-button": "N\xE3o",
4679
+ "logout.title": "Deseja sair?",
4680
+ "recovery.login-button": "Entrar",
4681
+ "recovery.login-label": "Lembrar credenciais?",
4682
+ "recovery.title": "Recuperar conta",
4683
+ "registration.login-button": "Entrar",
4684
+ "registration.login-label": "J\xE1 tem uma conta?",
4685
+ "registration.subtitle-oauth2": "Para autenticar {clientName}",
4686
+ "registration.title": "Registar uma conta",
4687
+ "settings.navigation-back-button": "Voltar",
4688
+ "settings.navigation-backup-codes": "C\xF3digos de Backup de 2FA",
4689
+ "settings.navigation-logout": "Sair",
4690
+ "settings.navigation-oidc": "login social",
4691
+ "settings.navigation-password": "Password",
4692
+ "settings.navigation-profile": "Perfil",
4693
+ "settings.navigation-totp": "Aplica\xE7\xE3o Autenticador 2FA",
4694
+ "settings.navigation-webauthn": "Tokens de Hardware",
4695
+ "settings.navigation-passkey": "Passkeys",
4696
+ "settings.subtitle-instructions": "Aqui pode gerar configura\xE7\xF5es relacionadas com a sua conta. Lembre-se de que certas a\xE7\xF5es exigem que efetue novamente login.",
4697
+ "settings.title": "Configura\xE7\xF5es da Conta",
4698
+ "verification.registration-button": "Registar",
4699
+ "verification.registration-label": "N\xE3o tem uma conta?",
4700
+ "verification.title": "Verifique a sua conta",
4701
+ "verification.back-button": "Voltar",
4702
+ "two-step.code.description": "Um c\xF3digo de verifica\xE7\xE3o ser\xE1 enviado para o seu email",
4703
+ "two-step.code.title": "C\xF3digo de email",
4704
+ "two-step.passkey.description": "Use o seu dispositivo para reconhecimento de impress\xE3o digital ou facial.",
4705
+ "two-step.passkey.title": "Chave de acesso (recomendado)",
4706
+ "two-step.password.description": "Insira a sua senha associada \xE0 sua conta",
4707
+ "two-step.password.title": "Senha",
4708
+ "two-step.webauthn.title": "Chave de Seguran\xE7a",
4709
+ "two-step.webauthn.description": "Use sua chave de seguran\xE7a para autenticar",
4710
+ "two-step.totp.title": "Use seu aplicativo autenticador (TOTP)",
4711
+ "two-step.totp.description": "Use um c\xF3digo \xFAnico de 6 d\xEDgitos do seu aplicativo autenticador",
4712
+ "two-step.lookup_secret.title": "C\xF3digo de recupera\xE7\xE3o de backup",
4713
+ "two-step.lookup_secret.description": "Use um dos seus c\xF3digos de backup de 8 d\xEDgitos para autenticar",
4714
+ "identities.messages.1010016": "",
4715
+ "identities.messages.1010017": "",
4716
+ "identities.messages.1010018": "",
4717
+ "identities.messages.1010019": "",
4718
+ "identities.messages.1010020": "",
4719
+ "identities.messages.1010021": "",
4720
+ "identities.messages.1010022": "",
4721
+ "identities.messages.1010023": "",
4722
+ "identities.messages.1040007": "",
4723
+ "identities.messages.1040008": "",
4724
+ "identities.messages.1040009": "",
4725
+ "identities.messages.1050019": "",
4726
+ "identities.messages.1050020": "",
4727
+ "identities.messages.1070014": "",
4728
+ "identities.messages.4000037": "",
4729
+ "identities.messages.4000038": "",
4730
+ "identities.messages.4010009": "",
4731
+ "identities.messages.4010010": "",
4732
+ "login.cancel-button": "",
4733
+ "login.cancel-label": "",
4734
+ "identities.messages.1070015": "",
4735
+ "input.placeholder": "",
4736
+ "card.header.description.login": "",
4737
+ "card.header.description.registration": "",
4738
+ "card.header.parts.code": "",
4739
+ "card.header.parts.identifier-first": "",
4740
+ "card.header.parts.oidc": "",
4741
+ "card.header.parts.passkey": "",
4742
+ "card.header.parts.password.login": "",
4743
+ "card.header.parts.password.registration": "",
4744
+ "card.header.parts.webauthn": "",
4745
+ "forms.label.forgot-password": "",
4746
+ "login.subtitle": "",
4747
+ "login.subtitle-refresh": "",
4748
+ "misc.or": "",
4749
+ "recovery.subtitle": "",
4750
+ "registration.subtitle": "",
4751
+ "settings.subtitle": "",
4752
+ "verification.subtitle": "",
4753
+ "settings.totp.info.linked": "Voc\xEA atualmente tem um aplicativo autenticador conectado.",
4754
+ "settings.totp.info.not-linked": "Para ativar, escaneie o c\xF3digo QR com seu autenticador e insira o c\xF3digo.",
4755
+ "settings.totp.title": "",
4756
+ "settings.totp.description": "Adicione um aplicativo autenticador TOTP \xE0 sua conta para melhorar a seguran\xE7a da sua conta. Aplicativos autenticadores populares s\xE3o LastPass e Google Authenticator.",
4757
+ "settings.lookup_secret.description": "",
4758
+ "settings.lookup_secret.title": "",
4759
+ "settings.navigation.title": "",
4760
+ "settings.oidc.description": "",
4761
+ "settings.oidc.info": "",
4762
+ "settings.oidc.title": "",
4763
+ "settings.passkey.description": "",
4764
+ "settings.passkey.info": "",
4765
+ "settings.passkey.title": "",
4766
+ "settings.password.description": "",
4767
+ "settings.password.title": "",
4768
+ "settings.profile.description": "",
4769
+ "settings.profile.title": "",
4770
+ "settings.title-lookup-secret": "",
4771
+ "settings.title-navigation": "",
4772
+ "settings.title-oidc": "",
4773
+ "settings.title-passkey": "",
4774
+ "settings.title-password": "",
4775
+ "settings.title-profile": "",
4776
+ "settings.title-totp": "",
4777
+ "settings.title-webauthn": "",
4778
+ "settings.webauthn.description": "",
4779
+ "settings.webauthn.info": "",
4780
+ "settings.webauthn.title": "",
4781
+ "card.footer.select-another-method": "",
4782
+ "account-linking.title": "",
4783
+ "property.code": "",
4784
+ "property.email": "",
4785
+ "property.identifier": "",
4786
+ "property.password": "",
4787
+ "property.phone": "",
4788
+ "property.username": "",
4789
+ "error.action.go-back": "",
4790
+ "error.footer.copy": "",
4791
+ "error.footer.text": "",
4792
+ "error.title.what-can-i-do": "",
4793
+ "error.title.what-happened": "",
4794
+ "error.instructions": ""
4795
+ };
4796
+
4797
+ // src/locales/sv.json
4798
+ var sv_default = {
4799
+ "consent.action-accept": "Till\xE5t",
4800
+ "consent.action-reject": "Neka",
4801
+ "consent.description": "Ge bara beh\xF6righeter om du litar p\xE5 den h\xE4r webbplatsen eller appen. Du beh\xF6ver inte acceptera alla beh\xF6righeter.",
4802
+ "consent.privacy-policy-label": "Integritetspolicy",
4803
+ "consent.remember-label": "Kom ih\xE5g detta val till n\xE4sta g\xE5ng. Applikationen kommer inte att kunna be om ytterligare tillst\xE5nd utan ditt medgivande.",
4804
+ "consent.remember-tooltip": "kom ih\xE5g mitt val",
4805
+ "consent.requested-permissions-label": "Applikationen beg\xE4r \xE5tkomst till f\xF6ljande beh\xF6righeter:",
4806
+ "consent.terms-of-service-label": "Anv\xE4ndarvillkor",
4807
+ "error.back-button": "Tillbaka",
4808
+ "error.description": "Ett fel uppstod med f\xF6ljande meddelande:",
4809
+ "error.support-email-link": "Om problemet kvarst\xE5r, v\xE4nligen kontakta <a>{contactSupportEmail}</a>",
4810
+ "error.title": "Ett fel uppstod",
4811
+ "error.title-internal-server-error": "Internt serverfel",
4812
+ "error.title-not-found": "404 - Sidan hittades ej",
4813
+ "identities.messages.1010001": "Logga in",
4814
+ "identities.messages.1010002": "Logga in med {provider}",
4815
+ "identities.messages.1010003": "Bekr\xE4fta denna \xE5tg\xE4rd genom att verifiera att det \xE4r du.",
4816
+ "identities.messages.1010004": "V\xE4nligen slutf\xF6r den andra autentiseringsutmaningen.",
4817
+ "identities.messages.1010005": "Verifiera",
4818
+ "identities.messages.1010006": "Autentiseringskod",
4819
+ "identities.messages.1010007": "\xC5terst\xE4llningskod f\xF6r backup",
4820
+ "identities.messages.1010008": "Forts\xE4tt med s\xE4kerhetsnyckel",
4821
+ "identities.messages.1010009": "Forts\xE4tt",
4822
+ "identities.messages.1010010": "Forts\xE4tt",
4823
+ "identities.messages.1010011": "Forts\xE4tt med s\xE4kerhetsnyckel",
4824
+ "identities.messages.1010012": "F\xF6rbered din WebAuthn-enhet (t.ex. s\xE4kerhetsnyckel, biometriska skanner, ...) och tryck p\xE5 forts\xE4tt.",
4825
+ "identities.messages.1010013": "Forts\xE4tt",
4826
+ "identities.messages.1010014": "Ett e-postmeddelande som inneh\xE5ller en kod har skickats till den e-postadress du angett. Om du inte har f\xE5tt ett mejl, kontrollera stavningen av adressen och f\xF6rs\xF6k logga in igen.",
4827
+ "identities.messages.1010015": "Logga in med kod",
4828
+ "identities.messages.1010016": 'Du f\xF6rs\xF6kte logga in med "{duplicateIdentifier}", men den e-postadressen anv\xE4nds redan av ett annat konto. Logga in p\xE5 ditt konto med ett av alternativen nedan f\xF6r att l\xE4gga till ditt konto "{duplicateIdentifier}" hos "{provider}" som ett annat inloggningsalternativ.',
4829
+ "identities.messages.1010017": "Logga in och l\xE4nka",
4830
+ "identities.messages.1010018": "Bekr\xE4fta med {provider}",
4831
+ "identities.messages.1010019": "Beg\xE4r kod f\xF6r att forts\xE4tta",
4832
+ "identities.messages.1010021": "Logga in med passkey",
4833
+ "identities.messages.1010022": "Logga in med l\xF6senord",
4834
+ "identities.messages.1010023": "Skicka kod till {address}",
4835
+ "identities.messages.1040001": "Skapa konto",
4836
+ "identities.messages.1040002": "Registrera dig med {provider}",
4837
+ "identities.messages.1040003": "Forts\xE4tt",
4838
+ "identities.messages.1040004": "Registrera med s\xE4kerhetsnyckel",
4839
+ "identities.messages.1040005": "Ett e-postmeddelande som inneh\xE5ller en kod har skickats till den e-postadress du angett. Om du inte har f\xE5tt ett e-postmeddelande, kontrollera stavningen av adressen och f\xF6rs\xF6k igen med registreringen.",
4840
+ "identities.messages.1040006": "Registrera med kod",
4841
+ "identities.messages.1040007": "Registrera med passkey",
4842
+ "identities.messages.1040008": "Tillbaka",
4843
+ "identities.messages.1040009": "V\xE4nligen v\xE4lj en autentiseringsmetod.",
4844
+ "identities.messages.1050001": "Dina \xE4ndringar har sparats!",
4845
+ "identities.messages.1050002": "Koppla p\xE5 {provider}",
4846
+ "identities.messages.1050003": "Koppla bort {provider}",
4847
+ "identities.messages.1050004": "Koppla bort TOTP Autentisering-App",
4848
+ "identities.messages.1050005": "Autentisering-app QR kod",
4849
+ "identities.messages.1050006": "{secret}",
4850
+ "identities.messages.1050007": "Visa reserv\xE5terst\xE4llningskoder",
4851
+ "identities.messages.1050008": "Generera nya reserv\xE5terst\xE4llningskoder",
4852
+ "identities.messages.1050009": "{secret}",
4853
+ "identities.messages.1050010": "Det h\xE4r \xE4r dina reserv\xE5terst\xE4llningskoder. F\xF6rvara dem p\xE5 ett s\xE4kert st\xE4lle!",
4854
+ "identities.messages.1050011": "Bekr\xE4fta reserv\xE5terst\xE4llningskoder",
4855
+ "identities.messages.1050012": "L\xE4gg till s\xE4kerhetsnyckel",
4856
+ "identities.messages.1050013": "S\xE4kerhetsnyckelns namn",
4857
+ "identities.messages.1050014": "<del>Anv\xE4nd</del>",
4858
+ "identities.messages.1050015": "{secrets_list}",
4859
+ "identities.messages.1050016": "Inaktivera den h\xE4r metoden",
4860
+ "identities.messages.1050017": "Det h\xE4r \xE4r din hemlighet f\xF6r din autentiseringsapp. Anv\xE4nd den om du inte kan skanna QR-koden.",
4861
+ "identities.messages.1050018": 'Ta bort s\xE4kerhetsnyckel "{display_name}"',
4862
+ "identities.messages.1050019": "L\xE4gg till passkey",
4863
+ "identities.messages.1050020": 'Ta bort passkey "{display_name}"',
4864
+ "identities.messages.1060001": "Du har lyckats \xE5terst\xE4lla ditt konto. \xC4ndra ditt l\xF6senord eller st\xE4ll in en alternativ inloggningsmetod (t.ex. social inloggning) inom de n\xE4rmaste {privileged_session_expires_at_unix_until_minutes} minuterna.",
4865
+ "identities.messages.1060002": "Ett e-postmeddelande som inneh\xE5ller en \xE5terst\xE4llningsl\xE4nk har skickats till den e-postadress du angett. Om du inte har f\xE5tt ett mejl, kontrollera stavningen p\xE5 adressen och se till att anv\xE4nda adressen du registrerade dig med.",
4866
+ "identities.messages.1060003": "Ett e-postmeddelande som inneh\xE5ller en \xE5terst\xE4llningskod har skickats till den e-postadress du angett. Om du inte har f\xE5tt ett mejl, kontrollera stavningen p\xE5 adressen och se till att anv\xE4nda adressen du registrerade dig med.",
4867
+ "identities.messages.1070001": "L\xF6senord",
4868
+ "identities.messages.1070002": "{title}",
4869
+ "identities.messages.1070003": "Spara",
4870
+ "identities.messages.1070004": "ID",
4871
+ "identities.messages.1070005": "Skicka",
4872
+ "identities.messages.1070006": "Verifiera kod",
4873
+ "identities.messages.1070007": "E-post",
4874
+ "identities.messages.1070008": "Skicka koden igen",
4875
+ "identities.messages.1070009": "Forts\xE4tt",
4876
+ "identities.messages.1070010": "\xC5terst\xE4llningskod",
4877
+ "identities.messages.1070011": "Verifieringskod",
4878
+ "identities.messages.1070012": "Registreringskod",
4879
+ "identities.messages.1070013": "Inloggningskod",
4880
+ "identities.messages.1070014": "Logga in och l\xE4nka autentiseringsuppgifter",
4881
+ "identities.messages.1070015": "V\xE4nligen slutf\xF6r captcha-utmaningen f\xF6r att forts\xE4tta.",
4882
+ "identities.messages.1080001": "Ett e-postmeddelande med en verifieringsl\xE4nk har skickats till den e-postadress du angett. Om du inte har f\xE5tt ett mejl, kontrollera stavningen p\xE5 adressen och se till att anv\xE4nda adressen du registrerade dig med.",
4883
+ "identities.messages.1080002": "Du har verifierat din e-postadress.",
4884
+ "identities.messages.1080003": "Ett e-postmeddelande som inneh\xE5ller en verifieringskod har skickats till den e-postadress du angett. Om du inte har f\xE5tt ett mejl, kontrollera stavningen p\xE5 adressen och se till att anv\xE4nda adressen du registrerade dig med.",
4885
+ "identities.messages.4000001": "{reason}",
4886
+ "identities.messages.4000002": "Fyll i {property} och f\xF6rs\xF6k igen.",
4887
+ "identities.messages.4000003": "l\xE4ngd m\xE5ste vara >= {min_length}, men var {actual_length}",
4888
+ "identities.messages.4000004": 'matchar inte m\xF6nstret "{pattern}"',
4889
+ "identities.messages.4000005": "L\xF6senordet kan inte anv\xE4ndas pga {reason}.",
4890
+ "identities.messages.4000006": "De angivna uppgifterna \xE4r ogiltiga. Kontrollera om det finns stavfel i ditt l\xF6senord eller anv\xE4ndarnamn, e-postadress eller telefonnummer.",
4891
+ "identities.messages.4000007": "Ett konto med samma identifierare (e-post, telefon, anv\xE4ndarnamn, ...) finns redan.",
4892
+ "identities.messages.4000008": "Den angivna autentiseringskoden \xE4r ogiltig, f\xF6rs\xF6k igen.",
4893
+ "identities.messages.4000009": "Det gick inte att hitta n\xE5gra inloggningsidentifierare. Har du gl\xF6mt att st\xE4lla in dem? Detta kan ocks\xE5 orsakas av en felaktig serverkonfiguration.",
4894
+ "identities.messages.4000010": "Kontot \xE4r inte aktivt \xE4nnu. Har du gl\xF6mt att verifiera din e-postadress?",
4895
+ "identities.messages.4000011": "Du har ingen TOTP-enhet konfigurerad.",
4896
+ "identities.messages.4000012": "Denna backup-\xE5terst\xE4llningskod har redan anv\xE4nts.",
4897
+ "identities.messages.4000013": "Du har ingen WebAuthn-enhet konfigurerad.",
4898
+ "identities.messages.4000014": "Du har inga backup-\xE5terst\xE4llningskoder konfigurerade.",
4899
+ "identities.messages.4000015": "Det h\xE4r kontot finns inte eller har ingen s\xE4kerhetsnyckel konfigurerad.",
4900
+ "identities.messages.4000016": "Backup-\xE5terst\xE4llningskoden \xE4r inte giltig.",
4901
+ "identities.messages.4000017": "l\xE4ngd m\xE5ste vara <= {max_length}, men var {actual_length}",
4902
+ "identities.messages.4000018": "m\xE5ste vara >= {minimum} men var {actual}",
4903
+ "identities.messages.4000019": "m\xE5ste vara > {minimum} men var {actual}",
4904
+ "identities.messages.4000020": "m\xE5ste vara <= {maximum} men var {actual}",
4905
+ "identities.messages.4000021": "m\xE5ste vara < {maximum} men var {actual}",
4906
+ "identities.messages.4000022": "{actual} \xE4r inte en multipel av {base}",
4907
+ "identities.messages.4000023": "maximalt {max_items} objekt till\xE5tna, men hittade {actual_items} objekt",
4908
+ "identities.messages.4000024": "minst {min_items} objekt till\xE5tna, men hittade {actual_items} objekt",
4909
+ "identities.messages.4000025": "objekt vid index {index_a} och {index_b} \xE4r lika",
4910
+ "identities.messages.4000026": "f\xF6rv\xE4ntade {allowed_types_list}, men var {actual_type}",
4911
+ "identities.messages.4000027": "Ett konto med samma identifierare (e-post, telefon, anv\xE4ndarnamn, ...) finns redan. Logga in p\xE5 ditt befintliga konto och l\xE4nka din sociala profil p\xE5 inst\xE4llningssidan.",
4912
+ "identities.messages.4000028": "Du f\xF6rs\xF6kte logga in med {credential_identifier_hint} som redan anv\xE4nds av ett annat konto. Du kan logga in med {available_credential_types_list}. Du kan logga in med n\xE5gon av f\xF6ljande sociala inloggningsleverant\xF6rer: {Available_oidc_providers_list}.",
4913
+ "identities.messages.4000029": "m\xE5ste vara lika med konstant {expected}",
4914
+ "identities.messages.4000030": "const misslyckades",
4915
+ "identities.messages.4000031": "L\xF6senordet kan inte anv\xE4ndas eftersom det \xE4r f\xF6r likt identifieraren.",
4916
+ "identities.messages.4000032": "L\xF6senordet m\xE5ste vara minst {min_length} tecken l\xE5ngt, men \xE4r {actual_length}.",
4917
+ "identities.messages.4000033": "L\xF6senordet f\xE5r vara h\xF6gst {max_length} tecken l\xE5ngt, men \xE4r {actual_length}.",
4918
+ "identities.messages.4000034": "L\xF6senordet har hittats vid dataintr\xE5ng och f\xE5r inte l\xE4ngre anv\xE4ndas.",
4919
+ "identities.messages.4000035": "Det h\xE4r kontot finns inte eller har inte konfigurerat inloggning med kod.",
4920
+ "identities.messages.4000036": "De angivna egenskaperna matchar inte de egenskaper som tidigare associerats med detta fl\xF6de.",
4921
+ "identities.messages.4010001": "Inloggningsfl\xF6det upph\xF6rde f\xF6r {expired_at_unix_since_minutes} minuter sedan, var v\xE4nlig f\xF6rs\xF6k igen.",
4922
+ "identities.messages.4010002": "Kunde inte hitta en strategi att logga in dig med. Fyllde du i formul\xE4ret korrekt?",
4923
+ "identities.messages.4010003": "Kunde inte hitta en strategi att registrera dig med. Fyllde du i formul\xE4ret korrekt?",
4924
+ "identities.messages.4010004": "Kunde inte hitta en strategi f\xF6r att uppdatera dina inst\xE4llningar. Fyllde du i formul\xE4ret korrekt?",
4925
+ "identities.messages.4010005": "Kunde inte hitta en strategi att \xE5terst\xE4lla ditt konto med. Fyllde du i formul\xE4ret korrekt?",
4926
+ "identities.messages.4010006": "Kunde inte hitta en strategi att verifiera ditt konto med. Fyllde du i formul\xE4ret korrekt?",
4927
+ "identities.messages.4010007": "Beg\xE4ran har redan slutf\xF6rts framg\xE5ngsrikt och kan inte g\xF6ras igen.",
4928
+ "identities.messages.4010008": "Inloggningskoden \xE4r ogiltig eller har redan anv\xE4nts. Var v\xE4nlig f\xF6rs\xF6k igen.",
4929
+ "identities.messages.4010009": "L\xE4nkade autentiseringsuppgifter matchar inte.",
4930
+ "identities.messages.4010010": "Adressen du angav matchar inte n\xE5gra k\xE4nda adresser i det aktuella kontot.",
4931
+ "identities.messages.4040001": "Registreringsfl\xF6det gick ut f\xF6r {expired_at_unix_since_minutes} minuter sedan, f\xF6rs\xF6k igen.",
4932
+ "identities.messages.4040002": "Beg\xE4ran har redan slutf\xF6rts framg\xE5ngsrikt och kan inte g\xF6ras igen.",
4933
+ "identities.messages.4040003": "Registreringskoden \xE4r ogiltig eller har redan anv\xE4nts. Var v\xE4nlig f\xF6rs\xF6k igen.",
4934
+ "identities.messages.4050001": "Inst\xE4llningsfl\xF6det gick ut f\xF6r {expired_at_unix_since_minutes} minuter sedan, var v\xE4nlig f\xF6rs\xF6k igen.",
4935
+ "identities.messages.4060001": "Beg\xE4ran har redan slutf\xF6rts framg\xE5ngsrikt och kan inte g\xF6ras igen.",
4936
+ "identities.messages.4060002": "\xC5terst\xE4llningsfl\xF6det n\xE5dde ett feltillst\xE5nd och m\xE5ste f\xF6rs\xF6kas igen.",
4937
+ "identities.messages.4060004": "\xC5terst\xE4llningstoken \xE4r ogiltig eller har redan anv\xE4nts. Var v\xE4nlig f\xF6rs\xF6k fl\xF6det igen.",
4938
+ "identities.messages.4060005": "\xC5terst\xE4llningsfl\xF6det gick ut f\xF6r {expired_at_unix_since_minutes} minuter sedan, var v\xE4nlig f\xF6rs\xF6k igen.",
4939
+ "identities.messages.4060006": "\xC5terst\xE4llningskoden \xE4r ogiltig eller har redan anv\xE4nts. Var v\xE4nlig f\xF6rs\xF6k igen.",
4940
+ "identities.messages.4070001": "Verifieringstoken \xE4r ogiltig eller har redan anv\xE4nts. Var v\xE4nlig f\xF6rs\xF6k fl\xF6det igen.",
4941
+ "identities.messages.4070002": "Beg\xE4ran har redan slutf\xF6rts framg\xE5ngsrikt och kan inte g\xF6ras igen.",
4942
+ "identities.messages.4070003": "Verifieringsfl\xF6det n\xE5dde ett feltillst\xE5nd och m\xE5ste f\xF6rs\xF6kas igen.",
4943
+ "identities.messages.4070005": "Verifieringsfl\xF6det gick ut f\xF6r {expired_at_unix_since_minutes} minuter sedan, var v\xE4nlig f\xF6rs\xF6k igen.",
4944
+ "identities.messages.4070006": "Verifieringskoden \xE4r ogiltig eller har redan anv\xE4nts. Var v\xE4nlig f\xF6rs\xF6k igen.",
4945
+ "identities.messages.5000001": "{reason}",
4946
+ "login.cancel-button": "Avbryt",
4947
+ "login.cancel-label": "Fel konto?",
4948
+ "login.forgot-password": "Gl\xF6mt l\xF6senord?",
4949
+ "login.logged-in-as-label": "Du \xE4r inloggad som:",
4950
+ "login.logout-button": "Logga ut",
4951
+ "login.logout-label": "\xC4r det n\xE5got som inte fungerar?",
4952
+ "login.registration-button": "Skapa konto",
4953
+ "login.registration-label": "Har du inget konto?",
4954
+ "login.subtitle-oauth2": "Att autentisera {clientName}",
4955
+ "login.title": "Logga in",
4956
+ "login.title-aal2": "Tv\xE5faktorsautentisering",
4957
+ "login.subtitle-aal2": "V\xE4lj ett s\xE4tt att slutf\xF6ra din tv\xE5faktorsautentisering",
4958
+ "login.code.subtitle": "En verifieringskod kommer att skickas via e-post",
4959
+ "login.webauthn.subtitle": "F\xF6rbered din WebAuthN-enhet",
4960
+ "login.totp.subtitle": "Ange koden som genererats av din autentiseringsapp",
4961
+ "login.lookup_secret.subtitle": "Ange en av dina 8-siffriga \xE5terst\xE4llningskoder",
4962
+ "login.title-refresh": "Bekr\xE4fta att det \xE4r du",
4963
+ "login.2fa.go-back": "N\xE5got fungerar inte?",
4964
+ "login.2fa.go-back.link": "G\xE5 tillbaka",
4965
+ "login.2fa.method.go-back": "V\xE4lj en annan metod",
4966
+ "logout.accept-button": "Ja",
4967
+ "logout.reject-button": "Nej",
4968
+ "logout.title": "Vill du logga ut?",
4969
+ "recovery.login-button": "Logga in",
4970
+ "recovery.login-label": "Kan du ditt inlogg?",
4971
+ "recovery.title": "\xC5terst\xE4ll ditt konto",
4972
+ "registration.login-button": "Logga in",
4973
+ "registration.login-label": "Har du redan ett konto?",
4974
+ "registration.subtitle-oauth2": "Att autentisera {clientName}",
4975
+ "registration.title": "Skapa ett konto",
4976
+ "settings.navigation-back-button": "Tillbaka",
4977
+ "settings.navigation-backup-codes": "2FA backupkoder",
4978
+ "settings.navigation-logout": "Logga ut",
4979
+ "settings.navigation-oidc": "Social Inloggning",
4980
+ "settings.navigation-password": "L\xF6senord",
4981
+ "settings.navigation-profile": "Profil",
4982
+ "settings.navigation-totp": "Autentiserings App",
4983
+ "settings.navigation-webauthn": "H\xE5rdvaru Tokens",
4984
+ "settings.navigation-passkey": "Passkeys",
4985
+ "settings.subtitle-instructions": "H\xE4r kan du hantera inst\xE4llningar relaterade till ditt konto. T\xE4nk p\xE5 att vissa \xE5tg\xE4rder kr\xE4ver att du autentiseras p\xE5 nytt.",
4986
+ "settings.title": "Kontoinst\xE4llningar",
4987
+ "verification.registration-button": "Skapa konto",
4988
+ "verification.registration-label": "Har du inget konto?",
4989
+ "verification.title": "Verifiera ditt konto",
4990
+ "verification.back-button": "Tillbaka",
4991
+ "two-step.code.description": "En verifieringskod kommer att skickas till din e-post",
4992
+ "two-step.code.title": "E-postkod",
4993
+ "two-step.passkey.description": "Anv\xE4nd din enhets fingeravtryck eller ansiktsigenk\xE4nning",
4994
+ "two-step.passkey.title": "Passerkod (rekommenderad)",
4995
+ "two-step.password.description": "Ange ditt l\xF6senord kopplat till ditt konto",
4996
+ "two-step.password.title": "L\xF6senord",
4997
+ "two-step.webauthn.title": "S\xE4kerhetsnyckel",
4998
+ "two-step.webauthn.description": "Anv\xE4nd din s\xE4kerhetsnyckel f\xF6r att autentisera",
4999
+ "two-step.totp.title": "Anv\xE4nd din autentiseringsapp (TOTP)",
5000
+ "two-step.totp.description": "Anv\xE4nd en 6-siffrig eng\xE5ngskod fr\xE5n din autentiseringsapp",
5001
+ "two-step.lookup_secret.title": "Reserv\xE5terst\xE4llningskod",
5002
+ "two-step.lookup_secret.description": "Anv\xE4nd en av dina 8-siffriga reservkoder f\xF6r att autentisera",
5003
+ "identities.messages.4000037": "Detta konto finns inte eller har ingen inloggningsmetod konfigurerad.",
5004
+ "identities.messages.4000038": "Captcha-verifiering misslyckades, f\xF6rs\xF6k igen.",
5005
+ "identities.messages.1010020": "",
5006
+ "input.placeholder": "Ange din {placeholder}",
5007
+ "card.header.description.login": "Logga in med {identifierLabel}",
5008
+ "card.header.description.registration": "Registrera dig med {identifierLabel}",
5009
+ "card.header.parts.code": "en kod skickad till din e-post",
5010
+ "card.header.parts.identifier-first": "din {identifierLabel}",
5011
+ "card.header.parts.oidc": "en social leverant\xF6r",
5012
+ "card.header.parts.passkey": "en Passkey",
5013
+ "card.header.parts.password.login": "din {identifierLabel} och l\xF6senord",
5014
+ "card.header.parts.password.registration": "din {identifierLabel} och ett l\xF6senord",
5015
+ "card.header.parts.webauthn": "en s\xE4kerhetsnyckel",
5016
+ "forms.label.forgot-password": "Gl\xF6mt L\xF6senord?",
5017
+ "login.subtitle": "Logga in med {parts}",
5018
+ "login.subtitle-refresh": "Bekr\xE4fta din identitet med {parts}",
5019
+ "misc.or": "eller",
5020
+ "recovery.subtitle": "Ange e-postadressen kopplad till ditt konto f\xF6r att f\xE5 en eng\xE5ngskod f\xF6r \xE5tkomst",
5021
+ "registration.subtitle": "Registrera dig med {parts}",
5022
+ "settings.subtitle": "Uppdatera dina kontoinst\xE4llningar",
5023
+ "verification.subtitle": "Ange e-postadressen kopplad till ditt konto f\xF6r att verifiera det",
5024
+ "settings.totp.info.linked": "Du har f\xF6r n\xE4rvarande en autentiseringsapp kopplad.",
5025
+ "settings.totp.info.not-linked": "F\xF6r att aktivera, skanna QR-koden med din autentiserare och ange koden.",
5026
+ "settings.totp.title": "",
5027
+ "settings.totp.description": "L\xE4gg till en TOTP-autentiseringsapp till ditt konto f\xF6r att f\xF6rb\xE4ttra s\xE4kerheten p\xE5 ditt konto. Popul\xE4ra autentiseringsappar \xE4r LastPass och Google Authenticator.",
5028
+ "settings.lookup_secret.description": "\xC5terst\xE4llningskoder \xE4r en s\xE4ker backup f\xF6r 2FA, vilket g\xF6r att du kan \xE5terf\xE5 \xE5tkomst till ditt konto om du tappar bort din 2FA-enhet.",
5029
+ "settings.lookup_secret.title": "Backup-\xE5terst\xE4llningskoder (andra faktorn)",
5030
+ "settings.navigation.title": "Kontoinst\xE4llningar",
5031
+ "settings.oidc.description": "Anslut en social inloggningsleverant\xF6r till ditt konto.",
5032
+ "settings.oidc.info": "Anslutna konton fr\xE5n dessa leverant\xF6rer kan anv\xE4ndas f\xF6r att logga in p\xE5 ditt konto",
5033
+ "settings.oidc.title": "Anslutna konton",
5034
+ "settings.passkey.description": "Hantera dina l\xF6senordsinst\xE4llningar",
5035
+ "settings.passkey.info": "Hantera dina l\xF6senordsinst\xE4llningar",
5036
+ "settings.passkey.title": "Hantera l\xF6senord",
5037
+ "settings.password.description": "\xC4ndra ditt l\xF6senord",
5038
+ "settings.password.title": "\xC4ndra l\xF6senord",
5039
+ "settings.profile.description": "Uppdatera din profilinformation",
5040
+ "settings.profile.title": "Profilinst\xE4llningar",
5041
+ "settings.title-lookup-secret": "Hantera 2FA Backup Recovery-koder",
5042
+ "settings.title-navigation": "Kontoinst\xE4llningar",
5043
+ "settings.title-oidc": "Social logga in",
5044
+ "settings.title-passkey": "Hantera l\xF6senord",
5045
+ "settings.title-password": "\xC4ndra l\xF6senord",
5046
+ "settings.title-profile": "Profilinst\xE4llningar",
5047
+ "settings.title-totp": "Hantera 2FA TOTP Authenticator-appen",
5048
+ "settings.title-webauthn": "Hantera maskinvarutokens",
5049
+ "settings.webauthn.description": "Hantera inst\xE4llningarna f\xF6r din maskinvarutoken",
5050
+ "settings.webauthn.info": "H\xE5rdvarutokens anv\xE4nds f\xF6r andrafaktorsautentisering eller som f\xF6rstafaktor med l\xF6senordsnycklar",
5051
+ "settings.webauthn.title": "Hantera maskinvarutokens",
5052
+ "card.footer.select-another-method": "V\xE4lj en annan metod",
5053
+ "account-linking.title": "L\xE4nka ditt konto",
5054
+ "property.password": "l\xF6senord",
5055
+ "property.email": "e-post",
5056
+ "property.phone": "telefon",
5057
+ "property.username": "anv\xE4ndarnamn",
5058
+ "property.identifier": "identifier",
5059
+ "property.code": "kod",
5060
+ "error.action.go-back": "",
5061
+ "error.footer.copy": "",
5062
+ "error.footer.text": "",
5063
+ "error.title.what-can-i-do": "",
5064
+ "error.title.what-happened": "",
5065
+ "error.instructions": ""
5066
+ };
5067
+
5068
+ // src/locales/index.ts
5069
+ var OryLocales = {
5070
+ en: en_default,
5071
+ de: de_default,
5072
+ es: es_default,
5073
+ fr: fr_default,
5074
+ nl: nl_default,
5075
+ pl: pl_default,
5076
+ pt: pt_default,
5077
+ sv: sv_default
5078
+ };
5079
+
5080
+ // src/context/intl-context.tsx
2942
5081
  import { jsx as jsx93 } from "react/jsx-runtime";
2943
- var DefaultCaptcha = ({ node }) => {
2944
- const { setValue } = useFormContext23();
2945
- const ref = useRef3();
2946
- const nodes = [];
2947
- if (isUiNodeInputAttributes7(node.attributes)) {
2948
- if (node.attributes.name === "transient_payload.captcha_turnstile_response") {
2949
- nodes.push(/* @__PURE__ */ jsx93(NodeInput, { node, attributes: node.attributes }, 1));
5082
+ function mergeTranslations(customTranslations) {
5083
+ return Object.keys(customTranslations).reduce((acc, key) => {
5084
+ acc[key] = { ...OryLocales[key], ...customTranslations[key] };
5085
+ return acc;
5086
+ }, OryLocales);
5087
+ }
5088
+ var IntlProvider = ({
5089
+ children,
5090
+ locale,
5091
+ customTranslations
5092
+ }) => {
5093
+ const messages = mergeTranslations(customTranslations != null ? customTranslations : {});
5094
+ return /* @__PURE__ */ jsx93(
5095
+ OriginalIntlProvider,
5096
+ {
5097
+ onWarn: () => ({}),
5098
+ defaultRichTextElements: {
5099
+ del: (chunks) => /* @__PURE__ */ jsx93("del", { children: chunks })
5100
+ },
5101
+ locale,
5102
+ messages: messages[locale],
5103
+ defaultLocale: "en",
5104
+ children
2950
5105
  }
2951
- }
2952
- if (isUiNodeInputAttributes7(node.attributes) && node.attributes.name === "captcha_turnstile_options") {
2953
- const options = JSON.parse(node.attributes.value);
2954
- nodes.push(
2955
- /* @__PURE__ */ jsx93(
2956
- Turnstile,
2957
- {
2958
- ref,
2959
- siteKey: options.sitekey,
2960
- options: {
2961
- action: options.action,
2962
- size: "flexible",
2963
- theme: options.theme,
2964
- responseField: false,
2965
- responseFieldName: options.response_field_name
2966
- },
2967
- onExpire: () => {
2968
- var _a;
2969
- return (_a = ref.current) == null ? void 0 : _a.reset();
2970
- },
2971
- onSuccess: (token) => {
2972
- setValue(options.response_field_name, token);
2973
- }
2974
- },
2975
- 2
2976
- )
2977
- );
2978
- }
2979
- return nodes;
5106
+ );
2980
5107
  };
2981
5108
 
2982
- // src/theme/default/components/default-components.tsx
2983
- function getOryComponents(overrides) {
2984
- var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B, _C, _D, _E, _F, _G, _H, _I, _J, _K, _L, _M, _N, _O, _P, _Q, _R, _S, _T, _U, _V, _W, _X, _Y, _Z, __, _$, _aa, _ba, _ca, _da, _ea, _fa, _ga, _ha, _ia, _ja;
2985
- return {
2986
- Card: {
2987
- Root: (_b = (_a = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _a.Root) != null ? _b : DefaultCard,
2988
- Footer: (_d = (_c = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _c.Footer) != null ? _d : DefaultCardFooter,
2989
- Header: (_f = (_e = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _e.Header) != null ? _f : DefaultCardHeader,
2990
- Content: (_h = (_g = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _g.Content) != null ? _h : DefaultCardContent,
2991
- Logo: (_j = (_i = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _i.Logo) != null ? _j : DefaultCardLogo,
2992
- Divider: (_l = (_k = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _k.Divider) != null ? _l : DefaultHorizontalDivider,
2993
- AuthMethodListContainer: (_n = (_m = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _m.AuthMethodListContainer) != null ? _n : DefaultAuthMethodListContainer,
2994
- AuthMethodListItem: (_p = (_o = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _o.AuthMethodListItem) != null ? _p : DefaultAuthMethodListItem,
2995
- SettingsSection: (_r = (_q = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _q.SettingsSection) != null ? _r : DefaultFormSection,
2996
- SettingsSectionContent: (_t = (_s = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _s.SettingsSectionContent) != null ? _t : DefaultFormSectionContent,
2997
- SettingsSectionFooter: (_v = (_u = overrides == null ? void 0 : overrides.Card) == null ? void 0 : _u.SettingsSectionFooter) != null ? _v : DefaultFormSectionFooter
2998
- },
2999
- Node: {
3000
- Button: (_x = (_w = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _w.Button) != null ? _x : DefaultButton,
3001
- OidcButton: (_z = (_y = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _y.OidcButton) != null ? _z : DefaultButtonSocial,
3002
- Input: (_B = (_A = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _A.Input) != null ? _B : DefaultInput,
3003
- CodeInput: (_D = (_C = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _C.CodeInput) != null ? _D : DefaultPinCodeInput,
3004
- Image: (_F = (_E = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _E.Image) != null ? _F : DefaultImage,
3005
- Label: (_H = (_G = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _G.Label) != null ? _H : DefaultLabel,
3006
- Checkbox: (_J = (_I = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _I.Checkbox) != null ? _J : DefaultCheckbox,
3007
- Text: (_L = (_K = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _K.Text) != null ? _L : DefaultText,
3008
- Anchor: (_N = (_M = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _M.Anchor) != null ? _N : DefaultLinkButton,
3009
- Captcha: (_P = (_O = overrides == null ? void 0 : overrides.Node) == null ? void 0 : _O.Captcha) != null ? _P : DefaultCaptcha
3010
- },
3011
- Form: {
3012
- Root: (_R = (_Q = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _Q.Root) != null ? _R : DefaultFormContainer,
3013
- Group: (_T = (_S = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _S.Group) != null ? _T : DefaultGroupContainer,
3014
- OidcRoot: (_V = (_U = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _U.OidcRoot) != null ? _V : DefaultSocialButtonContainer,
3015
- RecoveryCodesSettings: (_X = (_W = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _W.RecoveryCodesSettings) != null ? _X : DefaultSettingsRecoveryCodes,
3016
- TotpSettings: (_Z = (_Y = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _Y.TotpSettings) != null ? _Z : DefaultSettingsTotp,
3017
- OidcSettings: (_$ = (__ = overrides == null ? void 0 : overrides.Form) == null ? void 0 : __.OidcSettings) != null ? _$ : DefaultSettingsOidc,
3018
- WebauthnSettings: (_ba = (_aa = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _aa.WebauthnSettings) != null ? _ba : DefaultSettingsWebauthn,
3019
- PasskeySettings: (_da = (_ca = overrides == null ? void 0 : overrides.Form) == null ? void 0 : _ca.PasskeySettings) != null ? _da : DefaultSettingsPasskey
3020
- },
3021
- Message: {
3022
- Root: (_fa = (_ea = overrides == null ? void 0 : overrides.Message) == null ? void 0 : _ea.Root) != null ? _fa : DefaultMessageContainer,
3023
- Content: (_ha = (_ga = overrides == null ? void 0 : overrides.Message) == null ? void 0 : _ga.Content) != null ? _ha : DefaultMessage
3024
- },
3025
- Page: {
3026
- Header: (_ja = (_ia = overrides == null ? void 0 : overrides.Page) == null ? void 0 : _ia.Header) != null ? _ja : DefaultPageHeader
5109
+ // src/theme/default/flows/error.tsx
5110
+ import { FormattedMessage } from "react-intl";
5111
+ import { jsx as jsx94, jsxs as jsxs45 } from "react/jsx-runtime";
5112
+ function isOAuth2Error(error) {
5113
+ return !!error && typeof error === "object" && "error" in error && "error_description" in error;
5114
+ }
5115
+ var errorDescriptions = {
5116
+ 4: "The server could not handle your request, because it was malformed",
5117
+ 5: "The server encountered an error and could not complete your request"
5118
+ };
5119
+ function useStandardize(error) {
5120
+ return useMemo2(() => {
5121
+ var _a;
5122
+ if (isOAuth2Error(error)) {
5123
+ return {
5124
+ code: 400,
5125
+ message: error.error_description,
5126
+ status: error.error,
5127
+ timestamp: /* @__PURE__ */ new Date()
5128
+ };
3027
5129
  }
3028
- };
5130
+ if (instanceOfFlowError(error)) {
5131
+ const parsed = error.error;
5132
+ return {
5133
+ ...parsed,
5134
+ id: error.id,
5135
+ timestamp: error.created_at
5136
+ };
5137
+ } else if (error.error && instanceOfGenericError(error.error)) {
5138
+ return {
5139
+ code: (_a = error.error.code) != null ? _a : 500,
5140
+ message: error.error.message,
5141
+ status: error.error.status,
5142
+ reason: error.error.reason,
5143
+ timestamp: /* @__PURE__ */ new Date()
5144
+ };
5145
+ }
5146
+ return {
5147
+ code: 500,
5148
+ message: "An error occurred",
5149
+ status: "error"
5150
+ };
5151
+ }, [error]);
3029
5152
  }
3030
-
3031
- // src/theme/default/flows/error.tsx
3032
- import { jsx as jsx94 } from "react/jsx-runtime";
3033
5153
  function Error2({
3034
5154
  error,
3035
- children
5155
+ components: Components,
5156
+ config,
5157
+ session
3036
5158
  }) {
3037
- return /* @__PURE__ */ jsx94("div", { "data-testid": "ory/screen/error/raw", children: JSON.stringify(error) || children });
5159
+ var _a, _b, _c, _d, _e, _f, _g, _h, _i;
5160
+ const Card = (_b = (_a = Components == null ? void 0 : Components.Card) == null ? void 0 : _a.Root) != null ? _b : DefaultCard;
5161
+ const Divider = (_d = (_c = Components == null ? void 0 : Components.Card) == null ? void 0 : _c.Divider) != null ? _d : DefaultHorizontalDivider;
5162
+ const parsed = useStandardize(error);
5163
+ const description = errorDescriptions[Math.floor(parsed.code / 100)];
5164
+ return /* @__PURE__ */ jsx94(
5165
+ IntlProvider,
5166
+ {
5167
+ locale: (_f = (_e = config.intl) == null ? void 0 : _e.locale) != null ? _f : "en",
5168
+ customTranslations: (_g = config.intl) == null ? void 0 : _g.customTranslations,
5169
+ children: /* @__PURE__ */ jsx94(Card, { "data-testid": "ory/screen/error", children: /* @__PURE__ */ jsxs45("div", { className: "flex flex-col gap-6 antialiased", children: [
5170
+ /* @__PURE__ */ jsxs45("header", { className: "flex flex-col gap-8 antialiased", children: [
5171
+ /* @__PURE__ */ jsx94(ErrorLogo, { config }),
5172
+ /* @__PURE__ */ jsxs45("div", { className: "flex flex-col gap-2", children: [
5173
+ /* @__PURE__ */ jsx94("h2", { className: "text-lg font-semibold leading-normal text-interface-foreground-default-primary", children: /* @__PURE__ */ jsx94(FormattedMessage, { id: "error.title.what-happened" }) }),
5174
+ /* @__PURE__ */ jsx94("p", { className: "leading-normal text-interface-foreground-default-secondary", children: (_h = parsed.message) != null ? _h : description }),
5175
+ parsed.reason && /* @__PURE__ */ jsx94("p", { className: "leading-normal text-interface-foreground-default-secondary", children: parsed.reason })
5176
+ ] })
5177
+ ] }),
5178
+ /* @__PURE__ */ jsx94(Divider, {}),
5179
+ /* @__PURE__ */ jsxs45("div", { className: "flex flex-col gap-2", children: [
5180
+ /* @__PURE__ */ jsx94("h2", { className: "text-lg font-semibold leading-normal text-interface-foreground-default-primary", children: /* @__PURE__ */ jsx94(FormattedMessage, { id: "error.title.what-can-i-do" }) }),
5181
+ /* @__PURE__ */ jsx94("p", { className: "leading-normal text-interface-foreground-default-secondary", children: /* @__PURE__ */ jsx94(FormattedMessage, { id: "error.instructions" }) }),
5182
+ /* @__PURE__ */ jsx94("div", { children: session ? /* @__PURE__ */ jsx94(LoggedInActions, { config }) : /* @__PURE__ */ jsx94(GoBackButton, { config }) })
5183
+ ] }),
5184
+ /* @__PURE__ */ jsx94(Divider, {}),
5185
+ /* @__PURE__ */ jsxs45("div", { className: "font-normal leading-normal antialiased gap-2 flex flex-col", children: [
5186
+ /* @__PURE__ */ jsx94("span", { className: "text-interface-foreground-default-primary text-sm", children: /* @__PURE__ */ jsx94(FormattedMessage, { id: "error.footer.text" }) }),
5187
+ parsed.id && /* @__PURE__ */ jsxs45("p", { className: "text-interface-foreground-default-secondary text-sm", children: [
5188
+ "ID: ",
5189
+ /* @__PURE__ */ jsx94("code", { children: parsed.id })
5190
+ ] }),
5191
+ /* @__PURE__ */ jsxs45("p", { className: "text-interface-foreground-default-secondary text-sm", children: [
5192
+ "Time: ",
5193
+ /* @__PURE__ */ jsx94("code", { children: (_i = parsed.timestamp) == null ? void 0 : _i.toUTCString() })
5194
+ ] }),
5195
+ /* @__PURE__ */ jsxs45("p", { className: "text-interface-foreground-default-secondary text-sm", children: [
5196
+ "Message: ",
5197
+ /* @__PURE__ */ jsx94("code", { children: parsed.reason })
5198
+ ] }),
5199
+ /* @__PURE__ */ jsx94("div", { children: /* @__PURE__ */ jsx94(
5200
+ "button",
5201
+ {
5202
+ className: "text-interface-foreground-default-primary underline",
5203
+ onClick: () => {
5204
+ var _a2;
5205
+ const text = `${parsed.id ? `ID: ${parsed.id}` : ""}
5206
+ Time: ${(_a2 = parsed.timestamp) == null ? void 0 : _a2.toUTCString()}
5207
+ ${parsed.reason ? `Message: ${parsed.reason}` : ""}
5208
+ `;
5209
+ void navigator.clipboard.writeText(text);
5210
+ },
5211
+ children: /* @__PURE__ */ jsx94(FormattedMessage, { id: "error.footer.copy" })
5212
+ }
5213
+ ) })
5214
+ ] })
5215
+ ] }) })
5216
+ }
5217
+ );
5218
+ }
5219
+ function LoggedInActions({ config }) {
5220
+ const logoutFlow = useClientLogout(config);
5221
+ return /* @__PURE__ */ jsx94(
5222
+ "a",
5223
+ {
5224
+ href: logoutFlow == null ? void 0 : logoutFlow.logout_url,
5225
+ className: "text-interface-foreground-default-primary underline",
5226
+ children: "Logout"
5227
+ }
5228
+ );
5229
+ }
5230
+ function GoBackButton({ config }) {
5231
+ if ("default_redirect_url" in config.project) {
5232
+ return /* @__PURE__ */ jsx94(
5233
+ "a",
5234
+ {
5235
+ className: "text-interface-foreground-default-primary underline",
5236
+ href: config.project.default_redirect_url,
5237
+ children: /* @__PURE__ */ jsx94(FormattedMessage, { id: "error.action.go-back" })
5238
+ }
5239
+ );
5240
+ }
5241
+ return null;
5242
+ }
5243
+ function ErrorLogo({ config }) {
5244
+ if (config.logoUrl) {
5245
+ return /* @__PURE__ */ jsx94("img", { src: config.logoUrl, width: 100, height: 36, alt: "Logo" });
5246
+ }
5247
+ return /* @__PURE__ */ jsx94("h1", { className: "text-xl font-semibold leading-normal text-interface-foreground-default-primary", children: config.name });
3038
5248
  }
3039
5249
 
3040
5250
  // src/theme/default/flows/login.tsx
@@ -3122,7 +5332,7 @@ import {
3122
5332
  OryProvider as OryProvider4,
3123
5333
  OrySettingsCard
3124
5334
  } from "@ory/elements-react";
3125
- import { Fragment as Fragment14, jsx as jsx98, jsxs as jsxs45 } from "react/jsx-runtime";
5335
+ import { Fragment as Fragment14, jsx as jsx98, jsxs as jsxs46 } from "react/jsx-runtime";
3126
5336
  function Settings({
3127
5337
  flow,
3128
5338
  config,
@@ -3137,7 +5347,7 @@ function Settings({
3137
5347
  flow,
3138
5348
  flowType: FlowType20.Settings,
3139
5349
  components,
3140
- children: children != null ? children : /* @__PURE__ */ jsxs45(Fragment14, { children: [
5350
+ children: children != null ? children : /* @__PURE__ */ jsxs46(Fragment14, { children: [
3141
5351
  /* @__PURE__ */ jsx98(HeadlessPageHeader, {}),
3142
5352
  /* @__PURE__ */ jsx98(OrySettingsCard, {})
3143
5353
  ] })