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