@ory/elements-react 0.0.0-pr.8e964fc1 → 0.0.0-pr.96c07cce
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 +245 -0
- package/DEVELOPMENT.md +19 -4
- package/README.md +253 -4
- package/babel.config.js +10 -0
- package/dist/client/frontendClient.d.mts +5 -2
- package/dist/client/frontendClient.d.ts +5 -2
- package/dist/client/frontendClient.js +25 -2
- package/dist/client/frontendClient.js.map +1 -1
- package/dist/client/frontendClient.mjs +25 -2
- package/dist/client/frontendClient.mjs.map +1 -1
- package/dist/client/index.js +3 -3
- package/dist/index.d.mts +97 -27
- package/dist/index.d.ts +97 -27
- package/dist/index.js +943 -352
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +946 -356
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.css +187 -117
- package/dist/theme/default/index.css.map +1 -1
- package/dist/theme/default/index.d.mts +31 -5
- package/dist/theme/default/index.d.ts +31 -5
- package/dist/theme/default/index.js +4320 -814
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +4377 -793
- package/dist/theme/default/index.mjs.map +1 -1
- package/package.json +22 -15
- package/tailwind/generated/default-variables.css +1 -1
- package/tsconfig.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { UiNodeGroupEnum, isUiNodeInputAttributes, FlowType,
|
|
2
|
-
import { createContext, useContext,
|
|
1
|
+
import { UiNodeGroupEnum, isUiNodeInputAttributes, isUiNodeAnchorAttributes, isUiNodeImageAttributes, isUiNodeScriptAttributes, FlowType, getNodeId, isUiNodeTextAttributes, UiNodeInputAttributesTypeEnum, handleContinueWith, handleFlowError, settingsUrl, isResponseError, loginUrl, recoveryUrl, verificationUrl, registrationUrl, Configuration, FrontendApi, instanceOfContinueWithRecoveryUi } from '@ory/client-fetch';
|
|
2
|
+
import { createContext, useContext, useState, useMemo, useReducer, useRef, useEffect } from 'react';
|
|
3
3
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
4
4
|
import { useIntl, IntlProvider as IntlProvider$1 } from 'react-intl';
|
|
5
|
-
import { useForm, FormProvider
|
|
5
|
+
import { useFormContext, useForm, FormProvider } from 'react-hook-form';
|
|
6
6
|
|
|
7
7
|
// src/context/component.tsx
|
|
8
8
|
var ComponentContext = createContext({
|
|
@@ -34,16 +34,30 @@ function useGroupSorter() {
|
|
|
34
34
|
}
|
|
35
35
|
var defaultNodeOrder = [
|
|
36
36
|
"oidc",
|
|
37
|
+
"saml",
|
|
37
38
|
"identifier_first",
|
|
38
39
|
"default",
|
|
39
40
|
"profile",
|
|
40
41
|
"password",
|
|
42
|
+
// CAPTCHA is below password because otherwise the password input field
|
|
43
|
+
// would be above the captcha. Somehow, we sort the password sign up button somewhere else to be always at the bottom.
|
|
44
|
+
"captcha",
|
|
41
45
|
"passkey",
|
|
42
46
|
"code",
|
|
43
47
|
"webauthn"
|
|
44
48
|
];
|
|
45
49
|
function defaultNodeSorter(a, b) {
|
|
46
50
|
var _a, _b;
|
|
51
|
+
const aIsCaptcha = a.group === "captcha";
|
|
52
|
+
const bIsCaptcha = b.group === "captcha";
|
|
53
|
+
const aIsSubmit = isUiNodeInputAttributes(a.attributes) && a.attributes.type === "submit";
|
|
54
|
+
const bIsSubmit = isUiNodeInputAttributes(b.attributes) && b.attributes.type === "submit";
|
|
55
|
+
if (aIsCaptcha && bIsSubmit) {
|
|
56
|
+
return -1;
|
|
57
|
+
}
|
|
58
|
+
if (bIsCaptcha && aIsSubmit) {
|
|
59
|
+
return 1;
|
|
60
|
+
}
|
|
47
61
|
const aGroupWeight = (_a = defaultNodeOrder.indexOf(a.group)) != null ? _a : 999;
|
|
48
62
|
const bGroupWeight = (_b = defaultNodeOrder.indexOf(b.group)) != null ? _b : 999;
|
|
49
63
|
return aGroupWeight - bGroupWeight;
|
|
@@ -83,25 +97,10 @@ function OryComponentProvider({
|
|
|
83
97
|
}
|
|
84
98
|
);
|
|
85
99
|
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
(node) => node.group === UiNodeGroupEnum.IdentifierFirst && "name" in node.attributes && node.attributes.name === "identifier" && node.attributes.type === "hidden"
|
|
91
|
-
);
|
|
92
|
-
}
|
|
93
|
-
function filterOidcOut(nodes) {
|
|
94
|
-
return nodes.filter((node) => node.group !== UiNodeGroupEnum.Oidc);
|
|
95
|
-
}
|
|
96
|
-
function getFinalNodes(uniqueGroups, selectedGroup) {
|
|
97
|
-
var _a, _b, _c;
|
|
98
|
-
const selectedNodes = selectedGroup ? (_a = uniqueGroups[selectedGroup]) != null ? _a : [] : [];
|
|
99
|
-
return [
|
|
100
|
-
...(_b = uniqueGroups == null ? void 0 : uniqueGroups.identifier_first) != null ? _b : [],
|
|
101
|
-
...(_c = uniqueGroups == null ? void 0 : uniqueGroups.default) != null ? _c : []
|
|
102
|
-
].flat().filter(
|
|
103
|
-
(node) => "type" in node.attributes && node.attributes.type === "hidden"
|
|
104
|
-
).concat(selectedNodes);
|
|
100
|
+
|
|
101
|
+
// src/theme/default/utils/form.ts
|
|
102
|
+
function isGroupImmediateSubmit(group) {
|
|
103
|
+
return group === "code";
|
|
105
104
|
}
|
|
106
105
|
function triggerToWindowCall(trigger) {
|
|
107
106
|
if (!trigger) {
|
|
@@ -170,25 +169,37 @@ function nodesToAuthMethodGroups(nodes, excludeAuthMethods = []) {
|
|
|
170
169
|
UiNodeGroupEnum.Default,
|
|
171
170
|
UiNodeGroupEnum.IdentifierFirst,
|
|
172
171
|
UiNodeGroupEnum.Profile,
|
|
172
|
+
UiNodeGroupEnum.Captcha,
|
|
173
173
|
...excludeAuthMethods
|
|
174
174
|
].includes(group)
|
|
175
175
|
);
|
|
176
176
|
}
|
|
177
|
-
function useNodesGroups(nodes) {
|
|
177
|
+
function useNodesGroups(nodes, { omit } = {}) {
|
|
178
178
|
const groupSorter = useGroupSorter();
|
|
179
179
|
const groups = useMemo(() => {
|
|
180
|
-
var _a;
|
|
180
|
+
var _a, _b;
|
|
181
181
|
const groups2 = {};
|
|
182
|
+
const groupRetained = {};
|
|
182
183
|
for (const node of nodes) {
|
|
183
|
-
if (node.type === "script") {
|
|
184
|
-
continue;
|
|
185
|
-
}
|
|
186
184
|
const groupNodes = (_a = groups2[node.group]) != null ? _a : [];
|
|
187
185
|
groupNodes.push(node);
|
|
188
186
|
groups2[node.group] = groupNodes;
|
|
187
|
+
if ((omit == null ? void 0 : omit.includes("script")) && isUiNodeScriptAttributes(node.attributes)) {
|
|
188
|
+
continue;
|
|
189
|
+
}
|
|
190
|
+
if ((omit == null ? void 0 : omit.includes("input_hidden")) && isUiNodeInputAttributes(node.attributes) && node.attributes.type === "hidden") {
|
|
191
|
+
continue;
|
|
192
|
+
}
|
|
193
|
+
groupRetained[node.group] = ((_b = groupRetained[node.group]) != null ? _b : 0) + 1;
|
|
189
194
|
}
|
|
190
|
-
|
|
191
|
-
|
|
195
|
+
const finalGroups = {};
|
|
196
|
+
for (const [group, count] of Object.entries(groupRetained)) {
|
|
197
|
+
if (count > 0) {
|
|
198
|
+
finalGroups[group] = groups2[group];
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
return finalGroups;
|
|
202
|
+
}, [nodes, omit]);
|
|
192
203
|
const entries = useMemo(
|
|
193
204
|
() => Object.entries(groups).sort(([a], [b]) => groupSorter(a, b)),
|
|
194
205
|
[groups, groupSorter]
|
|
@@ -198,6 +209,96 @@ function useNodesGroups(nodes) {
|
|
|
198
209
|
entries
|
|
199
210
|
};
|
|
200
211
|
}
|
|
212
|
+
var findNode = (nodes, opt) => nodes.find((n) => {
|
|
213
|
+
return n.attributes.node_type === opt.node_type && (opt.group instanceof RegExp ? n.group.match(opt.group) : n.group === opt.group) && (opt.name && n.attributes.node_type === "input" ? opt.name instanceof RegExp ? n.attributes.name.match(opt.name) : n.attributes.name === opt.name : !opt.name);
|
|
214
|
+
});
|
|
215
|
+
function useFunctionalNodes(nodes) {
|
|
216
|
+
return nodes.filter(
|
|
217
|
+
({ group }) => [
|
|
218
|
+
UiNodeGroupEnum.Default,
|
|
219
|
+
UiNodeGroupEnum.IdentifierFirst,
|
|
220
|
+
UiNodeGroupEnum.Profile,
|
|
221
|
+
UiNodeGroupEnum.Captcha
|
|
222
|
+
].includes(group)
|
|
223
|
+
);
|
|
224
|
+
}
|
|
225
|
+
function isUiNodeGroupEnum(method) {
|
|
226
|
+
return Object.values(UiNodeGroupEnum).includes(method);
|
|
227
|
+
}
|
|
228
|
+
function isSingleSignOnNode(node) {
|
|
229
|
+
return node.group === UiNodeGroupEnum.Oidc || node.group === UiNodeGroupEnum.Saml;
|
|
230
|
+
}
|
|
231
|
+
function hasSingleSignOnNodes(nodes) {
|
|
232
|
+
return nodes.some(isSingleSignOnNode);
|
|
233
|
+
}
|
|
234
|
+
function withoutSingleSignOnNodes(nodes) {
|
|
235
|
+
return nodes.filter((node) => !isSingleSignOnNode(node));
|
|
236
|
+
}
|
|
237
|
+
function isNodeVisible(node) {
|
|
238
|
+
if (isUiNodeScriptAttributes(node.attributes)) {
|
|
239
|
+
return false;
|
|
240
|
+
} else if (isUiNodeInputAttributes(node.attributes)) {
|
|
241
|
+
if (node.attributes.type === "hidden") {
|
|
242
|
+
return false;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
return true;
|
|
246
|
+
}
|
|
247
|
+
function useNodeGroupsWithVisibleNodes(nodes) {
|
|
248
|
+
return useMemo(() => {
|
|
249
|
+
var _a, _b;
|
|
250
|
+
const groups = {};
|
|
251
|
+
const groupRetained = {};
|
|
252
|
+
for (const node of nodes) {
|
|
253
|
+
const groupNodes = (_a = groups[node.group]) != null ? _a : [];
|
|
254
|
+
const groupCount = (_b = groupRetained[node.group]) != null ? _b : 0;
|
|
255
|
+
groupNodes.push(node);
|
|
256
|
+
groups[node.group] = groupNodes;
|
|
257
|
+
if (!isNodeVisible(node)) {
|
|
258
|
+
continue;
|
|
259
|
+
}
|
|
260
|
+
groupRetained[node.group] = groupCount + 1;
|
|
261
|
+
}
|
|
262
|
+
const finalGroups = {};
|
|
263
|
+
for (const [group, count] of Object.entries(groupRetained)) {
|
|
264
|
+
if (count > 0) {
|
|
265
|
+
finalGroups[group] = groups[group];
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
return finalGroups;
|
|
269
|
+
}, [nodes]);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// src/components/card/two-step/utils.ts
|
|
273
|
+
function isChoosingMethod(flow) {
|
|
274
|
+
return flow.flow.ui.nodes.some(
|
|
275
|
+
(node) => "name" in node.attributes && node.attributes.name === "screen" && "value" in node.attributes && node.attributes.value === "previous"
|
|
276
|
+
) || flow.flow.ui.nodes.some(
|
|
277
|
+
(node) => node.group === UiNodeGroupEnum.IdentifierFirst && "name" in node.attributes && node.attributes.name === "identifier" && node.attributes.type === "hidden"
|
|
278
|
+
) || flow.flowType === FlowType.Login && flow.flow.requested_aal === "aal2";
|
|
279
|
+
}
|
|
280
|
+
function getFinalNodes(uniqueGroups, selectedGroup) {
|
|
281
|
+
var _a, _b, _c, _d;
|
|
282
|
+
const selectedNodes = selectedGroup ? (_a = uniqueGroups[selectedGroup]) != null ? _a : [] : [];
|
|
283
|
+
return [
|
|
284
|
+
...(_b = uniqueGroups == null ? void 0 : uniqueGroups.identifier_first) != null ? _b : [],
|
|
285
|
+
...(_c = uniqueGroups == null ? void 0 : uniqueGroups.default) != null ? _c : [],
|
|
286
|
+
...(_d = uniqueGroups == null ? void 0 : uniqueGroups.captcha) != null ? _d : []
|
|
287
|
+
].flat().filter(
|
|
288
|
+
(node) => "type" in node.attributes && node.attributes.type === "hidden"
|
|
289
|
+
).concat(selectedNodes);
|
|
290
|
+
}
|
|
291
|
+
var handleAfterFormSubmit = (dispatchFormState) => (method) => {
|
|
292
|
+
if (typeof method !== "string" || !isUiNodeGroupEnum(method)) {
|
|
293
|
+
return;
|
|
294
|
+
}
|
|
295
|
+
if (isGroupImmediateSubmit(method)) {
|
|
296
|
+
dispatchFormState({
|
|
297
|
+
type: "action_select_method",
|
|
298
|
+
method
|
|
299
|
+
});
|
|
300
|
+
}
|
|
301
|
+
};
|
|
201
302
|
|
|
202
303
|
// src/context/form-state.ts
|
|
203
304
|
function findMethodWithMessage(nodes) {
|
|
@@ -219,9 +320,11 @@ function parseStateFromFlow(flow) {
|
|
|
219
320
|
return { current: "method_active", method: "code" };
|
|
220
321
|
} else if (methodWithMessage) {
|
|
221
322
|
return { current: "method_active", method: methodWithMessage.group };
|
|
222
|
-
} else if (flow.flow.active && !["default", "identifier_first", "oidc"].includes(
|
|
323
|
+
} else if (flow.flow.active && !["default", "identifier_first", "oidc", "saml"].includes(
|
|
324
|
+
flow.flow.active
|
|
325
|
+
)) {
|
|
223
326
|
return { current: "method_active", method: flow.flow.active };
|
|
224
|
-
} else if (isChoosingMethod(flow
|
|
327
|
+
} else if (isChoosingMethod(flow)) {
|
|
225
328
|
const authMethods = nodesToAuthMethodGroups(flow.flow.ui.nodes);
|
|
226
329
|
if (authMethods.length === 1 && authMethods[0] !== "code") {
|
|
227
330
|
return { current: "method_active", method: authMethods[0] };
|
|
@@ -243,23 +346,32 @@ function parseStateFromFlow(flow) {
|
|
|
243
346
|
break;
|
|
244
347
|
case FlowType.Settings:
|
|
245
348
|
return { current: "settings" };
|
|
349
|
+
case FlowType.OAuth2Consent:
|
|
350
|
+
return { current: "method_active", method: "oauth2_consent" };
|
|
246
351
|
}
|
|
247
352
|
console.warn(
|
|
248
353
|
`[Ory/Elements React] Encountered an unknown form state on ${flow.flowType} flow with ID ${flow.flow.id}`
|
|
249
354
|
);
|
|
250
355
|
throw new Error("Unknown form state");
|
|
251
356
|
}
|
|
252
|
-
function formStateReducer(state, action) {
|
|
253
|
-
switch (action.type) {
|
|
254
|
-
case "action_flow_update":
|
|
255
|
-
return parseStateFromFlow(action.flow);
|
|
256
|
-
case "action_select_method":
|
|
257
|
-
return { current: "method_active", method: action.method };
|
|
258
|
-
}
|
|
259
|
-
return state;
|
|
260
|
-
}
|
|
261
357
|
function useFormStateReducer(flow) {
|
|
262
|
-
|
|
358
|
+
const action = parseStateFromFlow(flow);
|
|
359
|
+
const [selectedMethod, setSelectedMethod] = useState();
|
|
360
|
+
const formStateReducer = (state, action2) => {
|
|
361
|
+
switch (action2.type) {
|
|
362
|
+
case "action_flow_update": {
|
|
363
|
+
if (selectedMethod)
|
|
364
|
+
return { current: "method_active", method: selectedMethod };
|
|
365
|
+
return parseStateFromFlow(action2.flow);
|
|
366
|
+
}
|
|
367
|
+
case "action_select_method": {
|
|
368
|
+
setSelectedMethod(action2.method);
|
|
369
|
+
return { current: "method_active", method: action2.method };
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
return state;
|
|
373
|
+
};
|
|
374
|
+
return useReducer(formStateReducer, action);
|
|
263
375
|
}
|
|
264
376
|
function useOryFlow() {
|
|
265
377
|
const ctx = useContext(OryFlowContext);
|
|
@@ -349,6 +461,22 @@ function computeDefaultValues(nodes) {
|
|
|
349
461
|
if (attrs.name === "method" || attrs.type === "submit" || typeof attrs.value === "undefined") {
|
|
350
462
|
return acc;
|
|
351
463
|
}
|
|
464
|
+
if (attrs.name.startsWith("grant_scope")) {
|
|
465
|
+
const scope = attrs.value;
|
|
466
|
+
if (Array.isArray(acc.grant_scope)) {
|
|
467
|
+
return {
|
|
468
|
+
...acc,
|
|
469
|
+
// We want to have all scopes accepted by default, so that the user has to actively uncheck them.
|
|
470
|
+
grant_scope: [...acc.grant_scope, scope]
|
|
471
|
+
};
|
|
472
|
+
} else if (!acc.grant_scope) {
|
|
473
|
+
return {
|
|
474
|
+
...acc,
|
|
475
|
+
grant_scope: [scope]
|
|
476
|
+
};
|
|
477
|
+
}
|
|
478
|
+
return acc;
|
|
479
|
+
}
|
|
352
480
|
return unrollTrait(
|
|
353
481
|
{
|
|
354
482
|
name: attrs.name,
|
|
@@ -436,15 +564,11 @@ function OryCardContent({ children }) {
|
|
|
436
564
|
const { Card } = useComponents();
|
|
437
565
|
return /* @__PURE__ */ jsx(Card.Content, { children });
|
|
438
566
|
}
|
|
439
|
-
|
|
440
|
-
// src/theme/default/utils/form.ts
|
|
441
|
-
function isGroupImmediateSubmit(group) {
|
|
442
|
-
return group === "code";
|
|
443
|
-
}
|
|
444
567
|
function frontendClient(sdkUrl, opts = {}) {
|
|
445
568
|
const config = new Configuration({
|
|
446
569
|
...opts,
|
|
447
570
|
basePath: sdkUrl,
|
|
571
|
+
credentials: "include",
|
|
448
572
|
headers: {
|
|
449
573
|
Accept: "application/json",
|
|
450
574
|
...opts.headers
|
|
@@ -780,7 +904,7 @@ function useOryFormSubmit(onAfterSubmit) {
|
|
|
780
904
|
if ("lookup_secret_confirm" in submitData || "lookup_secret_reveal" in submitData || "lookup_secret_regenerate" in submitData || "lookup_secret_disable" in submitData) {
|
|
781
905
|
submitData.method = "lookup_secret";
|
|
782
906
|
}
|
|
783
|
-
if (submitData.method ===
|
|
907
|
+
if (submitData.method === UiNodeGroupEnum.Oidc && submitData.link && supportsSelectAccountPrompt.includes(submitData.link)) {
|
|
784
908
|
submitData.upstream_parameters = {
|
|
785
909
|
prompt: "select_account"
|
|
786
910
|
};
|
|
@@ -798,6 +922,19 @@ function useOryFormSubmit(onAfterSubmit) {
|
|
|
798
922
|
});
|
|
799
923
|
break;
|
|
800
924
|
}
|
|
925
|
+
case FlowType.OAuth2Consent: {
|
|
926
|
+
const response = await fetch(flowContainer.flow.ui.action, {
|
|
927
|
+
method: "POST",
|
|
928
|
+
body: JSON.stringify(data),
|
|
929
|
+
headers: {
|
|
930
|
+
"Content-Type": "application/json"
|
|
931
|
+
}
|
|
932
|
+
});
|
|
933
|
+
const oauth2Success = await response.json();
|
|
934
|
+
if (oauth2Success.redirect_to && typeof oauth2Success.redirect_to === "string") {
|
|
935
|
+
onRedirect(oauth2Success.redirect_to);
|
|
936
|
+
}
|
|
937
|
+
}
|
|
801
938
|
}
|
|
802
939
|
if ("password" in data) {
|
|
803
940
|
methods.setValue("password", "");
|
|
@@ -812,15 +949,22 @@ function useOryFormSubmit(onAfterSubmit) {
|
|
|
812
949
|
};
|
|
813
950
|
return onSubmit;
|
|
814
951
|
}
|
|
815
|
-
function OryForm({
|
|
816
|
-
|
|
952
|
+
function OryForm({
|
|
953
|
+
children,
|
|
954
|
+
onAfterSubmit,
|
|
955
|
+
"data-testid": dataTestId
|
|
956
|
+
}) {
|
|
817
957
|
const { Form } = useComponents();
|
|
818
958
|
const flowContainer = useOryFlow();
|
|
819
959
|
const methods = useFormContext();
|
|
960
|
+
const { Message } = useComponents();
|
|
820
961
|
const intl = useIntl();
|
|
821
962
|
const onSubmit = useOryFormSubmit(onAfterSubmit);
|
|
822
963
|
const hasMethods = flowContainer.flow.ui.nodes.some((node) => {
|
|
823
964
|
if (isUiNodeInputAttributes(node.attributes)) {
|
|
965
|
+
if (node.attributes.type === "hidden") {
|
|
966
|
+
return false;
|
|
967
|
+
}
|
|
824
968
|
return node.attributes.name !== "csrf_token";
|
|
825
969
|
} else if (isUiNodeAnchorAttributes(node.attributes)) {
|
|
826
970
|
return true;
|
|
@@ -831,15 +975,24 @@ function OryForm({ children, onAfterSubmit }) {
|
|
|
831
975
|
}
|
|
832
976
|
return false;
|
|
833
977
|
});
|
|
834
|
-
if (!hasMethods
|
|
835
|
-
|
|
836
|
-
id:
|
|
837
|
-
|
|
838
|
-
|
|
978
|
+
if (!hasMethods) {
|
|
979
|
+
const m = {
|
|
980
|
+
id: 5000002,
|
|
981
|
+
text: intl.formatMessage({
|
|
982
|
+
id: `identities.messages.${5000002}`,
|
|
983
|
+
defaultMessage: "No authentication methods are available for this request. Please contact the site or app owner."
|
|
984
|
+
}),
|
|
985
|
+
type: "error"
|
|
986
|
+
};
|
|
987
|
+
return /* @__PURE__ */ jsx("div", { "data-testid": dataTestId, children: /* @__PURE__ */ jsx(Message.Root, { children: /* @__PURE__ */ jsx(Message.Content, { message: m }, m.id) }) });
|
|
988
|
+
}
|
|
989
|
+
if ((flowContainer.flowType === FlowType.Login || flowContainer.flowType === FlowType.Registration) && flowContainer.formState.current === "method_active" && flowContainer.formState.method === "code") {
|
|
990
|
+
methods.setValue("method", "code");
|
|
839
991
|
}
|
|
840
992
|
return /* @__PURE__ */ jsx(
|
|
841
993
|
Form.Root,
|
|
842
994
|
{
|
|
995
|
+
"data-testid": dataTestId,
|
|
843
996
|
action: flowContainer.flow.ui.action,
|
|
844
997
|
method: flowContainer.flow.ui.method,
|
|
845
998
|
onSubmit: (e) => void methods.handleSubmit(onSubmit)(e),
|
|
@@ -847,7 +1000,15 @@ function OryForm({ children, onAfterSubmit }) {
|
|
|
847
1000
|
}
|
|
848
1001
|
);
|
|
849
1002
|
}
|
|
850
|
-
var messageIdsToHide = [
|
|
1003
|
+
var messageIdsToHide = [
|
|
1004
|
+
1040009,
|
|
1005
|
+
1060003,
|
|
1006
|
+
1080003,
|
|
1007
|
+
1010004,
|
|
1008
|
+
1010014,
|
|
1009
|
+
1040005,
|
|
1010
|
+
1010016
|
|
1011
|
+
];
|
|
851
1012
|
function OryCardValidationMessages({ ...props }) {
|
|
852
1013
|
var _a;
|
|
853
1014
|
const { flow } = useOryFlow();
|
|
@@ -866,7 +1027,7 @@ var NodeInput = ({
|
|
|
866
1027
|
}) => {
|
|
867
1028
|
var _a;
|
|
868
1029
|
const { Node: Node2 } = useComponents();
|
|
869
|
-
const { setValue } = useFormContext();
|
|
1030
|
+
const { setValue, watch } = useFormContext();
|
|
870
1031
|
const {
|
|
871
1032
|
onloadTrigger,
|
|
872
1033
|
onclickTrigger,
|
|
@@ -879,7 +1040,7 @@ var NodeInput = ({
|
|
|
879
1040
|
const isResendNode = ((_a = node.meta.label) == null ? void 0 : _a.id) === 1070008;
|
|
880
1041
|
const isScreenSelectionNode = "name" in node.attributes && node.attributes.name === "screen";
|
|
881
1042
|
const setFormValue = () => {
|
|
882
|
-
if (attrs.value && !(isResendNode || isScreenSelectionNode)) {
|
|
1043
|
+
if (attrs.value && !(isResendNode || isScreenSelectionNode || node.group === UiNodeGroupEnum.Oauth2Consent)) {
|
|
883
1044
|
setValue(attrs.name, attrs.value);
|
|
884
1045
|
}
|
|
885
1046
|
};
|
|
@@ -902,8 +1063,21 @@ var NodeInput = ({
|
|
|
902
1063
|
triggerToWindowCall(onclickTrigger);
|
|
903
1064
|
}
|
|
904
1065
|
};
|
|
905
|
-
const isSocial = (attrs.name === "provider" || attrs.name === "link") && node.group ===
|
|
1066
|
+
const isSocial = (attrs.name === "provider" || attrs.name === "link") && (node.group === UiNodeGroupEnum.Oidc || node.group === UiNodeGroupEnum.Saml);
|
|
906
1067
|
const isPinCodeInput = attrs.name === "code" && node.group === "code" || attrs.name === "totp_code" && node.group === "totp";
|
|
1068
|
+
const handleScopeChange = (checked) => {
|
|
1069
|
+
const scopes = watch("grant_scope");
|
|
1070
|
+
if (Array.isArray(scopes)) {
|
|
1071
|
+
if (checked) {
|
|
1072
|
+
setValue("grant_scope", Array.from(/* @__PURE__ */ new Set([...scopes, attrs.value])));
|
|
1073
|
+
} else {
|
|
1074
|
+
setValue(
|
|
1075
|
+
"grant_scope",
|
|
1076
|
+
scopes.filter((scope) => scope !== attrs.value)
|
|
1077
|
+
);
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
};
|
|
907
1081
|
switch (attributes.type) {
|
|
908
1082
|
case UiNodeInputAttributesTypeEnum.Submit:
|
|
909
1083
|
case UiNodeInputAttributesTypeEnum.Button:
|
|
@@ -913,6 +1087,9 @@ var NodeInput = ({
|
|
|
913
1087
|
if (isResendNode || isScreenSelectionNode) {
|
|
914
1088
|
return null;
|
|
915
1089
|
}
|
|
1090
|
+
if (node.group === "oauth2_consent") {
|
|
1091
|
+
return null;
|
|
1092
|
+
}
|
|
916
1093
|
return /* @__PURE__ */ jsx(
|
|
917
1094
|
Node2.Label,
|
|
918
1095
|
{
|
|
@@ -924,6 +1101,21 @@ var NodeInput = ({
|
|
|
924
1101
|
case UiNodeInputAttributesTypeEnum.DatetimeLocal:
|
|
925
1102
|
throw new Error("Not implemented");
|
|
926
1103
|
case UiNodeInputAttributesTypeEnum.Checkbox:
|
|
1104
|
+
if (node.group === "oauth2_consent" && node.attributes.node_type === "input") {
|
|
1105
|
+
switch (node.attributes.name) {
|
|
1106
|
+
case "grant_scope":
|
|
1107
|
+
return /* @__PURE__ */ jsx(
|
|
1108
|
+
Node2.ConsentScopeCheckbox,
|
|
1109
|
+
{
|
|
1110
|
+
attributes: attrs,
|
|
1111
|
+
node,
|
|
1112
|
+
onCheckedChange: handleScopeChange
|
|
1113
|
+
}
|
|
1114
|
+
);
|
|
1115
|
+
default:
|
|
1116
|
+
return null;
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
927
1119
|
return /* @__PURE__ */ jsx(
|
|
928
1120
|
Node2.Label,
|
|
929
1121
|
{
|
|
@@ -950,6 +1142,9 @@ var NodeInput = ({
|
|
|
950
1142
|
};
|
|
951
1143
|
var Node = ({ node, onClick }) => {
|
|
952
1144
|
const { Node: Node2 } = useComponents();
|
|
1145
|
+
if (node.group === UiNodeGroupEnum.Captcha) {
|
|
1146
|
+
return /* @__PURE__ */ jsx(Node2.Captcha, { node });
|
|
1147
|
+
}
|
|
953
1148
|
if (isUiNodeImageAttributes(node.attributes)) {
|
|
954
1149
|
return /* @__PURE__ */ jsx(Node2.Image, { node, attributes: node.attributes });
|
|
955
1150
|
} else if (isUiNodeTextAttributes(node.attributes)) {
|
|
@@ -982,12 +1177,14 @@ function OryFormOidcButtons() {
|
|
|
982
1177
|
flow: { ui }
|
|
983
1178
|
} = useOryFlow();
|
|
984
1179
|
const { setValue } = useFormContext();
|
|
985
|
-
const filteredNodes = ui.nodes.filter(
|
|
1180
|
+
const filteredNodes = ui.nodes.filter(
|
|
1181
|
+
(node) => node.group === UiNodeGroupEnum.Oidc || node.group === UiNodeGroupEnum.Saml
|
|
1182
|
+
);
|
|
986
1183
|
const { Form, Node: Node2 } = useComponents();
|
|
987
1184
|
if (filteredNodes.length === 0) {
|
|
988
1185
|
return null;
|
|
989
1186
|
}
|
|
990
|
-
return /* @__PURE__ */ jsx(Form.OidcRoot, { nodes: filteredNodes, children: filteredNodes.map((node
|
|
1187
|
+
return /* @__PURE__ */ jsx(Form.OidcRoot, { nodes: filteredNodes, children: filteredNodes.map((node) => /* @__PURE__ */ jsx(
|
|
991
1188
|
Node2.OidcButton,
|
|
992
1189
|
{
|
|
993
1190
|
node,
|
|
@@ -997,114 +1194,217 @@ function OryFormOidcButtons() {
|
|
|
997
1194
|
"provider",
|
|
998
1195
|
node.attributes.value
|
|
999
1196
|
);
|
|
1000
|
-
setValue("method",
|
|
1197
|
+
setValue("method", node.group);
|
|
1001
1198
|
}
|
|
1002
1199
|
},
|
|
1003
|
-
|
|
1200
|
+
getNodeId(node)
|
|
1004
1201
|
)) });
|
|
1005
1202
|
}
|
|
1006
1203
|
function OryFormSocialButtonsForm() {
|
|
1007
1204
|
const {
|
|
1008
1205
|
flow: { ui }
|
|
1009
1206
|
} = useOryFlow();
|
|
1010
|
-
const filteredNodes = ui.nodes.filter(
|
|
1207
|
+
const filteredNodes = ui.nodes.filter(
|
|
1208
|
+
(node) => node.group === UiNodeGroupEnum.Saml || node.group === UiNodeGroupEnum.Oidc
|
|
1209
|
+
);
|
|
1011
1210
|
if (filteredNodes.length === 0) {
|
|
1012
1211
|
return null;
|
|
1013
1212
|
}
|
|
1014
|
-
return /* @__PURE__ */ jsx(OryFormProvider, { children: /* @__PURE__ */ jsx(OryForm, { children: /* @__PURE__ */ jsx(OryFormOidcButtons, {}) }) });
|
|
1213
|
+
return /* @__PURE__ */ jsx(OryFormProvider, { children: /* @__PURE__ */ jsx(OryForm, { "data-testid": `ory/form/methods/oidc-saml`, children: /* @__PURE__ */ jsx(OryFormOidcButtons, {}) }) });
|
|
1015
1214
|
}
|
|
1016
|
-
function
|
|
1017
|
-
|
|
1215
|
+
function OryTwoStepCardStateMethodActive({
|
|
1216
|
+
formState
|
|
1217
|
+
}) {
|
|
1218
|
+
const { Form } = useComponents();
|
|
1219
|
+
const { flow, flowType, dispatchFormState } = useOryFlow();
|
|
1220
|
+
const { ui } = flow;
|
|
1221
|
+
const nodeSorter = useNodeSorter();
|
|
1222
|
+
const sortNodes = (a, b) => nodeSorter(a, b, { flowType });
|
|
1223
|
+
const groupsToShow = useNodeGroupsWithVisibleNodes(ui.nodes);
|
|
1224
|
+
const finalNodes = getFinalNodes(groupsToShow, formState.method);
|
|
1225
|
+
const selectedMethodIsSocial = formState.method === UiNodeGroupEnum.Oidc || formState.method === UiNodeGroupEnum.Saml;
|
|
1226
|
+
return /* @__PURE__ */ jsxs(OryCard, { children: [
|
|
1227
|
+
/* @__PURE__ */ jsx(OryCardHeader, {}),
|
|
1228
|
+
/* @__PURE__ */ jsxs(OryCardContent, { children: [
|
|
1229
|
+
/* @__PURE__ */ jsx(OryCardValidationMessages, {}),
|
|
1230
|
+
selectedMethodIsSocial && /* @__PURE__ */ jsx(OryFormSocialButtonsForm, {}),
|
|
1231
|
+
/* @__PURE__ */ jsx(
|
|
1232
|
+
OryForm,
|
|
1233
|
+
{
|
|
1234
|
+
"data-testid": `ory/form/methods/local`,
|
|
1235
|
+
onAfterSubmit: handleAfterFormSubmit(dispatchFormState),
|
|
1236
|
+
children: /* @__PURE__ */ jsxs(Form.Group, { children: [
|
|
1237
|
+
ui.nodes.filter(
|
|
1238
|
+
(n) => isUiNodeScriptAttributes(n.attributes) || n.group === UiNodeGroupEnum.Captcha || n.group === UiNodeGroupEnum.Default || n.group === UiNodeGroupEnum.Profile
|
|
1239
|
+
).map((node, k) => /* @__PURE__ */ jsx(Node, { node }, k)),
|
|
1240
|
+
finalNodes.sort(sortNodes).map((node, k) => /* @__PURE__ */ jsx(Node, { node }, k))
|
|
1241
|
+
] })
|
|
1242
|
+
}
|
|
1243
|
+
)
|
|
1244
|
+
] }),
|
|
1245
|
+
/* @__PURE__ */ jsx(OryCardFooter, {})
|
|
1246
|
+
] });
|
|
1018
1247
|
}
|
|
1019
|
-
function
|
|
1020
|
-
const {
|
|
1021
|
-
flow: { ui },
|
|
1022
|
-
flowType,
|
|
1023
|
-
formState,
|
|
1024
|
-
dispatchFormState
|
|
1025
|
-
} = useOryFlow();
|
|
1248
|
+
function OryTwoStepCardStateProvideIdentifier() {
|
|
1026
1249
|
const { Form, Card } = useComponents();
|
|
1250
|
+
const { flowType, flow, dispatchFormState } = useOryFlow();
|
|
1027
1251
|
const nodeSorter = useNodeSorter();
|
|
1028
1252
|
const sortNodes = (a, b) => nodeSorter(a, b, { flowType });
|
|
1029
|
-
const
|
|
1030
|
-
const
|
|
1031
|
-
|
|
1032
|
-
return (_a = uniqueGroups.groups[group]) == null ? void 0 : _a.length;
|
|
1033
|
-
}).filter(
|
|
1034
|
-
(group) => ![
|
|
1035
|
-
UiNodeGroupEnum.Oidc,
|
|
1036
|
-
UiNodeGroupEnum.Default,
|
|
1037
|
-
UiNodeGroupEnum.IdentifierFirst,
|
|
1038
|
-
UiNodeGroupEnum.Profile
|
|
1039
|
-
].includes(group)
|
|
1253
|
+
const nonSsoNodes = withoutSingleSignOnNodes(flow.ui.nodes).sort(sortNodes);
|
|
1254
|
+
const hasSso = flow.ui.nodes.filter(isNodeVisible).some(
|
|
1255
|
+
(node) => node.group === UiNodeGroupEnum.Oidc || node.group === UiNodeGroupEnum.Saml
|
|
1040
1256
|
);
|
|
1041
|
-
const
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1257
|
+
const showSsoDivider = hasSso && nonSsoNodes.some(isNodeVisible);
|
|
1258
|
+
return /* @__PURE__ */ jsxs(OryCard, { children: [
|
|
1259
|
+
/* @__PURE__ */ jsx(OryCardHeader, {}),
|
|
1260
|
+
/* @__PURE__ */ jsxs(OryCardContent, { children: [
|
|
1261
|
+
/* @__PURE__ */ jsx(OryCardValidationMessages, {}),
|
|
1262
|
+
/* @__PURE__ */ jsx(OryFormSocialButtonsForm, {}),
|
|
1263
|
+
/* @__PURE__ */ jsx(
|
|
1264
|
+
OryForm,
|
|
1265
|
+
{
|
|
1266
|
+
"data-testid": `ory/form/methods/local`,
|
|
1267
|
+
onAfterSubmit: handleAfterFormSubmit(dispatchFormState),
|
|
1268
|
+
children: /* @__PURE__ */ jsxs(Form.Group, { children: [
|
|
1269
|
+
showSsoDivider && /* @__PURE__ */ jsx(Card.Divider, {}),
|
|
1270
|
+
nonSsoNodes.map((node, k) => /* @__PURE__ */ jsx(Node, { node }, k))
|
|
1271
|
+
] })
|
|
1272
|
+
}
|
|
1273
|
+
)
|
|
1274
|
+
] }),
|
|
1275
|
+
/* @__PURE__ */ jsx(OryCardFooter, {})
|
|
1276
|
+
] });
|
|
1277
|
+
}
|
|
1278
|
+
function AuthMethodList({
|
|
1279
|
+
options,
|
|
1280
|
+
setSelectedGroup
|
|
1281
|
+
}) {
|
|
1282
|
+
const { Card } = useComponents();
|
|
1283
|
+
const { setValue, getValues } = useFormContext();
|
|
1284
|
+
if (Object.entries(options).length === 0) {
|
|
1285
|
+
return null;
|
|
1286
|
+
}
|
|
1287
|
+
const handleClick = (group, options2) => {
|
|
1288
|
+
var _a, _b, _c, _d;
|
|
1289
|
+
if (isGroupImmediateSubmit(group)) {
|
|
1290
|
+
if (group === "code" && !getValues("identifier") && ((_b = (_a = options2 == null ? void 0 : options2.title) == null ? void 0 : _a.values) == null ? void 0 : _b.address)) {
|
|
1291
|
+
setValue("identifier", (_d = (_c = options2 == null ? void 0 : options2.title) == null ? void 0 : _c.values) == null ? void 0 : _d.address);
|
|
1292
|
+
}
|
|
1293
|
+
setValue("method", group);
|
|
1294
|
+
} else {
|
|
1295
|
+
setSelectedGroup(group);
|
|
1046
1296
|
}
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1297
|
+
};
|
|
1298
|
+
return /* @__PURE__ */ jsx(Card.AuthMethodListContainer, { children: Object.entries(options).map(([group, options2]) => /* @__PURE__ */ jsx(
|
|
1299
|
+
Card.AuthMethodListItem,
|
|
1300
|
+
{
|
|
1301
|
+
group,
|
|
1302
|
+
title: options2.title,
|
|
1303
|
+
onClick: () => handleClick(group, options2)
|
|
1304
|
+
},
|
|
1305
|
+
group
|
|
1306
|
+
)) });
|
|
1307
|
+
}
|
|
1308
|
+
function toAuthMethodPickerOptions(visibleGroups) {
|
|
1309
|
+
return Object.fromEntries(
|
|
1310
|
+
Object.values(UiNodeGroupEnum).filter((group) => {
|
|
1311
|
+
var _a;
|
|
1312
|
+
return (_a = visibleGroups[group]) == null ? void 0 : _a.length;
|
|
1313
|
+
}).filter(
|
|
1314
|
+
(group) => ![
|
|
1315
|
+
UiNodeGroupEnum.Oidc,
|
|
1316
|
+
UiNodeGroupEnum.Saml,
|
|
1317
|
+
UiNodeGroupEnum.Default,
|
|
1318
|
+
UiNodeGroupEnum.IdentifierFirst,
|
|
1319
|
+
UiNodeGroupEnum.Profile,
|
|
1320
|
+
UiNodeGroupEnum.Captcha
|
|
1321
|
+
].includes(group)
|
|
1322
|
+
).map((g) => [g, {}])
|
|
1323
|
+
);
|
|
1324
|
+
}
|
|
1325
|
+
function OryTwoStepCardStateSelectMethod() {
|
|
1326
|
+
var _a, _b, _c, _d;
|
|
1327
|
+
const { Form, Card, Message } = useComponents();
|
|
1328
|
+
const { flow, flowType, dispatchFormState } = useOryFlow();
|
|
1329
|
+
const { ui } = flow;
|
|
1330
|
+
const intl = useIntl();
|
|
1331
|
+
const nodeSorter = useNodeSorter();
|
|
1332
|
+
const sortNodes = (a, b) => nodeSorter(a, b, { flowType });
|
|
1333
|
+
const visibleGroups = useNodeGroupsWithVisibleNodes(ui.nodes);
|
|
1334
|
+
const authMethodBlocks = toAuthMethodPickerOptions(visibleGroups);
|
|
1335
|
+
const authMethodAdditionalNodes = useFunctionalNodes(ui.nodes);
|
|
1336
|
+
if (UiNodeGroupEnum.Code in authMethodBlocks) {
|
|
1337
|
+
let identifier = (_b = (_a = findNode(ui.nodes, {
|
|
1338
|
+
group: "identifier_first",
|
|
1339
|
+
node_type: "input",
|
|
1340
|
+
name: "identifier"
|
|
1341
|
+
})) == null ? void 0 : _a.attributes) == null ? void 0 : _b.value;
|
|
1342
|
+
identifier || (identifier = (_d = (_c = findNode(ui.nodes, {
|
|
1343
|
+
group: "code",
|
|
1344
|
+
node_type: "input",
|
|
1345
|
+
name: "address"
|
|
1346
|
+
})) == null ? void 0 : _c.attributes) == null ? void 0 : _d.value);
|
|
1347
|
+
if (identifier) {
|
|
1348
|
+
authMethodBlocks[UiNodeGroupEnum.Code] = {
|
|
1349
|
+
title: {
|
|
1350
|
+
id: "identities.messages.1010023",
|
|
1351
|
+
values: { address: identifier }
|
|
1352
|
+
}
|
|
1353
|
+
};
|
|
1052
1354
|
}
|
|
1355
|
+
}
|
|
1356
|
+
const noMethods = {
|
|
1357
|
+
id: 5000002,
|
|
1358
|
+
text: intl.formatMessage({
|
|
1359
|
+
id: `identities.messages.5000002`,
|
|
1360
|
+
defaultMessage: "No authentication methods are available for this request. Please contact the site or app owner."
|
|
1361
|
+
}),
|
|
1362
|
+
type: "error"
|
|
1053
1363
|
};
|
|
1054
|
-
const hasOidc = ui.nodes.some((node) => node.group === UiNodeGroupEnum.Oidc);
|
|
1055
|
-
const showOidc = !(formState.current === "method_active" && formState.method !== "oidc");
|
|
1056
1364
|
return /* @__PURE__ */ jsxs(OryCard, { children: [
|
|
1057
1365
|
/* @__PURE__ */ jsx(OryCardHeader, {}),
|
|
1058
1366
|
/* @__PURE__ */ jsxs(OryCardContent, { children: [
|
|
1059
1367
|
/* @__PURE__ */ jsx(OryCardValidationMessages, {}),
|
|
1060
|
-
|
|
1061
|
-
/* @__PURE__ */
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
formState.current === "select_method" && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1368
|
+
/* @__PURE__ */ jsx(OryFormSocialButtonsForm, {}),
|
|
1369
|
+
Object.entries(authMethodBlocks).length > 0 ? /* @__PURE__ */ jsx(
|
|
1370
|
+
OryForm,
|
|
1371
|
+
{
|
|
1372
|
+
"data-testid": `ory/form/methods/local`,
|
|
1373
|
+
onAfterSubmit: handleAfterFormSubmit(dispatchFormState),
|
|
1374
|
+
children: /* @__PURE__ */ jsxs(Form.Group, { children: [
|
|
1068
1375
|
/* @__PURE__ */ jsx(Card.Divider, {}),
|
|
1069
1376
|
/* @__PURE__ */ jsx(
|
|
1070
1377
|
AuthMethodList,
|
|
1071
1378
|
{
|
|
1072
|
-
options,
|
|
1379
|
+
options: authMethodBlocks,
|
|
1073
1380
|
setSelectedGroup: (group) => dispatchFormState({
|
|
1074
1381
|
type: "action_select_method",
|
|
1075
1382
|
method: group
|
|
1076
1383
|
})
|
|
1077
1384
|
}
|
|
1078
|
-
)
|
|
1079
|
-
|
|
1080
|
-
formState.current === "method_active" && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1081
|
-
ui.nodes.filter((n) => n.type === "script").map((node, k) => /* @__PURE__ */ jsx(Node, { node }, k)),
|
|
1082
|
-
finalNodes.sort(sortNodes).map((node, k) => /* @__PURE__ */ jsx(Node, { node }, k))
|
|
1385
|
+
),
|
|
1386
|
+
authMethodAdditionalNodes.sort(sortNodes).map((node, k) => /* @__PURE__ */ jsx(Node, { node }, k))
|
|
1083
1387
|
] })
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1388
|
+
}
|
|
1389
|
+
) : !hasSingleSignOnNodes(ui.nodes) && /* @__PURE__ */ jsx("div", { "data-testid": `ory/form/methods/local`, children: /* @__PURE__ */ jsx(Message.Root, { children: /* @__PURE__ */ jsx(Message.Content, { message: noMethods }, noMethods.id) }) })
|
|
1390
|
+
] }),
|
|
1391
|
+
/* @__PURE__ */ jsx(OryCardFooter, {})
|
|
1088
1392
|
] });
|
|
1089
1393
|
}
|
|
1090
|
-
function
|
|
1091
|
-
const {
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
}
|
|
1100
|
-
return /* @__PURE__ */
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
onClick: () => handleClick(option)
|
|
1105
|
-
},
|
|
1106
|
-
option
|
|
1107
|
-
)) });
|
|
1394
|
+
function OryTwoStepCard() {
|
|
1395
|
+
const { formState } = useOryFlow();
|
|
1396
|
+
switch (formState.current) {
|
|
1397
|
+
case "provide_identifier":
|
|
1398
|
+
return /* @__PURE__ */ jsx(OryTwoStepCardStateProvideIdentifier, {});
|
|
1399
|
+
case "select_method":
|
|
1400
|
+
return /* @__PURE__ */ jsx(OryTwoStepCardStateSelectMethod, {});
|
|
1401
|
+
case "method_active":
|
|
1402
|
+
return /* @__PURE__ */ jsx(OryTwoStepCardStateMethodActive, { formState });
|
|
1403
|
+
}
|
|
1404
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1405
|
+
"unknown form state: ",
|
|
1406
|
+
formState.current
|
|
1407
|
+
] });
|
|
1108
1408
|
}
|
|
1109
1409
|
function OryFormGroups({ groups }) {
|
|
1110
1410
|
const {
|
|
@@ -1114,8 +1414,8 @@ function OryFormGroups({ groups }) {
|
|
|
1114
1414
|
const { flowType } = useOryFlow();
|
|
1115
1415
|
const { Form } = useComponents();
|
|
1116
1416
|
const nodes = ui.nodes.filter((node) => groups.indexOf(node.group) > -1).sort((a, b) => nodeSorter(a, b, { flowType }));
|
|
1117
|
-
return /* @__PURE__ */ jsx(Form.Group, { children: nodes.map((node
|
|
1118
|
-
return /* @__PURE__ */ jsx(Node, { node },
|
|
1417
|
+
return /* @__PURE__ */ jsx(Form.Group, { children: nodes.map((node) => {
|
|
1418
|
+
return /* @__PURE__ */ jsx(Node, { node }, getNodeId(node));
|
|
1119
1419
|
}) });
|
|
1120
1420
|
}
|
|
1121
1421
|
function OryFormSection({
|
|
@@ -1144,14 +1444,29 @@ function OryFormSectionInner({
|
|
|
1144
1444
|
}
|
|
1145
1445
|
);
|
|
1146
1446
|
}
|
|
1447
|
+
function OryConsentCard() {
|
|
1448
|
+
const { Form, Card } = useComponents();
|
|
1449
|
+
const flow = useOryFlow();
|
|
1450
|
+
return /* @__PURE__ */ jsxs(OryCard, { children: [
|
|
1451
|
+
/* @__PURE__ */ jsx(OryCardHeader, {}),
|
|
1452
|
+
/* @__PURE__ */ jsx(OryCardContent, { children: /* @__PURE__ */ jsxs(OryForm, { children: [
|
|
1453
|
+
/* @__PURE__ */ jsx(Card.Divider, {}),
|
|
1454
|
+
/* @__PURE__ */ jsx(Form.Group, { children: flow.flow.ui.nodes.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node))) }),
|
|
1455
|
+
/* @__PURE__ */ jsx(Card.Divider, {}),
|
|
1456
|
+
/* @__PURE__ */ jsx(OryCardFooter, {})
|
|
1457
|
+
] }) })
|
|
1458
|
+
] });
|
|
1459
|
+
}
|
|
1147
1460
|
function OryFormGroupDivider() {
|
|
1148
1461
|
const { Card } = useComponents();
|
|
1149
1462
|
const {
|
|
1150
1463
|
flow: { ui }
|
|
1151
1464
|
} = useOryFlow();
|
|
1152
|
-
const filteredNodes = ui.nodes.filter(
|
|
1465
|
+
const filteredNodes = ui.nodes.filter(
|
|
1466
|
+
(node) => node.group === UiNodeGroupEnum.Oidc || node.group === UiNodeGroupEnum.Saml
|
|
1467
|
+
);
|
|
1153
1468
|
const otherNodes = ui.nodes.filter(
|
|
1154
|
-
(node) => node.group
|
|
1469
|
+
(node) => !(node.group === UiNodeGroupEnum.Oidc || node.group === UiNodeGroupEnum.Saml) && node.group !== "default"
|
|
1155
1470
|
);
|
|
1156
1471
|
if (filteredNodes.length > 0 && otherNodes.length > 0) {
|
|
1157
1472
|
return /* @__PURE__ */ jsx(Card.Divider, {});
|
|
@@ -1177,7 +1492,7 @@ function OrySettingsOidc({ nodes }) {
|
|
|
1177
1492
|
onClick: () => {
|
|
1178
1493
|
if (node.attributes.node_type === "input") {
|
|
1179
1494
|
setValue("link", node.attributes.value);
|
|
1180
|
-
setValue("method",
|
|
1495
|
+
setValue("method", node.group);
|
|
1181
1496
|
}
|
|
1182
1497
|
}
|
|
1183
1498
|
}));
|
|
@@ -1186,7 +1501,7 @@ function OrySettingsOidc({ nodes }) {
|
|
|
1186
1501
|
onClick: () => {
|
|
1187
1502
|
if (node.attributes.node_type === "input") {
|
|
1188
1503
|
setValue("unlink", node.attributes.value);
|
|
1189
|
-
setValue("method",
|
|
1504
|
+
setValue("method", node.group);
|
|
1190
1505
|
}
|
|
1191
1506
|
}
|
|
1192
1507
|
}));
|
|
@@ -1495,16 +1810,19 @@ function SettingsSectionContent({ group, nodes }) {
|
|
|
1495
1810
|
const { Card } = useComponents();
|
|
1496
1811
|
const intl = useIntl();
|
|
1497
1812
|
const { flow } = useOryFlow();
|
|
1498
|
-
const
|
|
1813
|
+
const groupedNodes = useNodesGroups(flow.ui.nodes, {
|
|
1814
|
+
// Script nodes are already handled by the parent component.
|
|
1815
|
+
omit: ["script"]
|
|
1816
|
+
});
|
|
1499
1817
|
if (group === UiNodeGroupEnum.Totp) {
|
|
1500
1818
|
return /* @__PURE__ */ jsxs(
|
|
1501
1819
|
OryFormSection,
|
|
1502
1820
|
{
|
|
1503
|
-
nodes:
|
|
1821
|
+
nodes: groupedNodes.groups.totp,
|
|
1504
1822
|
"data-testid": "ory/screen/settings/group/totp",
|
|
1505
1823
|
children: [
|
|
1506
|
-
/* @__PURE__ */ jsx(OrySettingsTotp, { nodes: (_a =
|
|
1507
|
-
(_b =
|
|
1824
|
+
/* @__PURE__ */ jsx(OrySettingsTotp, { nodes: (_a = groupedNodes.groups.totp) != null ? _a : [] }),
|
|
1825
|
+
(_b = groupedNodes.groups.default) == null ? void 0 : _b.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node)))
|
|
1508
1826
|
]
|
|
1509
1827
|
}
|
|
1510
1828
|
);
|
|
@@ -1513,16 +1831,16 @@ function SettingsSectionContent({ group, nodes }) {
|
|
|
1513
1831
|
return /* @__PURE__ */ jsxs(
|
|
1514
1832
|
OryFormSection,
|
|
1515
1833
|
{
|
|
1516
|
-
nodes:
|
|
1834
|
+
nodes: groupedNodes.groups.lookup_secret,
|
|
1517
1835
|
"data-testid": "ory/screen/settings/group/lookup_secret",
|
|
1518
1836
|
children: [
|
|
1519
1837
|
/* @__PURE__ */ jsx(
|
|
1520
1838
|
OrySettingsRecoveryCodes,
|
|
1521
1839
|
{
|
|
1522
|
-
nodes: (_c =
|
|
1840
|
+
nodes: (_c = groupedNodes.groups.lookup_secret) != null ? _c : []
|
|
1523
1841
|
}
|
|
1524
1842
|
),
|
|
1525
|
-
(_d =
|
|
1843
|
+
(_d = groupedNodes.groups.default) == null ? void 0 : _d.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node)))
|
|
1526
1844
|
]
|
|
1527
1845
|
}
|
|
1528
1846
|
);
|
|
@@ -1531,11 +1849,11 @@ function SettingsSectionContent({ group, nodes }) {
|
|
|
1531
1849
|
return /* @__PURE__ */ jsxs(
|
|
1532
1850
|
OryFormSection,
|
|
1533
1851
|
{
|
|
1534
|
-
nodes:
|
|
1852
|
+
nodes: groupedNodes.groups.oidc,
|
|
1535
1853
|
"data-testid": "ory/screen/settings/group/oidc",
|
|
1536
1854
|
children: [
|
|
1537
|
-
/* @__PURE__ */ jsx(OrySettingsOidc, { nodes: (_e =
|
|
1538
|
-
(_f =
|
|
1855
|
+
/* @__PURE__ */ jsx(OrySettingsOidc, { nodes: (_e = groupedNodes.groups.oidc) != null ? _e : [] }),
|
|
1856
|
+
(_f = groupedNodes.groups.default) == null ? void 0 : _f.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node)))
|
|
1539
1857
|
]
|
|
1540
1858
|
}
|
|
1541
1859
|
);
|
|
@@ -1544,11 +1862,11 @@ function SettingsSectionContent({ group, nodes }) {
|
|
|
1544
1862
|
return /* @__PURE__ */ jsxs(
|
|
1545
1863
|
OryFormSection,
|
|
1546
1864
|
{
|
|
1547
|
-
nodes:
|
|
1865
|
+
nodes: groupedNodes.groups.webauthn,
|
|
1548
1866
|
"data-testid": "ory/screen/settings/group/webauthn",
|
|
1549
1867
|
children: [
|
|
1550
|
-
/* @__PURE__ */ jsx(OrySettingsWebauthn, { nodes: (_g =
|
|
1551
|
-
(_h =
|
|
1868
|
+
/* @__PURE__ */ jsx(OrySettingsWebauthn, { nodes: (_g = groupedNodes.groups.webauthn) != null ? _g : [] }),
|
|
1869
|
+
(_h = groupedNodes.groups.default) == null ? void 0 : _h.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node)))
|
|
1552
1870
|
]
|
|
1553
1871
|
}
|
|
1554
1872
|
);
|
|
@@ -1557,11 +1875,11 @@ function SettingsSectionContent({ group, nodes }) {
|
|
|
1557
1875
|
return /* @__PURE__ */ jsxs(
|
|
1558
1876
|
OryFormSection,
|
|
1559
1877
|
{
|
|
1560
|
-
nodes:
|
|
1878
|
+
nodes: groupedNodes.groups.passkey,
|
|
1561
1879
|
"data-testid": "ory/screen/settings/group/passkey",
|
|
1562
1880
|
children: [
|
|
1563
|
-
/* @__PURE__ */ jsx(OrySettingsPasskey, { nodes: (_i =
|
|
1564
|
-
(_j =
|
|
1881
|
+
/* @__PURE__ */ jsx(OrySettingsPasskey, { nodes: (_i = groupedNodes.groups.passkey) != null ? _i : [] }),
|
|
1882
|
+
(_j = groupedNodes.groups.default) == null ? void 0 : _j.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node)))
|
|
1565
1883
|
]
|
|
1566
1884
|
}
|
|
1567
1885
|
);
|
|
@@ -1582,30 +1900,30 @@ function SettingsSectionContent({ group, nodes }) {
|
|
|
1582
1900
|
id: `settings.${group}.description`
|
|
1583
1901
|
}),
|
|
1584
1902
|
children: [
|
|
1585
|
-
(_k =
|
|
1903
|
+
(_k = groupedNodes.groups.default) == null ? void 0 : _k.map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node))),
|
|
1586
1904
|
nodes.filter(
|
|
1587
1905
|
(node) => "type" in node.attributes && node.attributes.type !== "submit"
|
|
1588
|
-
).map((node
|
|
1906
|
+
).map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node)))
|
|
1589
1907
|
]
|
|
1590
1908
|
}
|
|
1591
1909
|
),
|
|
1592
1910
|
/* @__PURE__ */ jsx(Card.SettingsSectionFooter, { children: nodes.filter(
|
|
1593
1911
|
(node) => "type" in node.attributes && node.attributes.type === "submit"
|
|
1594
|
-
).map((node
|
|
1912
|
+
).map((node) => /* @__PURE__ */ jsx(Node, { node }, getNodeId(node))) })
|
|
1595
1913
|
]
|
|
1596
1914
|
}
|
|
1597
1915
|
);
|
|
1598
1916
|
}
|
|
1599
|
-
var
|
|
1600
|
-
(node) =>
|
|
1917
|
+
var onlyScriptNodes = (nodes) => nodes.filter(
|
|
1918
|
+
(node) => isUiNodeScriptAttributes(node.attributes) && node.attributes.id === "webauthn_script"
|
|
1601
1919
|
);
|
|
1602
1920
|
function OrySettingsCard() {
|
|
1603
1921
|
const { flow } = useOryFlow();
|
|
1604
|
-
const uniqueGroups = useNodesGroups(flow.ui.nodes);
|
|
1605
|
-
const
|
|
1922
|
+
const uniqueGroups = useNodesGroups(flow.ui.nodes, { omit: ["script"] });
|
|
1923
|
+
const scriptNodes = onlyScriptNodes(flow.ui.nodes);
|
|
1606
1924
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1607
1925
|
/* @__PURE__ */ jsx(OryCardValidationMessages, {}),
|
|
1608
|
-
|
|
1926
|
+
scriptNodes.map((n) => /* @__PURE__ */ jsx(Node, { node: n }, getNodeId(n))),
|
|
1609
1927
|
uniqueGroups.entries.map(([group, nodes]) => {
|
|
1610
1928
|
if (group === UiNodeGroupEnum.Default) {
|
|
1611
1929
|
return null;
|
|
@@ -1701,9 +2019,9 @@ var en_default = {
|
|
|
1701
2019
|
"identities.messages.1010005": "Verify",
|
|
1702
2020
|
"identities.messages.1010006": "Authentication code",
|
|
1703
2021
|
"identities.messages.1010007": "Backup recovery code",
|
|
1704
|
-
"identities.messages.1010008": "
|
|
1705
|
-
"identities.messages.1010009": "
|
|
1706
|
-
"identities.messages.1010010": "
|
|
2022
|
+
"identities.messages.1010008": "Continue with hardware key",
|
|
2023
|
+
"identities.messages.1010009": "Continue",
|
|
2024
|
+
"identities.messages.1010010": "Continue",
|
|
1707
2025
|
"identities.messages.1010011": "Sign in with hardware key",
|
|
1708
2026
|
"identities.messages.1010012": "Prepare your WebAuthn device (e.g. security key, biometrics scanner, ...) and press continue.",
|
|
1709
2027
|
"identities.messages.1010013": "Continue",
|
|
@@ -1840,9 +2158,17 @@ var en_default = {
|
|
|
1840
2158
|
"login.subtitle-oauth2": "To authenticate {clientName}",
|
|
1841
2159
|
"login.title": "Sign in",
|
|
1842
2160
|
"login.subtitle": "Sign in with {parts}",
|
|
1843
|
-
"login.title-aal2": "
|
|
2161
|
+
"login.title-aal2": "Second factor authentication",
|
|
2162
|
+
"login.subtitle-aal2": "Choose a way to complete your second factor authentication",
|
|
2163
|
+
"login.code.subtitle": "A verification code will be sent by email",
|
|
2164
|
+
"login.webauthn.subtitle": "Please prepare your WebAuthN device",
|
|
2165
|
+
"login.totp.subtitle": "Please enter the code generated by your Authenticator App",
|
|
2166
|
+
"login.lookup_secret.subtitle": "Please enter one of your 8-digit backup recovery codes",
|
|
1844
2167
|
"login.title-refresh": "Reauthenticate",
|
|
1845
2168
|
"login.subtitle-refresh": "Confirm your identity with {parts}",
|
|
2169
|
+
"login.2fa.go-back": "Something isn't working?",
|
|
2170
|
+
"login.2fa.go-back.link": "Go back",
|
|
2171
|
+
"login.2fa.method.go-back": "Choose another method",
|
|
1846
2172
|
"logout.accept-button": "Yes",
|
|
1847
2173
|
"logout.reject-button": "No",
|
|
1848
2174
|
"logout.title": "Do you wish to log out?",
|
|
@@ -1891,18 +2217,24 @@ var en_default = {
|
|
|
1891
2217
|
"two-step.password.description": "Enter your password associated with your account",
|
|
1892
2218
|
"two-step.code.title": "Email code",
|
|
1893
2219
|
"two-step.code.description": "A verification code will be sent to your email",
|
|
1894
|
-
"two-step.webauthn.title": "Security
|
|
2220
|
+
"two-step.webauthn.title": "Security key",
|
|
1895
2221
|
"two-step.webauthn.description": "Use your security key to authenticate",
|
|
1896
2222
|
"two-step.passkey.title": "Passkey (recommended)",
|
|
1897
2223
|
"two-step.passkey.description": "Use your device's for fingerprint or face recognition",
|
|
2224
|
+
"two-step.totp.title": "Use your Authenticator App (TOTP)",
|
|
2225
|
+
"two-step.totp.description": "Use a 6-digit one-time code from your authenticator app",
|
|
2226
|
+
"two-step.lookup_secret.title": "Backup recovery code",
|
|
2227
|
+
"two-step.lookup_secret.description": "Use up one of your 8-digit backup codes to authenticate",
|
|
1898
2228
|
"identities.messages.1010020": "",
|
|
1899
2229
|
"input.placeholder": "Enter your {placeholder}",
|
|
1900
2230
|
"card.header.parts.oidc": "a social provider",
|
|
1901
2231
|
"card.header.parts.password.registration": "your {identifierLabel} and a password",
|
|
1902
2232
|
"card.header.parts.password.login": "your {identifierLabel} and password",
|
|
1903
|
-
"card.header.parts.code": "a code sent to
|
|
2233
|
+
"card.header.parts.code": "a code sent to you",
|
|
1904
2234
|
"card.header.parts.passkey": "a Passkey",
|
|
1905
2235
|
"card.header.parts.webauthn": "a security key",
|
|
2236
|
+
"card.header.parts.totp": "your authenticator app",
|
|
2237
|
+
"card.header.parts.lookup_secret": "a backup recovery code",
|
|
1906
2238
|
"card.header.parts.identifier-first": "your {identifierLabel}",
|
|
1907
2239
|
"card.header.description.login": "Sign in with {identifierLabel}",
|
|
1908
2240
|
"card.header.description.registration": "Sign up with {identifierLabel}",
|
|
@@ -1928,7 +2260,27 @@ var en_default = {
|
|
|
1928
2260
|
"property.phone": "phone",
|
|
1929
2261
|
"property.username": "username",
|
|
1930
2262
|
"property.identifier": "identifier",
|
|
1931
|
-
"property.code": "code"
|
|
2263
|
+
"property.code": "code",
|
|
2264
|
+
"consent.title": "Authorize {party}",
|
|
2265
|
+
"consent.subtitle": "A third party application wants to access information associated with your account {identifier}.",
|
|
2266
|
+
"consent.scope.openid.title": "Identity",
|
|
2267
|
+
"consent.scope.openid.description": "Allows the application to verify your identity. This is required for authentication and a trusted login experience.",
|
|
2268
|
+
"consent.scope.offline_access.title": "Offline Access",
|
|
2269
|
+
"consent.scope.offline_access.description": "Allows this application to keep you signed in even when you're not actively using it.",
|
|
2270
|
+
"consent.scope.profile.title": "Profile Information",
|
|
2271
|
+
"consent.scope.profile.description": "Allows access to your basic profile details, including your username, first name, and last name.",
|
|
2272
|
+
"consent.scope.email.title": "Email Address",
|
|
2273
|
+
"consent.scope.email.description": "Retrieve your email address and its verification status.",
|
|
2274
|
+
"consent.scope.address.title": "Physical Address",
|
|
2275
|
+
"consent.scope.address.description": "Access your postal address.",
|
|
2276
|
+
"consent.scope.phone.title": "Phone Number",
|
|
2277
|
+
"consent.scope.phone.description": "Retrieve your phone number and its verification status.",
|
|
2278
|
+
"error.title.what-happened": "What happened?",
|
|
2279
|
+
"error.title.what-can-i-do": "What can I do?",
|
|
2280
|
+
"error.instructions": "Please try again in a few minutes or contact the website operator.",
|
|
2281
|
+
"error.footer.text": "When reporting this error, please include the following information:",
|
|
2282
|
+
"error.footer.copy": "Copy",
|
|
2283
|
+
"error.action.go-back": "Go back"
|
|
1932
2284
|
};
|
|
1933
2285
|
|
|
1934
2286
|
// src/locales/de.json
|
|
@@ -1954,9 +2306,9 @@ var de_default = {
|
|
|
1954
2306
|
"identities.messages.1010005": "Verifizieren",
|
|
1955
2307
|
"identities.messages.1010006": "Authentifizierungscode",
|
|
1956
2308
|
"identities.messages.1010007": "Backup-Wiederherstellungscode",
|
|
1957
|
-
"identities.messages.1010008": "Sicherheitsschl\xFCssel
|
|
1958
|
-
"identities.messages.1010009": "
|
|
1959
|
-
"identities.messages.1010010": "
|
|
2309
|
+
"identities.messages.1010008": "Mit Sicherheitsschl\xFCssel fortfahren",
|
|
2310
|
+
"identities.messages.1010009": "Weiter",
|
|
2311
|
+
"identities.messages.1010010": "Weiter",
|
|
1960
2312
|
"identities.messages.1010011": "Mit Sicherheitsschl\xFCssel fortfahren",
|
|
1961
2313
|
"identities.messages.1010012": "Bereiten Sie Ihr WebAuthn-Ger\xE4t vor (z. B. Sicherheitsschl\xFCssel, biometrischer Scanner, ...) und dr\xFCcken Sie auf Weiter.",
|
|
1962
2314
|
"identities.messages.1010013": "Weiter",
|
|
@@ -2072,8 +2424,16 @@ var de_default = {
|
|
|
2072
2424
|
"login.registration-label": "Sie haben noch kein Konto?",
|
|
2073
2425
|
"login.subtitle-oauth2": "Zur Authentifizierung bei {clientName}",
|
|
2074
2426
|
"login.title": "Anmelden",
|
|
2075
|
-
"login.title-aal2": "
|
|
2427
|
+
"login.title-aal2": "Zweitfaktor-Authentifizierung",
|
|
2428
|
+
"login.subtitle-aal2": "W\xE4hlen Sie eine Methode zur Best\xE4tigung Ihrer Zwei-Faktor-Authentifizierung",
|
|
2429
|
+
"login.code.subtitle": "Ein Best\xE4tigungscode wird per E-Mail gesendet",
|
|
2430
|
+
"login.webauthn.subtitle": "Bitte bereiten Sie Ihr WebAuthN-Ger\xE4t vor",
|
|
2431
|
+
"login.totp.subtitle": "Bitte geben Sie den Code aus Ihrer Authenticator-App ein",
|
|
2432
|
+
"login.lookup_secret.subtitle": "Bitte geben Sie einen Ihrer 8-stelligen Backup-Wiederherstellungscodes ein",
|
|
2076
2433
|
"login.title-refresh": "Best\xE4tigen Sie, dass Sie es sind",
|
|
2434
|
+
"login.2fa.go-back": "Funktioniert etwas nicht?",
|
|
2435
|
+
"login.2fa.go-back.link": "Zur\xFCck",
|
|
2436
|
+
"login.2fa.method.go-back": "Eine andere Methode w\xE4hlen",
|
|
2077
2437
|
"logout.accept-button": "Ja",
|
|
2078
2438
|
"logout.reject-button": "Nein",
|
|
2079
2439
|
"logout.title": "M\xF6chten Sie sich abmelden?",
|
|
@@ -2091,11 +2451,15 @@ var de_default = {
|
|
|
2091
2451
|
"two-step.code.description": "Ein Best\xE4tigungscode wird an Ihre E-Mail gesendet.",
|
|
2092
2452
|
"two-step.code.title": "E-Mail-Code",
|
|
2093
2453
|
"two-step.passkey.description": "Verwenden Sie die Fingerabdruck- oder Gesichtserkennung Ihres Ger\xE4ts",
|
|
2094
|
-
"two-step.passkey.title": "
|
|
2454
|
+
"two-step.passkey.title": "Passkey (empfohlen)",
|
|
2095
2455
|
"two-step.password.description": "Geben Sie Ihr Passwort ein, das mit Ihrem Konto verkn\xFCpft ist",
|
|
2096
2456
|
"two-step.password.title": "Passwort",
|
|
2097
|
-
"two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschl\xFCssel zur Authentifizierung",
|
|
2098
2457
|
"two-step.webauthn.title": "Sicherheitsschl\xFCssel",
|
|
2458
|
+
"two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschl\xFCssel zur Authentifizierung",
|
|
2459
|
+
"two-step.totp.title": "Verwenden Sie Ihre Authenticator-App (TOTP)",
|
|
2460
|
+
"two-step.totp.description": "Verwenden Sie einen 6-stelligen Einmal-Code aus Ihrer Authenticator-App",
|
|
2461
|
+
"two-step.lookup_secret.title": "Backup-Wiederherstellungscode",
|
|
2462
|
+
"two-step.lookup_secret.description": "Verwenden Sie einen Ihrer 8-stelligen Backup-Codes, um sich zu authentifizieren",
|
|
2099
2463
|
"identities.messages.1070014": "Login- und Link-Zugangsdaten",
|
|
2100
2464
|
"identities.messages.1070015": "Bitte schlie\xDFen Sie die Captcha-Challenge ab, um fortzufahren.",
|
|
2101
2465
|
"identities.messages.4000038": "Die Captcha-\xDCberpr\xFCfung ist fehlgeschlagen. Bitte versuchen Sie es erneut.",
|
|
@@ -2103,28 +2467,30 @@ var de_default = {
|
|
|
2103
2467
|
"login.cancel-label": "Nicht das richtige Konto?",
|
|
2104
2468
|
"identities.messages.1010023": "Code an {address} senden",
|
|
2105
2469
|
"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.",
|
|
2106
|
-
"identities.messages.1010017": "",
|
|
2107
|
-
"identities.messages.1010018": "",
|
|
2108
|
-
"identities.messages.1010019": "",
|
|
2470
|
+
"identities.messages.1010017": "Anmelden und verbinden",
|
|
2471
|
+
"identities.messages.1010018": "Mit {provider} best\xE4tigen",
|
|
2472
|
+
"identities.messages.1010019": "Code senden um fortzufahren",
|
|
2109
2473
|
"identities.messages.1010020": "",
|
|
2110
|
-
"identities.messages.1010021": "",
|
|
2111
|
-
"identities.messages.1010022": "",
|
|
2112
|
-
"identities.messages.1040007": "",
|
|
2113
|
-
"identities.messages.1040008": "",
|
|
2114
|
-
"identities.messages.1040009": "",
|
|
2474
|
+
"identities.messages.1010021": "Mit Paskey anmelden",
|
|
2475
|
+
"identities.messages.1010022": "Mit Passwort anmelden",
|
|
2476
|
+
"identities.messages.1040007": "Mit Passkey registrieren",
|
|
2477
|
+
"identities.messages.1040008": "Zur\xFCck",
|
|
2478
|
+
"identities.messages.1040009": "Bitte w\xE4hlen Sie eine Authentifizierungsmethode, um fortzufahren.",
|
|
2115
2479
|
"identities.messages.1050019": "Passkey hinzuf\xFCgen",
|
|
2116
|
-
"identities.messages.1050020": "",
|
|
2117
|
-
"identities.messages.4000037": "",
|
|
2118
|
-
"identities.messages.4010009": "",
|
|
2119
|
-
"identities.messages.4010010": "",
|
|
2480
|
+
"identities.messages.1050020": 'Passkey "{display_name}" entfernen',
|
|
2481
|
+
"identities.messages.4000037": "F\xFCr die eingegebenen Daten existiert kein Account",
|
|
2482
|
+
"identities.messages.4010009": "Die Authentifizierungsmethode stimmt nicht mit der vorherigen Authentifizierungsmethode \xFCberein. Bitte versuchen Sie es erneut.",
|
|
2483
|
+
"identities.messages.4010010": "Die eingegebene Adresse stimmt nicht mit der Adresse \xFCberein, die Sie bei der Registrierung angegeben haben. Bitte versuchen Sie es erneut.",
|
|
2120
2484
|
"input.placeholder": "{placeholder} eingeben",
|
|
2121
|
-
"card.header.parts.code": "
|
|
2485
|
+
"card.header.parts.code": "ein an Sie gesendeter Code",
|
|
2122
2486
|
"card.header.parts.identifier-first": "Ihr {identifierLabel}",
|
|
2123
2487
|
"card.header.parts.oidc": "ein sozialer Anbieter",
|
|
2124
2488
|
"card.header.parts.passkey": "ein Passkey",
|
|
2125
2489
|
"card.header.parts.password.login": "Ihrer {identifierLabel} und Ihrem Passwort",
|
|
2126
2490
|
"card.header.parts.password.registration": "Ihrer {identifierLabel} und einem Passwort",
|
|
2127
2491
|
"card.header.parts.webauthn": "ein Sicherheitsschl\xFCssel",
|
|
2492
|
+
"card.header.parts.totp": "deine Authentifikator-App",
|
|
2493
|
+
"card.header.parts.lookup_secret": "ein Backup-Wiederherstellungscode",
|
|
2128
2494
|
"recovery.subtitle": "Geben Sie die mit Ihrem Konto verkn\xFCpfte E-Mail-Adresse ein, um einen einmaligen Zugangscode zu erhalten",
|
|
2129
2495
|
"verification.subtitle": "Geben Sie die mit Ihrem Konto verkn\xFCpfte E-Mail-Adresse ein, um es zu best\xE4tigen",
|
|
2130
2496
|
"card.header.description.login": "Melden Sie sich mit {identifierLabel} an",
|
|
@@ -2181,7 +2547,27 @@ var de_default = {
|
|
|
2181
2547
|
"property.password": "Passwort",
|
|
2182
2548
|
"property.phone": "Telefon",
|
|
2183
2549
|
"property.code": "Code",
|
|
2184
|
-
"property.username": "Benutzername"
|
|
2550
|
+
"property.username": "Benutzername",
|
|
2551
|
+
"consent.title": "Autorisieren {party}",
|
|
2552
|
+
"consent.subtitle": "Eine Drittanbieteranwendung m\xF6chte auf Informationen zugreifen, die mit Ihrem Konto {identifier} verkn\xFCpft sind.",
|
|
2553
|
+
"consent.scope.openid.title": "Identit\xE4t",
|
|
2554
|
+
"consent.scope.openid.description": "Erm\xF6glicht der Anwendung, Ihre Identit\xE4t zu \xFCberpr\xFCfen. Dies ist f\xFCr die Authentifizierung und eine vertrauensw\xFCrdige Login-Erfahrung erforderlich.",
|
|
2555
|
+
"consent.scope.offline_access.title": "Offline-Zugriff",
|
|
2556
|
+
"consent.scope.offline_access.description": "Erm\xF6glicht dieser Anwendung, Sie angemeldet zu lassen, auch wenn Sie sie nicht aktiv nutzen.",
|
|
2557
|
+
"consent.scope.profile.title": "Profilinformationen",
|
|
2558
|
+
"consent.scope.profile.description": "Erm\xF6glicht den Zugriff auf Ihre grundlegenden Profildetails, einschlie\xDFlich Ihres Benutzernamens, Vornamens und Nachnamens.",
|
|
2559
|
+
"consent.scope.email.title": "E-Mail-Adresse",
|
|
2560
|
+
"consent.scope.email.description": "Erm\xF6glicht den Abruf Ihrer E-Mail-Adresse und deren \xDCberpr\xFCfungsstatus.",
|
|
2561
|
+
"consent.scope.address.title": "Physische Adresse",
|
|
2562
|
+
"consent.scope.address.description": "Erm\xF6glicht den Zugriff auf Ihre Postanschrift.",
|
|
2563
|
+
"consent.scope.phone.title": "Telefonnummer",
|
|
2564
|
+
"consent.scope.phone.description": "Erm\xF6glicht den Abruf Ihrer Telefonnummer und deren \xDCberpr\xFCfungsstatus.",
|
|
2565
|
+
"error.title.what-happened": "Was ist passiert?",
|
|
2566
|
+
"error.footer.copy": "Kopieren",
|
|
2567
|
+
"error.footer.text": "Bitte f\xFCgen Sie bei der Meldung dieses Fehlers die folgenden Informationen hinzu:",
|
|
2568
|
+
"error.instructions": "Bitte versuchen Sie es in wenigen Minuten erneut oder wenden Sie sich an den Website-Betreiber.",
|
|
2569
|
+
"error.title.what-can-i-do": "Was kann ich tun?",
|
|
2570
|
+
"error.action.go-back": "Zur\xFCck"
|
|
2185
2571
|
};
|
|
2186
2572
|
|
|
2187
2573
|
// src/locales/es.json
|
|
@@ -2197,7 +2583,6 @@ var es_default = {
|
|
|
2197
2583
|
"error.back-button": "Regresar",
|
|
2198
2584
|
"error.description": "Ocurri\xF3 un error con el siguiente mensaje:",
|
|
2199
2585
|
"error.support-email-link": "Si el problema persiste, por favor contacte a <a>{contactSupportEmail}</a>",
|
|
2200
|
-
"error.title": "Ocurri\xF3 un error",
|
|
2201
2586
|
"error.title-internal-server-error": "Error Interno del Servidor",
|
|
2202
2587
|
"error.title-not-found": "404 - P\xE1gina no encontrada",
|
|
2203
2588
|
"identities.messages.1010001": "Iniciar sesi\xF3n",
|
|
@@ -2207,9 +2592,9 @@ var es_default = {
|
|
|
2207
2592
|
"identities.messages.1010005": "Verificar",
|
|
2208
2593
|
"identities.messages.1010006": "C\xF3digo de autenticaci\xF3n",
|
|
2209
2594
|
"identities.messages.1010007": "C\xF3digo de recuperaci\xF3n de respaldo",
|
|
2210
|
-
"identities.messages.1010008": "
|
|
2211
|
-
"identities.messages.1010009": "
|
|
2212
|
-
"identities.messages.1010010": "
|
|
2595
|
+
"identities.messages.1010008": "Continuar con la llave de hardware",
|
|
2596
|
+
"identities.messages.1010009": "Continuar",
|
|
2597
|
+
"identities.messages.1010010": "Continuar",
|
|
2213
2598
|
"identities.messages.1010011": "Continuar con llave de seguridad",
|
|
2214
2599
|
"identities.messages.1010012": "Prepare su dispositivo WebAuthn (por ejemplo, llave de seguridad, esc\xE1ner biom\xE9trico, ...) y presione continuar.",
|
|
2215
2600
|
"identities.messages.1010013": "Continuar",
|
|
@@ -2325,8 +2710,16 @@ var es_default = {
|
|
|
2325
2710
|
"login.registration-label": "\xBFNo tiene una cuenta?",
|
|
2326
2711
|
"login.subtitle-oauth2": "Para autenticar a {clientName}",
|
|
2327
2712
|
"login.title": "Iniciar sesi\xF3n",
|
|
2328
|
-
"login.title-aal2": "Autenticaci\xF3n de
|
|
2713
|
+
"login.title-aal2": "Autenticaci\xF3n de dos factores",
|
|
2714
|
+
"login.subtitle-aal2": "Elija una forma de completar su autenticaci\xF3n de segundo factor",
|
|
2715
|
+
"login.code.subtitle": "Se enviar\xE1 un c\xF3digo de verificaci\xF3n por correo electr\xF3nico",
|
|
2716
|
+
"login.webauthn.subtitle": "Por favor, prepare su dispositivo WebAuthN",
|
|
2717
|
+
"login.totp.subtitle": "Ingrese el c\xF3digo generado por su aplicaci\xF3n de autenticaci\xF3n",
|
|
2718
|
+
"login.lookup_secret.subtitle": "Ingrese uno de sus c\xF3digos de recuperaci\xF3n de respaldo de 8 d\xEDgitos",
|
|
2329
2719
|
"login.title-refresh": "Confirme que es usted",
|
|
2720
|
+
"login.2fa.go-back": "\xBFAlgo no funciona?",
|
|
2721
|
+
"login.2fa.go-back.link": "Volver",
|
|
2722
|
+
"login.2fa.method.go-back": "Elegir otro m\xE9todo",
|
|
2330
2723
|
"logout.accept-button": "S\xED",
|
|
2331
2724
|
"logout.reject-button": "No",
|
|
2332
2725
|
"logout.title": "\xBFDesea cerrar sesi\xF3n?",
|
|
@@ -2358,47 +2751,12 @@ var es_default = {
|
|
|
2358
2751
|
"two-step.passkey.title": "Clave de acceso (recomendada)",
|
|
2359
2752
|
"two-step.password.description": "Ingrese la contrase\xF1a asociada con su cuenta",
|
|
2360
2753
|
"two-step.password.title": "Contrase\xF1a",
|
|
2361
|
-
"two-step.webauthn.description": "Utiliza tu llave de seguridad para autenticarte",
|
|
2362
2754
|
"two-step.webauthn.title": "Clave de Seguridad",
|
|
2363
|
-
"
|
|
2364
|
-
"
|
|
2365
|
-
"
|
|
2366
|
-
"
|
|
2367
|
-
"
|
|
2368
|
-
"identities.messages.1010021": "",
|
|
2369
|
-
"identities.messages.1010022": "",
|
|
2370
|
-
"identities.messages.1010023": "",
|
|
2371
|
-
"identities.messages.1040007": "",
|
|
2372
|
-
"identities.messages.1040008": "",
|
|
2373
|
-
"identities.messages.1040009": "",
|
|
2374
|
-
"identities.messages.1050019": "",
|
|
2375
|
-
"identities.messages.1050020": "",
|
|
2376
|
-
"identities.messages.1070014": "",
|
|
2377
|
-
"identities.messages.1070015": "",
|
|
2378
|
-
"identities.messages.4000037": "",
|
|
2379
|
-
"identities.messages.4000038": "",
|
|
2380
|
-
"identities.messages.4010009": "",
|
|
2381
|
-
"identities.messages.4010010": "",
|
|
2382
|
-
"login.cancel-button": "",
|
|
2383
|
-
"login.cancel-label": "",
|
|
2384
|
-
"input.placeholder": "",
|
|
2385
|
-
"card.header.description.login": "",
|
|
2386
|
-
"card.header.description.registration": "",
|
|
2387
|
-
"card.header.parts.code": "",
|
|
2388
|
-
"card.header.parts.identifier-first": "",
|
|
2389
|
-
"card.header.parts.oidc": "",
|
|
2390
|
-
"card.header.parts.passkey": "",
|
|
2391
|
-
"card.header.parts.password.login": "",
|
|
2392
|
-
"card.header.parts.password.registration": "",
|
|
2393
|
-
"card.header.parts.webauthn": "",
|
|
2394
|
-
"forms.label.forgot-password": "",
|
|
2395
|
-
"login.subtitle": "",
|
|
2396
|
-
"login.subtitle-refresh": "",
|
|
2397
|
-
"misc.or": "",
|
|
2398
|
-
"recovery.subtitle": "",
|
|
2399
|
-
"registration.subtitle": "",
|
|
2400
|
-
"settings.subtitle": "",
|
|
2401
|
-
"verification.subtitle": "",
|
|
2755
|
+
"two-step.webauthn.description": "Utilice su llave de seguridad para autenticase",
|
|
2756
|
+
"two-step.totp.title": "Utilice su aplicaci\xF3n de autenticaci\xF3n (TOTP)",
|
|
2757
|
+
"two-step.totp.description": "Utilice un c\xF3digo de un solo uso de 6 d\xEDgitos de su aplicaci\xF3n de autenticaci\xF3n",
|
|
2758
|
+
"two-step.lookup_secret.title": "C\xF3digo de recuperaci\xF3n de respaldo",
|
|
2759
|
+
"two-step.lookup_secret.description": "Utilice uno de sus c\xF3digos de respaldo de 8 d\xEDgitos para autenticarse",
|
|
2402
2760
|
"settings.totp.info.linked": "Actualmente tienes una aplicaci\xF3n de autenticaci\xF3n conectada.",
|
|
2403
2761
|
"settings.totp.info.not-linked": "Para habilitar, escanea el c\xF3digo QR con tu autenticador e ingresa el c\xF3digo.",
|
|
2404
2762
|
"settings.totp.title": "Aplicaci\xF3n Autenticadora",
|
|
@@ -2416,25 +2774,87 @@ var es_default = {
|
|
|
2416
2774
|
"settings.profile.title": "Configuraci\xF3n de Perfil",
|
|
2417
2775
|
"settings.webauthn.description": "Administra la configuraci\xF3n de tu token de hardware",
|
|
2418
2776
|
"settings.webauthn.title": "Gestionar Tokens de Hardware",
|
|
2419
|
-
"
|
|
2420
|
-
"
|
|
2421
|
-
"
|
|
2422
|
-
"
|
|
2423
|
-
"
|
|
2424
|
-
"
|
|
2425
|
-
"
|
|
2426
|
-
"
|
|
2427
|
-
"
|
|
2428
|
-
"
|
|
2429
|
-
"
|
|
2430
|
-
"
|
|
2431
|
-
"
|
|
2432
|
-
"
|
|
2433
|
-
"
|
|
2434
|
-
"
|
|
2435
|
-
"
|
|
2436
|
-
"
|
|
2437
|
-
"
|
|
2777
|
+
"consent.title": "Autorizar {party}",
|
|
2778
|
+
"consent.subtitle": "Una aplicaci\xF3n de terceros quiere acceder a la informaci\xF3n asociada a su cuenta {identifier}.",
|
|
2779
|
+
"consent.scope.openid.title": "Identidad",
|
|
2780
|
+
"consent.scope.openid.description": "Permite que la aplicaci\xF3n verifique su identidad. Esto es necesario para la autenticaci\xF3n y una experiencia de inicio de sesi\xF3n confiable.",
|
|
2781
|
+
"consent.scope.offline_access.title": "Acceso sin conexi\xF3n",
|
|
2782
|
+
"consent.scope.offline_access.description": "Permite que esta aplicaci\xF3n le mantenga conectado incluso cuando no la est\xE9 utilizando activamente.",
|
|
2783
|
+
"consent.scope.profile.title": "Informaci\xF3n del perfil",
|
|
2784
|
+
"consent.scope.profile.description": "Permite el acceso a los detalles b\xE1sicos de su perfil, incluyendo su nombre de usuario, nombre y apellido.",
|
|
2785
|
+
"consent.scope.email.title": "Direcci\xF3n de correo electr\xF3nico",
|
|
2786
|
+
"consent.scope.email.description": "Recupere su direcci\xF3n de correo electr\xF3nico y su estado de verificaci\xF3n.",
|
|
2787
|
+
"consent.scope.address.title": "Direcci\xF3n f\xEDsica",
|
|
2788
|
+
"consent.scope.address.description": "Acceda a su direcci\xF3n postal.",
|
|
2789
|
+
"consent.scope.phone.title": "N\xFAmero de tel\xE9fono",
|
|
2790
|
+
"consent.scope.phone.description": "Recupere su n\xFAmero de tel\xE9fono y su estado de verificaci\xF3n.",
|
|
2791
|
+
"error.title": "Ocurri\xF3 un error",
|
|
2792
|
+
"identities.messages.1010016": 'Intentaste iniciar sesi\xF3n con "{duplicateIdentifier}", pero ese correo electr\xF3nico ya est\xE1 en uso por otra cuenta. Inicia sesi\xF3n en tu cuenta con una de las opciones a continuaci\xF3n para agregar tu cuenta "{duplicateIdentifier}" en "{provider}" como otra forma de iniciar sesi\xF3n.',
|
|
2793
|
+
"identities.messages.1010017": "Iniciar sesi\xF3n y vincular",
|
|
2794
|
+
"identities.messages.1010018": "Confirmar con {provider}",
|
|
2795
|
+
"identities.messages.1010019": "Solicitar c\xF3digo para continuar",
|
|
2796
|
+
"identities.messages.1010021": "Iniciar sesi\xF3n con clave de acceso",
|
|
2797
|
+
"identities.messages.1010022": "Iniciar sesi\xF3n con contrase\xF1a",
|
|
2798
|
+
"identities.messages.1010023": "Enviar c\xF3digo a {address}",
|
|
2799
|
+
"identities.messages.1040007": "Registrarse con clave de acceso",
|
|
2800
|
+
"identities.messages.1040008": "Atr\xE1s",
|
|
2801
|
+
"identities.messages.1040009": "Por favor, elige una credencial para autenticarte.",
|
|
2802
|
+
"identities.messages.1050019": "Agregar clave de acceso",
|
|
2803
|
+
"identities.messages.1070014": "Iniciar sesi\xF3n y vincular credencial",
|
|
2804
|
+
"identities.messages.1070015": "Por favor, completa el desaf\xEDo captcha para continuar.",
|
|
2805
|
+
"identities.messages.4000037": "Esta cuenta no existe o no tiene ning\xFAn m\xE9todo de inicio de sesi\xF3n configurado.",
|
|
2806
|
+
"identities.messages.4000038": "Fall\xF3 la verificaci\xF3n de Captcha, por favor intenta de nuevo.",
|
|
2807
|
+
"identities.messages.4010009": "Las credenciales vinculadas no coinciden.",
|
|
2808
|
+
"identities.messages.4010010": "La direcci\xF3n que ingresaste no coincide con ninguna direcci\xF3n conocida en la cuenta actual.",
|
|
2809
|
+
"login.cancel-button": "Cancelar",
|
|
2810
|
+
"login.cancel-label": "\xBFNo es la cuenta correcta?",
|
|
2811
|
+
"login.subtitle": "Iniciar sesi\xF3n con {parts}",
|
|
2812
|
+
"login.subtitle-refresh": "Confirma tu identidad con {parts}",
|
|
2813
|
+
"recovery.subtitle": "Ingresa la direcci\xF3n de correo electr\xF3nico asociada con tu cuenta para recibir un c\xF3digo de acceso \xFAnico",
|
|
2814
|
+
"registration.subtitle": "Registrarse con {parts}",
|
|
2815
|
+
"settings.subtitle": "Actualiza la configuraci\xF3n de tu cuenta",
|
|
2816
|
+
"settings.title-lookup-secret": "Administrar c\xF3digos de recuperaci\xF3n de respaldo 2FA",
|
|
2817
|
+
"settings.title-navigation": "Configuraci\xF3n de la cuenta",
|
|
2818
|
+
"settings.title-oidc": "Inicio de sesi\xF3n social",
|
|
2819
|
+
"settings.title-password": "Cambiar contrase\xF1a",
|
|
2820
|
+
"settings.title-profile": "Configuraci\xF3n del perfil",
|
|
2821
|
+
"settings.title-totp": "Administrar la aplicaci\xF3n de autenticaci\xF3n 2FA TOTP",
|
|
2822
|
+
"settings.title-webauthn": "Administrar tokens de hardware",
|
|
2823
|
+
"settings.title-passkey": "Administrar claves de acceso",
|
|
2824
|
+
"verification.subtitle": "Ingresa la direcci\xF3n de correo electr\xF3nico asociada con tu cuenta para verificarla",
|
|
2825
|
+
"input.placeholder": "Ingresa tu {placeholder}",
|
|
2826
|
+
"card.header.parts.oidc": "un proveedor social",
|
|
2827
|
+
"card.header.parts.password.registration": "tu {identifierLabel} y una contrase\xF1a",
|
|
2828
|
+
"card.header.parts.password.login": "tu {identifierLabel} y contrase\xF1a",
|
|
2829
|
+
"card.header.parts.code": "un c\xF3digo enviado a tu correo electr\xF3nico",
|
|
2830
|
+
"card.header.parts.passkey": "una clave de acceso",
|
|
2831
|
+
"card.header.parts.webauthn": "una clave de seguridad",
|
|
2832
|
+
"card.header.parts.totp": "su aplicaci\xF3n de autenticaci\xF3n",
|
|
2833
|
+
"card.header.parts.lookup_secret": "un c\xF3digo de recuperaci\xF3n de copia de seguridad",
|
|
2834
|
+
"card.header.parts.identifier-first": "tu {identifierLabel}",
|
|
2835
|
+
"card.header.description.login": "Iniciar sesi\xF3n con {identifierLabel}",
|
|
2836
|
+
"card.header.description.registration": "Registrarse con {identifierLabel}",
|
|
2837
|
+
"misc.or": "o",
|
|
2838
|
+
"forms.label.forgot-password": "\xBFOlvidaste tu contrase\xF1a?",
|
|
2839
|
+
"settings.oidc.info": "Las cuentas conectadas de estos proveedores se pueden utilizar para iniciar sesi\xF3n en tu cuenta",
|
|
2840
|
+
"settings.webauthn.info": "Los tokens de hardware se utilizan para la autenticaci\xF3n de segundo factor o como primer factor con las claves de acceso",
|
|
2841
|
+
"settings.passkey.info": "Administra la configuraci\xF3n de tus claves de acceso",
|
|
2842
|
+
"card.footer.select-another-method": "Seleccionar otro m\xE9todo",
|
|
2843
|
+
"account-linking.title": "Vincular cuenta",
|
|
2844
|
+
"property.password": "contrase\xF1a",
|
|
2845
|
+
"property.email": "correo electr\xF3nico",
|
|
2846
|
+
"property.phone": "tel\xE9fono",
|
|
2847
|
+
"property.username": "nombre de usuario",
|
|
2848
|
+
"property.identifier": "identificador",
|
|
2849
|
+
"property.code": "c\xF3digo",
|
|
2850
|
+
"error.title.what-happened": "\xBFQu\xE9 pas\xF3?",
|
|
2851
|
+
"error.title.what-can-i-do": "\xBFQu\xE9 puedo hacer?",
|
|
2852
|
+
"error.instructions": "Por favor, int\xE9ntalo de nuevo en unos minutos o contacta al operador del sitio web.",
|
|
2853
|
+
"error.footer.text": "Al informar este error, incluye la siguiente informaci\xF3n:",
|
|
2854
|
+
"error.footer.copy": "Copiar",
|
|
2855
|
+
"error.action.go-back": "Regresar",
|
|
2856
|
+
"identities.messages.1010020": "",
|
|
2857
|
+
"identities.messages.1050020": 'Eliminar passkey "{display_name}"'
|
|
2438
2858
|
};
|
|
2439
2859
|
|
|
2440
2860
|
// src/locales/fr.json
|
|
@@ -2460,9 +2880,9 @@ var fr_default = {
|
|
|
2460
2880
|
"identities.messages.1010005": "V\xE9rifier",
|
|
2461
2881
|
"identities.messages.1010006": "Code d'authentification",
|
|
2462
2882
|
"identities.messages.1010007": "Code de r\xE9cup\xE9ration de secours",
|
|
2463
|
-
"identities.messages.1010008": "
|
|
2464
|
-
"identities.messages.1010009": "
|
|
2465
|
-
"identities.messages.1010010": "
|
|
2883
|
+
"identities.messages.1010008": "Continuer avec la cl\xE9 mat\xE9rielle",
|
|
2884
|
+
"identities.messages.1010009": "Continuer",
|
|
2885
|
+
"identities.messages.1010010": "Continuer",
|
|
2466
2886
|
"identities.messages.1010011": "Continuer avec la cl\xE9 de s\xE9curit\xE9",
|
|
2467
2887
|
"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.",
|
|
2468
2888
|
"identities.messages.1010013": "Continuer",
|
|
@@ -2579,7 +2999,15 @@ var fr_default = {
|
|
|
2579
2999
|
"login.subtitle-oauth2": "Pour vous authentifier sur {clientName}",
|
|
2580
3000
|
"login.title": "Se connecter",
|
|
2581
3001
|
"login.title-aal2": "Authentification \xE0 deux facteurs",
|
|
3002
|
+
"login.subtitle-aal2": "Choisissez une m\xE9thode pour compl\xE9ter votre authentification \xE0 deux facteurs",
|
|
3003
|
+
"login.code.subtitle": "Un code de v\xE9rification sera envoy\xE9 par e-mail",
|
|
3004
|
+
"login.webauthn.subtitle": "Veuillez pr\xE9parer votre dispositif WebAuthN",
|
|
3005
|
+
"login.totp.subtitle": "Veuillez saisir le code g\xE9n\xE9r\xE9 par votre application d'authentification",
|
|
3006
|
+
"login.lookup_secret.subtitle": "Veuillez saisir l'un de vos codes de r\xE9cup\xE9ration de secours \xE0 8 chiffres",
|
|
2582
3007
|
"login.title-refresh": "Confirmez que c'est bien vous",
|
|
3008
|
+
"login.2fa.go-back": "Quelque chose ne fonctionne pas ?",
|
|
3009
|
+
"login.2fa.go-back.link": "Retour",
|
|
3010
|
+
"login.2fa.method.go-back": "Choisir une autre m\xE9thode",
|
|
2583
3011
|
"logout.accept-button": "Oui",
|
|
2584
3012
|
"logout.reject-button": "Non",
|
|
2585
3013
|
"logout.title": "Souhaitez-vous vous d\xE9connecter ?",
|
|
@@ -2611,83 +3039,109 @@ var fr_default = {
|
|
|
2611
3039
|
"two-step.passkey.title": "Cl\xE9 de passe (recommand\xE9e)",
|
|
2612
3040
|
"two-step.password.description": "Entrez votre mot de passe associ\xE9 \xE0 votre compte",
|
|
2613
3041
|
"two-step.password.title": "Mot de passe",
|
|
2614
|
-
"two-step.webauthn.description": "Utilisez votre cl\xE9 de s\xE9curit\xE9 pour vous authentifier",
|
|
2615
3042
|
"two-step.webauthn.title": "Cl\xE9 de S\xE9curit\xE9",
|
|
2616
|
-
"
|
|
2617
|
-
"
|
|
2618
|
-
"
|
|
2619
|
-
"
|
|
2620
|
-
"
|
|
2621
|
-
"identities.messages.1010016": "",
|
|
2622
|
-
"identities.messages.1010017": "",
|
|
2623
|
-
"identities.messages.1010018": "",
|
|
2624
|
-
"identities.messages.1010019": "",
|
|
2625
|
-
"identities.messages.1010020": "",
|
|
2626
|
-
"identities.messages.1010021": "",
|
|
2627
|
-
"identities.messages.1010022": "",
|
|
2628
|
-
"identities.messages.1040007": "",
|
|
2629
|
-
"identities.messages.1040008": "",
|
|
2630
|
-
"identities.messages.1040009": "",
|
|
2631
|
-
"identities.messages.1050019": "",
|
|
2632
|
-
"identities.messages.1050020": "",
|
|
2633
|
-
"identities.messages.1070014": "",
|
|
2634
|
-
"identities.messages.4000037": "",
|
|
2635
|
-
"identities.messages.4010009": "",
|
|
2636
|
-
"identities.messages.4010010": "",
|
|
2637
|
-
"input.placeholder": "",
|
|
2638
|
-
"card.header.description.login": "",
|
|
2639
|
-
"card.header.description.registration": "",
|
|
2640
|
-
"card.header.parts.code": "",
|
|
2641
|
-
"card.header.parts.identifier-first": "",
|
|
2642
|
-
"card.header.parts.oidc": "",
|
|
2643
|
-
"card.header.parts.passkey": "",
|
|
2644
|
-
"card.header.parts.password.login": "",
|
|
2645
|
-
"card.header.parts.password.registration": "",
|
|
2646
|
-
"card.header.parts.webauthn": "",
|
|
2647
|
-
"forms.label.forgot-password": "",
|
|
2648
|
-
"login.subtitle": "",
|
|
2649
|
-
"login.subtitle-refresh": "",
|
|
2650
|
-
"misc.or": "",
|
|
2651
|
-
"recovery.subtitle": "",
|
|
2652
|
-
"registration.subtitle": "",
|
|
2653
|
-
"settings.subtitle": "",
|
|
2654
|
-
"verification.subtitle": "",
|
|
3043
|
+
"two-step.webauthn.description": "Utilisez votre cl\xE9 de s\xE9curit\xE9 pour vous authentifier",
|
|
3044
|
+
"two-step.totp.title": "Utilisez votre application d'authentification (TOTP)",
|
|
3045
|
+
"two-step.totp.description": "Utilisez un code \xE0 usage unique \xE0 6 chiffres provenant de votre application d'authentification",
|
|
3046
|
+
"two-step.lookup_secret.title": "Code de r\xE9cup\xE9ration de secours",
|
|
3047
|
+
"two-step.lookup_secret.description": "Utilisez l'un de vos codes de secours \xE0 8 chiffres pour vous authentifier",
|
|
2655
3048
|
"settings.totp.info.linked": "Vous avez actuellement une application d'authentification connect\xE9e.",
|
|
2656
3049
|
"settings.totp.info.not-linked": "Pour activer, scannez le QR code avec votre authentificateur et entrez le code.",
|
|
2657
3050
|
"settings.totp.title": "Application d'authentification",
|
|
2658
3051
|
"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.",
|
|
2659
|
-
"
|
|
2660
|
-
"
|
|
2661
|
-
"
|
|
2662
|
-
"
|
|
2663
|
-
"
|
|
2664
|
-
"
|
|
2665
|
-
"
|
|
2666
|
-
"
|
|
2667
|
-
"
|
|
2668
|
-
"
|
|
2669
|
-
"
|
|
2670
|
-
"
|
|
2671
|
-
"
|
|
2672
|
-
"
|
|
2673
|
-
"
|
|
2674
|
-
"
|
|
2675
|
-
"
|
|
2676
|
-
"
|
|
2677
|
-
"
|
|
2678
|
-
"
|
|
2679
|
-
"
|
|
2680
|
-
"
|
|
2681
|
-
"
|
|
2682
|
-
"
|
|
2683
|
-
"
|
|
2684
|
-
"
|
|
2685
|
-
"
|
|
2686
|
-
"
|
|
2687
|
-
"
|
|
2688
|
-
"
|
|
2689
|
-
"
|
|
2690
|
-
"
|
|
3052
|
+
"consent.title": "Autoriser {party}",
|
|
3053
|
+
"consent.subtitle": "Une application tierce souhaite acc\xE9der aux informations associ\xE9es \xE0 votre compte {identifier}.",
|
|
3054
|
+
"consent.scope.openid.title": "Identit\xE9",
|
|
3055
|
+
"consent.scope.openid.description": "Permet \xE0 l'application de v\xE9rifier votre identit\xE9. Cela est n\xE9cessaire pour l'authentification et une exp\xE9rience de connexion fiable.",
|
|
3056
|
+
"consent.scope.offline_access.title": "Acc\xE8s hors ligne",
|
|
3057
|
+
"consent.scope.offline_access.description": "Permet \xE0 cette application de vous maintenir connect\xE9 m\xEAme lorsque vous ne l'utilisez pas activement.",
|
|
3058
|
+
"consent.scope.profile.title": "Informations de profil",
|
|
3059
|
+
"consent.scope.profile.description": "Permet l'acc\xE8s aux d\xE9tails de base de votre profil, y compris votre nom d'utilisateur, pr\xE9nom et nom.",
|
|
3060
|
+
"consent.scope.email.title": "Adresse e-mail",
|
|
3061
|
+
"consent.scope.email.description": "R\xE9cup\xE8re votre adresse e-mail et son statut de v\xE9rification.",
|
|
3062
|
+
"consent.scope.address.title": "Adresse physique",
|
|
3063
|
+
"consent.scope.address.description": "Acc\xE8de \xE0 votre adresse postale.",
|
|
3064
|
+
"consent.scope.phone.title": "Num\xE9ro de t\xE9l\xE9phone",
|
|
3065
|
+
"consent.scope.phone.description": "R\xE9cup\xE8re votre num\xE9ro de t\xE9l\xE9phone et son statut de v\xE9rification.",
|
|
3066
|
+
"identities.messages.1010016": "Vous avez essay\xE9 de vous connecter avec \xAB {duplicateIdentifier} \xBB, mais cet e-mail est d\xE9j\xE0 utilis\xE9 par un autre compte. Connectez-vous \xE0 votre compte avec l'une des options ci-dessous pour ajouter votre compte \xAB {duplicateIdentifier} \xBB sur \xAB {provider} \xBB comme autre moyen de vous connecter.",
|
|
3067
|
+
"identities.messages.1010017": "Se connecter et lier",
|
|
3068
|
+
"identities.messages.1010018": "Confirmer avec {provider}",
|
|
3069
|
+
"identities.messages.1010019": "Demander un code pour continuer",
|
|
3070
|
+
"identities.messages.1010021": "Se connecter avec une cl\xE9 d'acc\xE8s",
|
|
3071
|
+
"identities.messages.1010022": "Se connecter avec un mot de passe",
|
|
3072
|
+
"identities.messages.1010023": "Envoyer le code \xE0 {address}",
|
|
3073
|
+
"identities.messages.1040007": "S'inscrire avec une cl\xE9 d'acc\xE8s",
|
|
3074
|
+
"identities.messages.1040008": "Retour",
|
|
3075
|
+
"identities.messages.1040009": "Veuillez choisir une identification pour vous authentifier.",
|
|
3076
|
+
"identities.messages.1050019": "Ajouter une cl\xE9 d'acc\xE8s",
|
|
3077
|
+
"identities.messages.1050020": "Supprimer la cl\xE9 d'acc\xE8s \xAB {display_name} \xBB",
|
|
3078
|
+
"identities.messages.1070014": "Se connecter et lier l'identification",
|
|
3079
|
+
"identities.messages.1070015": "Veuillez compl\xE9ter le d\xE9fi captcha pour continuer.",
|
|
3080
|
+
"identities.messages.4000037": "Ce compte n'existe pas ou n'a aucune m\xE9thode de connexion configur\xE9e.",
|
|
3081
|
+
"identities.messages.4000038": "La v\xE9rification Captcha a \xE9chou\xE9, veuillez r\xE9essayer.",
|
|
3082
|
+
"identities.messages.4010009": "Les identifications li\xE9es ne correspondent pas.",
|
|
3083
|
+
"identities.messages.4010010": "L'adresse que vous avez saisie ne correspond \xE0 aucune adresse connue dans le compte actuel.",
|
|
3084
|
+
"login.cancel-button": "Annuler",
|
|
3085
|
+
"login.cancel-label": "Ce n'est pas le bon compte\xA0?",
|
|
3086
|
+
"login.subtitle": "Se connecter avec {parts}",
|
|
3087
|
+
"login.subtitle-refresh": "Confirmez votre identit\xE9 avec {parts}",
|
|
3088
|
+
"recovery.subtitle": "Saisissez l'adresse e-mail associ\xE9e \xE0 votre compte pour recevoir un code d'acc\xE8s unique",
|
|
3089
|
+
"registration.subtitle": "S'inscrire avec {parts}",
|
|
3090
|
+
"settings.subtitle": "Mettre \xE0 jour les param\xE8tres de votre compte",
|
|
3091
|
+
"settings.title-lookup-secret": "G\xE9rer les codes de r\xE9cup\xE9ration de sauvegarde 2FA",
|
|
3092
|
+
"settings.title-navigation": "Param\xE8tres du compte",
|
|
3093
|
+
"settings.title-oidc": "Connexion via les r\xE9seaux sociaux",
|
|
3094
|
+
"settings.title-password": "Changer le mot de passe",
|
|
3095
|
+
"settings.title-profile": "Param\xE8tres du profil",
|
|
3096
|
+
"settings.title-totp": "G\xE9rer l'application d'authentification 2FA TOTP",
|
|
3097
|
+
"settings.title-webauthn": "G\xE9rer les jetons mat\xE9riels",
|
|
3098
|
+
"settings.title-passkey": "G\xE9rer les cl\xE9s d'acc\xE8s",
|
|
3099
|
+
"settings.navigation.title": "Param\xE8tres du compte",
|
|
3100
|
+
"settings.password.title": "Changer le mot de passe",
|
|
3101
|
+
"settings.password.description": "Modifier votre mot de passe",
|
|
3102
|
+
"settings.profile.title": "Param\xE8tres du profil",
|
|
3103
|
+
"settings.profile.description": "Mettre \xE0 jour les informations de votre profil",
|
|
3104
|
+
"settings.webauthn.title": "G\xE9rer les jetons mat\xE9riels",
|
|
3105
|
+
"settings.webauthn.description": "G\xE9rer les param\xE8tres de votre jeton mat\xE9riel",
|
|
3106
|
+
"verification.subtitle": "Saisissez l'adresse e-mail associ\xE9e \xE0 votre compte pour la v\xE9rifier",
|
|
3107
|
+
"input.placeholder": "Saisissez votre {placeholder}",
|
|
3108
|
+
"card.header.parts.oidc": "un fournisseur de r\xE9seaux sociaux",
|
|
3109
|
+
"card.header.parts.password.registration": "votre {identifierLabel} et un mot de passe",
|
|
3110
|
+
"card.header.parts.password.login": "votre {identifierLabel} et votre mot de passe",
|
|
3111
|
+
"card.header.parts.passkey": "une cl\xE9 d'acc\xE8s",
|
|
3112
|
+
"card.header.parts.webauthn": "une cl\xE9 de s\xE9curit\xE9",
|
|
3113
|
+
"card.header.parts.identifier-first": "votre {identifierLabel}",
|
|
3114
|
+
"card.header.parts.code": "un code qui vous a \xE9t\xE9 envoy\xE9",
|
|
3115
|
+
"card.header.parts.totp": "votre application d'authentification",
|
|
3116
|
+
"card.header.parts.lookup_secret": "un code de r\xE9cup\xE9ration de secours",
|
|
3117
|
+
"card.header.description.login": "Se connecter avec {identifierLabel}",
|
|
3118
|
+
"card.header.description.registration": "S'inscrire avec {identifierLabel}",
|
|
3119
|
+
"misc.or": "ou",
|
|
3120
|
+
"forms.label.forgot-password": "Mot de passe oubli\xE9?",
|
|
3121
|
+
"settings.lookup_secret.title": "Codes de r\xE9cup\xE9ration de sauvegarde (second facteur)",
|
|
3122
|
+
"settings.lookup_secret.description": "Les codes de r\xE9cup\xE9ration sont une sauvegarde s\xE9curis\xE9e pour l'authentification \xE0 deux facteurs (2FA), vous permettant de retrouver l'acc\xE8s \xE0 votre compte si vous perdez votre appareil 2FA.",
|
|
3123
|
+
"settings.oidc.title": "Comptes connect\xE9s",
|
|
3124
|
+
"settings.oidc.description": "Connectez un fournisseur de connexion sociale \xE0 votre compte.",
|
|
3125
|
+
"settings.oidc.info": "Les comptes connect\xE9s de ces fournisseurs peuvent \xEAtre utilis\xE9s pour vous connecter \xE0 votre compte",
|
|
3126
|
+
"settings.webauthn.info": "Les jetons mat\xE9riels sont utilis\xE9s pour l'authentification \xE0 deux facteurs ou comme premier facteur avec les cl\xE9s d'acc\xE8s",
|
|
3127
|
+
"settings.passkey.title": "G\xE9rer les cl\xE9s d'acc\xE8s",
|
|
3128
|
+
"settings.passkey.description": "G\xE9rer les param\xE8tres de vos cl\xE9s d'acc\xE8s",
|
|
3129
|
+
"settings.passkey.info": "G\xE9rer les param\xE8tres de vos cl\xE9s d'acc\xE8s",
|
|
3130
|
+
"card.footer.select-another-method": "S\xE9lectionner une autre m\xE9thode",
|
|
3131
|
+
"account-linking.title": "Lier le compte",
|
|
3132
|
+
"property.password": "mot de passe",
|
|
3133
|
+
"property.email": "e-mail",
|
|
3134
|
+
"property.phone": "t\xE9l\xE9phone",
|
|
3135
|
+
"property.username": "nom d'utilisateur",
|
|
3136
|
+
"property.identifier": "identifiant",
|
|
3137
|
+
"property.code": "code",
|
|
3138
|
+
"error.title.what-happened": "Que s'est-il pass\xE9?",
|
|
3139
|
+
"error.title.what-can-i-do": "Que puis-je faire?",
|
|
3140
|
+
"error.instructions": "Veuillez r\xE9essayer dans quelques minutes ou contacter l'op\xE9rateur du site Web.",
|
|
3141
|
+
"error.footer.text": "Lorsque vous signalez cette erreur, veuillez inclure les informations suivantes:",
|
|
3142
|
+
"error.footer.copy": "Copier",
|
|
3143
|
+
"error.action.go-back": "Retour",
|
|
3144
|
+
"identities.messages.1010020": ""
|
|
2691
3145
|
};
|
|
2692
3146
|
|
|
2693
3147
|
// src/locales/nl.json
|
|
@@ -2713,9 +3167,9 @@ var nl_default = {
|
|
|
2713
3167
|
"identities.messages.1010005": "Verifi\xEBren",
|
|
2714
3168
|
"identities.messages.1010006": "Verificatiecode",
|
|
2715
3169
|
"identities.messages.1010007": "Back-up herstelcode",
|
|
2716
|
-
"identities.messages.1010008": "
|
|
2717
|
-
"identities.messages.1010009": "
|
|
2718
|
-
"identities.messages.1010010": "
|
|
3170
|
+
"identities.messages.1010008": "Ga verder met hardware-sleutel",
|
|
3171
|
+
"identities.messages.1010009": "Doorgaan",
|
|
3172
|
+
"identities.messages.1010010": "Doorgaan",
|
|
2719
3173
|
"identities.messages.1010011": "Doorgaan met beveiligingssleutel",
|
|
2720
3174
|
"identities.messages.1010012": "Bereid uw WebAuthn-apparaat voor (bijv. beveiligingssleutel, biometrische scanner, ...) en druk op doorgaan.",
|
|
2721
3175
|
"identities.messages.1010013": "Doorgaan",
|
|
@@ -2831,8 +3285,16 @@ var nl_default = {
|
|
|
2831
3285
|
"login.registration-label": "Heb je nog geen account?",
|
|
2832
3286
|
"login.subtitle-oauth2": "Om te authenticeren bij {clientName}",
|
|
2833
3287
|
"login.title": "Inloggen",
|
|
2834
|
-
"login.title-aal2": "
|
|
3288
|
+
"login.title-aal2": "Tweefactorauthenticatie",
|
|
3289
|
+
"login.subtitle-aal2": "Kies een manier om uw tweefactorauthenticatie te voltooien",
|
|
3290
|
+
"login.code.subtitle": "Er wordt een verificatiecode per e-mail verzonden",
|
|
3291
|
+
"login.webauthn.subtitle": "Bereid uw WebAuthN-apparaat voor",
|
|
3292
|
+
"login.totp.subtitle": "Voer de code in die door uw Authenticator-app is gegenereerd",
|
|
3293
|
+
"login.lookup_secret.subtitle": "Voer een van uw 8-cijferige back-up herstelcodes in",
|
|
2835
3294
|
"login.title-refresh": "Bevestig dat jij het bent",
|
|
3295
|
+
"login.2fa.go-back": "Werkt er iets niet?",
|
|
3296
|
+
"login.2fa.go-back.link": "Ga terug",
|
|
3297
|
+
"login.2fa.method.go-back": "Kies een andere methode",
|
|
2836
3298
|
"logout.accept-button": "Ja",
|
|
2837
3299
|
"logout.reject-button": "Nee",
|
|
2838
3300
|
"logout.title": "Wil je uitloggen?",
|
|
@@ -2864,8 +3326,12 @@ var nl_default = {
|
|
|
2864
3326
|
"two-step.passkey.title": "Toegangscode (aanbevolen)",
|
|
2865
3327
|
"two-step.password.description": "Voer uw wachtwoord in dat is gekoppeld aan uw account",
|
|
2866
3328
|
"two-step.password.title": "Wachtwoord",
|
|
2867
|
-
"two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifi\xEBren",
|
|
2868
3329
|
"two-step.webauthn.title": "Beveiligingssleutel",
|
|
3330
|
+
"two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifi\xEBren",
|
|
3331
|
+
"two-step.totp.title": "Gebruik uw Authenticator-app (TOTP)",
|
|
3332
|
+
"two-step.totp.description": "Gebruik een 6-cijferige eenmalige code van uw authenticator-app",
|
|
3333
|
+
"two-step.lookup_secret.title": "Herstelcode",
|
|
3334
|
+
"two-step.lookup_secret.description": "Gebruik een van uw 8-cijferige back-upcodes om te authenticeren",
|
|
2869
3335
|
"identities.messages.1010023": "",
|
|
2870
3336
|
"identities.messages.1070014": "",
|
|
2871
3337
|
"identities.messages.1070015": "",
|
|
@@ -2890,7 +3356,9 @@ var nl_default = {
|
|
|
2890
3356
|
"input.placeholder": "",
|
|
2891
3357
|
"card.header.description.login": "",
|
|
2892
3358
|
"card.header.description.registration": "",
|
|
2893
|
-
"card.header.parts.code": "",
|
|
3359
|
+
"card.header.parts.code": "een code die naar je is verzonden",
|
|
3360
|
+
"card.header.parts.totp": "je authenticator-app",
|
|
3361
|
+
"card.header.parts.lookup_secret": "een backup herstelcode",
|
|
2894
3362
|
"card.header.parts.identifier-first": "",
|
|
2895
3363
|
"card.header.parts.oidc": "",
|
|
2896
3364
|
"card.header.parts.passkey": "",
|
|
@@ -2940,7 +3408,27 @@ var nl_default = {
|
|
|
2940
3408
|
"property.identifier": "",
|
|
2941
3409
|
"property.password": "",
|
|
2942
3410
|
"property.phone": "",
|
|
2943
|
-
"property.username": ""
|
|
3411
|
+
"property.username": "",
|
|
3412
|
+
"consent.title": "Autoriseren {party}",
|
|
3413
|
+
"consent.subtitle": "Een derde partij applicatie wil toegang tot informatie die aan uw account {identifier} is gekoppeld.",
|
|
3414
|
+
"consent.scope.openid.title": "Identiteit",
|
|
3415
|
+
"consent.scope.openid.description": "Stelt de applicatie in staat uw identiteit te verifi\xEBren. Dit is vereist voor authenticatie en een betrouwbare inlogervaring.",
|
|
3416
|
+
"consent.scope.offline_access.title": "Offline toegang",
|
|
3417
|
+
"consent.scope.offline_access.description": "Stelt deze applicatie in staat u ingelogd te houden, zelfs wanneer u deze niet actief gebruikt.",
|
|
3418
|
+
"consent.scope.profile.title": "Profielinformatie",
|
|
3419
|
+
"consent.scope.profile.description": "Geeft toegang tot uw basisprofielgegevens, inclusief uw gebruikersnaam, voornaam en achternaam.",
|
|
3420
|
+
"consent.scope.email.title": "E-mailadres",
|
|
3421
|
+
"consent.scope.email.description": "Haal uw e-mailadres en de verificatiestatus ervan op.",
|
|
3422
|
+
"consent.scope.address.title": "Fysiek adres",
|
|
3423
|
+
"consent.scope.address.description": "Toegang tot uw postadres.",
|
|
3424
|
+
"consent.scope.phone.title": "Telefoonnummer",
|
|
3425
|
+
"consent.scope.phone.description": "Haal uw telefoonnummer en de verificatiestatus ervan op.",
|
|
3426
|
+
"error.action.go-back": "",
|
|
3427
|
+
"error.footer.copy": "",
|
|
3428
|
+
"error.footer.text": "",
|
|
3429
|
+
"error.title.what-can-i-do": "",
|
|
3430
|
+
"error.title.what-happened": "",
|
|
3431
|
+
"error.instructions": ""
|
|
2944
3432
|
};
|
|
2945
3433
|
|
|
2946
3434
|
// src/locales/pl.json
|
|
@@ -2966,9 +3454,9 @@ var pl_default = {
|
|
|
2966
3454
|
"identities.messages.1010005": "Zweryifkuj",
|
|
2967
3455
|
"identities.messages.1010006": "Kod autentykacyjny",
|
|
2968
3456
|
"identities.messages.1010007": "Zapasowe kody odzyskiwania",
|
|
2969
|
-
"identities.messages.1010008": "
|
|
2970
|
-
"identities.messages.1010009": "
|
|
2971
|
-
"identities.messages.1010010": "
|
|
3457
|
+
"identities.messages.1010008": "Kontynuuj z kluczem sprz\u0119towym",
|
|
3458
|
+
"identities.messages.1010009": "Kontynuuj",
|
|
3459
|
+
"identities.messages.1010010": "Kontynuuj",
|
|
2972
3460
|
"identities.messages.1010011": "Kontynuuj za pomoc\u0105 klucza bezpiecze\u0144stwa",
|
|
2973
3461
|
"identities.messages.1010012": "Przygotuj swoje urz\u0105dzenie WebAuthn (np. klucz bezpiecze\u0144stwa, czytnik biometryczny, ...) a nast\u0119pnie kliknij kontynuuj.",
|
|
2974
3462
|
"identities.messages.1010013": "Kontynuuj",
|
|
@@ -3084,8 +3572,16 @@ var pl_default = {
|
|
|
3084
3572
|
"login.registration-label": "Nie posiadasz konta?",
|
|
3085
3573
|
"login.subtitle-oauth2": "Do autentykacji {clientName}",
|
|
3086
3574
|
"login.title": "Zaloguj si\u0119",
|
|
3087
|
-
"login.title-aal2": "
|
|
3575
|
+
"login.title-aal2": "Uwierzytelnianie dwusk\u0142adnikowe",
|
|
3576
|
+
"login.subtitle-aal2": "Wybierz spos\xF3b, aby zako\u0144czy\u0107 uwierzytelnianie dwusk\u0142adnikowe",
|
|
3577
|
+
"login.code.subtitle": "Kod weryfikacyjny zostanie wys\u0142any e-mailem",
|
|
3578
|
+
"login.webauthn.subtitle": "Prosz\u0119 przygotowa\u0107 urz\u0105dzenie WebAuthN",
|
|
3579
|
+
"login.totp.subtitle": "Prosz\u0119 wprowadzi\u0107 kod wygenerowany przez Twoj\u0105 aplikacj\u0119 uwierzytelniaj\u0105c\u0105",
|
|
3580
|
+
"login.lookup_secret.subtitle": "Prosz\u0119 wprowadzi\u0107 jeden z Twoich 8-cyfrowych kod\xF3w odzyskiwania zapasowego",
|
|
3088
3581
|
"login.title-refresh": "Potwierd\u017A \u017Ce to Ty",
|
|
3582
|
+
"login.2fa.go-back": "Co\u015B nie dzia\u0142a?",
|
|
3583
|
+
"login.2fa.go-back.link": "Wr\xF3\u0107",
|
|
3584
|
+
"login.2fa.method.go-back": "Wybierz inn\u0105 metod\u0119",
|
|
3089
3585
|
"logout.accept-button": "Tak",
|
|
3090
3586
|
"logout.reject-button": "Nie",
|
|
3091
3587
|
"logout.title": "Czy chcesz si\u0119 wylogowa\u0107?",
|
|
@@ -3117,8 +3613,12 @@ var pl_default = {
|
|
|
3117
3613
|
"two-step.passkey.title": "Klucz dost\u0119pu (zalecany)",
|
|
3118
3614
|
"two-step.password.description": "Wprowad\u017A has\u0142o powi\u0105zane z twoim kontem",
|
|
3119
3615
|
"two-step.password.title": "Has\u0142o",
|
|
3120
|
-
"two-step.webauthn.description": "U\u017Cyj swojego klucza bezpiecze\u0144stwa do uwierzytelnienia",
|
|
3121
3616
|
"two-step.webauthn.title": "Klucz bezpiecze\u0144stwa",
|
|
3617
|
+
"two-step.webauthn.description": "U\u017Cyj swojego klucza bezpiecze\u0144stwa do uwierzytelnienia",
|
|
3618
|
+
"two-step.totp.title": "U\u017Cyj swojej aplikacji uwierzytelniaj\u0105cej (TOTP)",
|
|
3619
|
+
"two-step.totp.description": "U\u017Cyj 6-cyfrowego jednorazowego kodu z Twojej aplikacji uwierzytelniaj\u0105cej",
|
|
3620
|
+
"two-step.lookup_secret.title": "Kod odzyskiwania zapasowego",
|
|
3621
|
+
"two-step.lookup_secret.description": "U\u017Cyj jednego z Twoich 8-cyfrowych kod\xF3w zapasowych, aby si\u0119 uwierzytelni\u0107",
|
|
3122
3622
|
"identities.messages.1010016": "",
|
|
3123
3623
|
"identities.messages.1010017": "",
|
|
3124
3624
|
"identities.messages.1010018": "",
|
|
@@ -3143,13 +3643,15 @@ var pl_default = {
|
|
|
3143
3643
|
"input.placeholder": "",
|
|
3144
3644
|
"card.header.description.login": "",
|
|
3145
3645
|
"card.header.description.registration": "",
|
|
3146
|
-
"card.header.parts.code": "",
|
|
3147
3646
|
"card.header.parts.identifier-first": "",
|
|
3148
3647
|
"card.header.parts.oidc": "",
|
|
3149
3648
|
"card.header.parts.passkey": "",
|
|
3150
3649
|
"card.header.parts.password.login": "",
|
|
3151
3650
|
"card.header.parts.password.registration": "",
|
|
3152
3651
|
"card.header.parts.webauthn": "",
|
|
3652
|
+
"card.header.parts.code": "kod wys\u0142any do Ciebie",
|
|
3653
|
+
"card.header.parts.totp": "Twoja aplikacja uwierzytelniaj\u0105ca",
|
|
3654
|
+
"card.header.parts.lookup_secret": "kod odzyskiwania kopii zapasowej",
|
|
3153
3655
|
"forms.label.forgot-password": "",
|
|
3154
3656
|
"login.subtitle": "",
|
|
3155
3657
|
"login.subtitle-refresh": "",
|
|
@@ -3193,7 +3695,27 @@ var pl_default = {
|
|
|
3193
3695
|
"property.password": "",
|
|
3194
3696
|
"property.phone": "",
|
|
3195
3697
|
"property.username": "",
|
|
3196
|
-
"property.identifier": ""
|
|
3698
|
+
"property.identifier": "",
|
|
3699
|
+
"consent.title": "Autoryzuj {party}",
|
|
3700
|
+
"consent.subtitle": "Aplikacja trzeciej strony chce uzyska\u0107 dost\u0119p do informacji powi\u0105zanych z Twoim kontem {identifier}.",
|
|
3701
|
+
"consent.scope.openid.title": "To\u017Csamo\u015B\u0107",
|
|
3702
|
+
"consent.scope.openid.description": "Pozwala aplikacji zweryfikowa\u0107 Twoj\u0105 to\u017Csamo\u015B\u0107. Jest to wymagane do uwierzytelniania i zapewnienia zaufanej sesji logowania.",
|
|
3703
|
+
"consent.scope.offline_access.title": "Dost\u0119p offline",
|
|
3704
|
+
"consent.scope.offline_access.description": "Pozwala aplikacji utrzyma\u0107 Twoje logowanie, nawet gdy nie korzystasz z niej aktywnie.",
|
|
3705
|
+
"consent.scope.profile.title": "Informacje profilowe",
|
|
3706
|
+
"consent.scope.profile.description": "Pozwala na dost\u0119p do podstawowych danych profilowych, w tym nazwy u\u017Cytkownika, imienia i nazwiska.",
|
|
3707
|
+
"consent.scope.email.title": "Adres e-mail",
|
|
3708
|
+
"consent.scope.email.description": "Pobierz sw\xF3j adres e-mail oraz status jego weryfikacji.",
|
|
3709
|
+
"consent.scope.address.title": "Adres fizyczny",
|
|
3710
|
+
"consent.scope.address.description": "Dost\u0119p do Twojego adresu pocztowego.",
|
|
3711
|
+
"consent.scope.phone.title": "Numer telefonu",
|
|
3712
|
+
"consent.scope.phone.description": "Pobierz sw\xF3j numer telefonu oraz status jego weryfikacji.",
|
|
3713
|
+
"error.action.go-back": "",
|
|
3714
|
+
"error.footer.copy": "",
|
|
3715
|
+
"error.footer.text": "",
|
|
3716
|
+
"error.title.what-can-i-do": "",
|
|
3717
|
+
"error.title.what-happened": "",
|
|
3718
|
+
"error.instructions": ""
|
|
3197
3719
|
};
|
|
3198
3720
|
|
|
3199
3721
|
// src/locales/pt.json
|
|
@@ -3219,9 +3741,9 @@ var pt_default = {
|
|
|
3219
3741
|
"identities.messages.1010005": "Verificar",
|
|
3220
3742
|
"identities.messages.1010006": "C\xF3digo de Autentica\xE7\xE3o",
|
|
3221
3743
|
"identities.messages.1010007": "C\xF3digo de Recupera\xE7\xE3o de Backup",
|
|
3222
|
-
"identities.messages.1010008": "
|
|
3223
|
-
"identities.messages.1010009": "
|
|
3224
|
-
"identities.messages.1010010": "
|
|
3744
|
+
"identities.messages.1010008": "Continuar com chave de hardware",
|
|
3745
|
+
"identities.messages.1010009": "Continuar",
|
|
3746
|
+
"identities.messages.1010010": "Continuar",
|
|
3225
3747
|
"identities.messages.1010011": "Continuar com a chave de seguran\xE7a",
|
|
3226
3748
|
"identities.messages.1010012": "Prepare o seu dispositivo WebAuthn (por exemplo, chave de seguran\xE7a, scanner biom\xE9trico, ...) e pressione continuar.",
|
|
3227
3749
|
"identities.messages.1010013": "Continuar",
|
|
@@ -3337,8 +3859,16 @@ var pt_default = {
|
|
|
3337
3859
|
"login.registration-label": "N\xE3o tem uma conta?",
|
|
3338
3860
|
"login.subtitle-oauth2": "Para autenticar {clientName}",
|
|
3339
3861
|
"login.title": "Entrar",
|
|
3340
|
-
"login.title-aal2": "Autentica\xE7\xE3o de
|
|
3862
|
+
"login.title-aal2": "Autentica\xE7\xE3o de dois fatores",
|
|
3863
|
+
"login.subtitle-aal2": "Escolha uma forma de completar sua autentica\xE7\xE3o de segundo fator",
|
|
3864
|
+
"login.code.subtitle": "Um c\xF3digo de verifica\xE7\xE3o ser\xE1 enviado por e-mail",
|
|
3865
|
+
"login.webauthn.subtitle": "Por favor, prepare seu dispositivo WebAuthN",
|
|
3866
|
+
"login.totp.subtitle": "Digite o c\xF3digo gerado pelo seu aplicativo autenticador",
|
|
3867
|
+
"login.lookup_secret.subtitle": "Digite um dos seus c\xF3digos de recupera\xE7\xE3o de 8 d\xEDgitos",
|
|
3341
3868
|
"login.title-refresh": "Confirme que \xE9 voc\xEA",
|
|
3869
|
+
"login.2fa.go-back": "Algo n\xE3o est\xE1 funcionando?",
|
|
3870
|
+
"login.2fa.go-back.link": "Voltar",
|
|
3871
|
+
"login.2fa.method.go-back": "Escolher outro m\xE9todo",
|
|
3342
3872
|
"logout.accept-button": "Sim",
|
|
3343
3873
|
"logout.reject-button": "N\xE3o",
|
|
3344
3874
|
"logout.title": "Deseja sair?",
|
|
@@ -3370,8 +3900,12 @@ var pt_default = {
|
|
|
3370
3900
|
"two-step.passkey.title": "Chave de acesso (recomendado)",
|
|
3371
3901
|
"two-step.password.description": "Insira a sua senha associada \xE0 sua conta",
|
|
3372
3902
|
"two-step.password.title": "Senha",
|
|
3373
|
-
"two-step.webauthn.description": "Use sua chave de seguran\xE7a para autenticar",
|
|
3374
3903
|
"two-step.webauthn.title": "Chave de Seguran\xE7a",
|
|
3904
|
+
"two-step.webauthn.description": "Use sua chave de seguran\xE7a para autenticar",
|
|
3905
|
+
"two-step.totp.title": "Use seu aplicativo autenticador (TOTP)",
|
|
3906
|
+
"two-step.totp.description": "Use um c\xF3digo \xFAnico de 6 d\xEDgitos do seu aplicativo autenticador",
|
|
3907
|
+
"two-step.lookup_secret.title": "C\xF3digo de recupera\xE7\xE3o de backup",
|
|
3908
|
+
"two-step.lookup_secret.description": "Use um dos seus c\xF3digos de backup de 8 d\xEDgitos para autenticar",
|
|
3375
3909
|
"identities.messages.1010016": "",
|
|
3376
3910
|
"identities.messages.1010017": "",
|
|
3377
3911
|
"identities.messages.1010018": "",
|
|
@@ -3396,7 +3930,9 @@ var pt_default = {
|
|
|
3396
3930
|
"input.placeholder": "",
|
|
3397
3931
|
"card.header.description.login": "",
|
|
3398
3932
|
"card.header.description.registration": "",
|
|
3399
|
-
"card.header.parts.code": "",
|
|
3933
|
+
"card.header.parts.code": "um c\xF3digo enviado para voc\xEA",
|
|
3934
|
+
"card.header.parts.totp": "seu aplicativo autenticador",
|
|
3935
|
+
"card.header.parts.lookup_secret": "um c\xF3digo de recupera\xE7\xE3o de backup",
|
|
3400
3936
|
"card.header.parts.identifier-first": "",
|
|
3401
3937
|
"card.header.parts.oidc": "",
|
|
3402
3938
|
"card.header.parts.passkey": "",
|
|
@@ -3446,7 +3982,27 @@ var pt_default = {
|
|
|
3446
3982
|
"property.identifier": "",
|
|
3447
3983
|
"property.password": "",
|
|
3448
3984
|
"property.phone": "",
|
|
3449
|
-
"property.username": ""
|
|
3985
|
+
"property.username": "",
|
|
3986
|
+
"consent.title": "Autorizar {party}",
|
|
3987
|
+
"consent.subtitle": "Um aplicativo de terceiros deseja acessar as informa\xE7\xF5es associadas \xE0 sua conta {identifier}.",
|
|
3988
|
+
"consent.scope.openid.title": "Identidade",
|
|
3989
|
+
"consent.scope.openid.description": "Permite que a aplica\xE7\xE3o verifique sua identidade. Isso \xE9 necess\xE1rio para a autentica\xE7\xE3o e uma experi\xEAncia de login confi\xE1vel.",
|
|
3990
|
+
"consent.scope.offline_access.title": "Acesso Offline",
|
|
3991
|
+
"consent.scope.offline_access.description": "Permite que este aplicativo mantenha voc\xEA conectado mesmo quando n\xE3o estiver usando-o ativamente.",
|
|
3992
|
+
"consent.scope.profile.title": "Informa\xE7\xF5es do Perfil",
|
|
3993
|
+
"consent.scope.profile.description": "Permite o acesso aos detalhes b\xE1sicos do seu perfil, incluindo seu nome de usu\xE1rio, primeiro nome e sobrenome.",
|
|
3994
|
+
"consent.scope.email.title": "Endere\xE7o de E-mail",
|
|
3995
|
+
"consent.scope.email.description": "Recupere seu endere\xE7o de e-mail e seu status de verifica\xE7\xE3o.",
|
|
3996
|
+
"consent.scope.address.title": "Endere\xE7o F\xEDsico",
|
|
3997
|
+
"consent.scope.address.description": "Acesse seu endere\xE7o postal.",
|
|
3998
|
+
"consent.scope.phone.title": "N\xFAmero de Telefone",
|
|
3999
|
+
"consent.scope.phone.description": "Recupere seu n\xFAmero de telefone e seu status de verifica\xE7\xE3o.",
|
|
4000
|
+
"error.action.go-back": "",
|
|
4001
|
+
"error.footer.copy": "",
|
|
4002
|
+
"error.footer.text": "",
|
|
4003
|
+
"error.title.what-can-i-do": "",
|
|
4004
|
+
"error.title.what-happened": "",
|
|
4005
|
+
"error.instructions": ""
|
|
3450
4006
|
};
|
|
3451
4007
|
|
|
3452
4008
|
// src/locales/sv.json
|
|
@@ -3472,9 +4028,9 @@ var sv_default = {
|
|
|
3472
4028
|
"identities.messages.1010005": "Verifiera",
|
|
3473
4029
|
"identities.messages.1010006": "Autentiseringskod",
|
|
3474
4030
|
"identities.messages.1010007": "\xC5terst\xE4llningskod f\xF6r backup",
|
|
3475
|
-
"identities.messages.1010008": "
|
|
3476
|
-
"identities.messages.1010009": "
|
|
3477
|
-
"identities.messages.1010010": "
|
|
4031
|
+
"identities.messages.1010008": "Forts\xE4tt med s\xE4kerhetsnyckel",
|
|
4032
|
+
"identities.messages.1010009": "Forts\xE4tt",
|
|
4033
|
+
"identities.messages.1010010": "Forts\xE4tt",
|
|
3478
4034
|
"identities.messages.1010011": "Forts\xE4tt med s\xE4kerhetsnyckel",
|
|
3479
4035
|
"identities.messages.1010012": "F\xF6rbered din WebAuthn-enhet (t.ex. s\xE4kerhetsnyckel, biometriska skanner, ...) och tryck p\xE5 forts\xE4tt.",
|
|
3480
4036
|
"identities.messages.1010013": "Forts\xE4tt",
|
|
@@ -3609,7 +4165,15 @@ var sv_default = {
|
|
|
3609
4165
|
"login.subtitle-oauth2": "Att autentisera {clientName}",
|
|
3610
4166
|
"login.title": "Logga in",
|
|
3611
4167
|
"login.title-aal2": "Tv\xE5faktorsautentisering",
|
|
4168
|
+
"login.subtitle-aal2": "V\xE4lj ett s\xE4tt att slutf\xF6ra din tv\xE5faktorsautentisering",
|
|
4169
|
+
"login.code.subtitle": "En verifieringskod kommer att skickas via e-post",
|
|
4170
|
+
"login.webauthn.subtitle": "F\xF6rbered din WebAuthN-enhet",
|
|
4171
|
+
"login.totp.subtitle": "Ange koden som genererats av din autentiseringsapp",
|
|
4172
|
+
"login.lookup_secret.subtitle": "Ange en av dina 8-siffriga \xE5terst\xE4llningskoder",
|
|
3612
4173
|
"login.title-refresh": "Bekr\xE4fta att det \xE4r du",
|
|
4174
|
+
"login.2fa.go-back": "N\xE5got fungerar inte?",
|
|
4175
|
+
"login.2fa.go-back.link": "G\xE5 tillbaka",
|
|
4176
|
+
"login.2fa.method.go-back": "V\xE4lj en annan metod",
|
|
3613
4177
|
"logout.accept-button": "Ja",
|
|
3614
4178
|
"logout.reject-button": "Nej",
|
|
3615
4179
|
"logout.title": "Vill du logga ut?",
|
|
@@ -3641,15 +4205,21 @@ var sv_default = {
|
|
|
3641
4205
|
"two-step.passkey.title": "Passerkod (rekommenderad)",
|
|
3642
4206
|
"two-step.password.description": "Ange ditt l\xF6senord kopplat till ditt konto",
|
|
3643
4207
|
"two-step.password.title": "L\xF6senord",
|
|
3644
|
-
"two-step.webauthn.description": "Anv\xE4nd din s\xE4kerhetsnyckel f\xF6r att autentisera",
|
|
3645
4208
|
"two-step.webauthn.title": "S\xE4kerhetsnyckel",
|
|
4209
|
+
"two-step.webauthn.description": "Anv\xE4nd din s\xE4kerhetsnyckel f\xF6r att autentisera",
|
|
4210
|
+
"two-step.totp.title": "Anv\xE4nd din autentiseringsapp (TOTP)",
|
|
4211
|
+
"two-step.totp.description": "Anv\xE4nd en 6-siffrig eng\xE5ngskod fr\xE5n din autentiseringsapp",
|
|
4212
|
+
"two-step.lookup_secret.title": "Reserv\xE5terst\xE4llningskod",
|
|
4213
|
+
"two-step.lookup_secret.description": "Anv\xE4nd en av dina 8-siffriga reservkoder f\xF6r att autentisera",
|
|
3646
4214
|
"identities.messages.4000037": "Detta konto finns inte eller har ingen inloggningsmetod konfigurerad.",
|
|
3647
4215
|
"identities.messages.4000038": "Captcha-verifiering misslyckades, f\xF6rs\xF6k igen.",
|
|
3648
4216
|
"identities.messages.1010020": "",
|
|
3649
4217
|
"input.placeholder": "Ange din {placeholder}",
|
|
3650
4218
|
"card.header.description.login": "Logga in med {identifierLabel}",
|
|
3651
4219
|
"card.header.description.registration": "Registrera dig med {identifierLabel}",
|
|
3652
|
-
"card.header.parts.code": "en kod skickad till
|
|
4220
|
+
"card.header.parts.code": "en kod skickad till dig",
|
|
4221
|
+
"card.header.parts.totp": "din autentiseringsapp",
|
|
4222
|
+
"card.header.parts.lookup_secret": "en s\xE4kerhetskopieringskod",
|
|
3653
4223
|
"card.header.parts.identifier-first": "din {identifierLabel}",
|
|
3654
4224
|
"card.header.parts.oidc": "en social leverant\xF6r",
|
|
3655
4225
|
"card.header.parts.passkey": "en Passkey",
|
|
@@ -3699,7 +4269,27 @@ var sv_default = {
|
|
|
3699
4269
|
"property.phone": "telefon",
|
|
3700
4270
|
"property.username": "anv\xE4ndarnamn",
|
|
3701
4271
|
"property.identifier": "identifier",
|
|
3702
|
-
"property.code": "kod"
|
|
4272
|
+
"property.code": "kod",
|
|
4273
|
+
"consent.title": "Auktorisera {party}",
|
|
4274
|
+
"consent.subtitle": "En tredjepartsapplikation vill f\xE5 tillg\xE5ng till information kopplad till ditt konto {identifier}.",
|
|
4275
|
+
"consent.scope.openid.title": "Identitet",
|
|
4276
|
+
"consent.scope.openid.description": "G\xF6r det m\xF6jligt f\xF6r applikationen att verifiera din identitet. Detta kr\xE4vs f\xF6r autentisering och en p\xE5litlig inloggningsupplevelse.",
|
|
4277
|
+
"consent.scope.offline_access.title": "Offline-\xE5tkomst",
|
|
4278
|
+
"consent.scope.offline_access.description": "G\xF6r det m\xF6jligt f\xF6r denna applikation att h\xE5lla dig inloggad \xE4ven n\xE4r du inte aktivt anv\xE4nder den.",
|
|
4279
|
+
"consent.scope.profile.title": "Profilinformation",
|
|
4280
|
+
"consent.scope.profile.description": "Ger tillg\xE5ng till dina grundl\xE4ggande profiluppgifter, inklusive ditt anv\xE4ndarnamn, f\xF6rnamn och efternamn.",
|
|
4281
|
+
"consent.scope.email.title": "E-postadress",
|
|
4282
|
+
"consent.scope.email.description": "H\xE4mta din e-postadress och dess verifieringsstatus.",
|
|
4283
|
+
"consent.scope.address.title": "Fysisk adress",
|
|
4284
|
+
"consent.scope.address.description": "F\xE5 \xE5tkomst till din postadress.",
|
|
4285
|
+
"consent.scope.phone.title": "Telefonnummer",
|
|
4286
|
+
"consent.scope.phone.description": "H\xE4mta ditt telefonnummer och dess verifieringsstatus.",
|
|
4287
|
+
"error.action.go-back": "",
|
|
4288
|
+
"error.footer.copy": "",
|
|
4289
|
+
"error.footer.text": "",
|
|
4290
|
+
"error.title.what-can-i-do": "",
|
|
4291
|
+
"error.title.what-happened": "",
|
|
4292
|
+
"error.instructions": ""
|
|
3703
4293
|
};
|
|
3704
4294
|
|
|
3705
4295
|
// src/locales/index.ts
|
|
@@ -3714,6 +4304,6 @@ var OryLocales = {
|
|
|
3714
4304
|
sv: sv_default
|
|
3715
4305
|
};
|
|
3716
4306
|
|
|
3717
|
-
export { HeadlessPageHeader, OryCard, OryCardContent, OryCardFooter, OryCardHeader, OryCardValidationMessages, OryForm, OryFormGroupDivider, OryFormGroups, OryFormOidcButtons, OryFormSection, OryFormSocialButtonsForm, OryLocales, OryProvider, OrySettingsCard, OryTwoStepCard, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryFlow };
|
|
4307
|
+
export { HeadlessPageHeader, OryCard, OryCardContent, OryCardFooter, OryCardHeader, OryCardValidationMessages, OryConsentCard, OryForm, OryFormGroupDivider, OryFormGroups, OryFormOidcButtons, OryFormSection, OryFormSocialButtonsForm, OryLocales, OryProvider, OrySettingsCard, OryTwoStepCard, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryFlow };
|
|
3718
4308
|
//# sourceMappingURL=index.mjs.map
|
|
3719
4309
|
//# sourceMappingURL=index.mjs.map
|