@ory/elements-react 1.0.0-next.9 → 1.0.0-pr.6c5e72b6
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 +601 -0
- package/DEVELOPMENT.md +95 -0
- package/LICENSE +201 -0
- package/README.md +359 -32
- package/babel.config.js +10 -0
- package/dist/client/config.d.mts +21 -0
- package/dist/client/config.d.ts +21 -0
- package/dist/client/config.js +77 -0
- package/dist/client/config.js.map +1 -0
- package/dist/client/config.mjs +51 -0
- package/dist/client/config.mjs.map +1 -0
- package/dist/client/frontendClient.d.mts +10 -0
- package/dist/client/frontendClient.d.ts +10 -0
- package/dist/client/frontendClient.js +75 -0
- package/dist/client/frontendClient.js.map +1 -0
- package/dist/client/frontendClient.mjs +54 -0
- package/dist/client/frontendClient.mjs.map +1 -0
- package/dist/client/index.d.mts +5 -0
- package/dist/client/index.d.ts +5 -0
- package/dist/client/index.js +33 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/index.mjs +10 -0
- package/dist/client/index.mjs.map +1 -0
- package/dist/client/session-provider.d.mts +62 -0
- package/dist/client/session-provider.d.ts +62 -0
- package/dist/client/session-provider.js +96 -0
- package/dist/client/session-provider.js.map +1 -0
- package/dist/client/session-provider.mjs +71 -0
- package/dist/client/session-provider.mjs.map +1 -0
- package/dist/client/useSession.d.mts +32 -0
- package/dist/client/useSession.d.ts +32 -0
- package/dist/client/useSession.js +37 -0
- package/dist/client/useSession.js.map +1 -0
- package/dist/client/useSession.mjs +13 -0
- package/dist/client/useSession.mjs.map +1 -0
- package/dist/index.d.mts +531 -1888
- package/dist/index.d.ts +531 -1888
- package/dist/index.js +4335 -2566
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4329 -2552
- package/dist/index.mjs.map +1 -1
- package/dist/theme/default/index.css +995 -308
- package/dist/theme/default/index.css.map +1 -1
- package/dist/theme/default/index.d.mts +54 -15
- package/dist/theme/default/index.d.ts +54 -15
- package/dist/theme/default/index.js +5745 -784
- package/dist/theme/default/index.js.map +1 -1
- package/dist/theme/default/index.mjs +5847 -770
- package/dist/theme/default/index.mjs.map +1 -1
- package/dist/theme/default/tailwind/defaults.d.mts +737 -0
- package/dist/theme/default/tailwind/defaults.d.ts +737 -0
- package/dist/theme/default/tailwind/defaults.js +219 -0
- package/dist/theme/default/tailwind/defaults.js.map +1 -0
- package/dist/theme/default/tailwind/defaults.mjs +196 -0
- package/dist/theme/default/tailwind/defaults.mjs.map +1 -0
- package/package.json +39 -14
- package/tailwind/defaults.ts +34 -0
- package/tailwind/generated/README.md +2 -0
- package/tailwind/generated/default-variables.css +216 -0
- package/tailwind/generated/variables-processed.json +161 -0
- package/tsconfig.json +10 -9
- package/tsconfig.runtime.json +4 -0
- package/.eslintrc.js +0 -61
- package/.vscode/i18n-ally-reviews.yml +0 -3
- package/.vscode/settings.json +0 -4
- package/api-report/elements-react-theme.api.json +0 -1260
- package/api-report/elements-react-theme.api.md +0 -128
- package/api-report/elements-react.api.json +0 -4262
- package/api-report/elements-react.api.md +0 -393
- package/api-report/temp/elements-react-theme.api.md +0 -130
- package/api-report/temp/elements-react.api.md +0 -328
- package/config/api-extractor-core.json +0 -457
- package/config/api-extractor-theme.json +0 -463
- package/jest.config.ts +0 -16
- package/postcss.config.ts +0 -6
- package/tailwind.config.ts +0 -54
- package/tsconfig.spec.json +0 -20
- package/variables-processed.json +0 -193
package/dist/index.d.mts
CHANGED
|
@@ -1,1904 +1,502 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { UiNodeInputAttributes, UiNode, UiNodeAnchorAttributes, UiNodeTextAttributes, UiNodeImageAttributes, UiNodeGroupEnum, UiText, FlowType, LoginFlow, RegistrationFlow, RecoveryFlow, VerificationFlow, SettingsFlow, UiContainer, OAuth2ConsentRequest, Session, FlowError, ConfigurationParameters, AccountExperienceConfiguration, UpdateLoginFlowBody, UpdateRegistrationFlowBody, UpdateVerificationFlowBody, UpdateRecoveryFlowBody, UpdateSettingsFlowBody, OnRedirectHandler, FrontendApi } from '@ory/client-fetch';
|
|
2
|
+
import { ComponentPropsWithoutRef, FormEventHandler, MouseEventHandler, PropsWithChildren, DetailedHTMLProps, HTMLAttributes, ComponentType, Dispatch } from 'react';
|
|
3
|
+
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
4
|
+
import { VariantProps } from 'class-variance-authority';
|
|
4
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
6
|
import { IntlShape } from 'react-intl';
|
|
6
7
|
|
|
7
|
-
declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
type OryCardContentProps = PropsWithChildren;
|
|
13
|
-
declare function OryCardContent({ children }: OryCardContentProps): react_jsx_runtime.JSX.Element;
|
|
14
|
-
type OryCardFooterProps = Record<string, never>;
|
|
15
|
-
declare function OryCardFooter(): react_jsx_runtime.JSX.Element;
|
|
16
|
-
type OryCardProps = PropsWithChildren;
|
|
17
|
-
declare function OryCard({ children }: OryCardProps): react_jsx_runtime.JSX.Element;
|
|
18
|
-
/**
|
|
19
|
-
* Card components are used to show login, registration, recovery, and verification flows.
|
|
20
|
-
*/
|
|
21
|
-
type OryCardComponents = {
|
|
22
|
-
/**
|
|
23
|
-
* The card container is the main container of the card.
|
|
24
|
-
*/
|
|
25
|
-
Card: ComponentType<OryCardProps>;
|
|
26
|
-
/**
|
|
27
|
-
* The card footer is the footer of the card container.
|
|
28
|
-
*/
|
|
29
|
-
CardFooter: ComponentType<OryCardFooterProps>;
|
|
30
|
-
/**
|
|
31
|
-
* The card header is the header of the card container.
|
|
32
|
-
*/
|
|
33
|
-
CardHeader: ComponentType<OryCardProps>;
|
|
34
|
-
/**
|
|
35
|
-
* The card content is the main content of the card container.
|
|
36
|
-
*/
|
|
37
|
-
CardContent: ComponentType<OryCardContentProps>;
|
|
38
|
-
/**
|
|
39
|
-
* The card logo is the logo of the card container.
|
|
40
|
-
*/
|
|
41
|
-
CardLogo: ComponentType;
|
|
42
|
-
};
|
|
43
|
-
|
|
44
|
-
type HorizontalDividerProps = Record<string, never>;
|
|
45
|
-
declare function OryFormGroupDivider(): react_jsx_runtime.JSX.Element | null;
|
|
46
|
-
|
|
47
|
-
type HeadlessGroupProps = PropsWithChildren<{
|
|
48
|
-
groups: UiNodeGroupEnum[];
|
|
49
|
-
}>;
|
|
50
|
-
type HeadlessGroupContainerProps = PropsWithChildren;
|
|
51
|
-
declare function OryFormGroups({ children, groups }: HeadlessGroupProps): react_jsx_runtime.JSX.Element;
|
|
52
|
-
|
|
53
|
-
type HeadlessMessagesProps = DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
54
|
-
declare function OryCardValidationMessages({ ...props }: HeadlessMessagesProps): react_jsx_runtime.JSX.Element | null;
|
|
55
|
-
type HeadlessMessageProps = {
|
|
56
|
-
message: UiText;
|
|
57
|
-
};
|
|
58
|
-
declare function HeadlessMessage({ message }: HeadlessMessageProps): react_jsx_runtime.JSX.Element;
|
|
8
|
+
declare const buttonStyles: (props?: ({
|
|
9
|
+
intent?: "primary" | "secondary" | null | undefined;
|
|
10
|
+
defaultVariants?: "intent" | null | undefined;
|
|
11
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
12
|
+
type ButtonVariants = VariantProps<typeof buttonStyles>;
|
|
59
13
|
|
|
60
|
-
type
|
|
61
|
-
hideDivider?: boolean;
|
|
62
|
-
}>;
|
|
63
|
-
type HeadlessSocialButtonContainerProps = PropsWithChildren<{
|
|
64
|
-
nodes: UiNode[];
|
|
65
|
-
}>;
|
|
66
|
-
type HeadlessSocialButtonProps = PropsWithChildren<{
|
|
67
|
-
node: UiNode;
|
|
68
|
-
attributes: UiNodeInputAttributes;
|
|
69
|
-
onClick?: () => void;
|
|
70
|
-
}>;
|
|
71
|
-
declare function OryFormSocialButtons({ children, hideDivider, }: HeadlessSocialButtonsProps): react_jsx_runtime.JSX.Element | null;
|
|
72
|
-
declare function OryFormSocialButtonsForm(): react_jsx_runtime.JSX.Element | null;
|
|
73
|
-
|
|
74
|
-
type OryFormComponents = {
|
|
75
|
-
Button: ComponentType<HeadlessButtonProps>;
|
|
76
|
-
LinkButton: ComponentType<HeadlessLinkButtonProps>;
|
|
77
|
-
Input: ComponentType<HeadlessInputProps>;
|
|
78
|
-
PinCodeInput: ComponentType<HeadlessInputProps>;
|
|
79
|
-
Image: ComponentType<HeadlessImageProps>;
|
|
80
|
-
Label: ComponentType<HeadlessLabelProps>;
|
|
81
|
-
Checkbox: ComponentType<HeadlessInputProps>;
|
|
82
|
-
Text: ComponentType<HeadlessTextProps>;
|
|
83
|
-
FormContainer: ComponentType<HeadlessFormProps>;
|
|
84
|
-
SocialButton: ComponentType<HeadlessSocialButtonProps>;
|
|
85
|
-
SocialButtonContainer: ComponentType<HeadlessSocialButtonContainerProps>;
|
|
86
|
-
AuthMethodListItem: ComponentType<HeadlessAuthMethodListItemProps>;
|
|
87
|
-
HorizontalDivider: ComponentType<HorizontalDividerProps>;
|
|
88
|
-
FormGroup: ComponentType<HeadlessGroupContainerProps>;
|
|
89
|
-
MessageContainer: ComponentType<HeadlessMessagesProps>;
|
|
90
|
-
Message: ComponentType<HeadlessMessageProps>;
|
|
91
|
-
CurrentIdentifierButton: ComponentType<HeadlessCurrentIdentifierProps>;
|
|
92
|
-
};
|
|
93
|
-
type OryFormProps = PropsWithChildren;
|
|
94
|
-
declare function OryForm({ children }: OryFormProps): string | react_jsx_runtime.JSX.Element;
|
|
95
|
-
|
|
96
|
-
type HeadlessButtonProps = {
|
|
14
|
+
type OryNodeButtonProps = {
|
|
97
15
|
attributes: UiNodeInputAttributes;
|
|
98
16
|
node: UiNode;
|
|
99
|
-
} & Omit<ComponentPropsWithoutRef<"button">, "children"
|
|
100
|
-
type
|
|
101
|
-
attributes: UiNodeInputAttributes;
|
|
102
|
-
node: UiNode;
|
|
103
|
-
onClick?: () => void;
|
|
104
|
-
href?: string;
|
|
105
|
-
} & Omit<ComponentPropsWithoutRef<"button">, "children" | "onClick">;
|
|
106
|
-
type HeadlessLinkButtonProps = {
|
|
17
|
+
} & Omit<ComponentPropsWithoutRef<"button">, "children"> & ButtonVariants;
|
|
18
|
+
type OryNodeAnchorProps = {
|
|
107
19
|
attributes: UiNodeAnchorAttributes;
|
|
108
20
|
node: UiNode;
|
|
109
21
|
} & Omit<ComponentPropsWithoutRef<"a">, "children">;
|
|
110
|
-
type
|
|
22
|
+
type OryNodeLabelProps = {
|
|
111
23
|
attributes: UiNodeInputAttributes;
|
|
112
24
|
node: UiNode;
|
|
113
25
|
} & ComponentPropsWithoutRef<"label">;
|
|
114
|
-
type
|
|
26
|
+
type OryNodeTextProps = {
|
|
115
27
|
attributes: UiNodeTextAttributes;
|
|
116
28
|
node: UiNode;
|
|
117
29
|
};
|
|
118
|
-
type
|
|
30
|
+
type OryCardLogoProps = Record<string, never>;
|
|
31
|
+
type OryNodeCaptchaProps = {
|
|
32
|
+
node: UiNode;
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Props for the AuthMethodListItem component. This component is used
|
|
36
|
+
* to render a single auth method in the AuthMethodList component.
|
|
37
|
+
*/
|
|
38
|
+
type OryCardAuthMethodListItemProps = {
|
|
119
39
|
onClick: () => void;
|
|
120
40
|
group: string;
|
|
41
|
+
title?: {
|
|
42
|
+
id: string;
|
|
43
|
+
values?: Record<string, string>;
|
|
44
|
+
};
|
|
121
45
|
};
|
|
122
|
-
type
|
|
46
|
+
type OryNodeImageProps = {
|
|
123
47
|
attributes: UiNodeImageAttributes;
|
|
124
48
|
node: UiNode;
|
|
125
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* A generic type for the form values.
|
|
52
|
+
*/
|
|
126
53
|
type FormValues = Record<string, string | boolean | number | undefined>;
|
|
127
|
-
type
|
|
54
|
+
type OryFormRootProps = ComponentPropsWithoutRef<"form"> & {
|
|
128
55
|
onSubmit: FormEventHandler<HTMLFormElement>;
|
|
56
|
+
"data-testid"?: string;
|
|
129
57
|
};
|
|
130
|
-
type
|
|
58
|
+
type OryNodeInputProps = {
|
|
131
59
|
attributes: UiNodeInputAttributes;
|
|
132
60
|
node: UiNode;
|
|
133
61
|
onClick?: MouseEventHandler;
|
|
134
62
|
};
|
|
135
|
-
type
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
flowType: string;
|
|
140
|
-
}) => number;
|
|
141
|
-
type ComponentProviderProps = {
|
|
142
|
-
components: OryFlowComponents;
|
|
143
|
-
nodeSorter?: (a: UiNode, b: UiNode, ctx: {
|
|
144
|
-
flowType: string;
|
|
145
|
-
}) => number;
|
|
63
|
+
type OryNodeConsentScopeCheckboxProps = {
|
|
64
|
+
attributes: UiNodeInputAttributes;
|
|
65
|
+
node: UiNode;
|
|
66
|
+
onCheckedChange: (checked: boolean) => void;
|
|
146
67
|
};
|
|
147
|
-
|
|
68
|
+
type OryFormSectionContentProps = PropsWithChildren<{
|
|
69
|
+
title?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
}>;
|
|
72
|
+
type OryFormSectionFooterProps = PropsWithChildren<{
|
|
73
|
+
text?: string;
|
|
74
|
+
}>;
|
|
148
75
|
|
|
149
|
-
type
|
|
150
|
-
|
|
151
|
-
* The name of the application the user is logging in to.
|
|
152
|
-
*/
|
|
153
|
-
name: string;
|
|
154
|
-
/**
|
|
155
|
-
* An optional logo URL to display in the UI instead of the name.
|
|
156
|
-
*/
|
|
157
|
-
logoUrl?: string;
|
|
158
|
-
stylesheet?: string;
|
|
159
|
-
favicon?: string;
|
|
160
|
-
sdk: {
|
|
161
|
-
url: string;
|
|
162
|
-
options?: Partial<ConfigurationParameters>;
|
|
163
|
-
};
|
|
164
|
-
project: {
|
|
165
|
-
registration_enabled: boolean;
|
|
166
|
-
verification_enabled: boolean;
|
|
167
|
-
recovery_enabled: boolean;
|
|
168
|
-
recovery_ui_url: string;
|
|
169
|
-
registration_ui_url: string;
|
|
170
|
-
verification_ui_url: string;
|
|
171
|
-
login_ui_url: string;
|
|
172
|
-
};
|
|
173
|
-
};
|
|
76
|
+
type OryCardHeaderProps = Record<string, never>;
|
|
77
|
+
declare function OryCardHeader(): react_jsx_runtime.JSX.Element;
|
|
174
78
|
|
|
175
|
-
type
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
79
|
+
type OryCardRootProps = PropsWithChildren;
|
|
80
|
+
/**
|
|
81
|
+
* The root component of the Ory Card.
|
|
82
|
+
*
|
|
83
|
+
* This can be used to build fully custom implementations of the Ory Flows.
|
|
84
|
+
*
|
|
85
|
+
* However, you most likely want to override the individual components instead.
|
|
86
|
+
*
|
|
87
|
+
* @param props - pass children to render instead of the default Ory Card components
|
|
88
|
+
* @returns
|
|
89
|
+
*/
|
|
90
|
+
declare function OryCard({ children }: PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
91
|
+
|
|
92
|
+
type OryCardFooterProps = Record<string, never>;
|
|
93
|
+
declare function OryCardFooter(): react_jsx_runtime.JSX.Element;
|
|
187
94
|
|
|
188
95
|
/**
|
|
189
|
-
*
|
|
96
|
+
* Props for the OryCardContent component.
|
|
97
|
+
*/
|
|
98
|
+
type OryCardContentProps = PropsWithChildren;
|
|
99
|
+
/**
|
|
100
|
+
* A component that renders the content of the Ory Card.
|
|
101
|
+
* This is the main content of the card, such as the flow's form, with it's input fields and messages.
|
|
190
102
|
*
|
|
191
|
-
*
|
|
103
|
+
* You can use this component to build fully custom implementations of the Ory Flows.
|
|
104
|
+
*
|
|
105
|
+
* However, you most likely want to override the individual components instead.
|
|
106
|
+
*
|
|
107
|
+
* @param props - pass children to render instead of the default Ory Card components
|
|
108
|
+
* @returns
|
|
192
109
|
*/
|
|
193
|
-
declare function
|
|
194
|
-
type FlowContainerSetter = Dispatch<Partial<FlowContainer>>;
|
|
195
|
-
type FlowContextValue = FlowContainer & {
|
|
196
|
-
setFlowContainer: FlowContainerSetter;
|
|
197
|
-
};
|
|
198
|
-
type OryFlowProviderProps = PropsWithChildren<FlowContainer>;
|
|
199
|
-
declare function OryFlowProvider({ children, ...container }: OryFlowProviderProps): react_jsx_runtime.JSX.Element;
|
|
110
|
+
declare function OryCardContent({ children }: OryCardContentProps): react_jsx_runtime.JSX.Element;
|
|
200
111
|
|
|
201
|
-
|
|
202
|
-
"consent.action-accept": "Zustimmen",
|
|
203
|
-
"consent.action-reject": "Ablehnen",
|
|
204
|
-
"consent.description": "Geben Sie nur Berechtigungen frei, wenn Sie dieser Website oder App vertrauen. Sie müssen nicht alle Berechtigungen akzeptieren.",
|
|
205
|
-
"consent.privacy-policy-label": "Datenschutzrichtlinie",
|
|
206
|
-
"consent.remember-label": "Diese Entscheidung für das nächste Mal merken. Die Anwendung wird keine zusätzlichen Berechtigungen ohne Ihre Zustimmung anfordern können.",
|
|
207
|
-
"consent.remember-tooltip": "meine Entscheidung merken",
|
|
208
|
-
"consent.requested-permissions-label": "Die Anwendung benötigt Zugriff auf folgende Berechtigungen:",
|
|
209
|
-
"consent.terms-of-service-label": "Nutzungsbedingungen",
|
|
210
|
-
"error.back-button": "Zurück",
|
|
211
|
-
"error.description": "Es ist ein Fehler aufgetreten mit folgender Nachricht:",
|
|
212
|
-
"error.support-email-link": "Wenn das Problem bestehen bleibt, kontaktieren Sie bitte <a>{contactSupportEmail}</a>",
|
|
213
|
-
"error.title": "Ein Fehler ist aufgetreten",
|
|
214
|
-
"error.title-internal-server-error": "Interner Serverfehler",
|
|
215
|
-
"error.title-not-found": "404 - Seite nicht gefunden",
|
|
216
|
-
"identities.messages.1010001": "Anmelden",
|
|
217
|
-
"identities.messages.1010002": "Mit {provider} anmelden",
|
|
218
|
-
"identities.messages.1010003": "Bitte bestätigen Sie diese Aktion, indem Sie überprüfen, dass Sie es sind.",
|
|
219
|
-
"identities.messages.1010004": "Bitte schließen Sie die zweite Authentifizierungsprüfung ab.",
|
|
220
|
-
"identities.messages.1010005": "Verifizieren",
|
|
221
|
-
"identities.messages.1010006": "Authentifizierungscode",
|
|
222
|
-
"identities.messages.1010007": "Backup-Wiederherstellungscode",
|
|
223
|
-
"identities.messages.1010008": "Sicherheitsschlüssel verwenden",
|
|
224
|
-
"identities.messages.1010009": "Authentifizierungs-App verwenden",
|
|
225
|
-
"identities.messages.1010010": "Backup-Wiederherstellungscode verwenden",
|
|
226
|
-
"identities.messages.1010011": "Mit Sicherheitsschlüssel fortfahren",
|
|
227
|
-
"identities.messages.1010012": "Bereiten Sie Ihr WebAuthn-Gerät vor (z. B. Sicherheitsschlüssel, biometrischer Scanner, ...) und drücken Sie auf Weiter.",
|
|
228
|
-
"identities.messages.1010013": "Weiter",
|
|
229
|
-
"identities.messages.1010014": "Eine E-Mail mit einem Code wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, überprüfen Sie bitte die Schreibweise der Adresse und versuchen Sie erneut, sich anzumelden.",
|
|
230
|
-
"identities.messages.1010015": "Mit Code anmelden",
|
|
231
|
-
"identities.messages.1040001": "Registrieren",
|
|
232
|
-
"identities.messages.1040002": "Mit {provider} registrieren",
|
|
233
|
-
"identities.messages.1040003": "Fortfahren",
|
|
234
|
-
"identities.messages.1040004": "Mit Sicherheitsschlüssel registrieren",
|
|
235
|
-
"identities.messages.1040005": "Eine E-Mail mit einem Code wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, überprüfen Sie bitte die Schreibweise der Adresse und versuchen Sie erneut, sich zu registrieren.",
|
|
236
|
-
"identities.messages.1040006": "Mit Code registrieren",
|
|
237
|
-
"identities.messages.1050001": "Ihre Änderungen wurden gespeichert!",
|
|
238
|
-
"identities.messages.1050002": "{provider} verknüpfen",
|
|
239
|
-
"identities.messages.1050003": "{provider} entknüpfen",
|
|
240
|
-
"identities.messages.1050004": "Authentifizierungs-App entknüpfen",
|
|
241
|
-
"identities.messages.1050005": "Authentifizierungs-App QR-Code",
|
|
242
|
-
"identities.messages.1050006": "{secret}",
|
|
243
|
-
"identities.messages.1050007": "Backup-Wiederherstellungscode anzeigen",
|
|
244
|
-
"identities.messages.1050008": "Neue Backup-Wiederherstellungscode generieren",
|
|
245
|
-
"identities.messages.1050009": "{secret}",
|
|
246
|
-
"identities.messages.1050010": "Dies sind Ihre Backup-Wiederherstellungscode. Bewahren Sie sie an einem sicheren Ort auf!",
|
|
247
|
-
"identities.messages.1050011": "Backup-Wiederherstellungscode bestätigen",
|
|
248
|
-
"identities.messages.1050012": "Sicherheitsschlüssel hinzufügen",
|
|
249
|
-
"identities.messages.1050013": "Name des Sicherheitsschlüssels",
|
|
250
|
-
"identities.messages.1050014": "<del>Verwendet</del>",
|
|
251
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
252
|
-
"identities.messages.1050016": "Diese Methode deaktivieren",
|
|
253
|
-
"identities.messages.1050017": "Dies ist Ihr Authentifizierungs-App-Geheimnis. Verwenden Sie es, wenn Sie den QR-Code nicht scannen können.",
|
|
254
|
-
"identities.messages.1050018": "Sicherheitsschlüssel \"{display_name}\" entfernen",
|
|
255
|
-
"identities.messages.1060001": "Sie haben Ihr Konto erfolgreich wiederhergestellt. Bitte ändern Sie Ihr Passwort oder richten Sie eine alternative Anmeldemethode ein (z. B. Anmeldung über soziale Medien) innerhalb der nächsten {privileged_session_expires_at_unix_until_minutes} Minuten ein.",
|
|
256
|
-
"identities.messages.1060002": "Eine E-Mail mit einem Wiederherstellungslink wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, überprüfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
|
|
257
|
-
"identities.messages.1060003": "Eine E-Mail mit einem Wiederherstellungscode wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, überprüfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
|
|
258
|
-
"identities.messages.1070001": "Passwort",
|
|
259
|
-
"identities.messages.1070002": "{title}",
|
|
260
|
-
"identities.messages.1070003": "Speichern",
|
|
261
|
-
"identities.messages.1070004": "ID",
|
|
262
|
-
"identities.messages.1070005": "Absenden",
|
|
263
|
-
"identities.messages.1070006": "Verifizierungscode",
|
|
264
|
-
"identities.messages.1070007": "E-Mail",
|
|
265
|
-
"identities.messages.1070008": "Code erneut senden",
|
|
266
|
-
"identities.messages.1070009": "Weiter",
|
|
267
|
-
"identities.messages.1070010": "Wiederherstellungscode",
|
|
268
|
-
"identities.messages.1070011": "Verifikationscode",
|
|
269
|
-
"identities.messages.1070012": "Registrierungscode",
|
|
270
|
-
"identities.messages.1070013": "Anmeldecode",
|
|
271
|
-
"identities.messages.1080001": "Eine E-Mail mit einem Bestätigungslink wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, überprüfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
|
|
272
|
-
"identities.messages.1080002": "Sie haben Ihre E-Mail-Adresse erfolgreich bestätigt.",
|
|
273
|
-
"identities.messages.1080003": "Eine E-Mail mit einem Bestätigungscode wurde an die von Ihnen angegebene E-Mail-Adresse gesendet. Falls Sie keine E-Mail erhalten haben, überprüfen Sie bitte die Schreibweise der Adresse und stellen Sie sicher, dass Sie die Adresse verwendet haben, mit der Sie sich registriert haben.",
|
|
274
|
-
"identities.messages.4000001": "{reason}",
|
|
275
|
-
"identities.messages.4000002": "Das Feld {property} muss ausgefüllt werden.",
|
|
276
|
-
"identities.messages.4000003": "Die Länge muss >= {min_length} sein, wurde jedoch {actual_length} erhalten.",
|
|
277
|
-
"identities.messages.4000004": "entspricht nicht dem Muster \"{pattern}\"",
|
|
278
|
-
"identities.messages.4000005": "Das Passwort kann nicht verwendet werden, weil {reason}.",
|
|
279
|
-
"identities.messages.4000006": "Die bereitgestellten Anmeldedaten sind ungültig. Überprüfen Sie auf Rechtschreibfehler in Ihrem Passwort, Benutzernamen, E-Mail-Adresse oder Telefonnummer.",
|
|
280
|
-
"identities.messages.4000007": "Ein Konto mit demselben Identifikator (E-Mail, Telefon, Benutzername, ...) existiert bereits.",
|
|
281
|
-
"identities.messages.4000008": "Der bereitgestellte Authentifizierungscode ist ungültig. Bitte versuchen Sie es erneut.",
|
|
282
|
-
"identities.messages.4000009": "Es konnten keine Anmeldeidentifikatoren gefunden werden. Haben Sie vergessen, diese festzulegen? Dies könnte auch durch eine Serverfehlkonfiguration verursacht werden.",
|
|
283
|
-
"identities.messages.4000010": "Konto ist noch nicht aktiv. Haben Sie vergessen, Ihre E-Mail-Adresse zu bestätigen?",
|
|
284
|
-
"identities.messages.4000011": "Sie haben kein TOTP-Gerät eingerichtet.",
|
|
285
|
-
"identities.messages.4000012": "Dieser Backup-Wiederherstellungscode wurde bereits verwendet.",
|
|
286
|
-
"identities.messages.4000013": "Sie haben kein WebAuthn-Gerät eingerichtet.",
|
|
287
|
-
"identities.messages.4000014": "Sie haben keine Backup-Wiederherstellungscode eingerichtet.",
|
|
288
|
-
"identities.messages.4000015": "Dieses Konto existiert nicht oder hat keinen Sicherheitsschlüssel eingerichtet.",
|
|
289
|
-
"identities.messages.4000016": "Der Backup-Wiederherstellungscode ist ungültig.",
|
|
290
|
-
"identities.messages.4000017": "Die Länge muss <= {max_length} sein, wurde jedoch {actual_length} erhalten.",
|
|
291
|
-
"identities.messages.4000018": "muss >= {minimum} sein, wurde jedoch {actual} gefunden.",
|
|
292
|
-
"identities.messages.4000019": "muss > {minimum} sein, wurde jedoch {actual} gefunden.",
|
|
293
|
-
"identities.messages.4000020": "muss <= {maximum} sein, wurde jedoch {actual} gefunden.",
|
|
294
|
-
"identities.messages.4000021": "muss < {maximum} sein, wurde jedoch {actual} gefunden.",
|
|
295
|
-
"identities.messages.4000022": "{actual} ist nicht ein Vielfaches von {base}",
|
|
296
|
-
"identities.messages.4000023": "maximal {max_items} Elemente erlaubt, wurden jedoch {actual_items} Elemente gefunden.",
|
|
297
|
-
"identities.messages.4000024": "mindestens {min_items} Elemente erforderlich, wurden jedoch {actual_items} Elemente gefunden.",
|
|
298
|
-
"identities.messages.4000025": "Elemente an Index {index_a} und {index_b} sind gleich.",
|
|
299
|
-
"identities.messages.4000026": "erwartete {allowed_types_list}, wurden jedoch {actual_type} gefunden.",
|
|
300
|
-
"identities.messages.4000027": "Ein Konto mit demselben Identifikator (E-Mail, Telefon, Benutzername, ...) existiert bereits. Bitte melden Sie sich in Ihrem bestehenden Konto an und verknüpfen Sie Ihr soziales Profil auf der Einstellungsseite.",
|
|
301
|
-
"identities.messages.4000028": "Sie haben versucht, sich mit {credential_identifier_hint} anzumelden, das bereits von einem anderen Konto verwendet wird. Sie können sich mit {available_credential_types_list} anmelden. Sie können sich mit einem der folgenden sozialen Anmeldeanbieter anmelden: {Available_oidc_providers_list}.",
|
|
302
|
-
"identities.messages.4000029": "muss gleich der Konstanten {expected} sein.",
|
|
303
|
-
"identities.messages.4000030": "const fehlgeschlagen",
|
|
304
|
-
"identities.messages.4000031": "Das Passwort kann nicht verwendet werden, da es zu ähnlich dem Identifikator ist.",
|
|
305
|
-
"identities.messages.4000032": "Das Passwort muss mindestens {min_length} Zeichen lang sein, wurde jedoch {actual_length} erhalten.",
|
|
306
|
-
"identities.messages.4000033": "Das Passwort muss höchstens {max_length} Zeichen lang sein, wurde jedoch {actual_length} erhalten.",
|
|
307
|
-
"identities.messages.4000034": "Das Passwort wurde in Datenlecks gefunden und darf nicht mehr verwendet werden.",
|
|
308
|
-
"identities.messages.4000035": "Dieses Konto existiert nicht oder hat keine Anmeldung per Code eingerichtet.",
|
|
309
|
-
"identities.messages.4000036": "Die bereitgestellten Merkmale stimmen nicht mit den zuvor mit diesem Flow assoziierten Merkmalen überein.",
|
|
310
|
-
"identities.messages.4010001": "Der Anmeldevorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
|
|
311
|
-
"identities.messages.4010002": "Es konnte keine Strategie gefunden werden, um Sie anzumelden. Haben Sie das Formular korrekt ausgefüllt?",
|
|
312
|
-
"identities.messages.4010003": "Es konnte keine Strategie gefunden werden, um Sie zu registrieren. Haben Sie das Formular korrekt ausgefüllt?",
|
|
313
|
-
"identities.messages.4010004": "Es konnte keine Strategie gefunden werden, um Ihre Einstellungen zu aktualisieren. Haben Sie das Formular korrekt ausgefüllt?",
|
|
314
|
-
"identities.messages.4010005": "Es konnte keine Strategie gefunden werden, um Ihr Konto wiederherzustellen. Haben Sie das Formular korrekt ausgefüllt?",
|
|
315
|
-
"identities.messages.4010006": "Es konnte keine Strategie gefunden werden, um Ihr Konto zu verifizieren. Haben Sie das Formular korrekt ausgefüllt?",
|
|
316
|
-
"identities.messages.4010007": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
|
|
317
|
-
"identities.messages.4010008": "Der Anmeldecode ist ungültig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
|
|
318
|
-
"identities.messages.4040001": "Der Registrierungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
|
|
319
|
-
"identities.messages.4040002": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
|
|
320
|
-
"identities.messages.4040003": "Der Registrierungscode ist ungültig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
|
|
321
|
-
"identities.messages.4050001": "Der Einstellungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
|
|
322
|
-
"identities.messages.4060001": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
|
|
323
|
-
"identities.messages.4060002": "Der Wiederherstellungsvorgang erreichte einen Fehlerzustand und muss erneut versucht werden.",
|
|
324
|
-
"identities.messages.4060004": "Der Wiederherstellungstoken ist ungültig oder wurde bereits verwendet. Bitte wiederholen Sie den Vorgang.",
|
|
325
|
-
"identities.messages.4060005": "Der Wiederherstellungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
|
|
326
|
-
"identities.messages.4060006": "Der Wiederherstellungscode ist ungültig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
|
|
327
|
-
"identities.messages.4070001": "Der Verifizierungstoken ist ungültig oder wurde bereits verwendet. Bitte wiederholen Sie den Vorgang.",
|
|
328
|
-
"identities.messages.4070002": "Die Anfrage wurde bereits erfolgreich abgeschlossen und kann nicht erneut versucht werden.",
|
|
329
|
-
"identities.messages.4070003": "Der Verifizierungsvorgang erreichte einen Fehlerzustand und muss erneut versucht werden.",
|
|
330
|
-
"identities.messages.4070005": "Der Verifizierungsvorgang ist vor {expired_at_unix_since_minutes} Minuten abgelaufen. Bitte versuchen Sie es erneut.",
|
|
331
|
-
"identities.messages.4070006": "Der Verifizierungscode ist ungültig oder wurde bereits verwendet. Bitte versuchen Sie es erneut.",
|
|
332
|
-
"identities.messages.5000001": "{reason}",
|
|
333
|
-
"login.forgot-password": "Passwort vergessen?",
|
|
334
|
-
"login.logged-in-as-label": "Sie sind angemeldet als:",
|
|
335
|
-
"login.logout-button": "Abmelden",
|
|
336
|
-
"login.logout-label": "Etwas funktioniert nicht?",
|
|
337
|
-
"login.registration-button": "Registrieren",
|
|
338
|
-
"login.registration-label": "Sie haben noch kein Konto?",
|
|
339
|
-
"login.subtitle-oauth2": "Zur Authentifizierung bei {clientName}",
|
|
340
|
-
"login.title": "Anmelden",
|
|
341
|
-
"login.title-aal2": "Zwei-Faktor-Authentifizierung",
|
|
342
|
-
"login.title-refresh": "Bestätigen Sie, dass Sie es sind",
|
|
343
|
-
"logout.accept-button": "Ja",
|
|
344
|
-
"logout.reject-button": "Nein",
|
|
345
|
-
"logout.title": "Möchten Sie sich abmelden?",
|
|
346
|
-
"recovery.login-button": "Anmelden",
|
|
347
|
-
"recovery.login-label": "Erinnern Sie sich an Ihre Anmeldedaten?",
|
|
348
|
-
"recovery.title": "Ihr Konto wiederherstellen",
|
|
349
|
-
"registration.login-button": "Anmelden",
|
|
350
|
-
"registration.login-label": "Sie haben bereits ein Konto?",
|
|
351
|
-
"registration.subtitle-oauth2": "Zur Authentifizierung bei {clientName}",
|
|
352
|
-
"registration.title": "Konto registrieren",
|
|
353
|
-
"settings.navigation-back-button": "Zurück",
|
|
354
|
-
"settings.navigation-backup-codes": "2FA-Backup-Codes",
|
|
355
|
-
"settings.navigation-logout": "Abmelden",
|
|
356
|
-
"settings.navigation-oidc": "Soziale Medien",
|
|
357
|
-
"settings.navigation-password": "Passwort",
|
|
358
|
-
"settings.navigation-profile": "Profil",
|
|
359
|
-
"settings.navigation-totp": "Zwei-Faktor App",
|
|
360
|
-
"settings.navigation-webauthn": "Sicherheitsschlüssel",
|
|
361
|
-
"settings.navigation-passkey": "Passkeys",
|
|
362
|
-
"settings.subtitle-instructions": "Hier können Sie Einstellungen zu Ihrem Konto vornehmen. Für manche Einstellungen müssen Sie Ihre Identität erneut bestätigen.",
|
|
363
|
-
"settings.title": "Kontoeinstellungen",
|
|
364
|
-
"settings.title-lookup-secret": "Manage 2FA Backup Recovery Codes",
|
|
365
|
-
"settings.title-navigation": "Konto Einstellungen",
|
|
366
|
-
"settings.title-oidc": "Anmeldung über soziale Medien",
|
|
367
|
-
"settings.title-password": "Passwort ändern",
|
|
368
|
-
"settings.title-profile": "Profil Einstellungen",
|
|
369
|
-
"settings.title-totp": "Zwei-Faktor TOTP App",
|
|
370
|
-
"settings.title-webauthn": "Sicherheitsschlüssel verwalten",
|
|
371
|
-
"settings.title-passkey": "Passkeys verwalten",
|
|
372
|
-
"verification.registration-button": "Registrieren",
|
|
373
|
-
"verification.registration-label": "Sie haben noch kein Konto?",
|
|
374
|
-
"verification.title": "Verifizieren Sie ihr Konto",
|
|
375
|
-
"verification.back-button": "Zurück",
|
|
376
|
-
"two-step.code.description": "Ein Bestätigungscode wird an Ihre E-Mail gesendet.",
|
|
377
|
-
"two-step.code.title": "E-Mail-Code",
|
|
378
|
-
"two-step.passkey.description": "Verwenden Sie die Fingerabdruck- oder Gesichtserkennung Ihres Geräts",
|
|
379
|
-
"two-step.passkey.title": "Passwort (empfohlen)",
|
|
380
|
-
"two-step.password.description": "Geben Sie Ihr Passwort ein, das mit Ihrem Konto verknüpft ist",
|
|
381
|
-
"two-step.password.title": "Passwort",
|
|
382
|
-
"two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschlüssel zur Authentifizierung",
|
|
383
|
-
"two-step.webauthn.title": "Sicherheitsschlüssel",
|
|
384
|
-
"identities.messages.1070014": "Login- und Link-Zugangsdaten",
|
|
385
|
-
"identities.messages.1070015": "Bitte schließen Sie die Captcha-Challenge ab, um fortzufahren.",
|
|
386
|
-
"identities.messages.4000038": "Die Captcha-Überprüfung ist fehlgeschlagen. Bitte versuchen Sie es erneut.",
|
|
387
|
-
"login.cancel-button": "Abbrechen",
|
|
388
|
-
"login.cancel-label": "Nicht das richtige Konto?",
|
|
389
|
-
"identities.messages.1010023": "Code an {address} senden",
|
|
390
|
-
"identities.messages.1010016": "Sie haben versucht, sich mit „{duplicateIdentifier}“ 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 „{duplicateIdentifier}“ bei „{provider}“ als weitere Anmeldemöglichkeit hinzuzufügen.",
|
|
391
|
-
"identities.messages.1010017": "",
|
|
392
|
-
"identities.messages.1010018": "",
|
|
393
|
-
"identities.messages.1010019": "",
|
|
394
|
-
"identities.messages.1010020": "",
|
|
395
|
-
"identities.messages.1010021": "",
|
|
396
|
-
"identities.messages.1010022": "",
|
|
397
|
-
"identities.messages.1040007": "",
|
|
398
|
-
"identities.messages.1040008": "",
|
|
399
|
-
"identities.messages.1040009": "",
|
|
400
|
-
"identities.messages.1050019": "",
|
|
401
|
-
"identities.messages.1050020": "",
|
|
402
|
-
"identities.messages.4000037": "",
|
|
403
|
-
"identities.messages.4010009": "",
|
|
404
|
-
"identities.messages.4010010": ""
|
|
405
|
-
};
|
|
112
|
+
declare function OryTwoStepCard(): react_jsx_runtime.JSX.Element;
|
|
406
113
|
|
|
407
|
-
|
|
408
|
-
"consent.action-accept": "Allow",
|
|
409
|
-
"consent.action-reject": "Deny",
|
|
410
|
-
"consent.description": "Only grant permissions if you trust this site or app. You do not need to accept all permissions.",
|
|
411
|
-
"consent.privacy-policy-label": "Privacy Policy",
|
|
412
|
-
"consent.remember-label": "Remember this decision for next time. The application will not be able to ask for additional permissions without your consent.",
|
|
413
|
-
"consent.remember-tooltip": "remember my decision",
|
|
414
|
-
"consent.requested-permissions-label": "The application requests access to the following permissions:",
|
|
415
|
-
"consent.terms-of-service-label": "Terms of Service",
|
|
416
|
-
"error.back-button": "Go Back",
|
|
417
|
-
"error.description": "An error occurred with the following message:",
|
|
418
|
-
"error.support-email-link": "If the problem persists, please contact <a>{contactSupportEmail}</a>",
|
|
419
|
-
"error.title": "An error occurred",
|
|
420
|
-
"error.title-internal-server-error": "Internal Server Error",
|
|
421
|
-
"error.title-not-found": "404 - Page not found",
|
|
422
|
-
"identities.messages.1010001": "Sign in",
|
|
423
|
-
"identities.messages.1010002": "Sign in with {provider}",
|
|
424
|
-
"identities.messages.1010003": "Please confirm this action by verifying that it is you.",
|
|
425
|
-
"identities.messages.1010004": "Please complete the second authentication challenge.",
|
|
426
|
-
"identities.messages.1010005": "Verify",
|
|
427
|
-
"identities.messages.1010006": "Authentication code",
|
|
428
|
-
"identities.messages.1010007": "Backup recovery code",
|
|
429
|
-
"identities.messages.1010008": "Sign in with hardware key",
|
|
430
|
-
"identities.messages.1010009": "Use Authenticator",
|
|
431
|
-
"identities.messages.1010010": "Use backup recovery code",
|
|
432
|
-
"identities.messages.1010011": "Sign in with hardware key",
|
|
433
|
-
"identities.messages.1010012": "Prepare your WebAuthn device (e.g. security key, biometrics scanner, ...) and press continue.",
|
|
434
|
-
"identities.messages.1010013": "Continue",
|
|
435
|
-
"identities.messages.1010014": "A code has been sent to the address you provided. If you have not received an message, check the spelling of the address and retry the login.",
|
|
436
|
-
"identities.messages.1010015": "Send sign in code",
|
|
437
|
-
"identities.messages.1010016": "You tried to sign in with \"{duplicateIdentifier}\", but that email is already used by another account. Sign in to your account with one of the options below to add your account \"{duplicateIdentifier}\" at \"{provider}\" as another way to sign in.",
|
|
438
|
-
"identities.messages.1010017": "Sign in and link",
|
|
439
|
-
"identities.messages.1010018": "Confirm with {provider}",
|
|
440
|
-
"identities.messages.1010019": "Request code to continue",
|
|
441
|
-
"identities.messages.1010021": "Sign in with passkey",
|
|
442
|
-
"identities.messages.1010022": "Sign in with password",
|
|
443
|
-
"identities.messages.1010023": "Send code to {address}",
|
|
444
|
-
"identities.messages.1040001": "Sign up",
|
|
445
|
-
"identities.messages.1040002": "Sign up with {provider}",
|
|
446
|
-
"identities.messages.1040003": "Continue",
|
|
447
|
-
"identities.messages.1040004": "Sign up with security key",
|
|
448
|
-
"identities.messages.1040005": "A code has been sent to the address(es) you provided. If you have not received a message, check the spelling of the address and retry the registration.",
|
|
449
|
-
"identities.messages.1040006": "Send sign up code",
|
|
450
|
-
"identities.messages.1040007": "Sign up with passkey",
|
|
451
|
-
"identities.messages.1040008": "Back",
|
|
452
|
-
"identities.messages.1040009": "Please choose a credential to authenticate yourself with.",
|
|
453
|
-
"identities.messages.1050001": "Your changes have been saved!",
|
|
454
|
-
"identities.messages.1050002": "Link {provider}",
|
|
455
|
-
"identities.messages.1050003": "Unlink {provider}",
|
|
456
|
-
"identities.messages.1050004": "Unlink TOTP Authenticator App",
|
|
457
|
-
"identities.messages.1050005": "Authenticator app QR code",
|
|
458
|
-
"identities.messages.1050006": "{secret}",
|
|
459
|
-
"identities.messages.1050007": "Reveal backup recovery codes",
|
|
460
|
-
"identities.messages.1050008": "Generate new backup recovery codes",
|
|
461
|
-
"identities.messages.1050009": "{secret}",
|
|
462
|
-
"identities.messages.1050010": "These are your back up recovery codes. Please keep them in a safe place!",
|
|
463
|
-
"identities.messages.1050011": "Confirm backup recovery codes",
|
|
464
|
-
"identities.messages.1050012": "Add security key",
|
|
465
|
-
"identities.messages.1050013": "Name of the security key",
|
|
466
|
-
"identities.messages.1050014": "Secret was used at {used_at, date, long}",
|
|
467
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
468
|
-
"identities.messages.1050016": "Disable this method",
|
|
469
|
-
"identities.messages.1050017": "This is your authenticator app secret. Use it if you can not scan the QR code.",
|
|
470
|
-
"identities.messages.1050018": "Remove security key \"{display_name}\"",
|
|
471
|
-
"identities.messages.1050019": "Add passkey",
|
|
472
|
-
"identities.messages.1050020": "Remove passkey \"{display_name}\"",
|
|
473
|
-
"identities.messages.1060001": "You successfully recovered your account. Please change your password or set up an alternative login method (e.g. social sign in) within the next {privileged_session_expires_at_unix_until_minutes} minutes.",
|
|
474
|
-
"identities.messages.1060002": "An email containing a recovery link has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
|
|
475
|
-
"identities.messages.1060003": "An email containing a recovery code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
|
|
476
|
-
"identities.messages.1070001": "Password",
|
|
477
|
-
"identities.messages.1070002": "{title}",
|
|
478
|
-
"identities.messages.1070003": "Save",
|
|
479
|
-
"identities.messages.1070004": "ID",
|
|
480
|
-
"identities.messages.1070005": "Submit",
|
|
481
|
-
"identities.messages.1070006": "Verify code",
|
|
482
|
-
"identities.messages.1070007": "Email",
|
|
483
|
-
"identities.messages.1070008": "Resend code",
|
|
484
|
-
"identities.messages.1070009": "Continue",
|
|
485
|
-
"identities.messages.1070010": "Recovery code",
|
|
486
|
-
"identities.messages.1070011": "Verification code",
|
|
487
|
-
"identities.messages.1070012": "Registration code",
|
|
488
|
-
"identities.messages.1070013": "Login code",
|
|
489
|
-
"identities.messages.1070014": "Login and link credential",
|
|
490
|
-
"identities.messages.1070015": "Please complete the captcha challenge to continue.",
|
|
491
|
-
"identities.messages.1080001": "An email containing a verification link has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
|
|
492
|
-
"identities.messages.1080002": "You successfully verified your email address.",
|
|
493
|
-
"identities.messages.1080003": "An email containing a verification code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
|
|
494
|
-
"identities.messages.4000001": "{reason}",
|
|
495
|
-
"identities.messages.4000002": "Property {property} is missing.",
|
|
496
|
-
"identities.messages.4000003": "length must be >= {min_length}, but got {actual_length}",
|
|
497
|
-
"identities.messages.4000004": "does not match pattern \"{pattern}\"",
|
|
498
|
-
"identities.messages.4000005": "The password can not be used because {reason}.",
|
|
499
|
-
"identities.messages.4000006": "The provided credentials are invalid, check for spelling mistakes in your password or username, email address, or phone number.",
|
|
500
|
-
"identities.messages.4000007": "An account with the same identifier (email, phone, username, ...) exists already.",
|
|
501
|
-
"identities.messages.4000008": "The provided authentication code is invalid, please try again.",
|
|
502
|
-
"identities.messages.4000009": "Could not find any login identifiers. Did you forget to set them? This could also be caused by a server misconfiguration.",
|
|
503
|
-
"identities.messages.4000010": "Account not active yet. Did you forget to verify your email address?",
|
|
504
|
-
"identities.messages.4000011": "You have no TOTP device set up.",
|
|
505
|
-
"identities.messages.4000012": "This backup recovery code has already been used.",
|
|
506
|
-
"identities.messages.4000013": "You have no WebAuthn device set up.",
|
|
507
|
-
"identities.messages.4000014": "You have no backup recovery codes set up.",
|
|
508
|
-
"identities.messages.4000015": "This account does not exist or has no security key set up.",
|
|
509
|
-
"identities.messages.4000016": "The backup recovery code is not valid.",
|
|
510
|
-
"identities.messages.4000017": "length must be <= {max_length}, but got {actual_length}",
|
|
511
|
-
"identities.messages.4000018": "must be >= {minimum} but found {actual}",
|
|
512
|
-
"identities.messages.4000019": "must be > {minimum} but found {actual}",
|
|
513
|
-
"identities.messages.4000020": "must be <= {maximum} but found {actual}",
|
|
514
|
-
"identities.messages.4000021": "must be < {maximum} but found {actual}",
|
|
515
|
-
"identities.messages.4000022": "{actual} not multipleOf {base}",
|
|
516
|
-
"identities.messages.4000023": "maximum {max_items} items allowed, but found {actual_items} items",
|
|
517
|
-
"identities.messages.4000024": "minimum {min_items} items allowed, but found {actual_items} items",
|
|
518
|
-
"identities.messages.4000025": "items at index {index_a} and {index_b} are equal",
|
|
519
|
-
"identities.messages.4000026": "expected {allowed_types_list}, but got {actual_type}",
|
|
520
|
-
"identities.messages.4000027": "An account with the same identifier (email, phone, username, ...) exists already. Please sign in to your existing account to link your social profile.",
|
|
521
|
-
"identities.messages.4000028": "You tried signing in with {credential_identifier_hint} which is already in use by another account. You can sign in using {available_credential_types_list}. You can sign in using one of the following social sign in providers: {Available_oidc_providers_list}.",
|
|
522
|
-
"identities.messages.4000029": "must be equal to constant {expected}",
|
|
523
|
-
"identities.messages.4000030": "const failed",
|
|
524
|
-
"identities.messages.4000031": "The password can not be used because it is too similar to the identifier.",
|
|
525
|
-
"identities.messages.4000032": "The password must be at least {min_length} characters long, but got {actual_length}.",
|
|
526
|
-
"identities.messages.4000033": "The password must be at most {max_length} characters long, but got {actual_length}.",
|
|
527
|
-
"identities.messages.4000034": "The password has been found in data breaches and must no longer be used.",
|
|
528
|
-
"identities.messages.4000035": "This account does not exist or has not setup sign in with code.",
|
|
529
|
-
"identities.messages.4000036": "The provided traits do not match the traits previously associated with this flow.",
|
|
530
|
-
"identities.messages.4000037": "This account does not exist or has no login method configured.",
|
|
531
|
-
"identities.messages.4000038": "Captcha verification failed, please try again.",
|
|
532
|
-
"identities.messages.4010001": "The login flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
|
|
533
|
-
"identities.messages.4010002": "Could not find a strategy to log you in with. Did you fill out the form correctly?",
|
|
534
|
-
"identities.messages.4010003": "Could not find a strategy to sign you up with. Did you fill out the form correctly?",
|
|
535
|
-
"identities.messages.4010004": "Could not find a strategy to update your settings. Did you fill out the form correctly?",
|
|
536
|
-
"identities.messages.4010005": "Could not find a strategy to recover your account with. Did you fill out the form correctly?",
|
|
537
|
-
"identities.messages.4010006": "Could not find a strategy to verify your account with. Did you fill out the form correctly?",
|
|
538
|
-
"identities.messages.4010007": "The request was already completed successfully and can not be retried.",
|
|
539
|
-
"identities.messages.4010008": "The login code is invalid or has already been used. Please try again.",
|
|
540
|
-
"identities.messages.4010009": "Linked credentials do not match.",
|
|
541
|
-
"identities.messages.4010010": "The address you entered does not match any known addresses in the current account.",
|
|
542
|
-
"identities.messages.4040001": "The registration flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
|
|
543
|
-
"identities.messages.4040002": "The request was already completed successfully and can not be retried.",
|
|
544
|
-
"identities.messages.4040003": "The registration code is invalid or has already been used. Please try again.",
|
|
545
|
-
"identities.messages.4050001": "The settings flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
|
|
546
|
-
"identities.messages.4060001": "The request was already completed successfully and can not be retried.",
|
|
547
|
-
"identities.messages.4060002": "The recovery flow reached a failure state and must be retried.",
|
|
548
|
-
"identities.messages.4060004": "The recovery token is invalid or has already been used. Please retry the flow.",
|
|
549
|
-
"identities.messages.4060005": "The recovery flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
|
|
550
|
-
"identities.messages.4060006": "The recovery code is invalid or has already been used. Please try again.",
|
|
551
|
-
"identities.messages.4070001": "The verification token is invalid or has already been used. Please retry the flow.",
|
|
552
|
-
"identities.messages.4070002": "The request was already completed successfully and can not be retried.",
|
|
553
|
-
"identities.messages.4070003": "The verification flow reached a failure state and must be retried.",
|
|
554
|
-
"identities.messages.4070005": "The verification flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
|
|
555
|
-
"identities.messages.4070006": "The verification code is invalid or has already been used. Please try again.",
|
|
556
|
-
"identities.messages.5000001": "{reason}",
|
|
557
|
-
"login.cancel-button": "Cancel",
|
|
558
|
-
"login.cancel-label": "Not the right account?",
|
|
559
|
-
"login.forgot-password": "Forgot password?",
|
|
560
|
-
"login.logged-in-as-label": "You are using:",
|
|
561
|
-
"login.logout-button": "Logout",
|
|
562
|
-
"login.logout-label": "Something's not working?",
|
|
563
|
-
"login.registration-button": "Sign up",
|
|
564
|
-
"login.registration-label": "Don't have an account?",
|
|
565
|
-
"login.subtitle-oauth2": "To authenticate {clientName}",
|
|
566
|
-
"login.title": "Sign in",
|
|
567
|
-
"login.title-aal2": "Two-Factor Authentication",
|
|
568
|
-
"login.title-refresh": "Confirm it's you",
|
|
569
|
-
"logout.accept-button": "Yes",
|
|
570
|
-
"logout.reject-button": "No",
|
|
571
|
-
"logout.title": "Do you wish to log out?",
|
|
572
|
-
"recovery.login-button": "Sign in",
|
|
573
|
-
"recovery.login-label": "Remember your credentials?",
|
|
574
|
-
"recovery.title": "Recover your account",
|
|
575
|
-
"registration.login-button": "Sign in",
|
|
576
|
-
"registration.login-label": "Already have an account?",
|
|
577
|
-
"registration.subtitle-oauth2": "To authenticate {clientName}",
|
|
578
|
-
"registration.title": "Register an account",
|
|
579
|
-
"settings.navigation-back-button": "Back",
|
|
580
|
-
"settings.navigation-backup-codes": "2FA Backup Codes",
|
|
581
|
-
"settings.navigation-logout": "Logout",
|
|
582
|
-
"settings.navigation-oidc": "Social Sign In",
|
|
583
|
-
"settings.navigation-password": "Password",
|
|
584
|
-
"settings.navigation-profile": "Profile",
|
|
585
|
-
"settings.navigation-totp": "Authenticator App",
|
|
586
|
-
"settings.navigation-webauthn": "Hardware Tokens",
|
|
587
|
-
"settings.navigation-passkey": "Passkeys",
|
|
588
|
-
"settings.subtitle-instructions": "Here you can manage settings related to your account. Keep in mind that certain actions require you to re-authenticate.",
|
|
589
|
-
"settings.title": "Account Settings",
|
|
590
|
-
"settings.title-lookup-secret": "Manage 2FA Backup Recovery Codes",
|
|
591
|
-
"settings.title-navigation": "Account Settings",
|
|
592
|
-
"settings.title-oidc": "Social Sign In",
|
|
593
|
-
"settings.title-password": "Change Password",
|
|
594
|
-
"settings.title-profile": "Profile Settings",
|
|
595
|
-
"settings.title-totp": "Manage 2FA TOTP Authenticator App",
|
|
596
|
-
"settings.title-webauthn": "Manage Hardware Tokens",
|
|
597
|
-
"settings.title-passkey": "Manage Passkeys",
|
|
598
|
-
"verification.registration-button": "Sign up",
|
|
599
|
-
"verification.registration-label": "Don't have an account?",
|
|
600
|
-
"verification.title": "Verify your account",
|
|
601
|
-
"verification.back-button": "Back",
|
|
602
|
-
"two-step.password.title": "Password",
|
|
603
|
-
"two-step.password.description": "Enter your password associated with your account",
|
|
604
|
-
"two-step.code.title": "Email code",
|
|
605
|
-
"two-step.code.description": "A verification code will be sent to your email",
|
|
606
|
-
"two-step.webauthn.title": "Security Key",
|
|
607
|
-
"two-step.webauthn.description": "Use your security key to authenticate",
|
|
608
|
-
"two-step.passkey.title": "Passkey (recommended)",
|
|
609
|
-
"two-step.passkey.description": "Use your device's for fingerprint or face recognition",
|
|
610
|
-
"identities.messages.1010020": ""
|
|
611
|
-
};
|
|
114
|
+
declare function OryConsentCard(): react_jsx_runtime.JSX.Element;
|
|
612
115
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
"error.title-not-found": "404 - Página no encontrada",
|
|
628
|
-
"identities.messages.1010001": "Iniciar sesión",
|
|
629
|
-
"identities.messages.1010002": "Iniciar sesión con {provider}",
|
|
630
|
-
"identities.messages.1010003": "Por favor confirme esta acción verificando que es usted.",
|
|
631
|
-
"identities.messages.1010004": "Por favor complete el segundo desafío de autenticación.",
|
|
632
|
-
"identities.messages.1010005": "Verificar",
|
|
633
|
-
"identities.messages.1010006": "Código de autenticación",
|
|
634
|
-
"identities.messages.1010007": "Código de recuperación de respaldo",
|
|
635
|
-
"identities.messages.1010008": "Usar llave de seguridad",
|
|
636
|
-
"identities.messages.1010009": "Usar Autenticador",
|
|
637
|
-
"identities.messages.1010010": "Usar código de recuperación de respaldo",
|
|
638
|
-
"identities.messages.1010011": "Continuar con llave de seguridad",
|
|
639
|
-
"identities.messages.1010012": "Prepare su dispositivo WebAuthn (por ejemplo, llave de seguridad, escáner biométrico, ...) y presione continuar.",
|
|
640
|
-
"identities.messages.1010013": "Continuar",
|
|
641
|
-
"identities.messages.1010014": "Se ha enviado un correo electrónico con un código a la dirección de correo electrónico que proporcionó. Si no ha recibido un correo electrónico, verifique la ortografía de la dirección e intente iniciar sesión nuevamente.",
|
|
642
|
-
"identities.messages.1010015": "Iniciar sesión con código",
|
|
643
|
-
"identities.messages.1040001": "Registrarse",
|
|
644
|
-
"identities.messages.1040002": "Registrarse con {provider}",
|
|
645
|
-
"identities.messages.1040003": "Continuar",
|
|
646
|
-
"identities.messages.1040004": "Registrarse con llave de seguridad",
|
|
647
|
-
"identities.messages.1040005": "Se ha enviado un correo electrónico con un código a la dirección de correo electrónico que proporcionó. Si no ha recibido un correo electrónico, verifique la ortografía de la dirección e intente registrarse nuevamente.",
|
|
648
|
-
"identities.messages.1040006": "Registrarse con código",
|
|
649
|
-
"identities.messages.1050001": "¡Sus cambios han sido guardados!",
|
|
650
|
-
"identities.messages.1050002": "Vincular {provider}",
|
|
651
|
-
"identities.messages.1050003": "Desvincular {provider}",
|
|
652
|
-
"identities.messages.1050004": "Desvincular App Autenticadora TOTP",
|
|
653
|
-
"identities.messages.1050005": "Código QR de la app autenticadora",
|
|
654
|
-
"identities.messages.1050006": "{secret}",
|
|
655
|
-
"identities.messages.1050007": "Mostrar códigos de recuperación de respaldo",
|
|
656
|
-
"identities.messages.1050008": "Generar nuevos códigos de recuperación de respaldo",
|
|
657
|
-
"identities.messages.1050009": "{secret}",
|
|
658
|
-
"identities.messages.1050010": "Estos son sus códigos de recuperación de respaldo. ¡Por favor guárdelos en un lugar seguro!",
|
|
659
|
-
"identities.messages.1050011": "Confirmar códigos de recuperación de respaldo",
|
|
660
|
-
"identities.messages.1050012": "Agregar llave de seguridad",
|
|
661
|
-
"identities.messages.1050013": "Nombre de la llave de seguridad",
|
|
662
|
-
"identities.messages.1050014": "<del>Usado</del>",
|
|
663
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
664
|
-
"identities.messages.1050016": "Deshabilitar este método",
|
|
665
|
-
"identities.messages.1050017": "Este es el secreto de su app autenticadora. Úselo si no puede escanear el código QR.",
|
|
666
|
-
"identities.messages.1050018": "Eliminar llave de seguridad \"{display_name}\"",
|
|
667
|
-
"identities.messages.1060001": "Ha recuperado exitosamente su cuenta. Por favor cambie su contraseña o configure un método de inicio de sesión alternativo (por ejemplo, inicio de sesión social) en los próximos {privileged_session_expires_at_unix_until_minutes} minutos.",
|
|
668
|
-
"identities.messages.1060002": "Se ha enviado un correo electrónico con un enlace de recuperación a la dirección de correo electrónico que proporcionó. Si no ha recibido un correo electrónico, verifique la ortografía de la dirección y asegúrese de usar la dirección con la que se registró.",
|
|
669
|
-
"identities.messages.1060003": "Se ha enviado un correo electrónico con un código de recuperación a la dirección de correo electrónico que proporcionó. Si no ha recibido un correo electrónico, verifique la ortografía de la dirección y asegúrese de usar la dirección con la que se registró.",
|
|
670
|
-
"identities.messages.1070001": "Contraseña",
|
|
671
|
-
"identities.messages.1070002": "{title}",
|
|
672
|
-
"identities.messages.1070003": "Guardar",
|
|
673
|
-
"identities.messages.1070004": "ID",
|
|
674
|
-
"identities.messages.1070005": "Enviar",
|
|
675
|
-
"identities.messages.1070006": "Verificar código",
|
|
676
|
-
"identities.messages.1070007": "Correo electrónico",
|
|
677
|
-
"identities.messages.1070008": "Reenviar código",
|
|
678
|
-
"identities.messages.1070009": "Continuar",
|
|
679
|
-
"identities.messages.1070010": "Código de recuperación",
|
|
680
|
-
"identities.messages.1070011": "Código de verificación",
|
|
681
|
-
"identities.messages.1070012": "Código de registro",
|
|
682
|
-
"identities.messages.1070013": "Código de inicio de sesión",
|
|
683
|
-
"identities.messages.1080001": "Se ha enviado un correo electrónico con un enlace de verificación a la dirección que proporcionó. Si no ha recibido un correo electrónico, verifique la ortografía de la dirección y asegúrese de usar la dirección con la que se registró.",
|
|
684
|
-
"identities.messages.1080002": "Ha verificado exitosamente su dirección de correo electrónico.",
|
|
685
|
-
"identities.messages.1080003": "Se ha enviado un correo electrónico con un código de verificación a la dirección que proporcionó. Si no ha recibido un correo electrónico, verifique la ortografía de la dirección y asegúrese de usar la dirección con la que se registró.",
|
|
686
|
-
"identities.messages.4000001": "{reason}",
|
|
687
|
-
"identities.messages.4000002": "Falta la propiedad {property}.",
|
|
688
|
-
"identities.messages.4000003": "la longitud debe ser >= {min_length}, pero es {actual_length}",
|
|
689
|
-
"identities.messages.4000004": "no coincide con el patrón \"{pattern}\"",
|
|
690
|
-
"identities.messages.4000005": "La contraseña no puede ser utilizada porque {reason}.",
|
|
691
|
-
"identities.messages.4000006": "Las credenciales proporcionadas son inválidas, verifique si hay errores en su contraseña o nombre de usuario, dirección de correo electrónico o número de teléfono.",
|
|
692
|
-
"identities.messages.4000007": "Ya existe una cuenta con el mismo identificador (correo, teléfono, nombre de usuario, ...).",
|
|
693
|
-
"identities.messages.4000008": "El código de autenticación proporcionado es inválido, por favor intente nuevamente.",
|
|
694
|
-
"identities.messages.4000009": "No se encontraron identificadores de inicio de sesión. ¿Olvidó establecerlos? Esto también podría ser causado por una mala configuración del servidor.",
|
|
695
|
-
"identities.messages.4000010": "La cuenta aún no está activa. ¿Olvidó verificar su dirección de correo electrónico?",
|
|
696
|
-
"identities.messages.4000011": "No tiene configurado ningún dispositivo TOTP.",
|
|
697
|
-
"identities.messages.4000012": "Este código de recuperación de respaldo ya ha sido utilizado.",
|
|
698
|
-
"identities.messages.4000013": "No tiene configurado ningún dispositivo WebAuthn.",
|
|
699
|
-
"identities.messages.4000014": "No ha configurado ningún código de recuperación de respaldo.",
|
|
700
|
-
"identities.messages.4000015": "Esta cuenta no existe o no tiene configurada una llave de seguridad.",
|
|
701
|
-
"identities.messages.4000016": "El código de recuperación de respaldo no es válido.",
|
|
702
|
-
"identities.messages.4000017": "la longitud debe ser <= {max_length}, pero es {actual_length}",
|
|
703
|
-
"identities.messages.4000018": "debe ser >= {minimum} pero es {actual}",
|
|
704
|
-
"identities.messages.4000019": "debe ser > {minimum} pero es {actual}",
|
|
705
|
-
"identities.messages.4000020": "debe ser <= {maximum} pero es {actual}",
|
|
706
|
-
"identities.messages.4000021": "debe ser < {maximum} pero es {actual}",
|
|
707
|
-
"identities.messages.4000022": "{actual} no es múltiplo de {base}",
|
|
708
|
-
"identities.messages.4000023": "máximo {max_items} ítems permitidos, pero se encontraron {actual_items} ítems",
|
|
709
|
-
"identities.messages.4000024": "mínimo {min_items} ítems permitidos, pero se encontraron {actual_items} ítems",
|
|
710
|
-
"identities.messages.4000025": "los ítems en los índices {index_a} y {index_b} son iguales",
|
|
711
|
-
"identities.messages.4000026": "se esperaba {allowed_types_list}, pero se obtuvo {actual_type}",
|
|
712
|
-
"identities.messages.4000027": "Ya existe una cuenta con el mismo identificador (correo, teléfono, nombre de usuario, ...). Por favor, inicie sesión en su cuenta existente y vincule su perfil social en la página de configuración.",
|
|
713
|
-
"identities.messages.4000028": "Intentó iniciar sesión con {credential_identifier_hint} que ya está en uso por otra cuenta. Puede iniciar sesión usando {available_credential_types_list}. Puede iniciar sesión usando uno de los siguientes proveedores de inicio de sesión social: {Available_oidc_providers_list}.",
|
|
714
|
-
"identities.messages.4000029": "debe ser igual a la constante {expected}",
|
|
715
|
-
"identities.messages.4000030": "constante fallida",
|
|
716
|
-
"identities.messages.4000031": "La contraseña no puede ser utilizada porque es muy similar al identificador.",
|
|
717
|
-
"identities.messages.4000032": "La contraseña debe tener al menos {min_length} caracteres de longitud, pero tiene {actual_length}.",
|
|
718
|
-
"identities.messages.4000033": "La contraseña debe tener como máximo {max_length} caracteres de longitud, pero tiene {actual_length}.",
|
|
719
|
-
"identities.messages.4000034": "La contraseña ha sido encontrada en brechas de datos y ya no debe ser utilizada.",
|
|
720
|
-
"identities.messages.4000035": "Esta cuenta no existe o no tiene configurado el inicio de sesión con código.",
|
|
721
|
-
"identities.messages.4000036": "Las características proporcionadas no coinciden con las características previamente asociadas con este flujo.",
|
|
722
|
-
"identities.messages.4010001": "El flujo de inicio de sesión expiró hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
|
|
723
|
-
"identities.messages.4010002": "No se pudo encontrar una estrategia para iniciar sesión. ¿Llenó correctamente el formulario?",
|
|
724
|
-
"identities.messages.4010003": "No se pudo encontrar una estrategia para registrarse. ¿Llenó correctamente el formulario?",
|
|
725
|
-
"identities.messages.4010004": "No se pudo encontrar una estrategia para actualizar sus configuraciones. ¿Llenó correctamente el formulario?",
|
|
726
|
-
"identities.messages.4010005": "No se pudo encontrar una estrategia para recuperar su cuenta. ¿Llenó correctamente el formulario?",
|
|
727
|
-
"identities.messages.4010006": "No se pudo encontrar una estrategia para verificar su cuenta. ¿Llenó correctamente el formulario?",
|
|
728
|
-
"identities.messages.4010007": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
|
|
729
|
-
"identities.messages.4010008": "El código de inicio de sesión es inválido o ya ha sido utilizado. Por favor, intente nuevamente.",
|
|
730
|
-
"identities.messages.4040001": "El flujo de registro expiró hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
|
|
731
|
-
"identities.messages.4040002": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
|
|
732
|
-
"identities.messages.4040003": "El código de registro es inválido o ya ha sido utilizado. Por favor, intente nuevamente.",
|
|
733
|
-
"identities.messages.4050001": "El flujo de configuración expiró hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
|
|
734
|
-
"identities.messages.4060001": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
|
|
735
|
-
"identities.messages.4060002": "El flujo de recuperación alcanzó un estado de fallo y debe ser reintentado.",
|
|
736
|
-
"identities.messages.4060004": "El token de recuperación es inválido o ya ha sido utilizado. Por favor, reinicie el flujo.",
|
|
737
|
-
"identities.messages.4060005": "El flujo de recuperación expiró hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
|
|
738
|
-
"identities.messages.4060006": "El código de recuperación es inválido o ya ha sido utilizado. Por favor, intente nuevamente.",
|
|
739
|
-
"identities.messages.4070001": "El token de verificación es inválido o ya ha sido utilizado. Por favor, reinicie el flujo.",
|
|
740
|
-
"identities.messages.4070002": "La solicitud ya fue completada exitosamente y no puede ser reintentada.",
|
|
741
|
-
"identities.messages.4070003": "El flujo de verificación alcanzó un estado de fallo y debe ser reintentado.",
|
|
742
|
-
"identities.messages.4070005": "El flujo de verificación expiró hace {expired_at_unix_since_minutes} minutos, por favor intente nuevamente.",
|
|
743
|
-
"identities.messages.4070006": "El código de verificación es inválido o ya ha sido utilizado. Por favor, intente nuevamente.",
|
|
744
|
-
"identities.messages.5000001": "{reason}",
|
|
745
|
-
"login.forgot-password": "¿Olvidó su contraseña?",
|
|
746
|
-
"login.logged-in-as-label": "Ha iniciado sesión como:",
|
|
747
|
-
"login.logout-button": "Cerrar sesión",
|
|
748
|
-
"login.logout-label": "¿Algo no funciona correctamente?",
|
|
749
|
-
"login.registration-button": "Registrarse",
|
|
750
|
-
"login.registration-label": "¿No tiene una cuenta?",
|
|
751
|
-
"login.subtitle-oauth2": "Para autenticar a {clientName}",
|
|
752
|
-
"login.title": "Iniciar sesión",
|
|
753
|
-
"login.title-aal2": "Autenticación de Dos Factores",
|
|
754
|
-
"login.title-refresh": "Confirme que es usted",
|
|
755
|
-
"logout.accept-button": "Sí",
|
|
756
|
-
"logout.reject-button": "No",
|
|
757
|
-
"logout.title": "¿Desea cerrar sesión?",
|
|
758
|
-
"recovery.login-button": "Iniciar sesión",
|
|
759
|
-
"recovery.login-label": "¿Recuerda sus credenciales?",
|
|
760
|
-
"recovery.title": "Recuperar su cuenta",
|
|
761
|
-
"registration.login-button": "Iniciar sesión",
|
|
762
|
-
"registration.login-label": "¿Ya tiene una cuenta?",
|
|
763
|
-
"registration.subtitle-oauth2": "Para autenticar a {clientName}",
|
|
764
|
-
"registration.title": "Registrar una cuenta",
|
|
765
|
-
"settings.navigation-back-button": "Regresar",
|
|
766
|
-
"settings.navigation-backup-codes": "Códigos de Respaldo de 2FA",
|
|
767
|
-
"settings.navigation-logout": "Cerrar sesión",
|
|
768
|
-
"settings.navigation-oidc": "Inicio de Sesión Social",
|
|
769
|
-
"settings.navigation-password": "Contraseña",
|
|
770
|
-
"settings.navigation-profile": "Perfil",
|
|
771
|
-
"settings.navigation-totp": "Aplicación Autenticadora",
|
|
772
|
-
"settings.navigation-webauthn": "Tokens de Hardware",
|
|
773
|
-
"settings.navigation-passkey": "Passkeys",
|
|
774
|
-
"settings.subtitle-instructions": "Aquí puede gestionar las configuraciones relacionadas con su cuenta. Tenga en cuenta que ciertas acciones requieren que vuelva a autenticarse.",
|
|
775
|
-
"settings.title": "Configuraciones de la Cuenta",
|
|
776
|
-
"settings.title-lookup-secret": "Gestionar Códigos de Recuperación de Respaldo de 2FA",
|
|
777
|
-
"settings.title-navigation": "Configuraciones de la Cuenta",
|
|
778
|
-
"settings.title-oidc": "Inicio de Sesión Social",
|
|
779
|
-
"settings.title-password": "Cambiar Contraseña",
|
|
780
|
-
"settings.title-profile": "Configuraciones del Perfil",
|
|
781
|
-
"settings.title-totp": "Gestionar Aplicación Autenticadora de 2FA",
|
|
782
|
-
"settings.title-webauthn": "Gestionar Tokens de Hardware",
|
|
783
|
-
"settings.title-passkey": "Gestionar Passkeys",
|
|
784
|
-
"verification.registration-button": "Registrarse",
|
|
785
|
-
"verification.registration-label": "¿No tiene una cuenta?",
|
|
786
|
-
"verification.title": "Verificar su cuenta",
|
|
787
|
-
"verification.back-button": "Regresar",
|
|
788
|
-
"two-step.code.description": "Se enviará un código de verificación a tu correo electrónico.",
|
|
789
|
-
"two-step.code.title": "Código de correo electrónico",
|
|
790
|
-
"two-step.passkey.description": "Utiliza el reconocimiento de huellas dactilares o facial de tu dispositivo.",
|
|
791
|
-
"two-step.passkey.title": "Clave de acceso (recomendada)",
|
|
792
|
-
"two-step.password.description": "Ingrese la contraseña asociada con su cuenta",
|
|
793
|
-
"two-step.password.title": "Contraseña",
|
|
794
|
-
"two-step.webauthn.description": "Utiliza tu llave de seguridad para autenticarte",
|
|
795
|
-
"two-step.webauthn.title": "Clave de Seguridad",
|
|
796
|
-
"identities.messages.1010016": "",
|
|
797
|
-
"identities.messages.1010017": "",
|
|
798
|
-
"identities.messages.1010018": "",
|
|
799
|
-
"identities.messages.1010019": "",
|
|
800
|
-
"identities.messages.1010020": "",
|
|
801
|
-
"identities.messages.1010021": "",
|
|
802
|
-
"identities.messages.1010022": "",
|
|
803
|
-
"identities.messages.1010023": "",
|
|
804
|
-
"identities.messages.1040007": "",
|
|
805
|
-
"identities.messages.1040008": "",
|
|
806
|
-
"identities.messages.1040009": "",
|
|
807
|
-
"identities.messages.1050019": "",
|
|
808
|
-
"identities.messages.1050020": "",
|
|
809
|
-
"identities.messages.1070014": "",
|
|
810
|
-
"identities.messages.1070015": "",
|
|
811
|
-
"identities.messages.4000037": "",
|
|
812
|
-
"identities.messages.4000038": "",
|
|
813
|
-
"identities.messages.4010009": "",
|
|
814
|
-
"identities.messages.4010010": "",
|
|
815
|
-
"login.cancel-button": "",
|
|
816
|
-
"login.cancel-label": ""
|
|
817
|
-
};
|
|
116
|
+
/**
|
|
117
|
+
* Props type for the Form Group Divider component.
|
|
118
|
+
*/
|
|
119
|
+
type OryCardDividerProps = Record<string, never>;
|
|
120
|
+
/**
|
|
121
|
+
* Renders the @see Card.Divider between the groups of nodes in the Ory Form.
|
|
122
|
+
*
|
|
123
|
+
* You can use this component to build fully custom implementations of the Ory Flows.
|
|
124
|
+
*
|
|
125
|
+
* However, you most likely want to override the individual components instead.
|
|
126
|
+
*
|
|
127
|
+
* @returns
|
|
128
|
+
*/
|
|
129
|
+
declare function OryFormGroupDivider(): react_jsx_runtime.JSX.Element | null;
|
|
818
130
|
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
"consent.action-reject": "Refuser",
|
|
822
|
-
"consent.description": "N'accordez des permissions que si vous faites confiance à ce site ou à cette application. Vous n'avez pas besoin d'accepter toutes les permissions.",
|
|
823
|
-
"consent.privacy-policy-label": "Politique de confidentialité",
|
|
824
|
-
"consent.remember-label": "Mémoriser cette décision pour la prochaine fois. L'application ne pourra pas demander des permissions supplémentaires sans votre consentement.",
|
|
825
|
-
"consent.remember-tooltip": "mémoriser ma décision",
|
|
826
|
-
"consent.requested-permissions-label": "L'application demande l'accès aux permissions suivantes :",
|
|
827
|
-
"consent.terms-of-service-label": "Conditions d'utilisation",
|
|
828
|
-
"error.back-button": "Revenir en arrière",
|
|
829
|
-
"error.description": "Une erreur est survenue avec le message suivant :",
|
|
830
|
-
"error.support-email-link": "Si le problème persiste, veuillez contacter <a>{contactSupportEmail}</a>",
|
|
831
|
-
"error.title": "Une erreur est survenue",
|
|
832
|
-
"error.title-internal-server-error": "Erreur interne du serveur",
|
|
833
|
-
"error.title-not-found": "404 - Page non trouvée",
|
|
834
|
-
"identities.messages.1010001": "Se connecter",
|
|
835
|
-
"identities.messages.1010002": "Se connecter avec {provider}",
|
|
836
|
-
"identities.messages.1010003": "Veuillez confirmer cette action en vérifiant que c'est bien vous.",
|
|
837
|
-
"identities.messages.1010004": "Veuillez terminer le deuxième défi d'authentification.",
|
|
838
|
-
"identities.messages.1010005": "Vérifier",
|
|
839
|
-
"identities.messages.1010006": "Code d'authentification",
|
|
840
|
-
"identities.messages.1010007": "Code de récupération de secours",
|
|
841
|
-
"identities.messages.1010008": "Utiliser une clé de sécurité",
|
|
842
|
-
"identities.messages.1010009": "Utiliser un authentificateur",
|
|
843
|
-
"identities.messages.1010010": "Utiliser un code de récupération de secours",
|
|
844
|
-
"identities.messages.1010011": "Continuer avec la clé de sécurité",
|
|
845
|
-
"identities.messages.1010012": "Préparez votre appareil WebAuthn (par exemple, une clé de sécurité, un scanner biométrique, ...) et appuyez sur Continuer.",
|
|
846
|
-
"identities.messages.1010013": "Continuer",
|
|
847
|
-
"identities.messages.1010014": "Un e-mail contenant un code a été envoyé à l'adresse e-mail que vous avez fournie. Si vous n'avez pas reçu d'e-mail, vérifiez l'orthographe de l'adresse et réessayez la connexion.",
|
|
848
|
-
"identities.messages.1010015": "Se connecter avec un code",
|
|
849
|
-
"identities.messages.1040001": "S'inscrire",
|
|
850
|
-
"identities.messages.1040002": "S'inscrire avec {provider}",
|
|
851
|
-
"identities.messages.1040003": "Continuer",
|
|
852
|
-
"identities.messages.1040004": "S'inscrire avec une clé de sécurité",
|
|
853
|
-
"identities.messages.1040005": "Un e-mail contenant un code a été envoyé à l'adresse e-mail que vous avez fournie. Si vous n'avez pas reçu d'e-mail, vérifiez l'orthographe de l'adresse et réessayez l'inscription.",
|
|
854
|
-
"identities.messages.1040006": "S'inscrire avec un code",
|
|
855
|
-
"identities.messages.1050001": "Vos modifications ont été enregistrées avec succès !",
|
|
856
|
-
"identities.messages.1050002": "Lier {provider}",
|
|
857
|
-
"identities.messages.1050003": "Délier {provider}",
|
|
858
|
-
"identities.messages.1050004": "Délier l'application d'authentification TOTP",
|
|
859
|
-
"identities.messages.1050005": "Code QR de l'application d'authentification",
|
|
860
|
-
"identities.messages.1050006": "{secret}",
|
|
861
|
-
"identities.messages.1050007": "Afficher les codes de récupération de secours",
|
|
862
|
-
"identities.messages.1050008": "Générer de nouveaux codes de récupération de secours",
|
|
863
|
-
"identities.messages.1050009": "{secret}",
|
|
864
|
-
"identities.messages.1050010": "Ce sont vos codes de récupération de secours. Veuillez les conserver dans un endroit sûr !",
|
|
865
|
-
"identities.messages.1050011": "Confirmer les codes de récupération de secours",
|
|
866
|
-
"identities.messages.1050012": "Ajouter une clé de sécurité",
|
|
867
|
-
"identities.messages.1050013": "Nom de la clé de sécurité",
|
|
868
|
-
"identities.messages.1050014": "<del>Utilisé</del>",
|
|
869
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
870
|
-
"identities.messages.1050016": "Désactiver cette méthode",
|
|
871
|
-
"identities.messages.1050017": "Il s'agit de votre code secret de l'application d'authentification. Utilisez-le si vous ne pouvez pas scanner le code QR.",
|
|
872
|
-
"identities.messages.1050018": "Supprimer la clé de sécurité \"{display_name}\"",
|
|
873
|
-
"identities.messages.1060001": "Vous avez réussi à récupérer votre compte. Veuillez changer votre mot de passe ou configurer une méthode de connexion alternative (par exemple, une connexion sociale) dans les prochaines {privileged_session_expires_at_unix_until_minutes} minutes.",
|
|
874
|
-
"identities.messages.1060002": "Un e-mail contenant un lien de récupération a été envoyé à l'adresse e-mail que vous avez fournie. Si vous n'avez pas reçu d'e-mail, vérifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous êtes enregistré.",
|
|
875
|
-
"identities.messages.1060003": "Un e-mail contenant un code de récupération a été envoyé à l'adresse e-mail que vous avez fournie. Si vous n'avez pas reçu d'e-mail, vérifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous êtes enregistré.",
|
|
876
|
-
"identities.messages.1070001": "Mot de passe",
|
|
877
|
-
"identities.messages.1070002": "{title}",
|
|
878
|
-
"identities.messages.1070003": "Enregistrer",
|
|
879
|
-
"identities.messages.1070004": "ID",
|
|
880
|
-
"identities.messages.1070005": "Soumettre",
|
|
881
|
-
"identities.messages.1070006": "Vérifier le code",
|
|
882
|
-
"identities.messages.1070007": "E-mail",
|
|
883
|
-
"identities.messages.1070008": "Renvoyer le code",
|
|
884
|
-
"identities.messages.1070009": "Continuer",
|
|
885
|
-
"identities.messages.1070010": "Code de récupération",
|
|
886
|
-
"identities.messages.1070011": "Code de vérification",
|
|
887
|
-
"identities.messages.1070012": "Code d'inscription",
|
|
888
|
-
"identities.messages.1070013": "Code de connexion",
|
|
889
|
-
"identities.messages.1080001": "Un e-mail contenant un lien de vérification a été envoyé à l'adresse e-mail que vous avez fournie. Si vous n'avez pas reçu d'e-mail, vérifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous êtes enregistré.",
|
|
890
|
-
"identities.messages.1080002": "Vous avez réussi à vérifier votre adresse e-mail.",
|
|
891
|
-
"identities.messages.1080003": "Un e-mail contenant un code de vérification a été envoyé à l'adresse e-mail que vous avez fournie. Si vous n'avez pas reçu d'e-mail, vérifiez l'orthographe de l'adresse et assurez-vous d'utiliser l'adresse avec laquelle vous vous êtes enregistré.",
|
|
892
|
-
"identities.messages.4000001": "{reason}",
|
|
893
|
-
"identities.messages.4000002": "La propriété {property} est manquante.",
|
|
894
|
-
"identities.messages.4000003": "La longueur doit être >= {min_length}, mais a été {actual_length}",
|
|
895
|
-
"identities.messages.4000004": "Ne correspond pas au motif \"{pattern}\"",
|
|
896
|
-
"identities.messages.4000005": "Le mot de passe ne peut pas être utilisé en raison de {reason}.",
|
|
897
|
-
"identities.messages.4000006": "Les informations d'identification fournies sont invalides. Veuillez vérifier les fautes d'orthographe dans votre mot de passe ou nom d'utilisateur, adresse e-mail ou numéro de téléphone.",
|
|
898
|
-
"identities.messages.4000007": "Un compte avec le même identifiant (e-mail, téléphone, nom d'utilisateur, ...) existe déjà.",
|
|
899
|
-
"identities.messages.4000008": "Le code d'authentification fourni est invalide. Veuillez réessayer.",
|
|
900
|
-
"identities.messages.4000009": "Impossible de trouver des identifiants de connexion. Avez-vous oublié de les configurer ? Cela peut également être dû à une mauvaise configuration du serveur.",
|
|
901
|
-
"identities.messages.4000010": "Le compte n'est pas encore actif. Avez-vous oublié de vérifier votre adresse e-mail ?",
|
|
902
|
-
"identities.messages.4000011": "Vous n'avez pas configuré de dispositif TOTP.",
|
|
903
|
-
"identities.messages.4000012": "Ce code de récupération de secours a déjà été utilisé.",
|
|
904
|
-
"identities.messages.4000013": "Vous n'avez pas configuré de dispositif WebAuthn.",
|
|
905
|
-
"identities.messages.4000014": "Vous n'avez pas configuré de codes de récupération de secours.",
|
|
906
|
-
"identities.messages.4000015": "Ce compte n'existe pas ou n'a pas configuré de clé de sécurité.",
|
|
907
|
-
"identities.messages.4000016": "Le code de récupération de secours n'est pas valide.",
|
|
908
|
-
"identities.messages.4000017": "La longueur doit être <= {max_length}, mais a été {actual_length}",
|
|
909
|
-
"identities.messages.4000018": "Doit être >= {minimum} mais a été {actual}",
|
|
910
|
-
"identities.messages.4000019": "Doit être > {minimum} mais a été {actual}",
|
|
911
|
-
"identities.messages.4000020": "Doit être <= {maximum} mais a été {actual}",
|
|
912
|
-
"identities.messages.4000021": "Doit être < {maximum} mais a été {actual}",
|
|
913
|
-
"identities.messages.4000022": "{actual} n'est pas multiple de {base}",
|
|
914
|
-
"identities.messages.4000023": "Un maximum de {max_items} éléments est autorisé, mais {actual_items} éléments ont été trouvés",
|
|
915
|
-
"identities.messages.4000024": "Un minimum de {min_items} éléments est autorisé, mais {actual_items} éléments ont été trouvés",
|
|
916
|
-
"identities.messages.4000025": "Les éléments aux indices {index_a} et {index_b} sont égaux",
|
|
917
|
-
"identities.messages.4000026": "Les types autorisés étaient {allowed_types_list}, mais le type actuel est {actual_type}",
|
|
918
|
-
"identities.messages.4000027": "Un compte avec le même identifiant (e-mail, téléphone, nom d'utilisateur, ...) existe déjà. Veuillez vous connecter à votre compte existant et lier votre profil social dans la page des paramètres.",
|
|
919
|
-
"identities.messages.4000028": "Vous avez essayé de vous connecter avec {credential_identifier_hint} qui est déjà utilisé par un autre compte. Vous pouvez vous connecter en utilisant {available_credential_types_list}. Vous pouvez vous connecter en utilisant l'un des fournisseurs de connexion sociale suivants : {Available_oidc_providers_list}.",
|
|
920
|
-
"identities.messages.4000029": "Doit être égal à la constante {expected}",
|
|
921
|
-
"identities.messages.4000030": "Échec de la constante",
|
|
922
|
-
"identities.messages.4000031": "Le mot de passe ne peut pas être utilisé car il est trop similaire à l'identifiant.",
|
|
923
|
-
"identities.messages.4000032": "Le mot de passe doit comporter au moins {min_length} caractères, mais en comporte {actual_length}.",
|
|
924
|
-
"identities.messages.4000033": "Le mot de passe doit comporter au plus {max_length} caractères, mais en comporte {actual_length}.",
|
|
925
|
-
"identities.messages.4000034": "Le mot de passe a été trouvé dans des violations de données et ne doit plus être utilisé.",
|
|
926
|
-
"identities.messages.4000035": "Ce compte n'existe pas ou n'a pas configuré de connexion avec code.",
|
|
927
|
-
"identities.messages.4000036": "Les traits fournis ne correspondent pas aux traits associés précédemment à ce flux.",
|
|
928
|
-
"identities.messages.4010001": "Le flux de connexion a expiré il y a {expired_at_unix_since_minutes} minutes, veuillez réessayer.",
|
|
929
|
-
"identities.messages.4010002": "Impossible de trouver une stratégie pour vous connecter. Avez-vous rempli correctement le formulaire ?",
|
|
930
|
-
"identities.messages.4010003": "Impossible de trouver une stratégie pour vous inscrire. Avez-vous rempli correctement le formulaire ?",
|
|
931
|
-
"identities.messages.4010004": "Impossible de trouver une stratégie pour mettre à jour vos paramètres. Avez-vous rempli correctement le formulaire ?",
|
|
932
|
-
"identities.messages.4010005": "Impossible de trouver une stratégie pour récupérer votre compte. Avez-vous rempli correctement le formulaire ?",
|
|
933
|
-
"identities.messages.4010006": "Impossible de trouver une stratégie pour vérifier votre compte. Avez-vous rempli correctement le formulaire ?",
|
|
934
|
-
"identities.messages.4010007": "La demande a déjà été effectuée avec succès et ne peut pas être réessayée.",
|
|
935
|
-
"identities.messages.4010008": "Le code de connexion est invalide ou a déjà été utilisé. Veuillez réessayer.",
|
|
936
|
-
"identities.messages.4040001": "Le flux d'inscription a expiré il y a {expired_at_unix_since_minutes} minutes, veuillez réessayer.",
|
|
937
|
-
"identities.messages.4040002": "La demande a déjà été effectuée avec succès et ne peut pas être réessayée.",
|
|
938
|
-
"identities.messages.4040003": "Le code d'inscription est invalide ou a déjà été utilisé. Veuillez réessayer.",
|
|
939
|
-
"identities.messages.4050001": "Le flux de paramètres a expiré il y a {expired_at_unix_since_minutes} minutes, veuillez réessayer.",
|
|
940
|
-
"identities.messages.4060001": "La demande a déjà été effectuée avec succès et ne peut pas être réessayée.",
|
|
941
|
-
"identities.messages.4060002": "Le flux de récupération a atteint un état d'échec et doit être réessayé.",
|
|
942
|
-
"identities.messages.4060004": "Le jeton de récupération est invalide ou a déjà été utilisé. Veuillez réessayer le flux.",
|
|
943
|
-
"identities.messages.4060005": "Le flux de récupération a expiré il y a {expired_at_unix_since_minutes} minutes, veuillez réessayer.",
|
|
944
|
-
"identities.messages.4060006": "Le code de récupération est invalide ou a déjà été utilisé. Veuillez réessayer.",
|
|
945
|
-
"identities.messages.4070001": "Le jeton de vérification est invalide ou a déjà été utilisé. Veuillez réessayer le flux.",
|
|
946
|
-
"identities.messages.4070002": "La demande a déjà été effectuée avec succès et ne peut pas être réessayée.",
|
|
947
|
-
"identities.messages.4070003": "Le flux de vérification a atteint un état d'échec et doit être réessayé.",
|
|
948
|
-
"identities.messages.4070005": "Le flux de vérification a expiré il y a {expired_at_unix_since_minutes} minutes, veuillez réessayer.",
|
|
949
|
-
"identities.messages.4070006": "Le code de vérification est invalide ou a déjà été utilisé. Veuillez réessayer.",
|
|
950
|
-
"identities.messages.5000001": "{reason}",
|
|
951
|
-
"login.forgot-password": "Mot de passe oublié ?",
|
|
952
|
-
"login.logged-in-as-label": "Vous êtes connecté en tant que :",
|
|
953
|
-
"login.logout-button": "Déconnexion",
|
|
954
|
-
"login.logout-label": "Quelque chose ne fonctionne pas ?",
|
|
955
|
-
"login.registration-button": "S'inscrire",
|
|
956
|
-
"login.registration-label": "Vous n'avez pas de compte ?",
|
|
957
|
-
"login.subtitle-oauth2": "Pour vous authentifier sur {clientName}",
|
|
958
|
-
"login.title": "Se connecter",
|
|
959
|
-
"login.title-aal2": "Authentification à deux facteurs",
|
|
960
|
-
"login.title-refresh": "Confirmez que c'est bien vous",
|
|
961
|
-
"logout.accept-button": "Oui",
|
|
962
|
-
"logout.reject-button": "Non",
|
|
963
|
-
"logout.title": "Souhaitez-vous vous déconnecter ?",
|
|
964
|
-
"recovery.login-button": "Se connecter",
|
|
965
|
-
"recovery.login-label": "Vous souvenez-vous de vos informations d'identification ?",
|
|
966
|
-
"recovery.title": "Récupérer votre compte",
|
|
967
|
-
"registration.login-button": "Se connecter",
|
|
968
|
-
"registration.login-label": "Vous avez déjà un compte ?",
|
|
969
|
-
"registration.subtitle-oauth2": "Pour vous authentifier sur {clientName}",
|
|
970
|
-
"registration.title": "Créer un compte",
|
|
971
|
-
"settings.navigation-back-button": "Revenir en arrière",
|
|
972
|
-
"settings.navigation-backup-codes": "Codes de secours 2FA",
|
|
973
|
-
"settings.navigation-logout": "Déconnexion",
|
|
974
|
-
"settings.navigation-oidc": "Connexion sociale",
|
|
975
|
-
"settings.navigation-password": "Mot de passe",
|
|
976
|
-
"settings.navigation-profile": "Profil",
|
|
977
|
-
"settings.navigation-totp": "Application d'authentification TOTP",
|
|
978
|
-
"settings.navigation-webauthn": "Tokens matériels",
|
|
979
|
-
"settings.navigation-passkey": "Passkeys",
|
|
980
|
-
"settings.subtitle-instructions": "Ici, vous pouvez gérer les paramètres liés à votre compte. Gardez à l'esprit que certaines actions nécessitent une nouvelle authentification.",
|
|
981
|
-
"settings.title": "Paramètres du compte",
|
|
982
|
-
"settings.title-lookup-secret": "Gérer les codes de récupération 2FA",
|
|
983
|
-
"settings.title-navigation": "Paramètres du compte",
|
|
984
|
-
"settings.title-oidc": "Connexion sociale",
|
|
985
|
-
"settings.title-password": "Changer le mot de passe",
|
|
986
|
-
"settings.title-profile": "Paramètres de profil",
|
|
987
|
-
"settings.title-totp": "Gérer l'application d'authentification TOTP 2FA",
|
|
988
|
-
"settings.title-webauthn": "Gérer les tokens matériels",
|
|
989
|
-
"settings.title-passkey": "Gérer les Passkeys",
|
|
990
|
-
"verification.registration-button": "S'inscrire",
|
|
991
|
-
"verification.registration-label": "Vous n'avez pas de compte ?",
|
|
992
|
-
"verification.title": "Vérifiez votre compte",
|
|
993
|
-
"verification.back-button": "Revenir en arrière",
|
|
994
|
-
"two-step.code.description": "Un code de vérification sera envoyé à votre email",
|
|
995
|
-
"two-step.code.title": "Code de courrier électronique",
|
|
996
|
-
"two-step.passkey.description": "Utilisez l'appareil pour la reconnaissance d'empreintes digitales ou de visage",
|
|
997
|
-
"two-step.passkey.title": "Clé de passe (recommandée)",
|
|
998
|
-
"two-step.password.description": "Entrez votre mot de passe associé à votre compte",
|
|
999
|
-
"two-step.password.title": "Mot de passe",
|
|
1000
|
-
"two-step.webauthn.description": "Utilisez votre clé de sécurité pour vous authentifier",
|
|
1001
|
-
"two-step.webauthn.title": "Clé de Sécurité",
|
|
1002
|
-
"identities.messages.1010023": "",
|
|
1003
|
-
"identities.messages.1070015": "",
|
|
1004
|
-
"identities.messages.4000038": "",
|
|
1005
|
-
"login.cancel-button": "",
|
|
1006
|
-
"login.cancel-label": "",
|
|
1007
|
-
"identities.messages.1010016": "",
|
|
1008
|
-
"identities.messages.1010017": "",
|
|
1009
|
-
"identities.messages.1010018": "",
|
|
1010
|
-
"identities.messages.1010019": "",
|
|
1011
|
-
"identities.messages.1010020": "",
|
|
1012
|
-
"identities.messages.1010021": "",
|
|
1013
|
-
"identities.messages.1010022": "",
|
|
1014
|
-
"identities.messages.1040007": "",
|
|
1015
|
-
"identities.messages.1040008": "",
|
|
1016
|
-
"identities.messages.1040009": "",
|
|
1017
|
-
"identities.messages.1050019": "",
|
|
1018
|
-
"identities.messages.1050020": "",
|
|
1019
|
-
"identities.messages.1070014": "",
|
|
1020
|
-
"identities.messages.4000037": "",
|
|
1021
|
-
"identities.messages.4010009": "",
|
|
1022
|
-
"identities.messages.4010010": ""
|
|
1023
|
-
};
|
|
131
|
+
type OryPageHeaderProps = Record<never, never>;
|
|
132
|
+
declare const HeadlessPageHeader: () => react_jsx_runtime.JSX.Element;
|
|
1024
133
|
|
|
1025
|
-
|
|
1026
|
-
"consent.action-accept": "Toestaan",
|
|
1027
|
-
"consent.action-reject": "Weigeren",
|
|
1028
|
-
"consent.description": "Verleen alleen toestemming als u deze site of app vertrouwt. U hoeft niet alle toestemmingen te accepteren.",
|
|
1029
|
-
"consent.privacy-policy-label": "Privacybeleid",
|
|
1030
|
-
"consent.remember-label": "Onthoud deze beslissing voor de volgende keer. De toepassing kan geen aanvullende toestemming vragen zonder uw toestemming.",
|
|
1031
|
-
"consent.remember-tooltip": "Onthoud mijn beslissing",
|
|
1032
|
-
"consent.requested-permissions-label": "De toepassing vraagt toegang tot de volgende toestemmingen:",
|
|
1033
|
-
"consent.terms-of-service-label": "Gebruiksvoorwaarden",
|
|
1034
|
-
"error.back-button": "Ga terug",
|
|
1035
|
-
"error.description": "Er is een fout opgetreden met de volgende melding:",
|
|
1036
|
-
"error.support-email-link": "Als het probleem aanhoudt, neem dan contact op met <a>{contactSupportEmail}</a>",
|
|
1037
|
-
"error.title": "Er is een fout opgetreden",
|
|
1038
|
-
"error.title-internal-server-error": "Interne serverfout",
|
|
1039
|
-
"error.title-not-found": "404 - Pagina niet gevonden",
|
|
1040
|
-
"identities.messages.1010001": "Aanmelden",
|
|
1041
|
-
"identities.messages.1010002": "Aanmelden met {provider}",
|
|
1042
|
-
"identities.messages.1010003": "Bevestig deze actie door te verifiëren dat u het bent.",
|
|
1043
|
-
"identities.messages.1010004": "Voltooi alstublieft de tweede authenticatie-uitdaging.",
|
|
1044
|
-
"identities.messages.1010005": "Verifiëren",
|
|
1045
|
-
"identities.messages.1010006": "Verificatiecode",
|
|
1046
|
-
"identities.messages.1010007": "Back-up herstelcode",
|
|
1047
|
-
"identities.messages.1010008": "Beveiligingssleutel gebruiken",
|
|
1048
|
-
"identities.messages.1010009": "Authenticator gebruiken",
|
|
1049
|
-
"identities.messages.1010010": "Back-up herstelcode gebruiken",
|
|
1050
|
-
"identities.messages.1010011": "Doorgaan met beveiligingssleutel",
|
|
1051
|
-
"identities.messages.1010012": "Bereid uw WebAuthn-apparaat voor (bijv. beveiligingssleutel, biometrische scanner, ...) en druk op doorgaan.",
|
|
1052
|
-
"identities.messages.1010013": "Doorgaan",
|
|
1053
|
-
"identities.messages.1010014": "Er is een e-mail met een code verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het adres en probeer opnieuw in te loggen.",
|
|
1054
|
-
"identities.messages.1010015": "Aanmelden met code",
|
|
1055
|
-
"identities.messages.1040001": "Registreren",
|
|
1056
|
-
"identities.messages.1040002": "Registreren met {provider}",
|
|
1057
|
-
"identities.messages.1040003": "Doorgaan",
|
|
1058
|
-
"identities.messages.1040004": "Registreren met beveiligingssleutel",
|
|
1059
|
-
"identities.messages.1040005": "Er is een e-mail met een code verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het adres en probeer opnieuw te registreren.",
|
|
1060
|
-
"identities.messages.1040006": "Registreren met code",
|
|
1061
|
-
"identities.messages.1050001": "Uw wijzigingen zijn opgeslagen!",
|
|
1062
|
-
"identities.messages.1050002": "Koppelen aan {provider}",
|
|
1063
|
-
"identities.messages.1050003": "Ontkoppelen van {provider}",
|
|
1064
|
-
"identities.messages.1050004": "Ontkoppelen van TOTP Authenticator-app",
|
|
1065
|
-
"identities.messages.1050005": "QR-code voor Authenticator-app",
|
|
1066
|
-
"identities.messages.1050006": "{secret}",
|
|
1067
|
-
"identities.messages.1050007": "Toon back-up herstelcodes",
|
|
1068
|
-
"identities.messages.1050008": "Nieuwe back-up herstelcodes genereren",
|
|
1069
|
-
"identities.messages.1050009": "{secret}",
|
|
1070
|
-
"identities.messages.1050010": "Dit zijn uw back-up herstelcodes. Bewaar ze op een veilige plaats!",
|
|
1071
|
-
"identities.messages.1050011": "Bevestig back-up herstelcodes",
|
|
1072
|
-
"identities.messages.1050012": "Beveiligingssleutel toevoegen",
|
|
1073
|
-
"identities.messages.1050013": "Naam van de beveiligingssleutel",
|
|
1074
|
-
"identities.messages.1050014": "<del>Gebruikt</del>",
|
|
1075
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
1076
|
-
"identities.messages.1050016": "Deze methode uitschakelen",
|
|
1077
|
-
"identities.messages.1050017": "Dit is uw geheime Authenticator-app. Gebruik het als u de QR-code niet kunt scannen.",
|
|
1078
|
-
"identities.messages.1050018": "Beveiligingssleutel verwijderen \"{display_name}\"",
|
|
1079
|
-
"identities.messages.1060001": "U heeft met succes uw account hersteld. Wijzig alstublieft uw wachtwoord of stel een alternatieve aanmeldingsmethode in (bijv. sociale aanmelding) binnen de komende {privileged_session_expires_at_unix_until_minutes} minuten.",
|
|
1080
|
-
"identities.messages.1060002": "Er is een e-mail met een herstelkoppeling verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat u het e-mailadres gebruikt waarmee u zich heeft geregistreerd.",
|
|
1081
|
-
"identities.messages.1060003": "Er is een e-mail met een herstelcode verzonden naar het opgegeven e-mailadres. Als u geen e-mail heeft ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat u het e-mailadres gebruikt waarmee u zich heeft geregistreerd.",
|
|
1082
|
-
"identities.messages.1070001": "Wachtwoord",
|
|
1083
|
-
"identities.messages.1070002": "{title}",
|
|
1084
|
-
"identities.messages.1070003": "Opslaan",
|
|
1085
|
-
"identities.messages.1070004": "ID",
|
|
1086
|
-
"identities.messages.1070005": "Verzenden",
|
|
1087
|
-
"identities.messages.1070006": "Verificatiecode controleren",
|
|
1088
|
-
"identities.messages.1070007": "E-mail",
|
|
1089
|
-
"identities.messages.1070008": "Code opnieuw verzenden",
|
|
1090
|
-
"identities.messages.1070009": "Doorgaan",
|
|
1091
|
-
"identities.messages.1070010": "Herstelcode",
|
|
1092
|
-
"identities.messages.1070011": "Verificatiecode",
|
|
1093
|
-
"identities.messages.1070012": "Registratiecode",
|
|
1094
|
-
"identities.messages.1070013": "Aanmeldingscode",
|
|
1095
|
-
"identities.messages.1080001": "Er is een e-mail met een verificatielink naar het opgegeven e-mailadres gestuurd. Als je geen e-mail hebt ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat je het e-mailadres hebt gebruikt waarmee je hebt geregistreerd.",
|
|
1096
|
-
"identities.messages.1080002": "Je hebt succesvol je e-mailadres geverifieerd.",
|
|
1097
|
-
"identities.messages.1080003": "Er is een e-mail met een verificatiecode naar het opgegeven e-mailadres gestuurd. Als je geen e-mail hebt ontvangen, controleer dan de spelling van het e-mailadres en zorg ervoor dat je het e-mailadres hebt gebruikt waarmee je hebt geregistreerd.",
|
|
1098
|
-
"identities.messages.4000001": "{reason}",
|
|
1099
|
-
"identities.messages.4000002": "Eigenschap {property} ontbreekt.",
|
|
1100
|
-
"identities.messages.4000003": "lengte moet >= {min_length} zijn, maar is {actual_length}",
|
|
1101
|
-
"identities.messages.4000004": "komt niet overeen met patroon \"{pattern}\"",
|
|
1102
|
-
"identities.messages.4000005": "Het wachtwoord kan niet worden gebruikt vanwege {reason}.",
|
|
1103
|
-
"identities.messages.4000006": "De verstrekte referenties zijn ongeldig, controleer op typefouten in je wachtwoord of gebruikersnaam, e-mailadres of telefoonnummer.",
|
|
1104
|
-
"identities.messages.4000007": "Er bestaat al een account met dezelfde identificatiegegevens (e-mail, telefoon, gebruikersnaam, ...).",
|
|
1105
|
-
"identities.messages.4000008": "De verstrekte verificatiecode is ongeldig, probeer het opnieuw.",
|
|
1106
|
-
"identities.messages.4000009": "Kon geen aanmeldingsidentificatoren vinden. Ben je ze vergeten in te stellen? Dit kan ook worden veroorzaakt door een servermisconfiguratie.",
|
|
1107
|
-
"identities.messages.4000010": "Account nog niet actief. Ben je vergeten je e-mailadres te verifiëren?",
|
|
1108
|
-
"identities.messages.4000011": "Je hebt geen TOTP-apparaat ingesteld.",
|
|
1109
|
-
"identities.messages.4000012": "Deze herstelcode is al gebruikt.",
|
|
1110
|
-
"identities.messages.4000013": "Je hebt geen WebAuthn-apparaat ingesteld.",
|
|
1111
|
-
"identities.messages.4000014": "Je hebt geen herstelcodes ingesteld.",
|
|
1112
|
-
"identities.messages.4000015": "Dit account bestaat niet of heeft geen beveiligingssleutel ingesteld.",
|
|
1113
|
-
"identities.messages.4000016": "De herstelcode is niet geldig.",
|
|
1114
|
-
"identities.messages.4000017": "lengte moet <= {max_length} zijn, maar is {actual_length}",
|
|
1115
|
-
"identities.messages.4000018": "moet >= {minimum} zijn, maar is {actual}",
|
|
1116
|
-
"identities.messages.4000019": "moet > {minimum} zijn, maar is {actual}",
|
|
1117
|
-
"identities.messages.4000020": "moet <= {maximum} zijn, maar is {actual}",
|
|
1118
|
-
"identities.messages.4000021": "moet < {maximum} zijn, maar is {actual}",
|
|
1119
|
-
"identities.messages.4000022": "{actual} is geen veelvoud van {base}",
|
|
1120
|
-
"identities.messages.4000023": "maximaal {max_items} items toegestaan, maar er zijn {actual_items} items gevonden",
|
|
1121
|
-
"identities.messages.4000024": "minimaal {min_items} items toegestaan, maar er zijn {actual_items} items gevonden",
|
|
1122
|
-
"identities.messages.4000025": "items op index {index_a} en {index_b} zijn gelijk",
|
|
1123
|
-
"identities.messages.4000026": "verwacht {allowed_types_list}, maar kreeg {actual_type}",
|
|
1124
|
-
"identities.messages.4000027": "Er bestaat al een account met dezelfde identificatiegegevens (e-mail, telefoon, gebruikersnaam, ...). Meld je aan bij je bestaande account en koppel je sociale profiel in de instellingenpagina.",
|
|
1125
|
-
"identities.messages.4000028": "Je hebt geprobeerd in te loggen met {credential_identifier_hint}, dat al wordt gebruikt door een ander account. Je kunt inloggen met {available_credential_types_list}. Je kunt inloggen met een van de volgende sociale aanmeldingsproviders: {Available_oidc_providers_list}.",
|
|
1126
|
-
"identities.messages.4000029": "moet gelijk zijn aan constante {expected}",
|
|
1127
|
-
"identities.messages.4000030": "constante mislukt",
|
|
1128
|
-
"identities.messages.4000031": "Het wachtwoord kan niet worden gebruikt omdat het te veel lijkt op de identificatiegegevens.",
|
|
1129
|
-
"identities.messages.4000032": "Het wachtwoord moet minstens {min_length} tekens lang zijn, maar is {actual_length}.",
|
|
1130
|
-
"identities.messages.4000033": "Het wachtwoord mag hoogstens {max_length} tekens lang zijn, maar is {actual_length}.",
|
|
1131
|
-
"identities.messages.4000034": "Het wachtwoord is gevonden in datalekken en mag niet langer worden gebruikt.",
|
|
1132
|
-
"identities.messages.4000035": "Dit account bestaat niet of heeft geen aanmelding met code ingesteld.",
|
|
1133
|
-
"identities.messages.4000036": "De verstrekte kenmerken komen niet overeen met de eerder geassocieerde kenmerken met deze stroom.",
|
|
1134
|
-
"identities.messages.4010001": "De aanmeldingsstroom is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
|
|
1135
|
-
"identities.messages.4010002": "Kon geen strategie vinden om mee in te loggen. Heb je het formulier correct ingevuld?",
|
|
1136
|
-
"identities.messages.4010003": "Kon geen strategie vinden om je mee aan te melden. Heb je het formulier correct ingevuld?",
|
|
1137
|
-
"identities.messages.4010004": "Kon geen strategie vinden om je instellingen bij te werken. Heb je het formulier correct ingevuld?",
|
|
1138
|
-
"identities.messages.4010005": "Kon geen strategie vinden om je account mee te herstellen. Heb je het formulier correct ingevuld?",
|
|
1139
|
-
"identities.messages.4010006": "Kon geen strategie vinden om je account mee te verifiëren. Heb je het formulier correct ingevuld?",
|
|
1140
|
-
"identities.messages.4010007": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
|
|
1141
|
-
"identities.messages.4010008": "De aanmeldingscode is ongeldig of is al gebruikt. Probeer het opnieuw.",
|
|
1142
|
-
"identities.messages.4040001": "De registratie flowis verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
|
|
1143
|
-
"identities.messages.4040002": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
|
|
1144
|
-
"identities.messages.4040003": "De registratiecode is ongeldig of is al gebruikt. Probeer het opnieuw.",
|
|
1145
|
-
"identities.messages.4050001": "De instellingen flow is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
|
|
1146
|
-
"identities.messages.4060001": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
|
|
1147
|
-
"identities.messages.4060002": "De herstel flow heeft een fout bereikt en moet opnieuw worden geprobeerd.",
|
|
1148
|
-
"identities.messages.4060004": "De hersteltoken is ongeldig of is al gebruikt. Probeer de flow opnieuw.",
|
|
1149
|
-
"identities.messages.4060005": "De herstel flow is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
|
|
1150
|
-
"identities.messages.4060006": "De herstelcode is ongeldig of is al gebruikt. Probeer het opnieuw.",
|
|
1151
|
-
"identities.messages.4070001": "De verificatietoken is ongeldig of is al gebruikt. Probeer de flow opnieuw.",
|
|
1152
|
-
"identities.messages.4070002": "Het verzoek is al met succes voltooid en kan niet opnieuw worden geprobeerd.",
|
|
1153
|
-
"identities.messages.4070003": "De verificatie flow heeft een fout bereikt en moet opnieuw worden geprobeerd.",
|
|
1154
|
-
"identities.messages.4070005": "De verificatie flow is verlopen {expired_at_unix_since_minutes} minuten geleden, probeer het opnieuw.",
|
|
1155
|
-
"identities.messages.4070006": "De verificatiecode is ongeldig of is al gebruikt. Probeer het opnieuw.",
|
|
1156
|
-
"identities.messages.5000001": "{reason}",
|
|
1157
|
-
"login.forgot-password": "Wachtwoord vergeten?",
|
|
1158
|
-
"login.logged-in-as-label": "Je bent ingelogd als:",
|
|
1159
|
-
"login.logout-button": "Uitloggen",
|
|
1160
|
-
"login.logout-label": "Er is iets mis?",
|
|
1161
|
-
"login.registration-button": "Registreren",
|
|
1162
|
-
"login.registration-label": "Heb je nog geen account?",
|
|
1163
|
-
"login.subtitle-oauth2": "Om te authenticeren bij {clientName}",
|
|
1164
|
-
"login.title": "Inloggen",
|
|
1165
|
-
"login.title-aal2": "Twee-Factor Authenticatie",
|
|
1166
|
-
"login.title-refresh": "Bevestig dat jij het bent",
|
|
1167
|
-
"logout.accept-button": "Ja",
|
|
1168
|
-
"logout.reject-button": "Nee",
|
|
1169
|
-
"logout.title": "Wil je uitloggen?",
|
|
1170
|
-
"recovery.login-button": "Inloggen",
|
|
1171
|
-
"recovery.login-label": "Herinner je je inloggegevens?",
|
|
1172
|
-
"recovery.title": "Herstel je account",
|
|
1173
|
-
"registration.login-button": "Inloggen",
|
|
1174
|
-
"registration.login-label": "Heb je al een account?",
|
|
1175
|
-
"registration.subtitle-oauth2": "Om te authenticeren bij {clientName}",
|
|
1176
|
-
"registration.title": "Registreer een account",
|
|
1177
|
-
"settings.navigation-back-button": "Ga terug",
|
|
1178
|
-
"settings.navigation-backup-codes": "2FA Backupcodes",
|
|
1179
|
-
"settings.navigation-logout": "Uitloggen",
|
|
1180
|
-
"settings.navigation-oidc": "Sociaal Inloggen",
|
|
1181
|
-
"settings.navigation-password": "Wachtwoord",
|
|
1182
|
-
"settings.navigation-profile": "Profiel",
|
|
1183
|
-
"settings.navigation-totp": "Authenticator App",
|
|
1184
|
-
"settings.navigation-webauthn": "Hardware Tokens",
|
|
1185
|
-
"settings.navigation-passkey": "Passkeys",
|
|
1186
|
-
"settings.subtitle-instructions": "Hier kun je instellingen beheren die verband houden met je account. Houd er rekening mee dat bepaalde acties vereisen dat je opnieuw wordt geauthenticeerd.",
|
|
1187
|
-
"settings.title": "Accountinstellingen",
|
|
1188
|
-
"settings.title-lookup-secret": "Beheer 2FA Backup Herstelcodes",
|
|
1189
|
-
"settings.title-navigation": "Accountinstellingen",
|
|
1190
|
-
"settings.title-oidc": "Sociaal Inloggen",
|
|
1191
|
-
"settings.title-password": "Wachtwoord wijzigen",
|
|
1192
|
-
"settings.title-profile": "Profielinstellingen",
|
|
1193
|
-
"settings.title-totp": "Beheer 2FA TOTP Authenticator App",
|
|
1194
|
-
"settings.title-webauthn": "Beheer Hardware Tokens",
|
|
1195
|
-
"settings.title-passkey": "Beheer Passkeys",
|
|
1196
|
-
"verification.registration-button": "Registreren",
|
|
1197
|
-
"verification.registration-label": "Heb je nog geen account?",
|
|
1198
|
-
"verification.title": "Verifieer je account",
|
|
1199
|
-
"verification.back-button": "Ga terug",
|
|
1200
|
-
"two-step.code.description": "Een verificatiecode wordt naar uw e-mail gestuurd",
|
|
1201
|
-
"two-step.code.title": "E-mailcode",
|
|
1202
|
-
"two-step.passkey.description": "Gebruik de vingerafdruk- of gezichtsherkenning van uw apparaat",
|
|
1203
|
-
"two-step.passkey.title": "Toegangscode (aanbevolen)",
|
|
1204
|
-
"two-step.password.description": "Voer uw wachtwoord in dat is gekoppeld aan uw account",
|
|
1205
|
-
"two-step.password.title": "Wachtwoord",
|
|
1206
|
-
"two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifiëren",
|
|
1207
|
-
"two-step.webauthn.title": "Beveiligingssleutel",
|
|
1208
|
-
"identities.messages.1010023": "",
|
|
1209
|
-
"identities.messages.1070014": "",
|
|
1210
|
-
"identities.messages.1070015": "",
|
|
1211
|
-
"identities.messages.4000038": "",
|
|
1212
|
-
"login.cancel-button": "",
|
|
1213
|
-
"login.cancel-label": "",
|
|
1214
|
-
"identities.messages.1010016": "",
|
|
1215
|
-
"identities.messages.1010017": "",
|
|
1216
|
-
"identities.messages.1010018": "",
|
|
1217
|
-
"identities.messages.1010019": "",
|
|
1218
|
-
"identities.messages.1010020": "",
|
|
1219
|
-
"identities.messages.1010021": "",
|
|
1220
|
-
"identities.messages.1010022": "",
|
|
1221
|
-
"identities.messages.1040007": "",
|
|
1222
|
-
"identities.messages.1040008": "",
|
|
1223
|
-
"identities.messages.1040009": "",
|
|
1224
|
-
"identities.messages.1050019": "",
|
|
1225
|
-
"identities.messages.1050020": "",
|
|
1226
|
-
"identities.messages.4000037": "",
|
|
1227
|
-
"identities.messages.4010009": "",
|
|
1228
|
-
"identities.messages.4010010": ""
|
|
1229
|
-
};
|
|
134
|
+
declare function OrySettingsCard(): react_jsx_runtime.JSX.Element;
|
|
1230
135
|
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
"consent.remember-tooltip": "zapamiętaj moją decyzję",
|
|
1238
|
-
"consent.requested-permissions-label": "Aplikacja żąda dostępu do następujących uprawnień:",
|
|
1239
|
-
"consent.terms-of-service-label": "Warunki świadczenia usług",
|
|
1240
|
-
"error.back-button": "Cofnij",
|
|
1241
|
-
"error.description": "Wystąpił błąd z następującym komunikatem:",
|
|
1242
|
-
"error.support-email-link": "Jeżeli problem nie ustępuje skontaktuj się z <a>{contactSupportEmail}</a>",
|
|
1243
|
-
"error.title": "Wystąpił błąd",
|
|
1244
|
-
"error.title-internal-server-error": "Wewnętrzny błąd serwera",
|
|
1245
|
-
"error.title-not-found": "404 - Nie odnaleziono takiej strony",
|
|
1246
|
-
"identities.messages.1010001": "Zaloguj się",
|
|
1247
|
-
"identities.messages.1010002": "Zaloguj się za pomocą {provider}",
|
|
1248
|
-
"identities.messages.1010003": "Potwierdź tę czynność, potwierdzając, że to Ty.",
|
|
1249
|
-
"identities.messages.1010004": "Ukończ drugi etap uwierzytelnienia.",
|
|
1250
|
-
"identities.messages.1010005": "Zweryifkuj",
|
|
1251
|
-
"identities.messages.1010006": "Kod autentykacyjny",
|
|
1252
|
-
"identities.messages.1010007": "Zapasowe kody odzyskiwania",
|
|
1253
|
-
"identities.messages.1010008": "Użyj klucza bezpieczeństwa",
|
|
1254
|
-
"identities.messages.1010009": "Użyj Autentykatora",
|
|
1255
|
-
"identities.messages.1010010": "Użyj zapasowych kodów odzyskiwania",
|
|
1256
|
-
"identities.messages.1010011": "Kontynuuj za pomocą klucza bezpieczeństwa",
|
|
1257
|
-
"identities.messages.1010012": "Przygotuj swoje urządzenie WebAuthn (np. klucz bezpieczeństwa, czytnik biometryczny, ...) a następnie kliknij kontynuuj.",
|
|
1258
|
-
"identities.messages.1010013": "Kontynuuj",
|
|
1259
|
-
"identities.messages.1010014": "Email zawierający kod został wysłany na wskazany adres email. Jeżeli nie otrzymasz wiadomości to sprawdź pisownię adresu i spróbuj zalogować się ponownie.",
|
|
1260
|
-
"identities.messages.1010015": "Zaloguj się kodem",
|
|
1261
|
-
"identities.messages.1040001": "Zarejestruj się",
|
|
1262
|
-
"identities.messages.1040002": "Zarejestruj się za pomocą {provider}",
|
|
1263
|
-
"identities.messages.1040003": "Kontynuuj",
|
|
1264
|
-
"identities.messages.1040004": "Zarejestruj się kluczem bezpieczeństwa",
|
|
1265
|
-
"identities.messages.1040005": "Email zawierający kod został wysłany na wskazany adres email. Jeżeli nie otrzymasz wiadomości to sprawdź pisownię adresu i ponów rejestrację.",
|
|
1266
|
-
"identities.messages.1040006": "Zarejestruj się kodem",
|
|
1267
|
-
"identities.messages.1050001": "Twoje zmiany zostały zapisane!",
|
|
1268
|
-
"identities.messages.1050002": "Połącz {provider}",
|
|
1269
|
-
"identities.messages.1050003": "Odłącz {provider}",
|
|
1270
|
-
"identities.messages.1050004": "Odłącz Apikację Autentykator TOTP",
|
|
1271
|
-
"identities.messages.1050005": "Kod QR aplikacji Autentykator",
|
|
1272
|
-
"identities.messages.1050006": "{secret}",
|
|
1273
|
-
"identities.messages.1050007": "Pokaż zapasowe kody odzyskiwania",
|
|
1274
|
-
"identities.messages.1050008": "Wygeneruj nowe zapasowe kody odzyskiwania",
|
|
1275
|
-
"identities.messages.1050009": "{secret}",
|
|
1276
|
-
"identities.messages.1050010": "To są Twoje zapasowe kody odzyskiwania. Trzymaj je w bezpiecznym miejscu!",
|
|
1277
|
-
"identities.messages.1050011": "Potwierdź zapasowe kody odzyskiwania",
|
|
1278
|
-
"identities.messages.1050012": "Dodaj klucz bezpieczeństwa",
|
|
1279
|
-
"identities.messages.1050013": "Nazwa klucza bezpieczeństwa",
|
|
1280
|
-
"identities.messages.1050014": "<del>Wykorzystany</del>",
|
|
1281
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
1282
|
-
"identities.messages.1050016": "Wyłącz tą metodę",
|
|
1283
|
-
"identities.messages.1050017": "To jest sekret twojej aplikacji autentykator. Użyj go jeżeli nie możesz zeskanować kodu QR.",
|
|
1284
|
-
"identities.messages.1050018": "Usuń klucz bezpieczeństwa \"{display_name}\"",
|
|
1285
|
-
"identities.messages.1060001": "Pomyślnie odzyskałeś swoje konto. Proszę zmień swoję hasło lub ustanowić alternatywną methodę logowania (np. logowanie zewnętrzne) w ciągu najbliższych {privileged_session_expires_at_unix_until_minutes} minut.",
|
|
1286
|
-
"identities.messages.1060002": "Email zawierający link odzyskiwania został wysłany na wskazany adres email. Jeżeli nie otrzymasz wiadomości to sprawdź pisownię adresu i upewnij się że używasz adresu użytego do rejestracji.",
|
|
1287
|
-
"identities.messages.1060003": "Email zawierający kod odzyskiwania został wysłany na wskazany adres email. Jeżeli nie otrzymasz wiadomości to sprawdź pisownię adresu i upewnij się że używasz adresu użytego do rejestracji.",
|
|
1288
|
-
"identities.messages.1070001": "Hasło",
|
|
1289
|
-
"identities.messages.1070002": "{title}",
|
|
1290
|
-
"identities.messages.1070003": "Zapisz",
|
|
1291
|
-
"identities.messages.1070004": "ID",
|
|
1292
|
-
"identities.messages.1070005": "Wyślij",
|
|
1293
|
-
"identities.messages.1070006": "Zweryfikuj kod",
|
|
1294
|
-
"identities.messages.1070007": "Email",
|
|
1295
|
-
"identities.messages.1070008": "Wyślij kod ponownie",
|
|
1296
|
-
"identities.messages.1070009": "Kontynuuj",
|
|
1297
|
-
"identities.messages.1070010": "Kod odzyskiwania",
|
|
1298
|
-
"identities.messages.1070011": "Kod weryfikacyjny",
|
|
1299
|
-
"identities.messages.1070012": "Kod rejestracji",
|
|
1300
|
-
"identities.messages.1070013": "Kod logowania",
|
|
1301
|
-
"identities.messages.1080001": "Email zawierający link weryfikacyjny został wysłany na wskazany adres email. Jeżeli nie otrzymasz wiadomości to sprawdź pisownię adresu i upewnij się że używasz adresu użytego do rejestracji.",
|
|
1302
|
-
"identities.messages.1080002": "Poprawnie zweryfikowano adres email.",
|
|
1303
|
-
"identities.messages.1080003": "Email zawierający kod weryfikacyjny został wysłany na wskazany adres email. Jeżeli nie otrzymasz wiadomości to sprawdź pisownię adresu i upewnij się że używasz adresu użytego do rejestracji.",
|
|
1304
|
-
"identities.messages.4000001": "{reason}",
|
|
1305
|
-
"identities.messages.4000002": "Brakuje pola {property}.",
|
|
1306
|
-
"identities.messages.4000003": "długość musi być >= {min_length}, otrzymano {actual_length}",
|
|
1307
|
-
"identities.messages.4000004": "nie pasuje do wzoru \"{pattern}\"",
|
|
1308
|
-
"identities.messages.4000005": "Hasło nie może być użyte ponieważ {reason}.",
|
|
1309
|
-
"identities.messages.4000006": "Podane poświadczenia są nieprawidłowe, sprawdź czy nie ma literówek w twoim haśle, nazwie użytkownika, adresie email lub numerze telefonu.",
|
|
1310
|
-
"identities.messages.4000007": "Istnieje już konto o takim samym identyfikatorze (email, telefon, nazwa użytkownika, ...).",
|
|
1311
|
-
"identities.messages.4000008": "Podany kod autentykacyjny jest nieprawidłowy, spróbuj ponownie.",
|
|
1312
|
-
"identities.messages.4000009": "Nie odnaleziono żadnych identyfikatorów logowania. Czy zapomniałeś je ustawić? Może też być to spowodowane nieprawidłową konfiguracją serwera.",
|
|
1313
|
-
"identities.messages.4000010": "Konto nie jest jeszcze aktywne. Czy zapomniałeś/łaś zweryfikować swój adres email?",
|
|
1314
|
-
"identities.messages.4000011": "Nie ustanowiono urządzenia TOTP.",
|
|
1315
|
-
"identities.messages.4000012": "Ten kod odzyskiwania jest już wykorzystany.",
|
|
1316
|
-
"identities.messages.4000013": "Nie ustanowiono urządzenia WebAuthn.",
|
|
1317
|
-
"identities.messages.4000014": "Nie ustanowiono kodów odzyskiwania.",
|
|
1318
|
-
"identities.messages.4000015": "To konto nie istnieje lub nie zezwala na logowanie kluczem odzyskiwania.",
|
|
1319
|
-
"identities.messages.4000016": "Kod odzyskiwania jest nieprawidłowy.",
|
|
1320
|
-
"identities.messages.4000017": "długośc musi być <= {max_length}, otrzymano {actual_length}",
|
|
1321
|
-
"identities.messages.4000018": "musi być >= {minimum} otrzymano {actual}",
|
|
1322
|
-
"identities.messages.4000019": "musi być > {minimum} otrzymano {actual}",
|
|
1323
|
-
"identities.messages.4000020": "musi być <= {maximum} otrzymano {actual}",
|
|
1324
|
-
"identities.messages.4000021": "musi być < {maximum} otrzymano {actual}",
|
|
1325
|
-
"identities.messages.4000022": "{actual} nie jest wielokrotnością {base}",
|
|
1326
|
-
"identities.messages.4000023": "maksymalnie {max_items} wpisów, otrzymano {actual_items} wpisów",
|
|
1327
|
-
"identities.messages.4000024": "minimum {min_items} wpisów, otrzymano {actual_items} wpisów",
|
|
1328
|
-
"identities.messages.4000025": "wpisów w indeksie {index_a} i {index_b} są takie same",
|
|
1329
|
-
"identities.messages.4000026": "spodziewano {allowed_types_list}, otrzymano {actual_type}",
|
|
1330
|
-
"identities.messages.4000027": "Istnieje już konto o takim samym identyfikatorze (email, telefon, nazwa użytkownika, ...). Zaloguj się do swojego konta i połącz swój profil zewnętrzny na stronie ustawień.",
|
|
1331
|
-
"identities.messages.4000028": "Próbowano się zalogować za pomocą {credential_identifier_hint} który jest już używany przez inne konto. Możesz się zalogować za pomocą {available_credential_types_list}. Możesz się zalogować za pomocą następujących zewnętrznch dostawców logowania: {Available_oidc_providers_list}.",
|
|
1332
|
-
"identities.messages.4000029": "musi być równe stałej {expected}",
|
|
1333
|
-
"identities.messages.4000030": "const nie powiodła się",
|
|
1334
|
-
"identities.messages.4000031": "Hasło nie może być użytę ponieważ jest zbyt podobne do identyfikatora.",
|
|
1335
|
-
"identities.messages.4000032": "Hasło musi być długie na co najmniej {min_length} znaków, wprowadzono {actual_length} znaków.",
|
|
1336
|
-
"identities.messages.4000033": "Hasło musi być nie dłuższe niż {max_length} znaków, wprowadzono {actual_length} znaków.",
|
|
1337
|
-
"identities.messages.4000034": "Hasło wyciekło w wyniku naruszenia danych i nie może być użyte.",
|
|
1338
|
-
"identities.messages.4000035": "To konto nie istnieje lub nie pozwala na logowanie kodem.",
|
|
1339
|
-
"identities.messages.4000036": "Podane atrybuty nie odpowiadają atrybutom wcześniej powiązanym z tym procesem.",
|
|
1340
|
-
"identities.messages.4010001": "Proces logowania wygasł {expired_at_unix_since_minutes} minut temu, spróbuj ponownie.",
|
|
1341
|
-
"identities.messages.4010002": "Nie odnaleziono strategii do logowania. Czy formularz został poprawnie wypełniony?",
|
|
1342
|
-
"identities.messages.4010003": "Nie odnaleziono strategii do rejestracji. Czy formularz został poprawnie wypełniony?",
|
|
1343
|
-
"identities.messages.4010004": "Nie odnaleziono strategii do aktualizacji ustawień. Czy formularz został poprawnie wypełniony?",
|
|
1344
|
-
"identities.messages.4010005": "Nie odnaleziono strategii do odzyskiwania konta. Czy formularz został poprawnie wypełniony?",
|
|
1345
|
-
"identities.messages.4010006": "Nie odnaleziono strategii do weryfikacj konta. Czy formularz został poprawnie wypełniony?",
|
|
1346
|
-
"identities.messages.4010007": "Żądanie zostało poprawnie zakończone i nie może być ponowione.",
|
|
1347
|
-
"identities.messages.4010008": "Kod logowania jest niepoprawny lub został wykorzystany. Spróbuj ponownie.",
|
|
1348
|
-
"identities.messages.4040001": "Proces rejestracji wygasł {expired_at_unix_since_minutes} minut temu, spróbuj ponownie.",
|
|
1349
|
-
"identities.messages.4040002": "Żądanie zostało poprawnie zakończone i nie może być ponowione.",
|
|
1350
|
-
"identities.messages.4040003": "Kod rejestracji jest niepoprawny lub został wykorzystany. Spróbuj ponownie.",
|
|
1351
|
-
"identities.messages.4050001": "Proces ustawień wygasł {expired_at_unix_since_minutes} minut temu, spróbuj ponownie.",
|
|
1352
|
-
"identities.messages.4060001": "Żądanie zostało poprawnie zakończone i nie może być ponowione.",
|
|
1353
|
-
"identities.messages.4060002": "Proces odzyskiwania jest niepoprawny i musi zostać ponowiony.",
|
|
1354
|
-
"identities.messages.4060004": "Token odzyskiwania jest niepoprawny lub został wykorzystany. Proszę ponowić proces.",
|
|
1355
|
-
"identities.messages.4060005": "Proces odzyskiwania wygasł {expired_at_unix_since_minutes} minut temu, spróbuj ponownie.",
|
|
1356
|
-
"identities.messages.4060006": "Kod odzyskiwania jest nieprawidłowy lub został wykorzystany. Spróbuj ponownie.",
|
|
1357
|
-
"identities.messages.4070001": "Token weryfikacyjny jest nieprawidłowy lub został wykorzystany. Proszę ponowić proces.",
|
|
1358
|
-
"identities.messages.4070002": "Żądanie zostało poprawnie zakończone i nie może być ponowione.",
|
|
1359
|
-
"identities.messages.4070003": "Proces weryfikacyjny jest nieprawidłowy i musi zostać ponowiony.",
|
|
1360
|
-
"identities.messages.4070005": "Proces weryfikacyjny wygasł {expired_at_unix_since_minutes} minut temu, spróbuj ponownie.",
|
|
1361
|
-
"identities.messages.4070006": "Kod weryfikacyjny jest nieprawidłowy lub został wykorzystany. Spróbuj ponownie.",
|
|
1362
|
-
"identities.messages.5000001": "{reason}",
|
|
1363
|
-
"login.forgot-password": "Zapomniałeś/łaś hasła?",
|
|
1364
|
-
"login.logged-in-as-label": "Jesteś zalogowany jako:",
|
|
1365
|
-
"login.logout-button": "Wyloguj",
|
|
1366
|
-
"login.logout-label": "Coś nie działa?",
|
|
1367
|
-
"login.registration-button": "Zarejestruj się",
|
|
1368
|
-
"login.registration-label": "Nie posiadasz konta?",
|
|
1369
|
-
"login.subtitle-oauth2": "Do autentykacji {clientName}",
|
|
1370
|
-
"login.title": "Zaloguj się",
|
|
1371
|
-
"login.title-aal2": "Autentykacja Dwu-Etapowa",
|
|
1372
|
-
"login.title-refresh": "Potwierdź że to Ty",
|
|
1373
|
-
"logout.accept-button": "Tak",
|
|
1374
|
-
"logout.reject-button": "Nie",
|
|
1375
|
-
"logout.title": "Czy chcesz się wylogować?",
|
|
1376
|
-
"recovery.login-button": "Zaloguj się",
|
|
1377
|
-
"recovery.login-label": "Pamiętasz dane logowania?",
|
|
1378
|
-
"recovery.title": "Odzyskaj konto",
|
|
1379
|
-
"registration.login-button": "Zaloguj się",
|
|
1380
|
-
"registration.login-label": "Posiadasz już konto?",
|
|
1381
|
-
"registration.subtitle-oauth2": "Do autentykacji {clientName}",
|
|
1382
|
-
"registration.title": "Zarejestruj konto",
|
|
1383
|
-
"settings.navigation-back-button": "Cofnij",
|
|
1384
|
-
"settings.navigation-backup-codes": "Kody zapasowe 2FA",
|
|
1385
|
-
"settings.navigation-logout": "Wyloguj",
|
|
1386
|
-
"settings.navigation-oidc": "Zewnętrzne logowanie",
|
|
1387
|
-
"settings.navigation-password": "Hasło",
|
|
1388
|
-
"settings.navigation-profile": "Profil",
|
|
1389
|
-
"settings.navigation-totp": "Aplikacja Autentykator",
|
|
1390
|
-
"settings.navigation-webauthn": "Tokeny Sprzętowe",
|
|
1391
|
-
"settings.navigation-passkey": "Passkeys",
|
|
1392
|
-
"settings.subtitle-instructions": "Tutaj możesz zarządzać ustawieniami związanymi z Twoim kontem. Miej na uwadze że niektóre akcje mogą wymagać ponownej uwierzytelnienia.",
|
|
1393
|
-
"settings.title": "Ustawienia Konta",
|
|
1394
|
-
"settings.title-lookup-secret": "Zarządzaj kodami odzyskiwania 2FA",
|
|
1395
|
-
"settings.title-navigation": "Ustawienia Konta",
|
|
1396
|
-
"settings.title-oidc": "Zewnętrzne logowanie",
|
|
1397
|
-
"settings.title-password": "Zmień Hasło",
|
|
1398
|
-
"settings.title-profile": "Ustawienia Profilu",
|
|
1399
|
-
"settings.title-totp": "Zarządzaj aplikacją autentykator 2FA TOTP",
|
|
1400
|
-
"settings.title-webauthn": "Zarządzaj tokenami sprzętowymi",
|
|
1401
|
-
"settings.title-passkey": "Zarządzaj Passkeys",
|
|
1402
|
-
"verification.registration-button": "Zarejestruj się",
|
|
1403
|
-
"verification.registration-label": "Nie posiadasz konta?",
|
|
1404
|
-
"verification.title": "Zweryfikuj konto",
|
|
1405
|
-
"verification.back-button": "Cofnij",
|
|
1406
|
-
"two-step.code.description": "Kod weryfikacyjny zostanie wysłany na Twój adres email.",
|
|
1407
|
-
"two-step.code.title": "Kod email",
|
|
1408
|
-
"two-step.passkey.description": "Użyj swojego urządzenia lub funkcji rozpoznawania twarzy na swoim urządzeniu.",
|
|
1409
|
-
"two-step.passkey.title": "Klucz dostępu (zalecany)",
|
|
1410
|
-
"two-step.password.description": "Wprowadź hasło powiązane z twoim kontem",
|
|
1411
|
-
"two-step.password.title": "Hasło",
|
|
1412
|
-
"two-step.webauthn.description": "Użyj swojego klucza bezpieczeństwa do uwierzytelnienia",
|
|
1413
|
-
"two-step.webauthn.title": "Klucz bezpieczeństwa",
|
|
1414
|
-
"identities.messages.1010016": "",
|
|
1415
|
-
"identities.messages.1010017": "",
|
|
1416
|
-
"identities.messages.1010018": "",
|
|
1417
|
-
"identities.messages.1010019": "",
|
|
1418
|
-
"identities.messages.1010020": "",
|
|
1419
|
-
"identities.messages.1010021": "",
|
|
1420
|
-
"identities.messages.1010022": "",
|
|
1421
|
-
"identities.messages.1010023": "",
|
|
1422
|
-
"identities.messages.1040007": "",
|
|
1423
|
-
"identities.messages.1040008": "",
|
|
1424
|
-
"identities.messages.1040009": "",
|
|
1425
|
-
"identities.messages.1050019": "",
|
|
1426
|
-
"identities.messages.1050020": "",
|
|
1427
|
-
"identities.messages.1070014": "",
|
|
1428
|
-
"identities.messages.1070015": "",
|
|
1429
|
-
"identities.messages.4000037": "",
|
|
1430
|
-
"identities.messages.4000038": "",
|
|
1431
|
-
"identities.messages.4010009": "",
|
|
1432
|
-
"identities.messages.4010010": "",
|
|
1433
|
-
"login.cancel-button": "",
|
|
1434
|
-
"login.cancel-label": ""
|
|
136
|
+
type OrySettingsRecoveryCodesProps = {
|
|
137
|
+
codes: string[];
|
|
138
|
+
regnerateButton: UiNode | undefined;
|
|
139
|
+
revealButton: UiNode | undefined;
|
|
140
|
+
onRegenerate: () => void;
|
|
141
|
+
onReveal: () => void;
|
|
1435
142
|
};
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
"consent.remember-label": "Lembrar decisão para a próxima vez. A aplicação não poderá solicitar permissões adicionais sem o seu consentimento.",
|
|
1443
|
-
"consent.remember-tooltip": "lembrar minha decisão",
|
|
1444
|
-
"consent.requested-permissions-label": "A aplicação solicita acesso às seguintes permissões:",
|
|
1445
|
-
"consent.terms-of-service-label": "Termos de Serviço",
|
|
1446
|
-
"error.back-button": "Voltar",
|
|
1447
|
-
"error.description": "Ocorreu um erro com a seguinte mensagem:",
|
|
1448
|
-
"error.support-email-link": "Se o problema persistir, entre em contato com <a>{contactSupportEmail}</a>",
|
|
1449
|
-
"error.title": "Ocorreu um erro",
|
|
1450
|
-
"error.title-internal-server-error": "Erro Interno do Servidor",
|
|
1451
|
-
"error.title-not-found": "404 - Página não encontrada",
|
|
1452
|
-
"identities.messages.1010001": "Entrar",
|
|
1453
|
-
"identities.messages.1010002": "Entrar com {provider}",
|
|
1454
|
-
"identities.messages.1010003": "Confirme esta ação e verifique que é você.",
|
|
1455
|
-
"identities.messages.1010004": "Complete o segundo desafio de autenticação, por favor.",
|
|
1456
|
-
"identities.messages.1010005": "Verificar",
|
|
1457
|
-
"identities.messages.1010006": "Código de Autenticação",
|
|
1458
|
-
"identities.messages.1010007": "Código de Recuperação de Backup",
|
|
1459
|
-
"identities.messages.1010008": "Usar chave de segurança",
|
|
1460
|
-
"identities.messages.1010009": "Usar o Autenticador",
|
|
1461
|
-
"identities.messages.1010010": "Usar código de recuperação de backup",
|
|
1462
|
-
"identities.messages.1010011": "Continuar com a chave de segurança",
|
|
1463
|
-
"identities.messages.1010012": "Prepare o seu dispositivo WebAuthn (por exemplo, chave de segurança, scanner biométrico, ...) e pressione continuar.",
|
|
1464
|
-
"identities.messages.1010013": "Continuar",
|
|
1465
|
-
"identities.messages.1010014": "Um e-mail com um código foi enviado para o endereço de e-mail introduzido. Não recebeu um e-mail? Verifique o endereço introduzido e efetue novamente o login.",
|
|
1466
|
-
"identities.messages.1010015": "Entrar com código",
|
|
1467
|
-
"identities.messages.1040001": "Registar",
|
|
1468
|
-
"identities.messages.1040002": "Registar com {provider}",
|
|
1469
|
-
"identities.messages.1040003": "Continuar",
|
|
1470
|
-
"identities.messages.1040004": "Registar com chave de segurança",
|
|
1471
|
-
"identities.messages.1040005": "Um e-mail com o código foi enviado para o endereço de e-mail introduzido. Não recebeu um e-mail? Verifique a ortografia do endereço e registe-se novamente.",
|
|
1472
|
-
"identities.messages.1040006": "Registar com código",
|
|
1473
|
-
"identities.messages.1050001": "Alterações foram salvas com sucesso!",
|
|
1474
|
-
"identities.messages.1050002": "Vincular {provider}",
|
|
1475
|
-
"identities.messages.1050003": "Desvincular {provider}",
|
|
1476
|
-
"identities.messages.1050004": "Desvincular o Aplicação Autenticador TOTP",
|
|
1477
|
-
"identities.messages.1050005": "Código QR da aplicação Autenticador",
|
|
1478
|
-
"identities.messages.1050006": "{secret}",
|
|
1479
|
-
"identities.messages.1050007": "Revelar códigos de recuperação de backup",
|
|
1480
|
-
"identities.messages.1050008": "Gerar novos códigos de recuperação de backup",
|
|
1481
|
-
"identities.messages.1050009": "{secret}",
|
|
1482
|
-
"identities.messages.1050010": "Os seus códigos de recuperação de backup. Guarde-os num local seguro!",
|
|
1483
|
-
"identities.messages.1050011": "Confirmar códigos de recuperação de backup",
|
|
1484
|
-
"identities.messages.1050012": "Adicionar chave de segurança",
|
|
1485
|
-
"identities.messages.1050013": "Nome da chave de segurança",
|
|
1486
|
-
"identities.messages.1050014": "<del>Usado</del>",
|
|
1487
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
1488
|
-
"identities.messages.1050016": "Desativar este método",
|
|
1489
|
-
"identities.messages.1050017": "Este é o segredo da sua aplicação autenticador. Use-o se não puder ler o código QR.",
|
|
1490
|
-
"identities.messages.1050018": "Remover chave de segurança \"{display_name}\"",
|
|
1491
|
-
"identities.messages.1060001": "Recuperou com sucesso a sua conta. Por favor, altere a sua password ou configure um método de login alternativo (por exemplo, login social) nos próximos {privileged_session_expires_at_unix_until_minutes} minutos.",
|
|
1492
|
-
"identities.messages.1060002": "Um e-mail com um link de recuperação foi enviado para o endereço de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endereço e verifique se está usando o endereço com o qual se registou.",
|
|
1493
|
-
"identities.messages.1060003": "Um e-mail com um código de recuperação foi enviado para o endereço de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endereço e verifique se está usando o endereço com o qual se registou.",
|
|
1494
|
-
"identities.messages.1070001": "Password",
|
|
1495
|
-
"identities.messages.1070002": "{title}",
|
|
1496
|
-
"identities.messages.1070003": "Salvar",
|
|
1497
|
-
"identities.messages.1070004": "ID",
|
|
1498
|
-
"identities.messages.1070005": "Enviar",
|
|
1499
|
-
"identities.messages.1070006": "Verificar código",
|
|
1500
|
-
"identities.messages.1070007": "E-mail",
|
|
1501
|
-
"identities.messages.1070008": "Reenviar código",
|
|
1502
|
-
"identities.messages.1070009": "Continuar",
|
|
1503
|
-
"identities.messages.1070010": "Código de recuperação",
|
|
1504
|
-
"identities.messages.1070011": "Código de verificação",
|
|
1505
|
-
"identities.messages.1070012": "Código de registo",
|
|
1506
|
-
"identities.messages.1070013": "Código de login",
|
|
1507
|
-
"identities.messages.1080001": "Um e-mail com um link de verificação foi enviado para o endereço de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endereço e verifique se está usando o endereço com o qual se registou.",
|
|
1508
|
-
"identities.messages.1080002": "Endereço de e-mail verificado com sucesso.",
|
|
1509
|
-
"identities.messages.1080003": "Um e-mail com um código de verificação foi enviado para o endereço de e-mail introduzido. Se recebeu um e-mail, verifique a ortografia do endereço e verifique se está usando o endereço com o qual se registou.",
|
|
1510
|
-
"identities.messages.4000001": "{reason}",
|
|
1511
|
-
"identities.messages.4000002": "A propriedade {property} não foi encontrada.",
|
|
1512
|
-
"identities.messages.4000003": "O comprimento deve ser >= {min_length}, mas foi {actual_length}",
|
|
1513
|
-
"identities.messages.4000004": "não corresponde ao padrão \"{pattern}\"",
|
|
1514
|
-
"identities.messages.4000005": "A password não pode ser utilizada porque {reason}.",
|
|
1515
|
-
"identities.messages.4000006": "As credenciais fornecidas são inválidas, verifique erros na definição da password ou no nome de usuário, endereço de e-mail ou número de telefone.",
|
|
1516
|
-
"identities.messages.4000007": "Já existe uma conta com o mesmo username (e-mail, telefone, nome de usuário, ...).",
|
|
1517
|
-
"identities.messages.4000008": "O código de autenticação fornecido é inválido, tente novamente.",
|
|
1518
|
-
"identities.messages.4000009": "Não foi possível encontrar nenhum username de login. Esqueceu-se de defini-los? Isso também pode ser causado por uma má configuração do servidor.",
|
|
1519
|
-
"identities.messages.4000010": "Conta ainda não está ativa. Esqueceu-se de verificar o seu endereço de e-mail?",
|
|
1520
|
-
"identities.messages.4000011": "Não tem um dispositivo TOTP configurado.",
|
|
1521
|
-
"identities.messages.4000012": "Este código de recuperação de backup já foi usado.",
|
|
1522
|
-
"identities.messages.4000013": "Não tem um dispositivo WebAuthn configurado.",
|
|
1523
|
-
"identities.messages.4000014": "Não tem códigos de recuperação de backup configurados.",
|
|
1524
|
-
"identities.messages.4000015": "Esta conta não existe ou não tem uma chave de segurança configurada.",
|
|
1525
|
-
"identities.messages.4000016": "O código de recuperação de backup não é válido.",
|
|
1526
|
-
"identities.messages.4000017": "O comprimento deve ser <= {max_length}, mas foi {actual_length}",
|
|
1527
|
-
"identities.messages.4000018": "deve ser >= {minimum} mas foi encontrado {actual}",
|
|
1528
|
-
"identities.messages.4000019": "deve ser > {minimum} mas foi encontrado {actual}",
|
|
1529
|
-
"identities.messages.4000020": "deve ser <= {maximum} mas foi encontrado {actual}",
|
|
1530
|
-
"identities.messages.4000021": "deve ser < {maximum} mas foi encontrado {actual}",
|
|
1531
|
-
"identities.messages.4000022": "{actual} não é múltiplo de {base}",
|
|
1532
|
-
"identities.messages.4000023": "máximo de {max_items} itens permitidos, mas foram encontrados {actual_items} itens",
|
|
1533
|
-
"identities.messages.4000024": "mínimo de {min_items} itens permitidos, mas foram encontrados {actual_items} itens",
|
|
1534
|
-
"identities.messages.4000025": "itens nos índices {index_a} e {index_b} são iguais",
|
|
1535
|
-
"identities.messages.4000026": "esperado {allowed_types_list}, mas foi {actual_type}",
|
|
1536
|
-
"identities.messages.4000027": "Já existe uma conta com o mesmo username (e-mail, telefone, nome de usuário, ...). Faça login na sua conta existente e vincule seu perfil social na página de configurações.",
|
|
1537
|
-
"identities.messages.4000028": "Tentou fazer login com {credential_identifier_hint}, que já está sendo usado por outra conta. Pode fazer login usando {available_credential_types_list}. Pode fazer login usando um dos seguintes provedores de login social: {Available_oidc_providers_list}.",
|
|
1538
|
-
"identities.messages.4000029": "deve ser igual a constante {expected}",
|
|
1539
|
-
"identities.messages.4000030": "constante falhou",
|
|
1540
|
-
"identities.messages.4000031": "A password não pode ser utilizada porque é muito semelhante ao username.",
|
|
1541
|
-
"identities.messages.4000032": "A password deve conter ter pelo menos {min_length} caracteres, mas contém {actual_length}.",
|
|
1542
|
-
"identities.messages.4000033": "A password deve conter ter no máximo {max_length} caracteres, mas contém {actual_length}.",
|
|
1543
|
-
"identities.messages.4000034": "A password foi encontrada em violações de dados e não deve mais ser utilizada.",
|
|
1544
|
-
"identities.messages.4000035": "Esta conta não existe ou não configurou o login com código.",
|
|
1545
|
-
"identities.messages.4000036": "Os traços fornecidos não correspondem aos traços associados anteriormente a este fluxo.",
|
|
1546
|
-
"identities.messages.4010001": "O fluxo de login expirou {expired_at_unix_since_minutes} minutos atrás, tente novamente.",
|
|
1547
|
-
"identities.messages.4010002": "Não foi encontrada uma estratégia para fazer login. Preencheu o formulário corretamente?",
|
|
1548
|
-
"identities.messages.4010003": "Não foi encontrada uma estratégia para Registar. Preencheu o formulário corretamente?",
|
|
1549
|
-
"identities.messages.4010004": "Não foi encontrada uma estratégia para atualizar suas configurações. Preencheu o formulário corretamente?",
|
|
1550
|
-
"identities.messages.4010005": "Não foi encontrada uma estratégia para recuperar sua conta. Preencheu o formulário corretamente?",
|
|
1551
|
-
"identities.messages.4010006": "Não foi encontrada uma estratégia para verificar sua conta. Preencheu o formulário corretamente?",
|
|
1552
|
-
"identities.messages.4010007": "A solicitação já foi concluída com sucesso e não pode ser tentada novamente.",
|
|
1553
|
-
"identities.messages.4010008": "O código de login é inválido ou já foi usado. Tente novamente.",
|
|
1554
|
-
"identities.messages.4040001": "O fluxo de registo expirou {expired_at_unix_since_minutes} minutos atrás, tente novamente.",
|
|
1555
|
-
"identities.messages.4040002": "A solicitação já foi concluída com sucesso e não pode ser tentada novamente.",
|
|
1556
|
-
"identities.messages.4040003": "O código de registo é inválido ou já foi usado. Tente novamente.",
|
|
1557
|
-
"identities.messages.4050001": "O fluxo de configurações expirou {expired_at_unix_since_minutes} minutos atrás, tente novamente.",
|
|
1558
|
-
"identities.messages.4060001": "A solicitação já foi concluída com sucesso e não pode ser tentada novamente.",
|
|
1559
|
-
"identities.messages.4060002": "O fluxo de recuperação atingiu um estado de falha e deve ser tentado novamente.",
|
|
1560
|
-
"identities.messages.4060004": "O token de recuperação é inválido ou já foi usado. Por favor, tente o fluxo novamente.",
|
|
1561
|
-
"identities.messages.4060005": "O fluxo de recuperação expirou {expired_at_unix_since_minutes} minutos atrás, tente novamente.",
|
|
1562
|
-
"identities.messages.4060006": "O código de recuperação é inválido ou já foi usado. Tente novamente.",
|
|
1563
|
-
"identities.messages.4070001": "O token de verificação é inválido ou já foi usado. Tente novamente.",
|
|
1564
|
-
"identities.messages.4070002": "A solicitação já foi concluída com sucesso e não pode ser solicitada novamente.",
|
|
1565
|
-
"identities.messages.4070003": "O fluxo de verificação atingiu um estado de falha e deve ser tentado novamente.",
|
|
1566
|
-
"identities.messages.4070005": "O fluxo de verificação expirou {expired_at_unix_since_minutes} minutos atrás, tente novamente.",
|
|
1567
|
-
"identities.messages.4070006": "O código de verificação é inválido ou já foi usado. Tente novamente.",
|
|
1568
|
-
"identities.messages.5000001": "{reason}",
|
|
1569
|
-
"login.forgot-password": "Esqueceu a password?",
|
|
1570
|
-
"login.logged-in-as-label": "Está conectado como:",
|
|
1571
|
-
"login.logout-button": "Sair",
|
|
1572
|
-
"login.logout-label": "Algo não está a funcionar?",
|
|
1573
|
-
"login.registration-button": "Registar",
|
|
1574
|
-
"login.registration-label": "Não tem uma conta?",
|
|
1575
|
-
"login.subtitle-oauth2": "Para autenticar {clientName}",
|
|
1576
|
-
"login.title": "Entrar",
|
|
1577
|
-
"login.title-aal2": "Autenticação de Dois Fatores",
|
|
1578
|
-
"login.title-refresh": "Confirme que é você",
|
|
1579
|
-
"logout.accept-button": "Sim",
|
|
1580
|
-
"logout.reject-button": "Não",
|
|
1581
|
-
"logout.title": "Deseja sair?",
|
|
1582
|
-
"recovery.login-button": "Entrar",
|
|
1583
|
-
"recovery.login-label": "Lembrar credenciais?",
|
|
1584
|
-
"recovery.title": "Recuperar conta",
|
|
1585
|
-
"registration.login-button": "Entrar",
|
|
1586
|
-
"registration.login-label": "Já tem uma conta?",
|
|
1587
|
-
"registration.subtitle-oauth2": "Para autenticar {clientName}",
|
|
1588
|
-
"registration.title": "Registar uma conta",
|
|
1589
|
-
"settings.navigation-back-button": "Voltar",
|
|
1590
|
-
"settings.navigation-backup-codes": "Códigos de Backup de 2FA",
|
|
1591
|
-
"settings.navigation-logout": "Sair",
|
|
1592
|
-
"settings.navigation-oidc": "login social",
|
|
1593
|
-
"settings.navigation-password": "Password",
|
|
1594
|
-
"settings.navigation-profile": "Perfil",
|
|
1595
|
-
"settings.navigation-totp": "Aplicação Autenticador 2FA",
|
|
1596
|
-
"settings.navigation-webauthn": "Tokens de Hardware",
|
|
1597
|
-
"settings.navigation-passkey": "Passkeys",
|
|
1598
|
-
"settings.subtitle-instructions": "Aqui pode gerar configurações relacionadas com a sua conta. Lembre-se de que certas ações exigem que efetue novamente login.",
|
|
1599
|
-
"settings.title": "Configurações da Conta",
|
|
1600
|
-
"settings.title-lookup-secret": "Gerar Códigos de Recuperação de Backup de 2FA",
|
|
1601
|
-
"settings.title-navigation": "Configurações da Conta",
|
|
1602
|
-
"settings.title-oidc": "login social",
|
|
1603
|
-
"settings.title-password": "Alterar password",
|
|
1604
|
-
"settings.title-profile": "Configurações de Perfil",
|
|
1605
|
-
"settings.title-totp": "Gerar Aplicação Autenticador 2FA",
|
|
1606
|
-
"settings.title-webauthn": "Gerar Tokens de Hardware",
|
|
1607
|
-
"settings.title-passkey": "Gerar Passkeys",
|
|
1608
|
-
"verification.registration-button": "Registar",
|
|
1609
|
-
"verification.registration-label": "Não tem uma conta?",
|
|
1610
|
-
"verification.title": "Verifique a sua conta",
|
|
1611
|
-
"verification.back-button": "Voltar",
|
|
1612
|
-
"two-step.code.description": "Um código de verificação será enviado para o seu email",
|
|
1613
|
-
"two-step.code.title": "Código de email",
|
|
1614
|
-
"two-step.passkey.description": "Use o seu dispositivo para reconhecimento de impressão digital ou facial.",
|
|
1615
|
-
"two-step.passkey.title": "Chave de acesso (recomendado)",
|
|
1616
|
-
"two-step.password.description": "Insira a sua senha associada à sua conta",
|
|
1617
|
-
"two-step.password.title": "Senha",
|
|
1618
|
-
"two-step.webauthn.description": "Use sua chave de segurança para autenticar",
|
|
1619
|
-
"two-step.webauthn.title": "Chave de Segurança",
|
|
1620
|
-
"identities.messages.1010016": "",
|
|
1621
|
-
"identities.messages.1010017": "",
|
|
1622
|
-
"identities.messages.1010018": "",
|
|
1623
|
-
"identities.messages.1010019": "",
|
|
1624
|
-
"identities.messages.1010020": "",
|
|
1625
|
-
"identities.messages.1010021": "",
|
|
1626
|
-
"identities.messages.1010022": "",
|
|
1627
|
-
"identities.messages.1010023": "",
|
|
1628
|
-
"identities.messages.1040007": "",
|
|
1629
|
-
"identities.messages.1040008": "",
|
|
1630
|
-
"identities.messages.1040009": "",
|
|
1631
|
-
"identities.messages.1050019": "",
|
|
1632
|
-
"identities.messages.1050020": "",
|
|
1633
|
-
"identities.messages.1070014": "",
|
|
1634
|
-
"identities.messages.4000037": "",
|
|
1635
|
-
"identities.messages.4000038": "",
|
|
1636
|
-
"identities.messages.4010009": "",
|
|
1637
|
-
"identities.messages.4010010": "",
|
|
1638
|
-
"login.cancel-button": "",
|
|
1639
|
-
"login.cancel-label": "",
|
|
1640
|
-
"identities.messages.1070015": ""
|
|
143
|
+
type OrySettingsTotpProps = {
|
|
144
|
+
totpImage: UiNode | undefined;
|
|
145
|
+
totpSecret: UiNode | undefined;
|
|
146
|
+
totpInput: UiNode | undefined;
|
|
147
|
+
totpUnlink: UiNode | undefined;
|
|
148
|
+
onUnlink: () => void;
|
|
1641
149
|
};
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
"identities.messages.1010009": "Använd autentiserings-app",
|
|
1667
|
-
"identities.messages.1010010": "Använd reservåterställningskod",
|
|
1668
|
-
"identities.messages.1010011": "Fortsätt med säkerhetsnyckel",
|
|
1669
|
-
"identities.messages.1010012": "Förbered din WebAuthn-enhet (t.ex. säkerhetsnyckel, biometriska skanner, ...) och tryck på fortsätt.",
|
|
1670
|
-
"identities.messages.1010013": "Fortsätt",
|
|
1671
|
-
"identities.messages.1010014": "Ett e-postmeddelande som innehåller en kod har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen av adressen och försök logga in igen.",
|
|
1672
|
-
"identities.messages.1010015": "Logga in med kod",
|
|
1673
|
-
"identities.messages.1010016": "Du försökte logga in med \"{duplicateIdentifier}\", men den e-postadressen används redan av ett annat konto. Logga in på ditt konto med ett av alternativen nedan för att lägga till ditt konto \"{duplicateIdentifier}\" hos \"{provider}\" som ett annat inloggningsalternativ.",
|
|
1674
|
-
"identities.messages.1010017": "Logga in och länka",
|
|
1675
|
-
"identities.messages.1010018": "Bekräfta med {provider}",
|
|
1676
|
-
"identities.messages.1010019": "Begär kod för att fortsätta",
|
|
1677
|
-
"identities.messages.1010021": "Logga in med passkey",
|
|
1678
|
-
"identities.messages.1010022": "Logga in med lösenord",
|
|
1679
|
-
"identities.messages.1010023": "Skicka kod till {address}",
|
|
1680
|
-
"identities.messages.1040001": "Skapa konto",
|
|
1681
|
-
"identities.messages.1040002": "Registrera dig med {provider}",
|
|
1682
|
-
"identities.messages.1040003": "Fortsätt",
|
|
1683
|
-
"identities.messages.1040004": "Registrera med säkerhetsnyckel",
|
|
1684
|
-
"identities.messages.1040005": "Ett e-postmeddelande som innehåller en kod har skickats till den e-postadress du angett. Om du inte har fått ett e-postmeddelande, kontrollera stavningen av adressen och försök igen med registreringen.",
|
|
1685
|
-
"identities.messages.1040006": "Registrera med kod",
|
|
1686
|
-
"identities.messages.1040007": "Registrera med passkey",
|
|
1687
|
-
"identities.messages.1040008": "Tillbaka",
|
|
1688
|
-
"identities.messages.1040009": "Vänligen välj en autentiseringsmetod.",
|
|
1689
|
-
"identities.messages.1050001": "Dina ändringar har sparats!",
|
|
1690
|
-
"identities.messages.1050002": "Koppla på {provider}",
|
|
1691
|
-
"identities.messages.1050003": "Koppla bort {provider}",
|
|
1692
|
-
"identities.messages.1050004": "Koppla bort TOTP Autentisering-App",
|
|
1693
|
-
"identities.messages.1050005": "Autentisering-app QR kod",
|
|
1694
|
-
"identities.messages.1050006": "{secret}",
|
|
1695
|
-
"identities.messages.1050007": "Visa reservåterställningskoder",
|
|
1696
|
-
"identities.messages.1050008": "Generera nya reservåterställningskoder",
|
|
1697
|
-
"identities.messages.1050009": "{secret}",
|
|
1698
|
-
"identities.messages.1050010": "Det här är dina reservåterställningskoder. Förvara dem på ett säkert ställe!",
|
|
1699
|
-
"identities.messages.1050011": "Bekräfta reservåterställningskoder",
|
|
1700
|
-
"identities.messages.1050012": "Lägg till säkerhetsnyckel",
|
|
1701
|
-
"identities.messages.1050013": "Säkerhetsnyckelns namn",
|
|
1702
|
-
"identities.messages.1050014": "<del>Använd</del>",
|
|
1703
|
-
"identities.messages.1050015": "{secrets_list}",
|
|
1704
|
-
"identities.messages.1050016": "Inaktivera den här metoden",
|
|
1705
|
-
"identities.messages.1050017": "Det här är din hemlighet för din autentiseringsapp. Använd den om du inte kan skanna QR-koden.",
|
|
1706
|
-
"identities.messages.1050018": "Ta bort säkerhetsnyckel \"{display_name}\"",
|
|
1707
|
-
"identities.messages.1050019": "Lägg till passkey",
|
|
1708
|
-
"identities.messages.1050020": "Ta bort passkey \"{display_name}\"",
|
|
1709
|
-
"identities.messages.1060001": "Du har lyckats återställa ditt konto. Ändra ditt lösenord eller ställ in en alternativ inloggningsmetod (t.ex. social inloggning) inom de närmaste {privileged_session_expires_at_unix_until_minutes} minuterna.",
|
|
1710
|
-
"identities.messages.1060002": "Ett e-postmeddelande som innehåller en återställningslänk har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
|
|
1711
|
-
"identities.messages.1060003": "Ett e-postmeddelande som innehåller en återställningskod har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
|
|
1712
|
-
"identities.messages.1070001": "Lösenord",
|
|
1713
|
-
"identities.messages.1070002": "{title}",
|
|
1714
|
-
"identities.messages.1070003": "Spara",
|
|
1715
|
-
"identities.messages.1070004": "ID",
|
|
1716
|
-
"identities.messages.1070005": "Skicka",
|
|
1717
|
-
"identities.messages.1070006": "Verifiera kod",
|
|
1718
|
-
"identities.messages.1070007": "E-post",
|
|
1719
|
-
"identities.messages.1070008": "Skicka koden igen",
|
|
1720
|
-
"identities.messages.1070009": "Fortsätt",
|
|
1721
|
-
"identities.messages.1070010": "Återställningskod",
|
|
1722
|
-
"identities.messages.1070011": "Verifieringskod",
|
|
1723
|
-
"identities.messages.1070012": "Registreringskod",
|
|
1724
|
-
"identities.messages.1070013": "Inloggningskod",
|
|
1725
|
-
"identities.messages.1070014": "Logga in och länka autentiseringsuppgifter",
|
|
1726
|
-
"identities.messages.1070015": "Vänligen slutför captcha-utmaningen för att fortsätta.",
|
|
1727
|
-
"identities.messages.1080001": "Ett e-postmeddelande med en verifieringslänk har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
|
|
1728
|
-
"identities.messages.1080002": "Du har verifierat din e-postadress.",
|
|
1729
|
-
"identities.messages.1080003": "Ett e-postmeddelande som innehåller en verifieringskod har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
|
|
1730
|
-
"identities.messages.4000001": "{reason}",
|
|
1731
|
-
"identities.messages.4000002": "Egenskap {property} saknas.",
|
|
1732
|
-
"identities.messages.4000003": "längd måste vara >= {min_length}, men var {actual_length}",
|
|
1733
|
-
"identities.messages.4000004": "matchar inte mönstret \"{pattern}\"",
|
|
1734
|
-
"identities.messages.4000005": "Lösenordet kan inte användas pga {reason}.",
|
|
1735
|
-
"identities.messages.4000006": "De angivna uppgifterna är ogiltiga. Kontrollera om det finns stavfel i ditt lösenord eller användarnamn, e-postadress eller telefonnummer.",
|
|
1736
|
-
"identities.messages.4000007": "Ett konto med samma identifierare (e-post, telefon, användarnamn, ...) finns redan.",
|
|
1737
|
-
"identities.messages.4000008": "Den angivna autentiseringskoden är ogiltig, försök igen.",
|
|
1738
|
-
"identities.messages.4000009": "Det gick inte att hitta några inloggningsidentifierare. Har du glömt att ställa in dem? Detta kan också orsakas av en felaktig serverkonfiguration.",
|
|
1739
|
-
"identities.messages.4000010": "Kontot är inte aktivt ännu. Har du glömt att verifiera din e-postadress?",
|
|
1740
|
-
"identities.messages.4000011": "Du har ingen TOTP-enhet konfigurerad.",
|
|
1741
|
-
"identities.messages.4000012": "Denna backup-återställningskod har redan använts.",
|
|
1742
|
-
"identities.messages.4000013": "Du har ingen WebAuthn-enhet konfigurerad.",
|
|
1743
|
-
"identities.messages.4000014": "Du har inga backup-återställningskoder konfigurerade.",
|
|
1744
|
-
"identities.messages.4000015": "Det här kontot finns inte eller har ingen säkerhetsnyckel konfigurerad.",
|
|
1745
|
-
"identities.messages.4000016": "Backup-återställningskoden är inte giltig.",
|
|
1746
|
-
"identities.messages.4000017": "längd måste vara <= {max_length}, men var {actual_length}",
|
|
1747
|
-
"identities.messages.4000018": "måste vara >= {minimum} men var {actual}",
|
|
1748
|
-
"identities.messages.4000019": "måste vara > {minimum} men var {actual}",
|
|
1749
|
-
"identities.messages.4000020": "måste vara <= {maximum} men var {actual}",
|
|
1750
|
-
"identities.messages.4000021": "måste vara < {maximum} men var {actual}",
|
|
1751
|
-
"identities.messages.4000022": "{actual} är inte en multipel av {base}",
|
|
1752
|
-
"identities.messages.4000023": "maximalt {max_items} objekt tillåtna, men hittade {actual_items} objekt",
|
|
1753
|
-
"identities.messages.4000024": "minst {min_items} objekt tillåtna, men hittade {actual_items} objekt",
|
|
1754
|
-
"identities.messages.4000025": "objekt vid index {index_a} och {index_b} är lika",
|
|
1755
|
-
"identities.messages.4000026": "förväntade {allowed_types_list}, men var {actual_type}",
|
|
1756
|
-
"identities.messages.4000027": "Ett konto med samma identifierare (e-post, telefon, användarnamn, ...) finns redan. Logga in på ditt befintliga konto och länka din sociala profil på inställningssidan.",
|
|
1757
|
-
"identities.messages.4000028": "Du försökte logga in med {credential_identifier_hint} som redan används av ett annat konto. Du kan logga in med {available_credential_types_list}. Du kan logga in med någon av följande sociala inloggningsleverantörer: {Available_oidc_providers_list}.",
|
|
1758
|
-
"identities.messages.4000029": "måste vara lika med konstant {expected}",
|
|
1759
|
-
"identities.messages.4000030": "const misslyckades",
|
|
1760
|
-
"identities.messages.4000031": "Lösenordet kan inte användas eftersom det är för likt identifieraren.",
|
|
1761
|
-
"identities.messages.4000032": "Lösenordet måste vara minst {min_length} tecken långt, men är {actual_length}.",
|
|
1762
|
-
"identities.messages.4000033": "Lösenordet får vara högst {max_length} tecken långt, men är {actual_length}.",
|
|
1763
|
-
"identities.messages.4000034": "Lösenordet har hittats vid dataintrång och får inte längre användas.",
|
|
1764
|
-
"identities.messages.4000035": "Det här kontot finns inte eller har inte konfigurerat inloggning med kod.",
|
|
1765
|
-
"identities.messages.4000036": "De angivna egenskaperna matchar inte de egenskaper som tidigare associerats med detta flöde.",
|
|
1766
|
-
"identities.messages.4010001": "Inloggningsflödet upphörde för {expired_at_unix_since_minutes} minuter sedan, var vänlig försök igen.",
|
|
1767
|
-
"identities.messages.4010002": "Kunde inte hitta en strategi att logga in dig med. Fyllde du i formuläret korrekt?",
|
|
1768
|
-
"identities.messages.4010003": "Kunde inte hitta en strategi att registrera dig med. Fyllde du i formuläret korrekt?",
|
|
1769
|
-
"identities.messages.4010004": "Kunde inte hitta en strategi för att uppdatera dina inställningar. Fyllde du i formuläret korrekt?",
|
|
1770
|
-
"identities.messages.4010005": "Kunde inte hitta en strategi att återställa ditt konto med. Fyllde du i formuläret korrekt?",
|
|
1771
|
-
"identities.messages.4010006": "Kunde inte hitta en strategi att verifiera ditt konto med. Fyllde du i formuläret korrekt?",
|
|
1772
|
-
"identities.messages.4010007": "Begäran har redan slutförts framgångsrikt och kan inte göras igen.",
|
|
1773
|
-
"identities.messages.4010008": "Inloggningskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
|
|
1774
|
-
"identities.messages.4010009": "Länkade autentiseringsuppgifter matchar inte.",
|
|
1775
|
-
"identities.messages.4010010": "Adressen du angav matchar inte några kända adresser i det aktuella kontot.",
|
|
1776
|
-
"identities.messages.4040001": "Registreringsflödet gick ut för {expired_at_unix_since_minutes} minuter sedan, försök igen.",
|
|
1777
|
-
"identities.messages.4040002": "Begäran har redan slutförts framgångsrikt och kan inte göras igen.",
|
|
1778
|
-
"identities.messages.4040003": "Registreringskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
|
|
1779
|
-
"identities.messages.4050001": "Inställningsflödet gick ut för {expired_at_unix_since_minutes} minuter sedan, var vänlig försök igen.",
|
|
1780
|
-
"identities.messages.4060001": "Begäran har redan slutförts framgångsrikt och kan inte göras igen.",
|
|
1781
|
-
"identities.messages.4060002": "Återställningsflödet nådde ett feltillstånd och måste försökas igen.",
|
|
1782
|
-
"identities.messages.4060004": "Återställningstoken är ogiltig eller har redan använts. Var vänlig försök flödet igen.",
|
|
1783
|
-
"identities.messages.4060005": "Återställningsflödet gick ut för {expired_at_unix_since_minutes} minuter sedan, var vänlig försök igen.",
|
|
1784
|
-
"identities.messages.4060006": "Återställningskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
|
|
1785
|
-
"identities.messages.4070001": "Verifieringstoken är ogiltig eller har redan använts. Var vänlig försök flödet igen.",
|
|
1786
|
-
"identities.messages.4070002": "Begäran har redan slutförts framgångsrikt och kan inte göras igen.",
|
|
1787
|
-
"identities.messages.4070003": "Verifieringsflödet nådde ett feltillstånd och måste försökas igen.",
|
|
1788
|
-
"identities.messages.4070005": "Verifieringsflödet gick ut för {expired_at_unix_since_minutes} minuter sedan, var vänlig försök igen.",
|
|
1789
|
-
"identities.messages.4070006": "Verifieringskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
|
|
1790
|
-
"identities.messages.5000001": "{reason}",
|
|
1791
|
-
"login.cancel-button": "Avbryt",
|
|
1792
|
-
"login.cancel-label": "Fel konto?",
|
|
1793
|
-
"login.forgot-password": "Glömt lösenord?",
|
|
1794
|
-
"login.logged-in-as-label": "Du är inloggad som:",
|
|
1795
|
-
"login.logout-button": "Logga ut",
|
|
1796
|
-
"login.logout-label": "Är det något som inte fungerar?",
|
|
1797
|
-
"login.registration-button": "Skapa konto",
|
|
1798
|
-
"login.registration-label": "Har du inget konto?",
|
|
1799
|
-
"login.subtitle-oauth2": "Att autentisera {clientName}",
|
|
1800
|
-
"login.title": "Logga in",
|
|
1801
|
-
"login.title-aal2": "Tvåfaktorsautentisering",
|
|
1802
|
-
"login.title-refresh": "Bekräfta att det är du",
|
|
1803
|
-
"logout.accept-button": "Ja",
|
|
1804
|
-
"logout.reject-button": "Nej",
|
|
1805
|
-
"logout.title": "Vill du logga ut?",
|
|
1806
|
-
"recovery.login-button": "Logga in",
|
|
1807
|
-
"recovery.login-label": "Kan du ditt inlogg?",
|
|
1808
|
-
"recovery.title": "Återställ ditt konto",
|
|
1809
|
-
"registration.login-button": "Logga in",
|
|
1810
|
-
"registration.login-label": "Har du redan ett konto?",
|
|
1811
|
-
"registration.subtitle-oauth2": "Att autentisera {clientName}",
|
|
1812
|
-
"registration.title": "Skapa ett konto",
|
|
1813
|
-
"settings.navigation-back-button": "Tillbaka",
|
|
1814
|
-
"settings.navigation-backup-codes": "2FA backupkoder",
|
|
1815
|
-
"settings.navigation-logout": "Logga ut",
|
|
1816
|
-
"settings.navigation-oidc": "Social Inloggning",
|
|
1817
|
-
"settings.navigation-password": "Lösenord",
|
|
1818
|
-
"settings.navigation-profile": "Profil",
|
|
1819
|
-
"settings.navigation-totp": "Autentiserings App",
|
|
1820
|
-
"settings.navigation-webauthn": "Hårdvaru Tokens",
|
|
1821
|
-
"settings.navigation-passkey": "Passkeys",
|
|
1822
|
-
"settings.subtitle-instructions": "Här kan du hantera inställningar relaterade till ditt konto. Tänk på att vissa åtgärder kräver att du autentiseras på nytt.",
|
|
1823
|
-
"settings.title": "Kontoinställningar",
|
|
1824
|
-
"settings.title-lookup-secret": "Hantera 2FA backup-återställningskoder",
|
|
1825
|
-
"settings.title-navigation": "Kontoinställningar",
|
|
1826
|
-
"settings.title-oidc": "Social Inloggning",
|
|
1827
|
-
"settings.title-password": "Byt lösenord",
|
|
1828
|
-
"settings.title-profile": "Profilinställningar",
|
|
1829
|
-
"settings.title-totp": "Hantera 2FA TOTP Autentiserings App",
|
|
1830
|
-
"settings.title-webauthn": "Hantera Hårdvaru Tokens",
|
|
1831
|
-
"settings.title-passkey": "Hantera Passkeys",
|
|
1832
|
-
"verification.registration-button": "Skapa konto",
|
|
1833
|
-
"verification.registration-label": "Har du inget konto?",
|
|
1834
|
-
"verification.title": "Verifiera ditt konto",
|
|
1835
|
-
"verification.back-button": "Tillbaka",
|
|
1836
|
-
"two-step.code.description": "En verifieringskod kommer att skickas till din e-post",
|
|
1837
|
-
"two-step.code.title": "E-postkod",
|
|
1838
|
-
"two-step.passkey.description": "Använd din enhets fingeravtryck eller ansiktsigenkänning",
|
|
1839
|
-
"two-step.passkey.title": "Passerkod (rekommenderad)",
|
|
1840
|
-
"two-step.password.description": "Ange ditt lösenord kopplat till ditt konto",
|
|
1841
|
-
"two-step.password.title": "Lösenord",
|
|
1842
|
-
"two-step.webauthn.description": "Använd din säkerhetsnyckel för att autentisera",
|
|
1843
|
-
"two-step.webauthn.title": "Säkerhetsnyckel",
|
|
1844
|
-
"identities.messages.4000037": "Detta konto finns inte eller har ingen inloggningsmetod konfigurerad.",
|
|
1845
|
-
"identities.messages.4000038": "Captcha-verifiering misslyckades, försök igen.",
|
|
1846
|
-
"identities.messages.1010020": ""
|
|
150
|
+
type OrySettingsOidcProps = {
|
|
151
|
+
linkButtons: (UiNode & {
|
|
152
|
+
onClick: () => void;
|
|
153
|
+
})[];
|
|
154
|
+
unlinkButtons: (UiNode & {
|
|
155
|
+
onClick: () => void;
|
|
156
|
+
})[];
|
|
157
|
+
};
|
|
158
|
+
type OrySettingsWebauthnProps = {
|
|
159
|
+
nameInput: UiNode;
|
|
160
|
+
triggerButton: UiNode & {
|
|
161
|
+
onClick: () => void;
|
|
162
|
+
};
|
|
163
|
+
removeButtons: (UiNode & {
|
|
164
|
+
onClick: () => void;
|
|
165
|
+
})[];
|
|
166
|
+
};
|
|
167
|
+
type OrySettingsPasskeyProps = {
|
|
168
|
+
triggerButton: UiNode & {
|
|
169
|
+
onClick: () => void;
|
|
170
|
+
};
|
|
171
|
+
removeButtons: (UiNode & {
|
|
172
|
+
onClick: () => void;
|
|
173
|
+
})[];
|
|
1847
174
|
};
|
|
1848
175
|
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
declare
|
|
1854
|
-
declare const locales_pl: typeof pl;
|
|
1855
|
-
declare const locales_pt: typeof pt;
|
|
1856
|
-
declare const locales_sv: typeof sv;
|
|
1857
|
-
declare namespace locales {
|
|
1858
|
-
export { locales_de as de, locales_en as en, locales_es as es, locales_fr as fr, locales_nl as nl, locales_pl as pl, locales_pt as pt, locales_sv as sv };
|
|
1859
|
-
}
|
|
176
|
+
type OryFormGroupsProps = PropsWithChildren<{
|
|
177
|
+
groups: UiNodeGroupEnum[];
|
|
178
|
+
}>;
|
|
179
|
+
type OryFormGroupProps = PropsWithChildren;
|
|
180
|
+
declare function OryFormGroups({ groups }: OryFormGroupsProps): react_jsx_runtime.JSX.Element;
|
|
1860
181
|
|
|
1861
|
-
type
|
|
1862
|
-
|
|
182
|
+
type OryMessageContentProps = {
|
|
183
|
+
message: UiText;
|
|
1863
184
|
};
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
185
|
+
type OryMessageRootProps = DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
|
|
186
|
+
declare function OryCardValidationMessages({ ...props }: OryMessageRootProps): react_jsx_runtime.JSX.Element | null;
|
|
187
|
+
|
|
188
|
+
type OryFormProps$1 = Omit<ComponentPropsWithoutRef<"form">, "action" | "method" | "onSubmit">;
|
|
189
|
+
type OryFormSectionProps = PropsWithChildren<OryFormProps$1 & {
|
|
190
|
+
nodes?: UiNode[];
|
|
191
|
+
}>;
|
|
192
|
+
type OryCardSettingsSectionProps = PropsWithChildren & {
|
|
193
|
+
action: string;
|
|
194
|
+
method: string;
|
|
195
|
+
onSubmit: FormEventHandler<HTMLFormElement>;
|
|
1867
196
|
};
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
197
|
+
declare function OryFormSection({ children, nodes, ...rest }: OryFormSectionProps): react_jsx_runtime.JSX.Element;
|
|
198
|
+
|
|
199
|
+
type OryFormOidcRootProps = PropsWithChildren<{
|
|
200
|
+
nodes: UiNode[];
|
|
201
|
+
}>;
|
|
202
|
+
type OryNodeOidcButtonProps = {
|
|
203
|
+
node: UiNode;
|
|
204
|
+
attributes: UiNodeInputAttributes;
|
|
205
|
+
onClick?: () => void;
|
|
1872
206
|
};
|
|
1873
|
-
declare
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
207
|
+
declare function OryFormOidcButtons(): react_jsx_runtime.JSX.Element | null;
|
|
208
|
+
declare function OryFormSocialButtonsForm(): react_jsx_runtime.JSX.Element | null;
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* A record of all the components that are used in the OryForm component.
|
|
212
|
+
*/
|
|
213
|
+
type OryFlowComponents = {
|
|
214
|
+
Node: {
|
|
215
|
+
/**
|
|
216
|
+
* Button component, rendered whenever a button is encountered in the Ory UI Nodes.
|
|
217
|
+
*/
|
|
218
|
+
Button: ComponentType<OryNodeButtonProps>;
|
|
219
|
+
/**
|
|
220
|
+
* The SocialButton component is rendered whenever a button of group "oidc" node is encountered.
|
|
221
|
+
*
|
|
222
|
+
* It renders the "Login with Google", "Login with Facebook" etc. buttons.
|
|
223
|
+
*/
|
|
224
|
+
OidcButton: ComponentType<OryNodeOidcButtonProps>;
|
|
225
|
+
/**
|
|
226
|
+
* Anchor component, rendered whenever an "anchor" node is encountered
|
|
227
|
+
*/
|
|
228
|
+
Anchor: ComponentType<OryNodeAnchorProps>;
|
|
229
|
+
/**
|
|
230
|
+
* The Input component is rendered whenever a "input" node is encountered.
|
|
231
|
+
*/
|
|
232
|
+
Input: ComponentType<OryNodeInputProps>;
|
|
233
|
+
/**
|
|
234
|
+
* Special version of the Input component for OTP codes.
|
|
235
|
+
*/
|
|
236
|
+
CodeInput: ComponentType<OryNodeInputProps>;
|
|
237
|
+
/**
|
|
238
|
+
* The Image component is rendered whenever an "image" node is encountered.
|
|
239
|
+
*
|
|
240
|
+
* For example used in the "Logo" node.
|
|
241
|
+
*/
|
|
242
|
+
Image: ComponentType<OryNodeImageProps>;
|
|
243
|
+
/**
|
|
244
|
+
* The Label component is rendered around Input components and is used to render form labels.
|
|
245
|
+
*/
|
|
246
|
+
Label: ComponentType<OryNodeLabelProps>;
|
|
247
|
+
/**
|
|
248
|
+
* The Checkbox component is rendered whenever an input node with of boolean type is encountered.
|
|
249
|
+
*/
|
|
250
|
+
Checkbox: ComponentType<OryNodeInputProps>;
|
|
251
|
+
/**
|
|
252
|
+
* The Text component is rendered whenever a "text" node is encountered.
|
|
253
|
+
*/
|
|
254
|
+
Text: ComponentType<OryNodeTextProps>;
|
|
255
|
+
/**
|
|
256
|
+
* The Captcha component is rendered whenever a "captcha" group is encountered.
|
|
257
|
+
*/
|
|
258
|
+
Captcha: ComponentType<OryNodeCaptchaProps>;
|
|
259
|
+
/**
|
|
260
|
+
* Special version of the Input component for scopes in OAuth2 flows.
|
|
261
|
+
*/
|
|
262
|
+
ConsentScopeCheckbox: ComponentType<OryNodeConsentScopeCheckboxProps>;
|
|
263
|
+
};
|
|
264
|
+
Card: {
|
|
265
|
+
/**
|
|
266
|
+
* The card container is the main container of the card.
|
|
267
|
+
*/
|
|
268
|
+
Root: ComponentType<OryCardRootProps>;
|
|
269
|
+
/**
|
|
270
|
+
* The card footer is the footer of the card container.
|
|
271
|
+
*/
|
|
272
|
+
Footer: ComponentType<OryCardFooterProps>;
|
|
273
|
+
/**
|
|
274
|
+
* The card header is the header of the card container.
|
|
275
|
+
*/
|
|
276
|
+
Header: ComponentType<OryCardRootProps>;
|
|
277
|
+
/**
|
|
278
|
+
* The card content is the main content of the card container.
|
|
279
|
+
*/
|
|
280
|
+
Content: ComponentType<OryCardContentProps>;
|
|
281
|
+
/**
|
|
282
|
+
* The card logo is the logo of the card container.
|
|
283
|
+
*/
|
|
284
|
+
Logo: ComponentType<OryCardLogoProps>;
|
|
285
|
+
/**
|
|
286
|
+
* The HorizontalDivider component is rendered between groups.
|
|
287
|
+
*/
|
|
288
|
+
Divider: ComponentType<OryCardDividerProps>;
|
|
289
|
+
/**
|
|
290
|
+
* The AuthMethodListContainer component is rendered around the "method" chooser step in the identifier_first login flow.
|
|
291
|
+
*
|
|
292
|
+
* This is only used, if login is configured to use identifier_first authentication.
|
|
293
|
+
*/
|
|
294
|
+
AuthMethodListContainer: ComponentType<PropsWithChildren>;
|
|
295
|
+
/**
|
|
296
|
+
* The AuthMethodListItem component is rendered on the "method" chooser step in the identifier_first login flow.
|
|
297
|
+
*
|
|
298
|
+
* This is only used, if login is configured to use identifier_first authentication.
|
|
299
|
+
*/
|
|
300
|
+
AuthMethodListItem: ComponentType<OryCardAuthMethodListItemProps>;
|
|
301
|
+
/**
|
|
302
|
+
* The SettingsSection component is rendered around each section of the settings.
|
|
303
|
+
*/
|
|
304
|
+
SettingsSection: ComponentType<OryCardSettingsSectionProps>;
|
|
305
|
+
/**
|
|
306
|
+
* The SettingsSectionContent component is rendered around the content of each section of the settings.
|
|
307
|
+
*/
|
|
308
|
+
SettingsSectionContent: ComponentType<OryFormSectionContentProps>;
|
|
309
|
+
/**
|
|
310
|
+
* The SettingsSectionFooter component is rendered around the footer of each section of the settings.
|
|
311
|
+
*/
|
|
312
|
+
SettingsSectionFooter: ComponentType<OryFormSectionFooterProps>;
|
|
313
|
+
};
|
|
314
|
+
Form: {
|
|
315
|
+
/**
|
|
316
|
+
* The FormContainer component is the main container of the form.
|
|
317
|
+
*
|
|
318
|
+
* It should render its children.
|
|
319
|
+
*
|
|
320
|
+
* You most likely don't want to override this component directly.
|
|
321
|
+
*/
|
|
322
|
+
Root: ComponentType<OryFormRootProps>;
|
|
323
|
+
/**
|
|
324
|
+
* A special form group container for the social buttons.
|
|
325
|
+
*
|
|
326
|
+
* This is required, because the social buttons need to be in its form, to not influence the other form groups.
|
|
327
|
+
*
|
|
328
|
+
* You most likely don't want to override this component directly.
|
|
329
|
+
*/
|
|
330
|
+
OidcRoot: ComponentType<OryFormOidcRootProps>;
|
|
331
|
+
/**
|
|
332
|
+
* The FormGroup is rendered around each group of nodes in the UI nodes.
|
|
333
|
+
*/
|
|
334
|
+
Group: ComponentType<OryFormGroupProps>;
|
|
335
|
+
/**
|
|
336
|
+
* The section on the settings page, rendering the OIDC settings
|
|
337
|
+
*/
|
|
338
|
+
OidcSettings: ComponentType<OrySettingsOidcProps>;
|
|
339
|
+
/**
|
|
340
|
+
* The section on the settings page, rendering the Webauthn settings
|
|
341
|
+
*/
|
|
342
|
+
WebauthnSettings: ComponentType<OrySettingsWebauthnProps>;
|
|
343
|
+
/**
|
|
344
|
+
* The section on the settings page, rendering the Passkey settings
|
|
345
|
+
*/
|
|
346
|
+
PasskeySettings: ComponentType<OrySettingsPasskeyProps>;
|
|
347
|
+
/**
|
|
348
|
+
* The section on the settings page, rendering the TOTP settings
|
|
349
|
+
*/
|
|
350
|
+
TotpSettings: ComponentType<OrySettingsTotpProps>;
|
|
351
|
+
/**
|
|
352
|
+
* The section on the settings page, rendering the recovery code settings
|
|
353
|
+
*/
|
|
354
|
+
RecoveryCodesSettings: ComponentType<OrySettingsRecoveryCodesProps>;
|
|
355
|
+
};
|
|
356
|
+
Message: {
|
|
357
|
+
/**
|
|
358
|
+
* The MessageContainer is rendered around the messages.
|
|
359
|
+
*/
|
|
360
|
+
Root: ComponentType<OryMessageRootProps>;
|
|
361
|
+
/**
|
|
362
|
+
* The Message component is rendered whenever a message is encountered.
|
|
363
|
+
*/
|
|
364
|
+
Content: ComponentType<OryMessageContentProps>;
|
|
365
|
+
};
|
|
366
|
+
Page: {
|
|
367
|
+
Header: ComponentType<OryPageHeaderProps>;
|
|
368
|
+
};
|
|
369
|
+
};
|
|
370
|
+
type DeepPartialTwoLevels<T> = {
|
|
371
|
+
[P in keyof T]?: T[P] extends object ? {
|
|
372
|
+
[K in keyof T[P]]?: T[P][K];
|
|
373
|
+
} : T[P];
|
|
1878
374
|
};
|
|
1879
|
-
type
|
|
1880
|
-
|
|
375
|
+
type OryFlowComponentOverrides = DeepPartialTwoLevels<OryFlowComponents>;
|
|
376
|
+
type OryFormProps = PropsWithChildren<{
|
|
377
|
+
onAfterSubmit?: (method: string | number | boolean | undefined) => void;
|
|
378
|
+
"data-testid"?: string;
|
|
379
|
+
}>;
|
|
380
|
+
declare function OryForm({ children, onAfterSubmit, "data-testid": dataTestId, }: OryFormProps): react_jsx_runtime.JSX.Element;
|
|
1881
381
|
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
382
|
+
declare function useComponents(): OryFlowComponents;
|
|
383
|
+
declare function useNodeSorter(): (a: UiNode, b: UiNode, ctx: {
|
|
384
|
+
flowType: string;
|
|
385
|
+
}) => number;
|
|
1886
386
|
|
|
1887
|
-
|
|
1888
|
-
|
|
387
|
+
/**
|
|
388
|
+
* A generic flow container, containing a flowType, the flow itself and the config object
|
|
389
|
+
*
|
|
390
|
+
* @see OryClientConfiguration
|
|
391
|
+
*/
|
|
392
|
+
type OryFlow<TFlowType extends FlowType, TFlow> = {
|
|
393
|
+
flowType: TFlowType;
|
|
394
|
+
flow: TFlow;
|
|
1889
395
|
};
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
396
|
+
/**
|
|
397
|
+
* A flow container for the login flow
|
|
398
|
+
*
|
|
399
|
+
* @see OryFlow
|
|
400
|
+
* @see LoginFlow
|
|
401
|
+
*/
|
|
402
|
+
type LoginFlowContainer = OryFlow<FlowType.Login, LoginFlow>;
|
|
403
|
+
/**
|
|
404
|
+
* A flow container for the registration flow
|
|
405
|
+
*
|
|
406
|
+
* @see OryFlow
|
|
407
|
+
* @see RegistrationFlow
|
|
408
|
+
*/
|
|
409
|
+
type RegistrationFlowContainer = OryFlow<FlowType.Registration, RegistrationFlow>;
|
|
410
|
+
/**
|
|
411
|
+
* A flow container for the recovery flow
|
|
412
|
+
*
|
|
413
|
+
* @see OryFlow
|
|
414
|
+
* @see RecoveryFlow
|
|
415
|
+
*/
|
|
416
|
+
type RecoveryFlowContainer = OryFlow<FlowType.Recovery, RecoveryFlow>;
|
|
417
|
+
/**
|
|
418
|
+
* A flow container for the verification flow
|
|
419
|
+
*
|
|
420
|
+
* @see OryFlow
|
|
421
|
+
* @see VerificationFlow
|
|
422
|
+
*
|
|
423
|
+
*/
|
|
424
|
+
type VerificationFlowContainer = OryFlow<FlowType.Verification, VerificationFlow>;
|
|
425
|
+
/**
|
|
426
|
+
* A flow container for the settings flow
|
|
427
|
+
*
|
|
428
|
+
* @see OryFlow
|
|
429
|
+
* @see SettingsFlow
|
|
430
|
+
*/
|
|
431
|
+
type SettingsFlowContainer = OryFlow<FlowType.Settings, SettingsFlow>;
|
|
432
|
+
/**
|
|
433
|
+
* A flow container for the error flow
|
|
434
|
+
*
|
|
435
|
+
* @see OryFlow
|
|
436
|
+
* @see FlowError (Error flow)
|
|
437
|
+
*
|
|
438
|
+
*/
|
|
439
|
+
type ErrorFlowContainer = OryFlow<FlowType.Error, FlowError>;
|
|
440
|
+
type ConsentFlow = {
|
|
441
|
+
created_at: Date;
|
|
442
|
+
expires_at: Date;
|
|
1893
443
|
id: string;
|
|
444
|
+
issued_at: Date;
|
|
445
|
+
state: "show_form" | "rejected" | "accepted";
|
|
446
|
+
active: string;
|
|
447
|
+
ui: UiContainer;
|
|
448
|
+
consent_request: OAuth2ConsentRequest;
|
|
449
|
+
session: Session;
|
|
450
|
+
return_to?: string;
|
|
1894
451
|
};
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
452
|
+
type ConsentFlowContainer = OryFlow<FlowType.OAuth2Consent, ConsentFlow>;
|
|
453
|
+
/**
|
|
454
|
+
* A union type of all flow containers
|
|
455
|
+
*/
|
|
456
|
+
type OryFlowContainer = LoginFlowContainer | RegistrationFlowContainer | RecoveryFlowContainer | VerificationFlowContainer | SettingsFlowContainer | ConsentFlowContainer;
|
|
457
|
+
|
|
458
|
+
type LocaleMap = Record<string, Record<string, string>>;
|
|
459
|
+
declare const OryLocales: LocaleMap;
|
|
460
|
+
|
|
461
|
+
type Locale = keyof typeof OryLocales;
|
|
462
|
+
type IntlContextProps = {
|
|
463
|
+
locale: Locale;
|
|
464
|
+
customTranslations?: Partial<LocaleMap>;
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
type IntlConfig = IntlContextProps;
|
|
468
|
+
/**
|
|
469
|
+
* The configuration for Ory Elements.
|
|
470
|
+
*
|
|
471
|
+
* This configuration is used to customize the behavior and appearance of Ory Elements.
|
|
472
|
+
*
|
|
473
|
+
* By setting UI urls, you can override the default URLs for the login, registration, recovery, and verification flows.
|
|
474
|
+
*
|
|
475
|
+
* You can also set the name of the application, the logo URL, and the SDK configuration.
|
|
476
|
+
* By default, the name and logo are displayed in the card's header.
|
|
477
|
+
*/
|
|
478
|
+
type OryClientConfiguration = {
|
|
479
|
+
/**
|
|
480
|
+
* The SDK configuration.
|
|
481
|
+
* This configuration is used to set the URL of the Ory SDK and any additional options used for the SDK client.
|
|
482
|
+
*/
|
|
483
|
+
sdk?: {
|
|
484
|
+
url?: string;
|
|
485
|
+
options?: Partial<ConfigurationParameters>;
|
|
486
|
+
};
|
|
487
|
+
/**
|
|
488
|
+
* The internationalization configuration.
|
|
489
|
+
* This configuration is used to set the locale and any additional options used for the i18n library.
|
|
490
|
+
* The locale is used to determine the language of the UI.
|
|
491
|
+
* The default locale is "en".
|
|
492
|
+
*/
|
|
493
|
+
intl?: IntlConfig;
|
|
494
|
+
/**
|
|
495
|
+
* The configuration for the project.
|
|
496
|
+
*/
|
|
497
|
+
project: AccountExperienceConfiguration;
|
|
1899
498
|
};
|
|
1900
499
|
|
|
1901
|
-
declare function formatMessage(uiText: UiText | undefined, intl: IntlShape): string;
|
|
1902
500
|
/**
|
|
1903
501
|
* Converts a UiText to a FormattedMessage.
|
|
1904
502
|
* The UiText contains the id of the message and the context.
|
|
@@ -1943,11 +541,14 @@ declare function formatMessage(uiText: UiText | undefined, intl: IntlShape): str
|
|
|
1943
541
|
*/
|
|
1944
542
|
declare const uiTextToFormattedMessage: ({ id, context, text }: Omit<UiText, "type">, intl: IntlShape) => string;
|
|
1945
543
|
|
|
544
|
+
/**
|
|
545
|
+
* Props for the submit handler
|
|
546
|
+
*/
|
|
1946
547
|
type OnSubmitHandlerProps<T extends UpdateLoginFlowBody | UpdateRegistrationFlowBody | UpdateVerificationFlowBody | UpdateRecoveryFlowBody | UpdateSettingsFlowBody> = {
|
|
1947
548
|
/**
|
|
1948
549
|
* This method is used to update the flow container when a validation error occurs, for example.
|
|
1949
550
|
*/
|
|
1950
|
-
setFlowContainer: (flowContainer:
|
|
551
|
+
setFlowContainer: (flowContainer: OryFlowContainer) => void;
|
|
1951
552
|
/**
|
|
1952
553
|
* The form values to submit.
|
|
1953
554
|
*/
|
|
@@ -1959,58 +560,100 @@ type OnSubmitHandlerProps<T extends UpdateLoginFlowBody | UpdateRegistrationFlow
|
|
|
1959
560
|
};
|
|
1960
561
|
|
|
1961
562
|
/**
|
|
1962
|
-
*
|
|
563
|
+
* Helper function to generate a test id for a UiText message.
|
|
1963
564
|
*
|
|
1964
|
-
* @param
|
|
1965
|
-
* @
|
|
1966
|
-
* @param setFlowContainer - This method is used to update the flow container when a validation error occurs, for example.
|
|
1967
|
-
* @param body - The form values to submit.
|
|
1968
|
-
* @param onRedirect - This method is used to redirect the user to a different page.
|
|
565
|
+
* @param message - the UiText message to generate a test id for
|
|
566
|
+
* @returns a unique, stable test id for the message
|
|
1969
567
|
*/
|
|
1970
|
-
declare function
|
|
568
|
+
declare function messageTestId(message: {
|
|
569
|
+
id: number | string;
|
|
570
|
+
}): {
|
|
571
|
+
"data-testid": string;
|
|
572
|
+
};
|
|
1971
573
|
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
574
|
+
type FormStateSelectMethod = {
|
|
575
|
+
current: "select_method";
|
|
576
|
+
};
|
|
577
|
+
type FormStateProvideIdentifier = {
|
|
578
|
+
current: "provide_identifier";
|
|
579
|
+
};
|
|
580
|
+
type FormStateMethodActive = {
|
|
581
|
+
current: "method_active";
|
|
582
|
+
method: UiNodeGroupEnum;
|
|
583
|
+
};
|
|
584
|
+
type FormState = FormStateSelectMethod | FormStateProvideIdentifier | FormStateMethodActive | {
|
|
585
|
+
current: "success_screen";
|
|
586
|
+
} | {
|
|
587
|
+
current: "settings";
|
|
588
|
+
};
|
|
589
|
+
type FormStateAction = {
|
|
590
|
+
type: "action_flow_update";
|
|
591
|
+
flow: OryFlowContainer;
|
|
592
|
+
} | {
|
|
593
|
+
type: "action_select_method";
|
|
594
|
+
method: UiNodeGroupEnum;
|
|
595
|
+
} | {
|
|
596
|
+
type: "action_clear_active_method";
|
|
597
|
+
};
|
|
1982
598
|
|
|
1983
599
|
/**
|
|
1984
|
-
*
|
|
600
|
+
* Returns an object that contains the current flow and the flow type, as well as the configuration.
|
|
1985
601
|
*
|
|
1986
|
-
* @
|
|
1987
|
-
* @param flow - The flow object.
|
|
1988
|
-
* @param setFlowContainer - This method is used to update the flow container when a validation error occurs, for example.
|
|
1989
|
-
* @param body- The form values to submit.
|
|
1990
|
-
* @param onRedirect - This method is used to redirect the user to a different page.
|
|
602
|
+
* @returns The current flow container
|
|
1991
603
|
*/
|
|
1992
|
-
declare function
|
|
1993
|
-
|
|
604
|
+
declare function useOryFlow(): FlowContextValue;
|
|
1994
605
|
/**
|
|
1995
|
-
*
|
|
1996
|
-
*
|
|
1997
|
-
* @param config - The configuration object.
|
|
1998
|
-
* @param flow - The flow object.
|
|
1999
|
-
* @param setFlowContainer - This method is used to update the flow container when a validation error occurs, for example.
|
|
2000
|
-
* @param body - The form values to submit.
|
|
2001
|
-
* @param onRedirect - This method is used to redirect the user to a different page.
|
|
606
|
+
* Function to set the flow container.
|
|
2002
607
|
*/
|
|
2003
|
-
|
|
2004
|
-
|
|
608
|
+
type FlowContainerSetter = Dispatch<OryFlowContainer>;
|
|
2005
609
|
/**
|
|
2006
|
-
*
|
|
2007
|
-
*
|
|
2008
|
-
* @param config - The configuration object.
|
|
2009
|
-
* @param flow - The flow object.
|
|
2010
|
-
* @param setFlowContainer - This method is used to update the flow container when a validation error occurs, for example.
|
|
2011
|
-
* @param body - The form values to submit.
|
|
2012
|
-
* @param onRedirect - This method is used to redirect the user to a different page.
|
|
610
|
+
* The return value of the OryFlowContext.
|
|
2013
611
|
*/
|
|
2014
|
-
|
|
612
|
+
type FlowContextValue = OryFlowContainer & {
|
|
613
|
+
/**
|
|
614
|
+
* Function to set the flow container.
|
|
615
|
+
*/
|
|
616
|
+
setFlowContainer: FlowContainerSetter;
|
|
617
|
+
/**
|
|
618
|
+
* The current form state.
|
|
619
|
+
* @see FormState
|
|
620
|
+
*/
|
|
621
|
+
formState: FormState;
|
|
622
|
+
/**
|
|
623
|
+
* Dispatch function to update the form state.
|
|
624
|
+
*/
|
|
625
|
+
dispatchFormState: Dispatch<FormStateAction>;
|
|
626
|
+
};
|
|
627
|
+
|
|
628
|
+
type OryProviderProps = {
|
|
629
|
+
components: OryFlowComponents;
|
|
630
|
+
config: OryClientConfiguration;
|
|
631
|
+
} & OryFlowContainer & PropsWithChildren;
|
|
632
|
+
declare function OryProvider({ children, components: Components, config, ...oryFlowProps }: OryProviderProps): react_jsx_runtime.JSX.Element;
|
|
633
|
+
|
|
634
|
+
type OryElementsConfiguration = {
|
|
635
|
+
sdk: OrySDK;
|
|
636
|
+
project: AccountExperienceConfiguration;
|
|
637
|
+
};
|
|
638
|
+
declare function useOryConfiguration(): OryElementsConfiguration;
|
|
639
|
+
type OrySDK = SDKConfig & {
|
|
640
|
+
/**
|
|
641
|
+
* The frontend client for the Ory SDK.
|
|
642
|
+
* This client is used to interact with the Ory SDK and should be used to make API calls.
|
|
643
|
+
*/
|
|
644
|
+
frontend: FrontendApi;
|
|
645
|
+
};
|
|
646
|
+
type SDKConfig = {
|
|
647
|
+
/**
|
|
648
|
+
* The URL of the Ory SDK.
|
|
649
|
+
* This URL is used to connect to the Ory SDK and should be set to the base URL of your Ory instance.
|
|
650
|
+
*/
|
|
651
|
+
url: string;
|
|
652
|
+
options?: Partial<ConfigurationParameters>;
|
|
653
|
+
};
|
|
654
|
+
declare function OryConfigurationProvider({ children, sdk: initialConfig, project, }: PropsWithChildren<{
|
|
655
|
+
sdk?: Partial<OryClientConfiguration["sdk"]>;
|
|
656
|
+
project?: Partial<AccountExperienceConfiguration>;
|
|
657
|
+
}>): react_jsx_runtime.JSX.Element;
|
|
2015
658
|
|
|
2016
|
-
export { type
|
|
659
|
+
export { type ConsentFlow, type ConsentFlowContainer, type ErrorFlowContainer, type FlowContainerSetter, type FlowContextValue, type FormState, type FormStateAction, type FormStateMethodActive, type FormStateProvideIdentifier, type FormStateSelectMethod, type FormValues, HeadlessPageHeader, type IntlConfig, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardAuthMethodListItemProps, OryCardContent, type OryCardContentProps, type OryCardDividerProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardLogoProps, type OryCardRootProps as OryCardProps, type OryCardSettingsSectionProps, OryCardValidationMessages, type OryClientConfiguration, OryConfigurationProvider, OryConsentCard, type OryElementsConfiguration, type OryFlowComponentOverrides, type OryFlowComponents, type OryFlowContainer, OryForm, OryFormGroupDivider, type OryFormGroupProps, OryFormGroups, type OryFormGroupsProps, OryFormOidcButtons, type OryFormOidcRootProps, type OryFormProps, type OryFormRootProps, OryFormSection, type OryFormSectionContentProps, type OryFormSectionFooterProps, type OryFormSectionProps, OryFormSocialButtonsForm, OryLocales, type OryMessageContentProps, type OryMessageRootProps, type OryNodeAnchorProps, type OryNodeButtonProps, type OryNodeCaptchaProps, type OryNodeConsentScopeCheckboxProps, type OryNodeImageProps, type OryNodeInputProps, type OryNodeLabelProps, type OryNodeOidcButtonProps, type OryNodeTextProps, type OryPageHeaderProps, OryProvider, type OryProviderProps, OrySettingsCard, type OrySettingsOidcProps, type OrySettingsPasskeyProps, type OrySettingsRecoveryCodesProps, type OrySettingsTotpProps, type OrySettingsWebauthnProps, OryTwoStepCard, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type VerificationFlowContainer, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryConfiguration, useOryFlow };
|