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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -91,12 +91,12 @@ function OryComponentProvider({
91
91
  }
92
92
  );
93
93
  }
94
- function isChoosingMethod(uiNodes) {
95
- return uiNodes.some(
94
+ function isChoosingMethod(flow) {
95
+ return flow.flow.ui.nodes.some(
96
96
  (node) => "name" in node.attributes && node.attributes.name === "screen" && "value" in node.attributes && node.attributes.value === "previous"
97
- ) || uiNodes.some(
97
+ ) || flow.flow.ui.nodes.some(
98
98
  (node) => node.group === UiNodeGroupEnum.IdentifierFirst && "name" in node.attributes && node.attributes.name === "identifier" && node.attributes.type === "hidden"
99
- );
99
+ ) || flow.flowType === FlowType.Login && flow.flow.requested_aal === "aal2";
100
100
  }
101
101
  function filterOidcOut(nodes) {
102
102
  return nodes.filter((node) => node.group !== UiNodeGroupEnum.Oidc);
@@ -208,6 +208,9 @@ function useNodesGroups(nodes) {
208
208
  entries
209
209
  };
210
210
  }
211
+ var findNode = (nodes, opt) => nodes.find((n) => {
212
+ 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);
213
+ });
211
214
 
212
215
  // src/context/form-state.ts
213
216
  function findMethodWithMessage(nodes) {
@@ -231,7 +234,7 @@ function parseStateFromFlow(flow) {
231
234
  return { current: "method_active", method: methodWithMessage.group };
232
235
  } else if (flow.flow.active && !["default", "identifier_first", "oidc"].includes(flow.flow.active)) {
233
236
  return { current: "method_active", method: flow.flow.active };
234
- } else if (isChoosingMethod(flow.flow.ui.nodes)) {
237
+ } else if (isChoosingMethod(flow)) {
235
238
  const authMethods = nodesToAuthMethodGroups(flow.flow.ui.nodes);
236
239
  if (authMethods.length === 1 && authMethods[0] !== "code") {
237
240
  return { current: "method_active", method: authMethods[0] };
@@ -823,10 +826,10 @@ function useOryFormSubmit(onAfterSubmit) {
823
826
  return onSubmit;
824
827
  }
825
828
  function OryForm({ children, onAfterSubmit }) {
826
- var _a;
827
829
  const { Form } = useComponents();
828
830
  const flowContainer = useOryFlow();
829
831
  const methods = useFormContext();
832
+ const { Message } = useComponents();
830
833
  const intl = useIntl();
831
834
  const onSubmit = useOryFormSubmit(onAfterSubmit);
832
835
  const hasMethods = flowContainer.flow.ui.nodes.some((node) => {
@@ -841,11 +844,22 @@ function OryForm({ children, onAfterSubmit }) {
841
844
  }
842
845
  return false;
843
846
  });
844
- if (!hasMethods && ((_a = flowContainer.flow.ui.messages) != null ? _a : []).length === 0) {
845
- return intl.formatMessage({
846
- id: `identities.messages.${5000002}`,
847
- defaultMessage: "No authentication methods are available for this request. Please contact the site or app owner."
848
- });
847
+ if (!hasMethods) {
848
+ const m = {
849
+ id: 5000002,
850
+ text: intl.formatMessage({
851
+ id: `identities.messages.${5000002}`,
852
+ defaultMessage: "No authentication methods are available for this request. Please contact the site or app owner."
853
+ }),
854
+ type: "error"
855
+ };
856
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
857
+ /* @__PURE__ */ jsx(Message.Root, { children: /* @__PURE__ */ jsx(Message.Content, { message: m }, m.id) }),
858
+ /* @__PURE__ */ jsx(OryCardFooter, {})
859
+ ] });
860
+ }
861
+ if (flowContainer.flowType === FlowType.Login && flowContainer.formState.current === "method_active" && flowContainer.formState.method === "code") {
862
+ methods.setValue("method", "code");
849
863
  }
850
864
  return /* @__PURE__ */ jsx(
851
865
  Form.Root,
@@ -857,7 +871,15 @@ function OryForm({ children, onAfterSubmit }) {
857
871
  }
858
872
  );
859
873
  }
860
- var messageIdsToHide = [1040009, 1060003, 1080003, 1010014, 1040005, 1010016];
874
+ var messageIdsToHide = [
875
+ 1040009,
876
+ 1060003,
877
+ 1080003,
878
+ 1010004,
879
+ 1010014,
880
+ 1040005,
881
+ 1010016
882
+ ];
861
883
  function OryCardValidationMessages({ ...props }) {
862
884
  var _a;
863
885
  const { flow } = useOryFlow();
@@ -1030,28 +1052,47 @@ function isUINodeGroupEnum(method) {
1030
1052
  return Object.values(UiNodeGroupEnum).includes(method);
1031
1053
  }
1032
1054
  function OryTwoStepCard() {
1033
- const {
1034
- flow: { ui },
1035
- flowType,
1036
- formState,
1037
- dispatchFormState
1038
- } = useOryFlow();
1055
+ var _a, _b, _c, _d;
1039
1056
  const { Form, Card } = useComponents();
1057
+ const { flow, flowType, formState, dispatchFormState } = useOryFlow();
1058
+ const { ui } = flow;
1040
1059
  const nodeSorter = useNodeSorter();
1041
1060
  const sortNodes = (a, b) => nodeSorter(a, b, { flowType });
1042
1061
  const uniqueGroups = useNodesGroups(ui.nodes);
1043
- const options = Object.values(UiNodeGroupEnum).filter((group) => {
1044
- var _a;
1045
- return (_a = uniqueGroups.groups[group]) == null ? void 0 : _a.length;
1046
- }).filter(
1047
- (group) => ![
1048
- UiNodeGroupEnum.Oidc,
1049
- UiNodeGroupEnum.Default,
1050
- UiNodeGroupEnum.IdentifierFirst,
1051
- UiNodeGroupEnum.Profile,
1052
- UiNodeGroupEnum.Captcha
1053
- ].includes(group)
1062
+ const options = Object.fromEntries(
1063
+ Object.values(UiNodeGroupEnum).filter((group) => {
1064
+ var _a2;
1065
+ return (_a2 = uniqueGroups.groups[group]) == null ? void 0 : _a2.length;
1066
+ }).filter(
1067
+ (group) => ![
1068
+ UiNodeGroupEnum.Oidc,
1069
+ UiNodeGroupEnum.Default,
1070
+ UiNodeGroupEnum.IdentifierFirst,
1071
+ UiNodeGroupEnum.Profile,
1072
+ UiNodeGroupEnum.Captcha
1073
+ ].includes(group)
1074
+ ).map((g) => [g, {}])
1054
1075
  );
1076
+ if (UiNodeGroupEnum.Code in options) {
1077
+ let identifier = (_b = (_a = findNode(ui.nodes, {
1078
+ group: "identifier_first",
1079
+ node_type: "input",
1080
+ name: "identifier"
1081
+ })) == null ? void 0 : _a.attributes) == null ? void 0 : _b.value;
1082
+ identifier || (identifier = (_d = (_c = findNode(ui.nodes, {
1083
+ group: "code",
1084
+ node_type: "input",
1085
+ name: "address"
1086
+ })) == null ? void 0 : _c.attributes) == null ? void 0 : _d.value);
1087
+ if (identifier) {
1088
+ options[UiNodeGroupEnum.Code] = {
1089
+ title: {
1090
+ id: "identities.messages.1010023",
1091
+ values: { address: identifier }
1092
+ }
1093
+ };
1094
+ }
1095
+ }
1055
1096
  const nonOidcNodes = filterOidcOut(ui.nodes);
1056
1097
  const finalNodes = formState.current === "method_active" ? getFinalNodes(uniqueGroups.groups, formState.method) : [];
1057
1098
  const handleAfterFormSubmit = (method) => {
@@ -1104,21 +1145,26 @@ function OryTwoStepCard() {
1104
1145
  }
1105
1146
  function AuthMethodList({ options, setSelectedGroup }) {
1106
1147
  const { Card } = useComponents();
1107
- const { setValue } = useFormContext();
1108
- const handleClick = (group) => {
1148
+ const { setValue, getValues } = useFormContext();
1149
+ const handleClick = (group, options2) => {
1150
+ var _a, _b, _c, _d;
1109
1151
  if (isGroupImmediateSubmit(group)) {
1152
+ if (group === "code" && !getValues("identifier") && ((_b = (_a = options2 == null ? void 0 : options2.title) == null ? void 0 : _a.values) == null ? void 0 : _b.address)) {
1153
+ setValue("identifier", (_d = (_c = options2 == null ? void 0 : options2.title) == null ? void 0 : _c.values) == null ? void 0 : _d.address);
1154
+ }
1110
1155
  setValue("method", group);
1111
1156
  } else {
1112
1157
  setSelectedGroup(group);
1113
1158
  }
1114
1159
  };
1115
- return /* @__PURE__ */ jsx(Card.AuthMethodListContainer, { children: options.map((option) => /* @__PURE__ */ jsx(
1160
+ return /* @__PURE__ */ jsx(Card.AuthMethodListContainer, { children: Object.entries(options).map(([group, options2]) => /* @__PURE__ */ jsx(
1116
1161
  Card.AuthMethodListItem,
1117
1162
  {
1118
- group: option,
1119
- onClick: () => handleClick(option)
1163
+ group,
1164
+ title: options2.title,
1165
+ onClick: () => handleClick(group, options2)
1120
1166
  },
1121
- option
1167
+ group
1122
1168
  )) });
1123
1169
  }
1124
1170
  function OryFormGroups({ groups }) {
@@ -1716,9 +1762,9 @@ var en_default = {
1716
1762
  "identities.messages.1010005": "Verify",
1717
1763
  "identities.messages.1010006": "Authentication code",
1718
1764
  "identities.messages.1010007": "Backup recovery code",
1719
- "identities.messages.1010008": "Sign in with hardware key",
1720
- "identities.messages.1010009": "Use Authenticator",
1721
- "identities.messages.1010010": "Use backup recovery code",
1765
+ "identities.messages.1010008": "Continue with hardware key",
1766
+ "identities.messages.1010009": "Continue",
1767
+ "identities.messages.1010010": "Continue",
1722
1768
  "identities.messages.1010011": "Sign in with hardware key",
1723
1769
  "identities.messages.1010012": "Prepare your WebAuthn device (e.g. security key, biometrics scanner, ...) and press continue.",
1724
1770
  "identities.messages.1010013": "Continue",
@@ -1855,9 +1901,17 @@ var en_default = {
1855
1901
  "login.subtitle-oauth2": "To authenticate {clientName}",
1856
1902
  "login.title": "Sign in",
1857
1903
  "login.subtitle": "Sign in with {parts}",
1858
- "login.title-aal2": "Two-Factor Authentication",
1904
+ "login.title-aal2": "Second factor authentication",
1905
+ "login.subtitle-aal2": "Choose a way to complete your second factor authentication",
1906
+ "login.code.subtitle": "A verification code will be sent by email",
1907
+ "login.webauthn.subtitle": "Please prepare your WebAuthN device",
1908
+ "login.totp.subtitle": "Please enter the code generated by your Authenticator App",
1909
+ "login.lookup_secret.subtitle": "Please enter one of your 8-digit backup recovery codes",
1859
1910
  "login.title-refresh": "Reauthenticate",
1860
1911
  "login.subtitle-refresh": "Confirm your identity with {parts}",
1912
+ "login.2fa.go-back": "Something isn't working?",
1913
+ "login.2fa.go-back.link": "Go back",
1914
+ "login.2fa.method.go-back": "Choose another method",
1861
1915
  "logout.accept-button": "Yes",
1862
1916
  "logout.reject-button": "No",
1863
1917
  "logout.title": "Do you wish to log out?",
@@ -1906,10 +1960,14 @@ var en_default = {
1906
1960
  "two-step.password.description": "Enter your password associated with your account",
1907
1961
  "two-step.code.title": "Email code",
1908
1962
  "two-step.code.description": "A verification code will be sent to your email",
1909
- "two-step.webauthn.title": "Security Key",
1963
+ "two-step.webauthn.title": "Security key",
1910
1964
  "two-step.webauthn.description": "Use your security key to authenticate",
1911
1965
  "two-step.passkey.title": "Passkey (recommended)",
1912
1966
  "two-step.passkey.description": "Use your device's for fingerprint or face recognition",
1967
+ "two-step.totp.title": "Use your Authenticator App (TOTP)",
1968
+ "two-step.totp.description": "Use a 6-digit one-time code from your authenticator app",
1969
+ "two-step.lookup_secret.title": "Backup recovery code",
1970
+ "two-step.lookup_secret.description": "Use up one of your 8-digit backup codes to authenticate",
1913
1971
  "identities.messages.1010020": "",
1914
1972
  "input.placeholder": "Enter your {placeholder}",
1915
1973
  "card.header.parts.oidc": "a social provider",
@@ -1969,9 +2027,9 @@ var de_default = {
1969
2027
  "identities.messages.1010005": "Verifizieren",
1970
2028
  "identities.messages.1010006": "Authentifizierungscode",
1971
2029
  "identities.messages.1010007": "Backup-Wiederherstellungscode",
1972
- "identities.messages.1010008": "Sicherheitsschl\xFCssel verwenden",
1973
- "identities.messages.1010009": "Authentifizierungs-App verwenden",
1974
- "identities.messages.1010010": "Backup-Wiederherstellungscode verwenden",
2030
+ "identities.messages.1010008": "Mit Sicherheitsschl\xFCssel fortfahren",
2031
+ "identities.messages.1010009": "Weiter",
2032
+ "identities.messages.1010010": "Weiter",
1975
2033
  "identities.messages.1010011": "Mit Sicherheitsschl\xFCssel fortfahren",
1976
2034
  "identities.messages.1010012": "Bereiten Sie Ihr WebAuthn-Ger\xE4t vor (z. B. Sicherheitsschl\xFCssel, biometrischer Scanner, ...) und dr\xFCcken Sie auf Weiter.",
1977
2035
  "identities.messages.1010013": "Weiter",
@@ -2087,8 +2145,16 @@ var de_default = {
2087
2145
  "login.registration-label": "Sie haben noch kein Konto?",
2088
2146
  "login.subtitle-oauth2": "Zur Authentifizierung bei {clientName}",
2089
2147
  "login.title": "Anmelden",
2090
- "login.title-aal2": "Zwei-Faktor-Authentifizierung",
2148
+ "login.title-aal2": "Zweitfaktor-Authentifizierung",
2149
+ "login.subtitle-aal2": "W\xE4hlen Sie eine Methode zur Best\xE4tigung Ihrer Zwei-Faktor-Authentifizierung",
2150
+ "login.code.subtitle": "Ein Best\xE4tigungscode wird per E-Mail gesendet",
2151
+ "login.webauthn.subtitle": "Bitte bereiten Sie Ihr WebAuthN-Ger\xE4t vor",
2152
+ "login.totp.subtitle": "Bitte geben Sie den Code aus Ihrer Authenticator-App ein",
2153
+ "login.lookup_secret.subtitle": "Bitte geben Sie einen Ihrer 8-stelligen Backup-Wiederherstellungscodes ein",
2091
2154
  "login.title-refresh": "Best\xE4tigen Sie, dass Sie es sind",
2155
+ "login.2fa.go-back": "Funktioniert etwas nicht?",
2156
+ "login.2fa.go-back.link": "Zur\xFCck",
2157
+ "login.2fa.method.go-back": "Eine andere Methode w\xE4hlen",
2092
2158
  "logout.accept-button": "Ja",
2093
2159
  "logout.reject-button": "Nein",
2094
2160
  "logout.title": "M\xF6chten Sie sich abmelden?",
@@ -2109,8 +2175,12 @@ var de_default = {
2109
2175
  "two-step.passkey.title": "Passwort (empfohlen)",
2110
2176
  "two-step.password.description": "Geben Sie Ihr Passwort ein, das mit Ihrem Konto verkn\xFCpft ist",
2111
2177
  "two-step.password.title": "Passwort",
2112
- "two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschl\xFCssel zur Authentifizierung",
2113
2178
  "two-step.webauthn.title": "Sicherheitsschl\xFCssel",
2179
+ "two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschl\xFCssel zur Authentifizierung",
2180
+ "two-step.totp.title": "Verwenden Sie Ihre Authenticator-App (TOTP)",
2181
+ "two-step.totp.description": "Verwenden Sie einen 6-stelligen Einmal-Code aus Ihrer Authenticator-App",
2182
+ "two-step.lookup_secret.title": "Backup-Wiederherstellungscode",
2183
+ "two-step.lookup_secret.description": "Verwenden Sie einen Ihrer 8-stelligen Backup-Codes, um sich zu authentifizieren",
2114
2184
  "identities.messages.1070014": "Login- und Link-Zugangsdaten",
2115
2185
  "identities.messages.1070015": "Bitte schlie\xDFen Sie die Captcha-Challenge ab, um fortzufahren.",
2116
2186
  "identities.messages.4000038": "Die Captcha-\xDCberpr\xFCfung ist fehlgeschlagen. Bitte versuchen Sie es erneut.",
@@ -2222,9 +2292,9 @@ var es_default = {
2222
2292
  "identities.messages.1010005": "Verificar",
2223
2293
  "identities.messages.1010006": "C\xF3digo de autenticaci\xF3n",
2224
2294
  "identities.messages.1010007": "C\xF3digo de recuperaci\xF3n de respaldo",
2225
- "identities.messages.1010008": "Usar llave de seguridad",
2226
- "identities.messages.1010009": "Usar Autenticador",
2227
- "identities.messages.1010010": "Usar c\xF3digo de recuperaci\xF3n de respaldo",
2295
+ "identities.messages.1010008": "Continuar con la llave de hardware",
2296
+ "identities.messages.1010009": "Continuar",
2297
+ "identities.messages.1010010": "Continuar",
2228
2298
  "identities.messages.1010011": "Continuar con llave de seguridad",
2229
2299
  "identities.messages.1010012": "Prepare su dispositivo WebAuthn (por ejemplo, llave de seguridad, esc\xE1ner biom\xE9trico, ...) y presione continuar.",
2230
2300
  "identities.messages.1010013": "Continuar",
@@ -2340,8 +2410,16 @@ var es_default = {
2340
2410
  "login.registration-label": "\xBFNo tiene una cuenta?",
2341
2411
  "login.subtitle-oauth2": "Para autenticar a {clientName}",
2342
2412
  "login.title": "Iniciar sesi\xF3n",
2343
- "login.title-aal2": "Autenticaci\xF3n de Dos Factores",
2413
+ "login.title-aal2": "Autenticaci\xF3n de dos factores",
2414
+ "login.subtitle-aal2": "Elija una forma de completar su autenticaci\xF3n de segundo factor",
2415
+ "login.code.subtitle": "Se enviar\xE1 un c\xF3digo de verificaci\xF3n por correo electr\xF3nico",
2416
+ "login.webauthn.subtitle": "Por favor, prepare su dispositivo WebAuthN",
2417
+ "login.totp.subtitle": "Ingrese el c\xF3digo generado por su aplicaci\xF3n de autenticaci\xF3n",
2418
+ "login.lookup_secret.subtitle": "Ingrese uno de sus c\xF3digos de recuperaci\xF3n de respaldo de 8 d\xEDgitos",
2344
2419
  "login.title-refresh": "Confirme que es usted",
2420
+ "login.2fa.go-back": "\xBFAlgo no funciona?",
2421
+ "login.2fa.go-back.link": "Volver",
2422
+ "login.2fa.method.go-back": "Elegir otro m\xE9todo",
2345
2423
  "logout.accept-button": "S\xED",
2346
2424
  "logout.reject-button": "No",
2347
2425
  "logout.title": "\xBFDesea cerrar sesi\xF3n?",
@@ -2373,8 +2451,12 @@ var es_default = {
2373
2451
  "two-step.passkey.title": "Clave de acceso (recomendada)",
2374
2452
  "two-step.password.description": "Ingrese la contrase\xF1a asociada con su cuenta",
2375
2453
  "two-step.password.title": "Contrase\xF1a",
2376
- "two-step.webauthn.description": "Utiliza tu llave de seguridad para autenticarte",
2377
2454
  "two-step.webauthn.title": "Clave de Seguridad",
2455
+ "two-step.webauthn.description": "Utilice su llave de seguridad para autenticase",
2456
+ "two-step.totp.title": "Utilice su aplicaci\xF3n de autenticaci\xF3n (TOTP)",
2457
+ "two-step.totp.description": "Utilice un c\xF3digo de un solo uso de 6 d\xEDgitos de su aplicaci\xF3n de autenticaci\xF3n",
2458
+ "two-step.lookup_secret.title": "C\xF3digo de recuperaci\xF3n de respaldo",
2459
+ "two-step.lookup_secret.description": "Utilice uno de sus c\xF3digos de respaldo de 8 d\xEDgitos para autenticarse",
2378
2460
  "identities.messages.1010016": "",
2379
2461
  "identities.messages.1010017": "",
2380
2462
  "identities.messages.1010018": "",
@@ -2475,9 +2557,9 @@ var fr_default = {
2475
2557
  "identities.messages.1010005": "V\xE9rifier",
2476
2558
  "identities.messages.1010006": "Code d'authentification",
2477
2559
  "identities.messages.1010007": "Code de r\xE9cup\xE9ration de secours",
2478
- "identities.messages.1010008": "Utiliser une cl\xE9 de s\xE9curit\xE9",
2479
- "identities.messages.1010009": "Utiliser un authentificateur",
2480
- "identities.messages.1010010": "Utiliser un code de r\xE9cup\xE9ration de secours",
2560
+ "identities.messages.1010008": "Continuer avec la cl\xE9 mat\xE9rielle",
2561
+ "identities.messages.1010009": "Continuer",
2562
+ "identities.messages.1010010": "Continuer",
2481
2563
  "identities.messages.1010011": "Continuer avec la cl\xE9 de s\xE9curit\xE9",
2482
2564
  "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.",
2483
2565
  "identities.messages.1010013": "Continuer",
@@ -2594,7 +2676,15 @@ var fr_default = {
2594
2676
  "login.subtitle-oauth2": "Pour vous authentifier sur {clientName}",
2595
2677
  "login.title": "Se connecter",
2596
2678
  "login.title-aal2": "Authentification \xE0 deux facteurs",
2679
+ "login.subtitle-aal2": "Choisissez une m\xE9thode pour compl\xE9ter votre authentification \xE0 deux facteurs",
2680
+ "login.code.subtitle": "Un code de v\xE9rification sera envoy\xE9 par e-mail",
2681
+ "login.webauthn.subtitle": "Veuillez pr\xE9parer votre dispositif WebAuthN",
2682
+ "login.totp.subtitle": "Veuillez saisir le code g\xE9n\xE9r\xE9 par votre application d'authentification",
2683
+ "login.lookup_secret.subtitle": "Veuillez saisir l'un de vos codes de r\xE9cup\xE9ration de secours \xE0 8 chiffres",
2597
2684
  "login.title-refresh": "Confirmez que c'est bien vous",
2685
+ "login.2fa.go-back": "Quelque chose ne fonctionne pas ?",
2686
+ "login.2fa.go-back.link": "Retour",
2687
+ "login.2fa.method.go-back": "Choisir une autre m\xE9thode",
2598
2688
  "logout.accept-button": "Oui",
2599
2689
  "logout.reject-button": "Non",
2600
2690
  "logout.title": "Souhaitez-vous vous d\xE9connecter ?",
@@ -2626,8 +2716,12 @@ var fr_default = {
2626
2716
  "two-step.passkey.title": "Cl\xE9 de passe (recommand\xE9e)",
2627
2717
  "two-step.password.description": "Entrez votre mot de passe associ\xE9 \xE0 votre compte",
2628
2718
  "two-step.password.title": "Mot de passe",
2629
- "two-step.webauthn.description": "Utilisez votre cl\xE9 de s\xE9curit\xE9 pour vous authentifier",
2630
2719
  "two-step.webauthn.title": "Cl\xE9 de S\xE9curit\xE9",
2720
+ "two-step.webauthn.description": "Utilisez votre cl\xE9 de s\xE9curit\xE9 pour vous authentifier",
2721
+ "two-step.totp.title": "Utilisez votre application d'authentification (TOTP)",
2722
+ "two-step.totp.description": "Utilisez un code \xE0 usage unique \xE0 6 chiffres provenant de votre application d'authentification",
2723
+ "two-step.lookup_secret.title": "Code de r\xE9cup\xE9ration de secours",
2724
+ "two-step.lookup_secret.description": "Utilisez l'un de vos codes de secours \xE0 8 chiffres pour vous authentifier",
2631
2725
  "identities.messages.1010023": "",
2632
2726
  "identities.messages.1070015": "",
2633
2727
  "identities.messages.4000038": "",
@@ -2728,9 +2822,9 @@ var nl_default = {
2728
2822
  "identities.messages.1010005": "Verifi\xEBren",
2729
2823
  "identities.messages.1010006": "Verificatiecode",
2730
2824
  "identities.messages.1010007": "Back-up herstelcode",
2731
- "identities.messages.1010008": "Beveiligingssleutel gebruiken",
2732
- "identities.messages.1010009": "Authenticator gebruiken",
2733
- "identities.messages.1010010": "Back-up herstelcode gebruiken",
2825
+ "identities.messages.1010008": "Ga verder met hardware-sleutel",
2826
+ "identities.messages.1010009": "Doorgaan",
2827
+ "identities.messages.1010010": "Doorgaan",
2734
2828
  "identities.messages.1010011": "Doorgaan met beveiligingssleutel",
2735
2829
  "identities.messages.1010012": "Bereid uw WebAuthn-apparaat voor (bijv. beveiligingssleutel, biometrische scanner, ...) en druk op doorgaan.",
2736
2830
  "identities.messages.1010013": "Doorgaan",
@@ -2846,8 +2940,16 @@ var nl_default = {
2846
2940
  "login.registration-label": "Heb je nog geen account?",
2847
2941
  "login.subtitle-oauth2": "Om te authenticeren bij {clientName}",
2848
2942
  "login.title": "Inloggen",
2849
- "login.title-aal2": "Twee-Factor Authenticatie",
2943
+ "login.title-aal2": "Tweefactorauthenticatie",
2944
+ "login.subtitle-aal2": "Kies een manier om uw tweefactorauthenticatie te voltooien",
2945
+ "login.code.subtitle": "Er wordt een verificatiecode per e-mail verzonden",
2946
+ "login.webauthn.subtitle": "Bereid uw WebAuthN-apparaat voor",
2947
+ "login.totp.subtitle": "Voer de code in die door uw Authenticator-app is gegenereerd",
2948
+ "login.lookup_secret.subtitle": "Voer een van uw 8-cijferige back-up herstelcodes in",
2850
2949
  "login.title-refresh": "Bevestig dat jij het bent",
2950
+ "login.2fa.go-back": "Werkt er iets niet?",
2951
+ "login.2fa.go-back.link": "Ga terug",
2952
+ "login.2fa.method.go-back": "Kies een andere methode",
2851
2953
  "logout.accept-button": "Ja",
2852
2954
  "logout.reject-button": "Nee",
2853
2955
  "logout.title": "Wil je uitloggen?",
@@ -2879,8 +2981,12 @@ var nl_default = {
2879
2981
  "two-step.passkey.title": "Toegangscode (aanbevolen)",
2880
2982
  "two-step.password.description": "Voer uw wachtwoord in dat is gekoppeld aan uw account",
2881
2983
  "two-step.password.title": "Wachtwoord",
2882
- "two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifi\xEBren",
2883
2984
  "two-step.webauthn.title": "Beveiligingssleutel",
2985
+ "two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifi\xEBren",
2986
+ "two-step.totp.title": "Gebruik uw Authenticator-app (TOTP)",
2987
+ "two-step.totp.description": "Gebruik een 6-cijferige eenmalige code van uw authenticator-app",
2988
+ "two-step.lookup_secret.title": "Herstelcode",
2989
+ "two-step.lookup_secret.description": "Gebruik een van uw 8-cijferige back-upcodes om te authenticeren",
2884
2990
  "identities.messages.1010023": "",
2885
2991
  "identities.messages.1070014": "",
2886
2992
  "identities.messages.1070015": "",
@@ -2981,9 +3087,9 @@ var pl_default = {
2981
3087
  "identities.messages.1010005": "Zweryifkuj",
2982
3088
  "identities.messages.1010006": "Kod autentykacyjny",
2983
3089
  "identities.messages.1010007": "Zapasowe kody odzyskiwania",
2984
- "identities.messages.1010008": "U\u017Cyj klucza bezpiecze\u0144stwa",
2985
- "identities.messages.1010009": "U\u017Cyj Autentykatora",
2986
- "identities.messages.1010010": "U\u017Cyj zapasowych kod\xF3w odzyskiwania",
3090
+ "identities.messages.1010008": "Kontynuuj z kluczem sprz\u0119towym",
3091
+ "identities.messages.1010009": "Kontynuuj",
3092
+ "identities.messages.1010010": "Kontynuuj",
2987
3093
  "identities.messages.1010011": "Kontynuuj za pomoc\u0105 klucza bezpiecze\u0144stwa",
2988
3094
  "identities.messages.1010012": "Przygotuj swoje urz\u0105dzenie WebAuthn (np. klucz bezpiecze\u0144stwa, czytnik biometryczny, ...) a nast\u0119pnie kliknij kontynuuj.",
2989
3095
  "identities.messages.1010013": "Kontynuuj",
@@ -3099,8 +3205,16 @@ var pl_default = {
3099
3205
  "login.registration-label": "Nie posiadasz konta?",
3100
3206
  "login.subtitle-oauth2": "Do autentykacji {clientName}",
3101
3207
  "login.title": "Zaloguj si\u0119",
3102
- "login.title-aal2": "Autentykacja Dwu-Etapowa",
3208
+ "login.title-aal2": "Uwierzytelnianie dwusk\u0142adnikowe",
3209
+ "login.subtitle-aal2": "Wybierz spos\xF3b, aby zako\u0144czy\u0107 uwierzytelnianie dwusk\u0142adnikowe",
3210
+ "login.code.subtitle": "Kod weryfikacyjny zostanie wys\u0142any e-mailem",
3211
+ "login.webauthn.subtitle": "Prosz\u0119 przygotowa\u0107 urz\u0105dzenie WebAuthN",
3212
+ "login.totp.subtitle": "Prosz\u0119 wprowadzi\u0107 kod wygenerowany przez Twoj\u0105 aplikacj\u0119 uwierzytelniaj\u0105c\u0105",
3213
+ "login.lookup_secret.subtitle": "Prosz\u0119 wprowadzi\u0107 jeden z Twoich 8-cyfrowych kod\xF3w odzyskiwania zapasowego",
3103
3214
  "login.title-refresh": "Potwierd\u017A \u017Ce to Ty",
3215
+ "login.2fa.go-back": "Co\u015B nie dzia\u0142a?",
3216
+ "login.2fa.go-back.link": "Wr\xF3\u0107",
3217
+ "login.2fa.method.go-back": "Wybierz inn\u0105 metod\u0119",
3104
3218
  "logout.accept-button": "Tak",
3105
3219
  "logout.reject-button": "Nie",
3106
3220
  "logout.title": "Czy chcesz si\u0119 wylogowa\u0107?",
@@ -3132,8 +3246,12 @@ var pl_default = {
3132
3246
  "two-step.passkey.title": "Klucz dost\u0119pu (zalecany)",
3133
3247
  "two-step.password.description": "Wprowad\u017A has\u0142o powi\u0105zane z twoim kontem",
3134
3248
  "two-step.password.title": "Has\u0142o",
3135
- "two-step.webauthn.description": "U\u017Cyj swojego klucza bezpiecze\u0144stwa do uwierzytelnienia",
3136
3249
  "two-step.webauthn.title": "Klucz bezpiecze\u0144stwa",
3250
+ "two-step.webauthn.description": "U\u017Cyj swojego klucza bezpiecze\u0144stwa do uwierzytelnienia",
3251
+ "two-step.totp.title": "U\u017Cyj swojej aplikacji uwierzytelniaj\u0105cej (TOTP)",
3252
+ "two-step.totp.description": "U\u017Cyj 6-cyfrowego jednorazowego kodu z Twojej aplikacji uwierzytelniaj\u0105cej",
3253
+ "two-step.lookup_secret.title": "Kod odzyskiwania zapasowego",
3254
+ "two-step.lookup_secret.description": "U\u017Cyj jednego z Twoich 8-cyfrowych kod\xF3w zapasowych, aby si\u0119 uwierzytelni\u0107",
3137
3255
  "identities.messages.1010016": "",
3138
3256
  "identities.messages.1010017": "",
3139
3257
  "identities.messages.1010018": "",
@@ -3234,9 +3352,9 @@ var pt_default = {
3234
3352
  "identities.messages.1010005": "Verificar",
3235
3353
  "identities.messages.1010006": "C\xF3digo de Autentica\xE7\xE3o",
3236
3354
  "identities.messages.1010007": "C\xF3digo de Recupera\xE7\xE3o de Backup",
3237
- "identities.messages.1010008": "Usar chave de seguran\xE7a",
3238
- "identities.messages.1010009": "Usar o Autenticador",
3239
- "identities.messages.1010010": "Usar c\xF3digo de recupera\xE7\xE3o de backup",
3355
+ "identities.messages.1010008": "Continuar com chave de hardware",
3356
+ "identities.messages.1010009": "Continuar",
3357
+ "identities.messages.1010010": "Continuar",
3240
3358
  "identities.messages.1010011": "Continuar com a chave de seguran\xE7a",
3241
3359
  "identities.messages.1010012": "Prepare o seu dispositivo WebAuthn (por exemplo, chave de seguran\xE7a, scanner biom\xE9trico, ...) e pressione continuar.",
3242
3360
  "identities.messages.1010013": "Continuar",
@@ -3352,8 +3470,16 @@ var pt_default = {
3352
3470
  "login.registration-label": "N\xE3o tem uma conta?",
3353
3471
  "login.subtitle-oauth2": "Para autenticar {clientName}",
3354
3472
  "login.title": "Entrar",
3355
- "login.title-aal2": "Autentica\xE7\xE3o de Dois Fatores",
3473
+ "login.title-aal2": "Autentica\xE7\xE3o de dois fatores",
3474
+ "login.subtitle-aal2": "Escolha uma forma de completar sua autentica\xE7\xE3o de segundo fator",
3475
+ "login.code.subtitle": "Um c\xF3digo de verifica\xE7\xE3o ser\xE1 enviado por e-mail",
3476
+ "login.webauthn.subtitle": "Por favor, prepare seu dispositivo WebAuthN",
3477
+ "login.totp.subtitle": "Digite o c\xF3digo gerado pelo seu aplicativo autenticador",
3478
+ "login.lookup_secret.subtitle": "Digite um dos seus c\xF3digos de recupera\xE7\xE3o de 8 d\xEDgitos",
3356
3479
  "login.title-refresh": "Confirme que \xE9 voc\xEA",
3480
+ "login.2fa.go-back": "Algo n\xE3o est\xE1 funcionando?",
3481
+ "login.2fa.go-back.link": "Voltar",
3482
+ "login.2fa.method.go-back": "Escolher outro m\xE9todo",
3357
3483
  "logout.accept-button": "Sim",
3358
3484
  "logout.reject-button": "N\xE3o",
3359
3485
  "logout.title": "Deseja sair?",
@@ -3385,8 +3511,12 @@ var pt_default = {
3385
3511
  "two-step.passkey.title": "Chave de acesso (recomendado)",
3386
3512
  "two-step.password.description": "Insira a sua senha associada \xE0 sua conta",
3387
3513
  "two-step.password.title": "Senha",
3388
- "two-step.webauthn.description": "Use sua chave de seguran\xE7a para autenticar",
3389
3514
  "two-step.webauthn.title": "Chave de Seguran\xE7a",
3515
+ "two-step.webauthn.description": "Use sua chave de seguran\xE7a para autenticar",
3516
+ "two-step.totp.title": "Use seu aplicativo autenticador (TOTP)",
3517
+ "two-step.totp.description": "Use um c\xF3digo \xFAnico de 6 d\xEDgitos do seu aplicativo autenticador",
3518
+ "two-step.lookup_secret.title": "C\xF3digo de recupera\xE7\xE3o de backup",
3519
+ "two-step.lookup_secret.description": "Use um dos seus c\xF3digos de backup de 8 d\xEDgitos para autenticar",
3390
3520
  "identities.messages.1010016": "",
3391
3521
  "identities.messages.1010017": "",
3392
3522
  "identities.messages.1010018": "",
@@ -3487,9 +3617,9 @@ var sv_default = {
3487
3617
  "identities.messages.1010005": "Verifiera",
3488
3618
  "identities.messages.1010006": "Autentiseringskod",
3489
3619
  "identities.messages.1010007": "\xC5terst\xE4llningskod f\xF6r backup",
3490
- "identities.messages.1010008": "Anv\xE4nd s\xE4kerhetsnyckel",
3491
- "identities.messages.1010009": "Anv\xE4nd autentiserings-app",
3492
- "identities.messages.1010010": "Anv\xE4nd reserv\xE5terst\xE4llningskod",
3620
+ "identities.messages.1010008": "Forts\xE4tt med s\xE4kerhetsnyckel",
3621
+ "identities.messages.1010009": "Forts\xE4tt",
3622
+ "identities.messages.1010010": "Forts\xE4tt",
3493
3623
  "identities.messages.1010011": "Forts\xE4tt med s\xE4kerhetsnyckel",
3494
3624
  "identities.messages.1010012": "F\xF6rbered din WebAuthn-enhet (t.ex. s\xE4kerhetsnyckel, biometriska skanner, ...) och tryck p\xE5 forts\xE4tt.",
3495
3625
  "identities.messages.1010013": "Forts\xE4tt",
@@ -3624,7 +3754,15 @@ var sv_default = {
3624
3754
  "login.subtitle-oauth2": "Att autentisera {clientName}",
3625
3755
  "login.title": "Logga in",
3626
3756
  "login.title-aal2": "Tv\xE5faktorsautentisering",
3757
+ "login.subtitle-aal2": "V\xE4lj ett s\xE4tt att slutf\xF6ra din tv\xE5faktorsautentisering",
3758
+ "login.code.subtitle": "En verifieringskod kommer att skickas via e-post",
3759
+ "login.webauthn.subtitle": "F\xF6rbered din WebAuthN-enhet",
3760
+ "login.totp.subtitle": "Ange koden som genererats av din autentiseringsapp",
3761
+ "login.lookup_secret.subtitle": "Ange en av dina 8-siffriga \xE5terst\xE4llningskoder",
3627
3762
  "login.title-refresh": "Bekr\xE4fta att det \xE4r du",
3763
+ "login.2fa.go-back": "N\xE5got fungerar inte?",
3764
+ "login.2fa.go-back.link": "G\xE5 tillbaka",
3765
+ "login.2fa.method.go-back": "V\xE4lj en annan metod",
3628
3766
  "logout.accept-button": "Ja",
3629
3767
  "logout.reject-button": "Nej",
3630
3768
  "logout.title": "Vill du logga ut?",
@@ -3656,8 +3794,12 @@ var sv_default = {
3656
3794
  "two-step.passkey.title": "Passerkod (rekommenderad)",
3657
3795
  "two-step.password.description": "Ange ditt l\xF6senord kopplat till ditt konto",
3658
3796
  "two-step.password.title": "L\xF6senord",
3659
- "two-step.webauthn.description": "Anv\xE4nd din s\xE4kerhetsnyckel f\xF6r att autentisera",
3660
3797
  "two-step.webauthn.title": "S\xE4kerhetsnyckel",
3798
+ "two-step.webauthn.description": "Anv\xE4nd din s\xE4kerhetsnyckel f\xF6r att autentisera",
3799
+ "two-step.totp.title": "Anv\xE4nd din autentiseringsapp (TOTP)",
3800
+ "two-step.totp.description": "Anv\xE4nd en 6-siffrig eng\xE5ngskod fr\xE5n din autentiseringsapp",
3801
+ "two-step.lookup_secret.title": "Reserv\xE5terst\xE4llningskod",
3802
+ "two-step.lookup_secret.description": "Anv\xE4nd en av dina 8-siffriga reservkoder f\xF6r att autentisera",
3661
3803
  "identities.messages.4000037": "Detta konto finns inte eller har ingen inloggningsmetod konfigurerad.",
3662
3804
  "identities.messages.4000038": "Captcha-verifiering misslyckades, f\xF6rs\xF6k igen.",
3663
3805
  "identities.messages.1010020": "",