mirror of
https://github.com/logto-io/logto.git
synced 2025-04-07 23:01:25 -05:00
chore(phrases): update error phrases i18n (#3540)
This commit is contained in:
parent
44ef8258ff
commit
d8aa00f7d5
6 changed files with 390 additions and 340 deletions
|
@ -1,7 +1,7 @@
|
|||
const errors = {
|
||||
request: {
|
||||
invalid_input: 'Input is invalid. {{details}}', // UNTRANSLATED
|
||||
general: 'Request error occurred.', // UNTRANSLATED
|
||||
invalid_input: 'Eingabe ist ungültig. {{details}}',
|
||||
general: 'Es ist ein Fehler bei der Anfrage aufgetreten.',
|
||||
},
|
||||
auth: {
|
||||
authorization_header_missing: 'Autorisierungs-Header fehlt.',
|
||||
|
@ -11,14 +11,15 @@ const errors = {
|
|||
expected_role_not_found:
|
||||
'Erwartete Rolle nicht gefunden. Bitte überprüfe deine Rollen und Berechtigungen.',
|
||||
jwt_sub_missing: '`sub` fehlt in JWT.',
|
||||
require_re_authentication: 'Re-authentication is required to perform a protected action.', // UNTRANSLATED
|
||||
require_re_authentication:
|
||||
'Zur Durchführung einer geschützten Aktion ist eine erneute Authentifizierung erforderlich.',
|
||||
},
|
||||
guard: {
|
||||
invalid_input: 'Die Anfrage {{type}} ist ungültig.',
|
||||
invalid_pagination: 'Die Paginierung der Anfrage ist ungültig.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.', // UNTRANSLATED
|
||||
file_size_exceeded: 'File size exceeded.', // UNTRANSLATED
|
||||
mime_type_not_allowed: 'MIME type is not allowed.', // UNTRANSLATED
|
||||
can_not_get_tenant_id: 'Die tenant_id konnte nicht aus der Anfrage abgerufen werden.',
|
||||
file_size_exceeded: 'Dateigröße überschritten.',
|
||||
mime_type_not_allowed: 'Der MIME-Typ ist nicht erlaubt.',
|
||||
},
|
||||
oidc: {
|
||||
aborted: 'Der Endnutzer hat die Interaktion abgebrochen.',
|
||||
|
@ -39,35 +40,40 @@ const errors = {
|
|||
provider_error: 'OIDC interner Fehler: {{message}}.',
|
||||
},
|
||||
user: {
|
||||
username_already_in_use: 'This username is already in use.', // UNTRANSLATED
|
||||
email_already_in_use: 'This email is associated with an existing account.', // UNTRANSLATED
|
||||
phone_already_in_use: 'This phone number is associated with an existing account.', // UNTRANSLATED
|
||||
username_already_in_use: 'Dieser Benutzername wird bereits verwendet.',
|
||||
email_already_in_use: 'Diese E-Mail-Adresse ist mit einem vorhandenen Konto verknüpft.',
|
||||
phone_already_in_use: 'Diese Telefonnummer ist mit einem vorhandenen Konto verknüpft.',
|
||||
invalid_email: 'Ungültige E-Mail.',
|
||||
invalid_phone: 'Ungültige Telefonnummer.',
|
||||
email_not_exist: 'Die E-Mail wurde noch nicht registriert.',
|
||||
phone_not_exist: 'Die Telefonnummer wurde noch nicht registriert.',
|
||||
identity_not_exist: 'Die Identität wurde noch nicht registriert.',
|
||||
identity_already_in_use: 'Die Identität wurde registriert.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.', // UNTRANSLATED
|
||||
social_account_exists_in_profile: 'Sie haben diesen Social-Media-Account bereits verknüpft.',
|
||||
cannot_delete_self: 'Du kannst dich nicht selbst löschen.',
|
||||
sign_up_method_not_enabled: 'This sign-up method is not enabled.', // UNTRANSLATED
|
||||
sign_in_method_not_enabled: 'This sign-in method is not enabled.', // UNTRANSLATED
|
||||
sign_up_method_not_enabled: 'Diese Anmeldeart ist nicht aktiviert.',
|
||||
sign_in_method_not_enabled: 'Diese Anmeldemethode ist nicht aktiviert.',
|
||||
same_password: 'Das neue Passwort muss sich vom alten unterscheiden.',
|
||||
password_required_in_profile: 'You need to set a password before signing-in.', // UNTRANSLATED
|
||||
new_password_required_in_profile: 'You need to set a new password.', // UNTRANSLATED
|
||||
password_exists_in_profile: 'Password already exists in your profile.', // UNTRANSLATED
|
||||
username_required_in_profile: 'You need to set a username before signing-in.', // UNTRANSLATED
|
||||
username_exists_in_profile: 'Username already exists in your profile.', // UNTRANSLATED
|
||||
email_required_in_profile: 'You need to add an email address before signing-in.', // UNTRANSLATED
|
||||
email_exists_in_profile: 'Your profile has already associated with an email address.', // UNTRANSLATED
|
||||
phone_required_in_profile: 'You need to add a phone number before signing-in.', // UNTRANSLATED
|
||||
phone_exists_in_profile: 'Your profile has already associated with a phone number.', // UNTRANSLATED
|
||||
password_required_in_profile:
|
||||
'Sie müssen ein Passwort festlegen, bevor Sie sich anmelden können.',
|
||||
new_password_required_in_profile: 'Sie müssen ein neues Passwort festlegen.',
|
||||
password_exists_in_profile: 'Das Passwort ist bereits in Ihrem Profil vorhanden.',
|
||||
username_required_in_profile:
|
||||
'Sie müssen einen Benutzernamen festlegen, bevor Sie sich anmelden können.',
|
||||
username_exists_in_profile: 'Der Benutzername ist bereits in Ihrem Profil vorhanden.',
|
||||
email_required_in_profile:
|
||||
'Sie müssen eine E-Mail-Adresse hinzufügen, bevor Sie sich anmelden können.',
|
||||
email_exists_in_profile: 'Ihr Profil ist bereits mit einer E-Mail-Adresse verknüpft.',
|
||||
phone_required_in_profile:
|
||||
'Sie müssen eine Telefonnummer hinzufügen, bevor Sie sich anmelden können.',
|
||||
phone_exists_in_profile: 'Ihr Profil ist bereits mit einer Telefonnummer verknüpft.',
|
||||
email_or_phone_required_in_profile:
|
||||
'You need to add an email address or phone number before signing-in.', // UNTRANSLATED
|
||||
suspended: 'This account is suspended.', // UNTRANSLATED
|
||||
user_not_exist: 'User with {{ identifier }} does not exist.', // UNTRANSLATED,
|
||||
missing_profile: 'You need to provide additional info before signing-in.', // UNTRANSLATED
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user', // UNTRANSLATED
|
||||
'Sie müssen eine E-Mail-Adresse oder eine Telefonnummer hinzufügen, bevor Sie sich anmelden können.',
|
||||
suspended: 'Dieses Konto wurde gesperrt.',
|
||||
user_not_exist: 'Der Benutzer mit {{ identifier }} existiert nicht.',
|
||||
missing_profile:
|
||||
'Sie müssen zusätzliche Informationen angeben, bevor Sie sich anmelden können.',
|
||||
role_exists: 'Die Rollen-ID {{roleId}} wurde diesem Benutzer bereits hinzugefügt.',
|
||||
},
|
||||
password: {
|
||||
unsupported_encryption_method: 'Die Verschlüsselungsmethode {{name}} wird nicht unterstützt.',
|
||||
|
@ -91,55 +97,64 @@ const errors = {
|
|||
verification_failed:
|
||||
'Die Verifizierung war nicht erfolgreich. Starte die Verifizierung neu und versuche es erneut.',
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.', // UNTRANSLATED
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.', // UNTRANSLATED
|
||||
'Die Connector-Sitzung zur Token-Validierung wurde nicht gefunden.',
|
||||
identifier_not_found:
|
||||
'Benutzerkennung nicht gefunden. Bitte gehen Sie zurück und melden Sie sich erneut an.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.', // UNTRANSLATED
|
||||
'Interaktionssitzung nicht gefunden. Bitte gehen Sie zurück und starten Sie die Sitzung erneut.',
|
||||
},
|
||||
connector: {
|
||||
// UNTRANSLATED
|
||||
general: 'Error occurred in connector: {{errorDescription}}',
|
||||
not_found: 'Cannot find any available connector for type: {{type}}.',
|
||||
not_enabled: 'The connector is not enabled.',
|
||||
invalid_metadata: "The connector's metadata is invalid.",
|
||||
invalid_config_guard: "The connector's config guard is invalid.",
|
||||
unexpected_type: "The connector's type is unexpected.",
|
||||
invalid_request_parameters: 'The request is with wrong input parameter(s).',
|
||||
insufficient_request_parameters: 'The request might miss some input parameters.',
|
||||
invalid_config: "The connector's config is invalid.",
|
||||
invalid_response: "The connector's response is invalid.",
|
||||
template_not_found: 'Unable to find correct template in connector config.',
|
||||
not_implemented: '{{method}}: has not been implemented yet.',
|
||||
social_invalid_access_token: "The connector's access token is invalid.",
|
||||
invalid_auth_code: "The connector's auth code is invalid.",
|
||||
social_invalid_id_token: "The connector's id token is invalid.",
|
||||
authorization_failed: "The user's authorization process is unsuccessful.",
|
||||
social_auth_code_invalid: 'Unable to get access token, please check authorization code.',
|
||||
more_than_one_sms: 'The number of SMS connectors is larger then 1.',
|
||||
more_than_one_email: 'The number of Email connectors is larger then 1.',
|
||||
general: 'Fehler aufgetreten im Connector: {{errorDescription}}',
|
||||
not_found: 'Kein verfügbarer Connector für Typ {{type}} gefunden.',
|
||||
not_enabled: 'Der Connector ist nicht aktiviert.',
|
||||
invalid_metadata: 'Die Metadaten des Connectors sind ungültig.',
|
||||
invalid_config_guard: 'Die Konfiguration des Connectors ist ungültig.',
|
||||
unexpected_type: 'Der Typ des Connectors ist unerwartet.',
|
||||
invalid_request_parameters: 'Die Anfrage enthält falsche Eingabeparameter.',
|
||||
insufficient_request_parameters:
|
||||
'Die Anfrage enthält möglicherweise nicht alle erforderlichen Eingabeparameter.',
|
||||
invalid_config: 'Die Konfiguration des Connectors ist ungültig.',
|
||||
invalid_response: 'Die Antwort des Connectors ist ungültig.',
|
||||
template_not_found:
|
||||
'Die richtige Vorlage in der Connector-Konfiguration konnte nicht gefunden werden.',
|
||||
not_implemented: '{{method}}: wurde noch nicht implementiert.',
|
||||
social_invalid_access_token: 'Der Access Token des Connectors ist ungültig.',
|
||||
invalid_auth_code: 'Der Authentifizierungscode des Connectors ist ungültig.',
|
||||
social_invalid_id_token: 'Der ID-Token des Connectors ist ungültig.',
|
||||
authorization_failed: 'Der Autorisierungsprozess des Benutzers war erfolglos.',
|
||||
social_auth_code_invalid:
|
||||
'Es konnte kein Access Token abgerufen werden. Bitte prüfen Sie den Autorisierungscode.',
|
||||
more_than_one_sms: 'Die Anzahl der SMS-Connectors ist größer als 1.',
|
||||
more_than_one_email: 'Die Anzahl der E-Mail-Connectors ist größer als 1.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
db_connector_type_mismatch: 'There is a connector in the DB that does not match the type.',
|
||||
not_found_with_connector_id: 'Can not find connector with given standard connector id.',
|
||||
'Mehrere Connector-Fabriken gefunden (mit ID {{connectorIds}}). Sie können unnötige Fabriken deinstallieren.',
|
||||
db_connector_type_mismatch:
|
||||
'Es gibt einen Connector in der Datenbank, der nicht dem Typ entspricht.',
|
||||
not_found_with_connector_id:
|
||||
'Connector mit der angegebenen Standard-Connector-ID konnte nicht gefunden werden.',
|
||||
multiple_instances_not_supported:
|
||||
'Can not create multiple instance with picked standard connector.',
|
||||
invalid_type_for_syncing_profile: 'You can only sync user profile with social connectors.',
|
||||
can_not_modify_target: "The connector 'target' can not be modified.",
|
||||
should_specify_target: "You should specify 'target'.",
|
||||
'Es können keine mehreren Instanzen mit dem ausgewählten Standard-Connector erstellt werden.',
|
||||
invalid_type_for_syncing_profile:
|
||||
'Sie können nur Benutzerprofile mit sozialen Connectors synchronisieren.',
|
||||
can_not_modify_target: "Der 'target'-Connector kann nicht geändert werden.",
|
||||
should_specify_target: "Sie sollten den 'target' angeben.",
|
||||
multiple_target_with_same_platform:
|
||||
'You can not have multiple social connectors that have same target and platform.',
|
||||
'Sie können keine mehreren sozialen Connectors haben, die das gleiche Ziel und die gleiche Plattform haben.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.",
|
||||
"Die 'Metadaten' dieses Connectors können nicht überschrieben werden.",
|
||||
},
|
||||
verification_code: {
|
||||
phone_email_empty: 'Both phone and email are empty.', // UNTRANSLATED
|
||||
not_found: 'Verification code not found. Please send verification code first.', // UNTRANSLATED
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
code_mismatch: 'Invalid verification code.', // UNTRANSLATED
|
||||
expired: 'Verification code has expired. Please request a new verification code.', // UNTRANSLATED
|
||||
phone_email_empty: 'Sowohl Telefon als auch E-Mail sind leer.',
|
||||
not_found: 'Bestätigungscode nicht gefunden. Bitte senden Sie zuerst den Bestätigungscode.',
|
||||
phone_mismatch:
|
||||
'Telefonnummer stimmt nicht überein. Bitte fordern Sie einen neuen Bestätigungscode an.',
|
||||
email_mismatch:
|
||||
'E-Mail stimmt nicht überein. Bitte fordern Sie einen neuen Bestätigungscode an.',
|
||||
code_mismatch: 'Ungültiger Bestätigungscode.',
|
||||
expired: 'Bestätigungscode ist abgelaufen. Bitte fordern Sie einen neuen Bestätigungscode an.',
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.', // UNTRANSLATED
|
||||
'Die Begrenzung für die Anzahl der Bestätigungscode-Wiederholungen wurde überschritten. Bitte fordern Sie einen neuen Bestätigungscode an.',
|
||||
},
|
||||
sign_in_experiences: {
|
||||
empty_content_url_of_terms_of_use:
|
||||
|
@ -149,15 +164,20 @@ const errors = {
|
|||
enabled_connector_not_found: 'Aktivierter {{type}} Connector nicht gefunden.',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'Es darf nur eine primäre Anmeldemethode geben. Bitte überprüfe deine Eingabe.',
|
||||
username_requires_password: 'Must enable set a password for username sign up identifier.', // UNTRANSLATED
|
||||
passwordless_requires_verify: 'Must enable verify for email/phone sign up identifier.', // UNTRANSLATED
|
||||
miss_sign_up_identifier_in_sign_in: 'Sign in methods must contain the sign up identifier.', // UNTRANSLATED
|
||||
username_requires_password:
|
||||
'Muss ein Passwort für den Benutzernamen zur Registrierung aktivieren.',
|
||||
passwordless_requires_verify:
|
||||
'Muss die Verifizierung für die Registrierung per E-Mail/Telefon aktivieren.',
|
||||
miss_sign_up_identifier_in_sign_in:
|
||||
'Anmeldeverfahren müssen den Registrierungs-Identifier enthalten.',
|
||||
password_sign_in_must_be_enabled:
|
||||
'Password sign in must be enabled when set a password is required in sign up.', // UNTRANSLATED
|
||||
'Die Passwort-Anmeldung muss aktiviert sein, wenn bei der Registrierung ein Passwort festgelegt wird.',
|
||||
code_sign_in_must_be_enabled:
|
||||
'Verification code sign in must be enabled when set a password is not required in sign up.', // UNTRANSLATED
|
||||
'Die Anmeldung mit Bestätigungscode muss aktiviert sein, wenn bei der Registrierung kein Passwort festgelegt wird.',
|
||||
|
||||
unsupported_default_language: 'Die Sprache - {{language}} wird momentan nicht unterstützt.',
|
||||
at_least_one_authentication_factor: 'You have to select at least one authentication factor.', // UNTRANSLATED
|
||||
at_least_one_authentication_factor:
|
||||
'Sie müssen mindestens einen Authentifizierungsfaktor auswählen.',
|
||||
},
|
||||
localization: {
|
||||
cannot_delete_default_language:
|
||||
|
@ -179,22 +199,22 @@ const errors = {
|
|||
invalid_type: 'Der Log Typ ist ungültig.',
|
||||
},
|
||||
role: {
|
||||
name_in_use: 'This role name {{name}} is already in use', // UNTRANSLATED
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role', // UNTRANSLATED
|
||||
user_exists: 'The user id {{userId}} is already been added to this role', // UNTRANSLATED
|
||||
name_in_use: 'Dieser Rollenname {{name}} wird bereits verwendet.',
|
||||
scope_exists: 'Die Scope-ID {{scopeId}} wurde bereits zu dieser Rolle hinzugefügt.',
|
||||
user_exists: 'Die Benutzer-ID {{userId}} wurde bereits zu dieser Rolle hinzugefügt.',
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first', // UNTRANSLATED
|
||||
'Einige der Standardrollennamen sind in der Datenbank nicht vorhanden. Bitte stellen Sie sicher, dass Sie zuerst Rollen erstellen.',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".', // UNTRANSLATED
|
||||
'Sie versuchen möglicherweise, eine interne Rolle zu aktualisieren oder zu löschen, was von Logto verboten ist. Wenn Sie eine neue Rolle erstellen, versuchen Sie es mit einem anderen Namen, der nicht mit "#internal:" beginnt.',
|
||||
},
|
||||
scope: {
|
||||
name_exists: 'The scope name {{name}} is already in use', // UNTRANSLATED
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.', // UNTRANSLATED
|
||||
name_exists: 'Der Scope-Name {{name}} ist bereits in Verwendung',
|
||||
name_with_space: 'Der Name des Scopes darf keine Leerzeichen enthalten.',
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.', // UNTRANSLATED
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.', // UNTRANSLATED
|
||||
upload_error: 'Failed to upload file to the storage provider.', // UNTRANSLATED
|
||||
not_configured: 'Der Storage-Anbieter ist nicht konfiguriert.',
|
||||
missing_parameter: 'Fehlender Parameter {{parameter}} für den Storage-Anbieter.',
|
||||
upload_error: 'Das Hochladen der Datei zum Storage-Anbieter ist fehlgeschlagen.',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const errors = {
|
||||
request: {
|
||||
invalid_input: 'Input is invalid. {{details}}', // UNTRANSLATED
|
||||
general: 'Request error occurred.', // UNTRANSLATED
|
||||
invalid_input: "L'entrée est invalide. {{details}}",
|
||||
general: "Une erreur de requête s'est produite.",
|
||||
},
|
||||
auth: {
|
||||
authorization_header_missing: "L'en-tête d'autorisation est manquant.",
|
||||
|
@ -12,14 +12,16 @@ const errors = {
|
|||
expected_role_not_found:
|
||||
'Expected role not found. Please check your user roles and permissions.',
|
||||
jwt_sub_missing: '`sub` manquant dans JWT.',
|
||||
require_re_authentication: 'Re-authentication is required to perform a protected action.', // UNTRANSLATED
|
||||
require_re_authentication:
|
||||
'La ré-authentification est requise pour effectuer une action protégée.',
|
||||
},
|
||||
guard: {
|
||||
invalid_input: "La requête {{type}} n'est pas valide.",
|
||||
invalid_pagination: "La valeur de la pagination de la requête n'est pas valide.",
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.', // UNTRANSLATED
|
||||
file_size_exceeded: 'File size exceeded.', // UNTRANSLATED
|
||||
mime_type_not_allowed: 'MIME type is not allowed.', // UNTRANSLATED
|
||||
can_not_get_tenant_id:
|
||||
"Impossible de récupérer l'identifiant du locataire à partir de la demande.",
|
||||
file_size_exceeded: 'Taille du fichier dépassée.',
|
||||
mime_type_not_allowed: "Le type MIME n'est pas autorisé.",
|
||||
},
|
||||
oidc: {
|
||||
aborted: "L'utilisateur a abandonné l'interaction.",
|
||||
|
@ -40,35 +42,36 @@ const errors = {
|
|||
provider_error: "Erreur interne de l'OIDC : {{message}}.",
|
||||
},
|
||||
user: {
|
||||
username_already_in_use: 'This username is already in use.', // UNTRANSLATED
|
||||
email_already_in_use: 'This email is associated with an existing account.', // UNTRANSLATED
|
||||
phone_already_in_use: 'This phone number is associated with an existing account.', // UNTRANSLATED
|
||||
username_already_in_use: "Ce nom d'utilisateur est déjà utilisé.",
|
||||
email_already_in_use: 'Cet e-mail est associé à un compte existant.',
|
||||
phone_already_in_use: 'Ce numéro de téléphone est associé à un compte existant.',
|
||||
invalid_email: 'Addresse email incorrecte.',
|
||||
invalid_phone: 'Numéro de téléphone incorrect.',
|
||||
email_not_exist: "L'adresse e-mail n'a pas encore été enregistrée.",
|
||||
phone_not_exist: "Le numéro de téléphone n'a pas encore été enregistré.",
|
||||
identity_not_exist: "Le compte social n'a pas encore été enregistré.",
|
||||
identity_already_in_use: 'Le compte social a été enregistré.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.', // UNTRANSLATED
|
||||
cannot_delete_self: 'You cannot delete yourself.', // UNTRANSLATED
|
||||
sign_up_method_not_enabled: 'This sign-up method is not enabled.', // UNTRANSLATED
|
||||
sign_in_method_not_enabled: 'This sign-in method is not enabled.', // UNTRANSLATED
|
||||
same_password: 'New password cannot be the same as your old password.', // UNTRANSLATED
|
||||
password_required_in_profile: 'You need to set a password before signing-in.', // UNTRANSLATED
|
||||
new_password_required_in_profile: 'You need to set a new password.', // UNTRANSLATED
|
||||
password_exists_in_profile: 'Password already exists in your profile.', // UNTRANSLATED
|
||||
username_required_in_profile: 'You need to set a username before signing-in.', // UNTRANSLATED
|
||||
username_exists_in_profile: 'Username already exists in your profile.', // UNTRANSLATED
|
||||
email_required_in_profile: 'You need to add an email address before signing-in.', // UNTRANSLATED
|
||||
email_exists_in_profile: 'Your profile has already associated with an email address.', // UNTRANSLATED
|
||||
phone_required_in_profile: 'You need to add a phone number before signing-in.', // UNTRANSLATED
|
||||
phone_exists_in_profile: 'Your profile has already associated with a phone number.', // UNTRANSLATED
|
||||
social_account_exists_in_profile: 'Vous avez déjà associé ce compte social.',
|
||||
cannot_delete_self: 'Vous ne pouvez pas vous supprimer vous-même.',
|
||||
sign_up_method_not_enabled: "Cette méthode d'inscription n'est pas activée.",
|
||||
sign_in_method_not_enabled: "Cette méthode de connexion n'est pas activée.",
|
||||
same_password: "Le nouveau mot de passe ne peut pas être identique à l'ancien.",
|
||||
password_required_in_profile: 'Vous devez définir un mot de passe avant de vous connecter.',
|
||||
new_password_required_in_profile: 'Vous devez définir un nouveau mot de passe.',
|
||||
password_exists_in_profile: 'Le mot de passe existe déjà dans votre profil.',
|
||||
username_required_in_profile:
|
||||
"Vous devez définir un nom d'utilisateur avant de vous connecter.",
|
||||
username_exists_in_profile: "Le nom d'utilisateur existe déjà dans votre profil.",
|
||||
email_required_in_profile: 'Vous devez ajouter une adresse e-mail avant de vous connecter.',
|
||||
email_exists_in_profile: 'Votre profil est déjà associé à une adresse e-mail.',
|
||||
phone_required_in_profile: 'Vous devez ajouter un numéro de téléphone avant de vous connecter.',
|
||||
phone_exists_in_profile: 'Votre profil est déjà associé à un numéro de téléphone.',
|
||||
email_or_phone_required_in_profile:
|
||||
'You need to add an email address or phone number before signing-in.', // UNTRANSLATED
|
||||
suspended: 'This account is suspended.', // UNTRANSLATED
|
||||
user_not_exist: 'User with {{ identifier }} does not exist.', // UNTRANSLATED,
|
||||
missing_profile: 'You need to provide additional info before signing-in.', // UNTRANSLATED
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user', // UNTRANSLATED
|
||||
'Vous devez ajouter une adresse e-mail ou un numéro de téléphone avant de vous connecter.',
|
||||
suspended: 'Ce compte est suspendu.',
|
||||
user_not_exist: "L'utilisateur avec {{ identifier }} n'existe pas.",
|
||||
missing_profile: 'Vous devez fournir des informations supplémentaires avant de vous connecter.',
|
||||
role_exists: "L'ID de rôle {{roleId}} a déjà été ajouté à cet utilisateur",
|
||||
},
|
||||
password: {
|
||||
unsupported_encryption_method: "La méthode de cryptage {{name}} n'est pas prise en charge.",
|
||||
|
@ -87,28 +90,30 @@ const errors = {
|
|||
connector_session_not_found:
|
||||
"La session du connecteur n'a pas été trouvée. Veuillez revenir en arrière et vous connecter à nouveau.",
|
||||
verification_session_not_found:
|
||||
'The verification was not successful. Restart the verification flow and try again.', // UNTRANSLATED
|
||||
"La vérification n'a pas abouti. Redémarrez le processus de vérification et réessayez.",
|
||||
verification_expired:
|
||||
'The connection has timed out. Verify again to ensure your account safety.', // UNTRANSLATED
|
||||
'La connexion a expiré. Vérifiez à nouveau pour assurer la sécurité de votre compte.',
|
||||
unauthorized: "Veuillez vous enregistrer d'abord.",
|
||||
unsupported_prompt_name: "Nom d'invite non supporté.",
|
||||
forgot_password_not_enabled: 'Forgot password is not enabled.', // UNTRANSLATED
|
||||
forgot_password_not_enabled:
|
||||
"La fonctionnalité de réinitialisation de mot de passe n'est pas activée.",
|
||||
verification_failed:
|
||||
'The verification was not successful. Restart the verification flow and try again.', // UNTRANSLATED
|
||||
"La vérification n'a pas réussi. Veuillez recommencer le processus de vérification.",
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.', // UNTRANSLATED
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.', // UNTRANSLATED
|
||||
'La session de validation de jeton de connecteur est introuvable.',
|
||||
identifier_not_found:
|
||||
'Identifiant utilisateur introuvable. Veuillez retourner en arrière et vous connecter à nouveau.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.', // UNTRANSLATED
|
||||
"Session d'interaction introuvable. Veuillez retourner en arrière et recommencer la session.",
|
||||
},
|
||||
connector: {
|
||||
general: "Une erreur s'est produite dans le connecteur: {{errorDescription}}",
|
||||
not_found: 'Impossible de trouver un connecteur disponible pour le type : {{type}}.',
|
||||
not_enabled: "Le connecteur n'est pas activé.",
|
||||
invalid_metadata: "The connector's metadata is invalid.", // UNTRANSLATED
|
||||
invalid_config_guard: "The connector's config guard is invalid.", // UNTRANSLATED
|
||||
unexpected_type: "The connector's type is unexpected.", // UNTRANSLATED
|
||||
invalid_request_parameters: 'The request is with wrong input parameter(s).', // UNTRANSLATED
|
||||
invalid_metadata: 'Les métadonnées du connecteur sont invalides.',
|
||||
invalid_config_guard: 'La configuration du connecteur est invalide.',
|
||||
unexpected_type: 'Le type de connecteur est inattendu.',
|
||||
invalid_request_parameters: "La requête contient des paramètres d'entrée incorrects.",
|
||||
insufficient_request_parameters: 'Certains paramètres peuvent manquer dans la requête.',
|
||||
invalid_config: "La configuration du connecteur n'est pas valide.",
|
||||
invalid_response: "La réponse du connecteur n'est pas valide.",
|
||||
|
@ -123,29 +128,33 @@ const errors = {
|
|||
more_than_one_sms: 'Le nombre de connecteurs SMS est supérieur à 1.',
|
||||
more_than_one_email: 'Le nombre de connecteurs Email est supérieur à 1.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
'Plusieurs fabriques de connecteurs ont été trouvées (avec les identifiants {{connectorIds}}), vous pouvez désinstaller ceux qui ne sont pas nécessaires.',
|
||||
db_connector_type_mismatch:
|
||||
'Il y a un connecteur dans la base de donnée qui ne correspond pas au type.',
|
||||
not_found_with_connector_id: 'Can not find connector with given standard connector id.', // UNTRANSLATED
|
||||
not_found_with_connector_id:
|
||||
"Impossible de trouver le connecteur avec l'identifiant de connecteur standard fourni.",
|
||||
multiple_instances_not_supported:
|
||||
'Can not create multiple instance with picked standard connector.', // UNTRANSLATED
|
||||
invalid_type_for_syncing_profile: 'You can only sync user profile with social connectors.', // UNTRANSLATED
|
||||
can_not_modify_target: "The connector 'target' can not be modified.", // UNTRANSLATED
|
||||
should_specify_target: "You should specify 'target'.", // UNTRANSLATED
|
||||
'Impossible de créer plusieurs instances avec le connecteur standard sélectionné.',
|
||||
invalid_type_for_syncing_profile:
|
||||
"Vous ne pouvez synchroniser le profil utilisateur qu'avec les connecteurs sociaux.",
|
||||
can_not_modify_target: 'Le "target" du connecteur ne peut pas être modifié.',
|
||||
should_specify_target: 'Vous devez spécifier le "target".',
|
||||
multiple_target_with_same_platform:
|
||||
'You can not have multiple social connectors that have same target and platform.', // UNTRANSLATED
|
||||
'Vous ne pouvez pas avoir plusieurs connecteurs sociaux ayant la même "target" et la même plateforme.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.", // UNTRANSLATED
|
||||
'Les "metadata" de ce connecteur ne peuvent pas être modifiés.',
|
||||
},
|
||||
verification_code: {
|
||||
phone_email_empty: 'Both phone and email are empty.', // UNTRANSLATED
|
||||
not_found: 'Verification code not found. Please send verification code first.', // UNTRANSLATED
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
code_mismatch: 'Invalid verification code.', // UNTRANSLATED
|
||||
expired: 'Verification code has expired. Please request a new verification code.', // UNTRANSLATED
|
||||
phone_email_empty: "Les deux le téléphone et l'email sont vides.",
|
||||
not_found:
|
||||
"Le code de vérification n'a pas été trouvé. Veuillez d'abord envoyer le code de vérification.",
|
||||
phone_mismatch:
|
||||
'Téléphone ne correspond pas. Veuillez demander un nouveau code de vérification.',
|
||||
email_mismatch: 'Email ne correspond pas. Veuillez demander un nouveau code de vérification.',
|
||||
code_mismatch: 'Code de vérification invalide.',
|
||||
expired: 'Le code de vérification a expiré. Veuillez demander un nouveau code de vérification.',
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.', // UNTRANSLATED
|
||||
'La limite de tentatives de code de vérification a été dépassée. Veuillez demander un nouveau code de vérification.',
|
||||
},
|
||||
sign_in_experiences: {
|
||||
empty_content_url_of_terms_of_use:
|
||||
|
@ -155,20 +164,26 @@ const errors = {
|
|||
enabled_connector_not_found: 'Le connecteur {{type}} activé est introuvable.',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'Il doit y avoir une et une seule méthode de connexion primaire. Veuillez vérifier votre saisie.',
|
||||
username_requires_password: 'Must enable set a password for username sign up identifier.', // UNTRANSLATED
|
||||
passwordless_requires_verify: 'Must enable verify for email/phone sign up identifier.', // UNTRANSLATED
|
||||
miss_sign_up_identifier_in_sign_in: 'Sign in methods must contain the sign up identifier.', // UNTRANSLATED
|
||||
username_requires_password:
|
||||
"Vous devez activer la définition d'un mot de passe pour l'identifiant d'inscription de nom d'utilisateur.",
|
||||
passwordless_requires_verify:
|
||||
"Vous devez activer la vérification pour l'identifiant d'inscription par e-mail/numéro de téléphone.",
|
||||
miss_sign_up_identifier_in_sign_in:
|
||||
"Les méthodes de connexion doivent contenir l'identifiant d'inscription.",
|
||||
password_sign_in_must_be_enabled:
|
||||
'Password sign in must be enabled when set a password is required in sign up.', // UNTRANSLATED
|
||||
"La connexion par mot de passe doit être activée lorsque la définition d'un mot de passe est requise lors de l'inscription.",
|
||||
code_sign_in_must_be_enabled:
|
||||
'Verification code sign in must be enabled when set a password is not required in sign up.', // UNTRANSLATED
|
||||
unsupported_default_language: 'This language - {{language}} is not supported at the moment.', // UNTRANSLATED
|
||||
at_least_one_authentication_factor: 'You have to select at least one authentication factor.', // UNTRANSLATED
|
||||
"La connexion par code de vérification doit être activée lorsque la définition d'un mot de passe n'est pas requise lors de l'inscription.",
|
||||
unsupported_default_language:
|
||||
"Cette langue - {{language}} n'est pas prise en charge pour le moment.",
|
||||
at_least_one_authentication_factor:
|
||||
"Vous devez sélectionner au moins un facteur d'authentification.",
|
||||
},
|
||||
localization: {
|
||||
cannot_delete_default_language:
|
||||
'{{languageTag}} is set as your default language and can’t be deleted.', // UNTRANSLATED
|
||||
invalid_translation_structure: 'Invalid data schemas. Please check your input and try again.', // UNTRANSLATED
|
||||
'{{languageTag}} est défini comme votre langue par défaut et ne peut pas être supprimé.',
|
||||
invalid_translation_structure:
|
||||
'Schémas de données invalides. Veuillez vérifier votre entrée et réessayer.',
|
||||
},
|
||||
swagger: {
|
||||
invalid_zod_type: 'Type Zod non valide. Veuillez vérifier la configuration du garde-route.',
|
||||
|
@ -182,25 +197,25 @@ const errors = {
|
|||
not_found: "La ressource n'existe pas.",
|
||||
},
|
||||
log: {
|
||||
invalid_type: 'The log type is invalid.', // UNTRANSLATED
|
||||
invalid_type: 'Type de journalisation invalide.',
|
||||
},
|
||||
role: {
|
||||
name_in_use: 'This role name {{name}} is already in use', // UNTRANSLATED
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role', // UNTRANSLATED
|
||||
user_exists: 'The user id {{userId}} is already been added to this role', // UNTRANSLATED
|
||||
name_in_use: 'Ce nom de rôle {{name}} est déjà utilisé',
|
||||
scope_exists: "L'identifiant de portée {{scopeId}} a déjà été ajouté à ce rôle",
|
||||
user_exists: "L'identifiant d'utilisateur {{userId}} a déjà été ajouté à ce rôle",
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first', // UNTRANSLATED
|
||||
"Certains noms de rôles par défaut n'existent pas dans la base de données, veuillez vous assurer de créer d'abord des rôles",
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".', // UNTRANSLATED
|
||||
'Vous essayez peut-être de mettre à jour ou de supprimer un rôle interne, ce qui est interdit par Logto. Si vous créez un nouveau rôle, essayez un autre nom qui ne commence pas par "#internal:".',
|
||||
},
|
||||
scope: {
|
||||
name_exists: 'The scope name {{name}} is already in use', // UNTRANSLATED
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.', // UNTRANSLATED
|
||||
name_exists: 'Le nom de portée {{name}} est déjà utilisé',
|
||||
name_with_space: "Le nom de la portée ne peut pas contenir d'espace.",
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.', // UNTRANSLATED
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.', // UNTRANSLATED
|
||||
upload_error: 'Failed to upload file to the storage provider.', // UNTRANSLATED
|
||||
not_configured: "Le fournisseur de stockage n'est pas configuré.",
|
||||
missing_parameter: 'Paramètre manquant {{parameter}} pour le fournisseur de stockage.',
|
||||
upload_error: "Échec de l'envoi du fichier au fournisseur de stockage.",
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -16,9 +16,9 @@ const errors = {
|
|||
guard: {
|
||||
invalid_input: '{{type}} 요청 타입은 유효하지 않아요.',
|
||||
invalid_pagination: '요청의 Pagination 값이 유효하지 않아요.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.', // UNTRANSLATED
|
||||
file_size_exceeded: 'File size exceeded.', // UNTRANSLATED
|
||||
mime_type_not_allowed: 'MIME type is not allowed.', // UNTRANSLATED
|
||||
can_not_get_tenant_id: '요청에서 테넌트 ID를 가져올 수 없습니다.',
|
||||
file_size_exceeded: '파일 크기가 초과되었습니다.',
|
||||
mime_type_not_allowed: 'MIME 타입이 허용되지 않습니다.',
|
||||
},
|
||||
oidc: {
|
||||
aborted: 'End 사용자가 상호 작용을 중단했어요.',
|
||||
|
@ -47,7 +47,7 @@ const errors = {
|
|||
phone_not_exist: '휴대전화번호가 아직 등록되지 않았어요.',
|
||||
identity_not_exist: '소셜 계정이 아직 등록되지 않았어요.',
|
||||
identity_already_in_use: '소셜 계정이 이미 등록되어 있어요.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.', // UNTRANSLATED
|
||||
social_account_exists_in_profile: '이 소셜 계정은 이미 연동되어 있습니다.',
|
||||
cannot_delete_self: '자기 자신을 삭제할 수 없어요.',
|
||||
sign_up_method_not_enabled: '이 회원가입 방법은 활성화되어있지 않아요.',
|
||||
sign_in_method_not_enabled: '이 로그인 방법은 활성화되어있지 않아요.',
|
||||
|
@ -114,7 +114,7 @@ const errors = {
|
|||
more_than_one_sms: 'SMS 서비스는 1개만 연동되어야 해요.',
|
||||
more_than_one_email: '이메일 서비스는 1개만 연동되어야 해요.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
'다수의 커넥터 팩토리가 발견되었습니다 (ID {{connectorIds}}). 불필요한 팩토리는 제거해주세요.',
|
||||
db_connector_type_mismatch: '종류가 일치하지 않은 연동 서비스가 DB에 존재해요.',
|
||||
not_found_with_connector_id: '주어진 연동 ID로 연동 설정을 찾을 수 없어요.',
|
||||
multiple_instances_not_supported: '선택된 연동 기준으로 여러 인스턴스를 생성할 수 없어요.',
|
||||
|
@ -178,16 +178,16 @@ const errors = {
|
|||
default_role_missing:
|
||||
'기본 역할 이름의 일부가 데이터베이스에 존재하지 않아요. 먼저 역할을 생성해 주세요.',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".', // UNTRANSLATED
|
||||
'내부 역할 위반: Logto에서 금지되는 내부 역할을 업데이트하거나 삭제하려고 할 수 있습니다. 새 역할을 만드는 경우 "#internal:"으로 시작하지 않는 다른 이름을 시도해보세요.',
|
||||
},
|
||||
scope: {
|
||||
name_exists: '범위 이름 {{name}}이/가 이미 사용 중이에요.',
|
||||
name_with_space: '범위 이름에 공백을 포함할 수 없어요.',
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.', // UNTRANSLATED
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.', // UNTRANSLATED
|
||||
upload_error: 'Failed to upload file to the storage provider.', // UNTRANSLATED
|
||||
not_configured: '저장소 공급자가 구성되지 않았습니다.',
|
||||
missing_parameter: '저장소 공급자에 대한 누락된 매개변수 {{parameter}}.',
|
||||
upload_error: '파일을 저장소 공급자에 업로드하지 못했습니다.',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const errors = {
|
||||
request: {
|
||||
invalid_input: 'Input is invalid. {{details}}', // UNTRANSLATED
|
||||
general: 'Request error occurred.', // UNTRANSLATED
|
||||
invalid_input: 'Entrada inválida. {{details}}',
|
||||
general: 'Ocorreu um erro no pedido.',
|
||||
},
|
||||
auth: {
|
||||
authorization_header_missing: 'O cabeçalho de autorização está ausente.',
|
||||
|
@ -16,9 +16,9 @@ const errors = {
|
|||
guard: {
|
||||
invalid_input: 'A solicitação {{type}} é inválida.',
|
||||
invalid_pagination: 'O valor de paginação da solicitação é inválido.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.', // UNTRANSLATED
|
||||
file_size_exceeded: 'File size exceeded.', // UNTRANSLATED
|
||||
mime_type_not_allowed: 'MIME type is not allowed.', // UNTRANSLATED
|
||||
can_not_get_tenant_id: 'Não foi possível obter o ID do inquilino na solicitação.',
|
||||
file_size_exceeded: 'Tamanho do arquivo excedido.',
|
||||
mime_type_not_allowed: 'Tipo MIME não permitido.',
|
||||
},
|
||||
oidc: {
|
||||
aborted: 'A interação abortada pelo end-user',
|
||||
|
@ -48,7 +48,7 @@ const errors = {
|
|||
phone_not_exist: 'O número de telefone ainda não foi registrado.',
|
||||
identity_not_exist: 'A conta social ainda não foi registrada.',
|
||||
identity_already_in_use: 'A conta social foi associada a uma conta existente.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.', // UNTRANSLATED
|
||||
social_account_exists_in_profile: 'A conta social já está associada ao seu perfil.',
|
||||
cannot_delete_self: 'Você não pode excluir a si mesmo.',
|
||||
sign_up_method_not_enabled: 'Este método de inscrição não está ativado',
|
||||
sign_in_method_not_enabled: 'Este método de login não está habilitado.',
|
||||
|
@ -67,7 +67,7 @@ const errors = {
|
|||
suspended: 'Esta conta está suspensa.',
|
||||
user_not_exist: 'O usuário com {{ identifier }} não existe',
|
||||
missing_profile: 'Você precisa fornecer informações adicionais antes de fazer login.',
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user', // UNTRANSLATED
|
||||
role_exists: 'O id da função {{roleId}} já foi adicionado a este usuário',
|
||||
},
|
||||
password: {
|
||||
unsupported_encryption_method: 'O método de criptografia {{name}} não é suportado.',
|
||||
|
@ -92,10 +92,11 @@ const errors = {
|
|||
verification_failed:
|
||||
'A verificação não foi bem-sucedida. Reinicie o fluxo de verificação e tente novamente.',
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.', // UNTRANSLATED
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.', // UNTRANSLATED
|
||||
'A sessão de validação do token do conector não foi encontrada.',
|
||||
identifier_not_found:
|
||||
'Identificador de usuário não encontrado. Por favor, volte e faça o login novamente.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.', // UNTRANSLATED
|
||||
'Sessão de interação não encontrada. Por favor, volte e inicie a sessão novamente.',
|
||||
},
|
||||
connector: {
|
||||
general: 'Ocorreu um erro no conector: {{errorDescription}}',
|
||||
|
@ -119,7 +120,7 @@ const errors = {
|
|||
more_than_one_sms: 'O número de conectores SMS é maior que 1.',
|
||||
more_than_one_email: 'O número de conectores de e-mail é maior que 1.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
'Foram encontradas várias fábricas de conectores (com os ids {{connectorIds}}), você pode desinstalar as desnecessárias.',
|
||||
db_connector_type_mismatch: 'Existe um conector no banco de dados que não corresponde ao tipo.',
|
||||
not_found_with_connector_id:
|
||||
'Não é possível encontrar o conector com o ID de conector padrão fornecido.',
|
||||
|
@ -128,21 +129,22 @@ const errors = {
|
|||
invalid_type_for_syncing_profile:
|
||||
'Você só pode sincronizar o perfil do usuário com conectores sociais.',
|
||||
can_not_modify_target: 'O destino do conector não pode ser modificado.',
|
||||
should_specify_target: "You should specify 'target'.", // UNTRANSLATED
|
||||
should_specify_target: "Você deve especificar o 'destino'.",
|
||||
multiple_target_with_same_platform:
|
||||
'Você não pode ter vários conectores sociais com o mesmo destino e plataforma.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.", // UNTRANSLATED
|
||||
"Esta 'metadata' do conector não pode ser sobrescrita.",
|
||||
},
|
||||
verification_code: {
|
||||
phone_email_empty: 'Both phone and email are empty.', // UNTRANSLATED
|
||||
not_found: 'Verification code not found. Please send verification code first.', // UNTRANSLATED
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
code_mismatch: 'Invalid verification code.', // UNTRANSLATED
|
||||
expired: 'Verification code has expired. Please request a new verification code.', // UNTRANSLATED
|
||||
phone_email_empty: 'Tanto o telefone quanto o e-mail estão vazios.',
|
||||
not_found:
|
||||
'Código de verificação não encontrado. Por favor, envie um código de verificação primeiro.',
|
||||
phone_mismatch: 'Telefone não corresponde. Por favor, solicite um novo código de verificação.',
|
||||
email_mismatch: 'E-mail não corresponde. Por favor, solicite um novo código de verificação.',
|
||||
code_mismatch: 'Código de verificação inválido.',
|
||||
expired: 'O código de verificação expirou. Por favor, solicite um novo código de verificação.',
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.', // UNTRANSLATED
|
||||
'Excedido o limite de tentativas de código de verificação. Por favor, solicite um novo código de verificação.',
|
||||
},
|
||||
sign_in_experiences: {
|
||||
empty_content_url_of_terms_of_use:
|
||||
|
@ -186,22 +188,22 @@ const errors = {
|
|||
invalid_type: 'O tipo de registro é inválido.',
|
||||
},
|
||||
role: {
|
||||
name_in_use: 'This role name {{name}} is already in use', // UNTRANSLATED
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role', // UNTRANSLATED
|
||||
user_exists: 'The user id {{userId}} is already been added to this role', // UNTRANSLATED
|
||||
name_in_use: 'Este nome de papel {{name}} já está em uso',
|
||||
scope_exists: 'O id de escopo {{scopeId}} já foi adicionado a este papel',
|
||||
user_exists: 'O id de usuário {{userId}} já foi adicionado a este papel',
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first', // UNTRANSLATED
|
||||
'Alguns dos nomes de função padrão não existem no banco de dados, certifique-se de criar funções primeiro',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".', // UNTRANSLATED
|
||||
'Você pode estar tentando atualizar ou excluir uma função interna que é proibida pelo Logto. Se você estiver criando uma nova função, tente outro nome que não comece com "#internal:".',
|
||||
},
|
||||
scope: {
|
||||
name_exists: 'The scope name {{name}} is already in use', // UNTRANSLATED
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.', // UNTRANSLATED
|
||||
name_exists: 'O nome do escopo {{name}} já está em uso',
|
||||
name_with_space: 'O nome do escopo não pode conter espaços.',
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.', // UNTRANSLATED
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.', // UNTRANSLATED
|
||||
upload_error: 'Failed to upload file to the storage provider.', // UNTRANSLATED
|
||||
not_configured: 'O provedor de armazenamento não está configurado.',
|
||||
missing_parameter: 'Parâmetro {{parameter}} ausente para o provedor de armazenamento.',
|
||||
upload_error: 'Falha ao fazer upload do arquivo para o provedor de armazenamento.',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const errors = {
|
||||
request: {
|
||||
invalid_input: 'Input is invalid. {{details}}', // UNTRANSLATED
|
||||
general: 'Request error occurred.', // UNTRANSLATED
|
||||
invalid_input: 'Input inválido. {{details}}',
|
||||
general: 'Ocorreu um erro no pedido.',
|
||||
},
|
||||
auth: {
|
||||
authorization_header_missing: 'O cabeçalho de autorização está ausente.',
|
||||
|
@ -10,14 +10,15 @@ const errors = {
|
|||
forbidden: 'Proibido. Verifique os seus cargos e permissões.',
|
||||
expected_role_not_found: 'Role esperado não encontrado. Verifique os seus cargos e permissões.',
|
||||
jwt_sub_missing: 'Campo `sub` está ausente no JWT.',
|
||||
require_re_authentication: 'Re-authentication is required to perform a protected action.', // UNTRANSLATED
|
||||
require_re_authentication:
|
||||
'É necessária uma nova autenticação para executar uma ação protegida.',
|
||||
},
|
||||
guard: {
|
||||
invalid_input: 'O pedido {{type}} é inválido.',
|
||||
invalid_pagination: 'O valor de paginação enviado é inválido.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.', // UNTRANSLATED
|
||||
file_size_exceeded: 'File size exceeded.', // UNTRANSLATED
|
||||
mime_type_not_allowed: 'MIME type is not allowed.', // UNTRANSLATED
|
||||
can_not_get_tenant_id: 'Não é possível obter o ID do inquilino a partir do pedido.',
|
||||
file_size_exceeded: 'Tamanho do ficheiro excedido.',
|
||||
mime_type_not_allowed: 'Tipo MIME não permitido.',
|
||||
},
|
||||
oidc: {
|
||||
aborted: 'O utilizador final abortou a interação.',
|
||||
|
@ -38,35 +39,37 @@ const errors = {
|
|||
provider_error: 'Erro interno OIDC: {{message}}.',
|
||||
},
|
||||
user: {
|
||||
username_already_in_use: 'This username is already in use.', // UNTRANSLATED
|
||||
email_already_in_use: 'This email is associated with an existing account.', // UNTRANSLATED
|
||||
phone_already_in_use: 'This phone number is associated with an existing account.', // UNTRANSLATED
|
||||
username_already_in_use: 'Este nome de usuário já está em uso.',
|
||||
email_already_in_use: 'Este email já está associado a uma conta existente.',
|
||||
phone_already_in_use: 'Este número de telefone já está associado a uma conta existente.',
|
||||
invalid_email: 'Endereço de email inválido.',
|
||||
invalid_phone: 'Número de telefone inválido.',
|
||||
email_not_exist: 'O endereço de email ainda não foi registada.',
|
||||
phone_not_exist: 'O numero do telefone ainda não foi registada.',
|
||||
identity_not_exist: 'A conta social ainda não foi registada.',
|
||||
identity_already_in_use: 'A conta social foi registada.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.', // UNTRANSLATED
|
||||
social_account_exists_in_profile: 'A conta social já foi associada a este perfil.',
|
||||
cannot_delete_self: 'Não se pode remover a si mesmo.',
|
||||
sign_up_method_not_enabled: 'This sign-up method is not enabled.', // UNTRANSLATED
|
||||
sign_in_method_not_enabled: 'This sign-in method is not enabled.', // UNTRANSLATED
|
||||
same_password: 'New password cannot be the same as your old password.', // UNTRANSLATED
|
||||
password_required_in_profile: 'You need to set a password before signing-in.', // UNTRANSLATED
|
||||
new_password_required_in_profile: 'You need to set a new password.', // UNTRANSLATED
|
||||
password_exists_in_profile: 'Password already exists in your profile.', // UNTRANSLATED
|
||||
username_required_in_profile: 'You need to set a username before signing-in.', // UNTRANSLATED
|
||||
username_exists_in_profile: 'Username already exists in your profile.', // UNTRANSLATED
|
||||
email_required_in_profile: 'You need to add an email address before signing-in.', // UNTRANSLATED
|
||||
email_exists_in_profile: 'Your profile has already associated with an email address.', // UNTRANSLATED
|
||||
phone_required_in_profile: 'You need to add a phone number before signing-in.', // UNTRANSLATED
|
||||
phone_exists_in_profile: 'Your profile has already associated with a phone number.', // UNTRANSLATED
|
||||
sign_up_method_not_enabled: 'Este método de registo não está ativo.',
|
||||
sign_in_method_not_enabled: 'Este método de início de sessão não está ativo.',
|
||||
same_password: 'A nova palavra-passe não pode ser igual à antiga.',
|
||||
password_required_in_profile: 'Precisa de definir uma palavra-passe antes de iniciar sessão.',
|
||||
new_password_required_in_profile: 'Precisa de definir uma nova palavra-passe.',
|
||||
password_exists_in_profile: 'A palavra-passe já existe no seu perfil.',
|
||||
username_required_in_profile:
|
||||
'Precisa de definir um nome de utilizador antes de iniciar sessão.',
|
||||
username_exists_in_profile: 'O nome de utilizador já existe no seu perfil.',
|
||||
email_required_in_profile: 'Precisa de adicionar um endereço de email antes de iniciar sessão.',
|
||||
email_exists_in_profile: 'O seu perfil já está associado a um endereço de email.',
|
||||
phone_required_in_profile:
|
||||
'Precisa de adicionar um número de telefone antes de iniciar sessão.',
|
||||
phone_exists_in_profile: 'O seu perfil já está associado a um número de telefone.',
|
||||
email_or_phone_required_in_profile:
|
||||
'You need to add an email address or phone number before signing-in.', // UNTRANSLATED
|
||||
suspended: 'This account is suspended.', // UNTRANSLATED
|
||||
user_not_exist: 'User with {{ identifier }} does not exist.', // UNTRANSLATED,
|
||||
missing_profile: 'You need to provide additional info before signing-in.', // UNTRANSLATED
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user', // UNTRANSLATED
|
||||
'Precisa de adicionar um endereço de email ou um número de telefone antes de iniciar sessão.',
|
||||
suspended: 'Esta conta está suspensa.',
|
||||
user_not_exist: 'O utilizador com {{ identifier }} não existe.',
|
||||
missing_profile: 'Precisa de fornecer informações adicionais antes de iniciar sessão.',
|
||||
role_exists: 'O id da função {{roleId}} já foi adicionado a este utilizador.',
|
||||
},
|
||||
password: {
|
||||
unsupported_encryption_method: 'O método de enncriptação {{name}} não é suportado.',
|
||||
|
@ -83,19 +86,20 @@ const errors = {
|
|||
connector_session_not_found:
|
||||
'Sessão do conector não encontrada. Por favor, volte e faça login novamente.',
|
||||
verification_session_not_found:
|
||||
'The verification was not successful. Restart the verification flow and try again.', // UNTRANSLATED
|
||||
'A verificação não foi bem-sucedida. Reinicie o processo de verificação e tente novamente.',
|
||||
verification_expired:
|
||||
'The connection has timed out. Verify again to ensure your account safety.', // UNTRANSLATED
|
||||
'A conexão expirou. Verifique novamente para garantir a segurança de sua conta.',
|
||||
unauthorized: 'Faça login primeiro.',
|
||||
unsupported_prompt_name: 'Nome de prompt não suportado.',
|
||||
forgot_password_not_enabled: 'Forgot password is not enabled.', // UNTRANSLATED
|
||||
forgot_password_not_enabled: 'Recuperação de senha não está habilitada.',
|
||||
verification_failed:
|
||||
'The verification was not successful. Restart the verification flow and try again.', // UNTRANSLATED
|
||||
'A verificação não foi bem-sucedida. Reinicie o processo de verificação e tente novamente.',
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.', // UNTRANSLATED
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.', // UNTRANSLATED
|
||||
'A sessão do conector para validação do token não foi encontrada.',
|
||||
identifier_not_found:
|
||||
'Identificador do usuário não encontrado. Por favor, volte e faça login novamente.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.', // UNTRANSLATED
|
||||
'Sessão de interação não encontrada. Por favor, volte e inicie a sessão novamente.',
|
||||
},
|
||||
connector: {
|
||||
general: 'Ocorreu um erro no conector: {{errorDescription}}',
|
||||
|
@ -104,7 +108,7 @@ const errors = {
|
|||
invalid_metadata: 'Os metadados do conector são inválidos.',
|
||||
invalid_config_guard: 'A configuração de proteção do conector é inválida.',
|
||||
unexpected_type: 'O tipo do conector é inesperado.',
|
||||
invalid_request_parameters: 'The request is with wrong input parameter(s).', // UNTRANSLATED
|
||||
invalid_request_parameters: 'O pedido tem parâmetros de entrada inválidos.',
|
||||
insufficient_request_parameters: 'A solicitação pode perder alguns parâmetros de entrada.',
|
||||
invalid_config: 'A configuração do conector é inválida.',
|
||||
invalid_response: 'A resposta do conector é inválida.',
|
||||
|
@ -119,28 +123,31 @@ const errors = {
|
|||
more_than_one_sms: 'O número de conectores SMS é maior que 1.',
|
||||
more_than_one_email: 'O número de conectores de e-mail é maior que 1.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
'Foram encontradas várias fábricas de conectores (com id {{connectorIds}}), pode desinstalar as desnecessárias.',
|
||||
db_connector_type_mismatch: 'Há um conector no banco de dados que não corresponde ao tipo.',
|
||||
not_found_with_connector_id: 'Can not find connector with given standard connector id.', // UNTRANSLATED
|
||||
not_found_with_connector_id:
|
||||
'Não foi possível encontrar o conector com o id do conector padrão fornecido.',
|
||||
multiple_instances_not_supported:
|
||||
'Can not create multiple instance with picked standard connector.', // UNTRANSLATED
|
||||
invalid_type_for_syncing_profile: 'You can only sync user profile with social connectors.', // UNTRANSLATED
|
||||
can_not_modify_target: "The connector 'target' can not be modified.", // UNTRANSLATED
|
||||
should_specify_target: "You should specify 'target'.", // UNTRANSLATED
|
||||
'Não é possível criar várias instâncias com o conector padrão selecionado.',
|
||||
invalid_type_for_syncing_profile:
|
||||
'Você só pode sincronizar o perfil do usuário com conectores sociais.',
|
||||
can_not_modify_target: "O 'target' do conector não pode ser modificado.",
|
||||
should_specify_target: 'Você deve especificar o alvo (target).',
|
||||
multiple_target_with_same_platform:
|
||||
'You can not have multiple social connectors that have same target and platform.', // UNTRANSLATED
|
||||
'Não é possível ter vários conectores sociais com o mesmo alvo e plataforma.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.", // UNTRANSLATED
|
||||
'Os metadados deste conector não podem ser sobrescritos.',
|
||||
},
|
||||
verification_code: {
|
||||
phone_email_empty: 'Both phone and email are empty.', // UNTRANSLATED
|
||||
not_found: 'Verification code not found. Please send verification code first.', // UNTRANSLATED
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
code_mismatch: 'Invalid verification code.', // UNTRANSLATED
|
||||
expired: 'Verification code has expired. Please request a new verification code.', // UNTRANSLATED
|
||||
phone_email_empty: 'Tanto o telefone como o e-mail estão vazios.',
|
||||
not_found:
|
||||
'Código de verificação não encontrado. Por favor, envie primeiro o código de verificação.',
|
||||
phone_mismatch: 'Telefone não corresponde. Por favor, solicite um novo código de verificação.',
|
||||
email_mismatch: 'E-mail não corresponde. Por favor, solicite um novo código de verificação.',
|
||||
code_mismatch: 'Código de verificação inválido.',
|
||||
expired: 'O código de verificação expirou. Por favor, solicite um novo código de verificação.',
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.', // UNTRANSLATED
|
||||
'Limite máximo de tentativas de verificação excedido. Por favor, solicite um novo código de verificação.',
|
||||
},
|
||||
sign_in_experiences: {
|
||||
empty_content_url_of_terms_of_use:
|
||||
|
@ -150,20 +157,24 @@ const errors = {
|
|||
enabled_connector_not_found: 'Conector {{type}} ativado não encontrado.',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'Deve haver um e apenas um método de login principal. Por favor, verifique sua entrada.',
|
||||
username_requires_password: 'Must enable set a password for username sign up identifier.', // UNTRANSLATED
|
||||
passwordless_requires_verify: 'Must enable verify for email/phone sign up identifier.', // UNTRANSLATED
|
||||
miss_sign_up_identifier_in_sign_in: 'Sign in methods must contain the sign up identifier.', // UNTRANSLATED
|
||||
username_requires_password:
|
||||
'É necessário habilitar a configuração de uma senha para o identificador de inscrição por nome de usuário.',
|
||||
passwordless_requires_verify:
|
||||
'É necessário habilitar a verificação para o identificador de inscrição por e-mail/telefone.',
|
||||
miss_sign_up_identifier_in_sign_in:
|
||||
'Os métodos de login devem conter o identificador de inscrição.',
|
||||
password_sign_in_must_be_enabled:
|
||||
'Password sign in must be enabled when set a password is required in sign up.', // UNTRANSLATED
|
||||
'O login com senha deve ser habilitado quando é requerido configurar uma senha na inscrição.',
|
||||
code_sign_in_must_be_enabled:
|
||||
'Verification code sign in must be enabled when set a password is not required in sign up.', // UNTRANSLATED
|
||||
unsupported_default_language: 'This language - {{language}} is not supported at the moment.', // UNTRANSLATED
|
||||
at_least_one_authentication_factor: 'You have to select at least one authentication factor.', // UNTRANSLATED
|
||||
'O login com código de verificação deve ser habilitado quando não é requerido configurar uma senha na inscrição.',
|
||||
unsupported_default_language: 'Este idioma - {{language}} não é suportado no momento.',
|
||||
at_least_one_authentication_factor: 'Você deve selecionar pelo menos um fator de autenticação.',
|
||||
},
|
||||
localization: {
|
||||
cannot_delete_default_language:
|
||||
'{{languageTag}} is set as your default language and can’t be deleted.', // UNTRANSLATED
|
||||
invalid_translation_structure: 'Invalid data schemas. Please check your input and try again.', // UNTRANSLATED
|
||||
'{{languageTag}} é o seu idioma padrão e não pode ser excluído.',
|
||||
invalid_translation_structure:
|
||||
'Estrutura de dados inválida. Verifique sua entrada e tente novamente.',
|
||||
},
|
||||
swagger: {
|
||||
invalid_zod_type: 'Tipo de Zod inválido. Verifique a configuração do protetor de rota.',
|
||||
|
@ -177,25 +188,25 @@ const errors = {
|
|||
not_found: 'O recurso não existe.',
|
||||
},
|
||||
log: {
|
||||
invalid_type: 'The log type is invalid.', // UNTRANSLATED
|
||||
invalid_type: 'O tipo de registro é inválido.',
|
||||
},
|
||||
role: {
|
||||
name_in_use: 'This role name {{name}} is already in use', // UNTRANSLATED
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role', // UNTRANSLATED
|
||||
user_exists: 'The user id {{userId}} is already been added to this role', // UNTRANSLATED
|
||||
name_in_use: 'Este nome de função {{name}} já está em uso',
|
||||
scope_exists: 'O id do escopo {{scopeId}} já foi adicionado a esta função',
|
||||
user_exists: 'O id do usuário {{userId}} já foi adicionado a esta função',
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first', // UNTRANSLATED
|
||||
'Alguns dos nomes de função padrão não existem no banco de dados, por favor, certifique-se de criar as funções primeiro',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".', // UNTRANSLATED
|
||||
'Você pode estar tentando atualizar ou excluir uma função interna que é proibida pelo Logto. Se você estiver criando uma nova função, tente outro nome que não comece com "#internal:". ',
|
||||
},
|
||||
scope: {
|
||||
name_exists: 'The scope name {{name}} is already in use', // UNTRANSLATED
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.', // UNTRANSLATED
|
||||
name_exists: 'O nome do escopo {{name}} já está em uso',
|
||||
name_with_space: 'O nome do escopo não pode conter espaços.',
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.', // UNTRANSLATED
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.', // UNTRANSLATED
|
||||
upload_error: 'Failed to upload file to the storage provider.', // UNTRANSLATED
|
||||
not_configured: 'O provedor de armazenamento não está configurado.',
|
||||
missing_parameter: 'Faltando o parâmetro {{parameter}} para o provedor de armazenamento.',
|
||||
upload_error: 'Falha ao enviar o arquivo para o provedor de armazenamento.',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const errors = {
|
||||
request: {
|
||||
invalid_input: 'Input is invalid. {{details}}', // UNTRANSLATED
|
||||
general: 'Request error occurred.', // UNTRANSLATED
|
||||
invalid_input: 'Girdi geçersiz. {{details}}',
|
||||
general: 'İstek hatası oluştu.',
|
||||
},
|
||||
auth: {
|
||||
authorization_header_missing: 'Yetkilendirme başlığı eksik.',
|
||||
|
@ -11,14 +11,15 @@ const errors = {
|
|||
expected_role_not_found:
|
||||
'Expected role not found. Please check your user roles and permissions.',
|
||||
jwt_sub_missing: 'JWTde `sub` eksik.',
|
||||
require_re_authentication: 'Re-authentication is required to perform a protected action.', // UNTRANSLATED
|
||||
require_re_authentication:
|
||||
'Korumalı bir işlem gerçekleştirmek için yeniden doğrulama gereklidir.',
|
||||
},
|
||||
guard: {
|
||||
invalid_input: 'İstek {{type}} geçersiz.',
|
||||
invalid_pagination: 'İstenen sayfalandırma değeri geçersiz.',
|
||||
can_not_get_tenant_id: 'Unable to get tenant id from request.', // UNTRANSLATED
|
||||
file_size_exceeded: 'File size exceeded.', // UNTRANSLATED
|
||||
mime_type_not_allowed: 'MIME type is not allowed.', // UNTRANSLATED
|
||||
can_not_get_tenant_id: 'İstekten kiracı kimliği alınamadı.',
|
||||
file_size_exceeded: 'Dosya boyutu aşıldı.',
|
||||
mime_type_not_allowed: 'MIME türü izin verilmiyor.',
|
||||
},
|
||||
oidc: {
|
||||
aborted: 'Son kullanıcı etkileşimi iptal etti.',
|
||||
|
@ -39,35 +40,35 @@ const errors = {
|
|||
provider_error: 'Dahili OIDC Hatası: {{message}}.',
|
||||
},
|
||||
user: {
|
||||
username_already_in_use: 'This username is already in use.', // UNTRANSLATED
|
||||
email_already_in_use: 'This email is associated with an existing account.', // UNTRANSLATED
|
||||
phone_already_in_use: 'This phone number is associated with an existing account.', // UNTRANSLATED
|
||||
username_already_in_use: 'Bu kullanıcı adı zaten kullanımda.',
|
||||
email_already_in_use: 'Bu e-posta mevcut bir hesapla ilişkilendirilmiştir.',
|
||||
phone_already_in_use: 'Bu telefon numarası mevcut bir hesapla ilişkilendirilmiştir.',
|
||||
invalid_email: 'Geçersiz e-posta adresi.',
|
||||
invalid_phone: 'Geçersiz telefon numarası.',
|
||||
email_not_exist: 'E-posta adresi henüz kaydedilmedi.',
|
||||
phone_not_exist: 'Telefon numarası henüz kaydedilmedi',
|
||||
identity_not_exist: 'Sosyal platform hesabı henüz kaydedilmedi.',
|
||||
identity_already_in_use: 'Sosyal platform hesabı kaydedildi.',
|
||||
social_account_exists_in_profile: 'You have already associated this social account.', // UNTRANSLATED
|
||||
cannot_delete_self: 'You cannot delete yourself.', // UNTRANSLATED
|
||||
sign_up_method_not_enabled: 'This sign-up method is not enabled.', // UNTRANSLATED
|
||||
sign_in_method_not_enabled: 'This sign-in method is not enabled.', // UNTRANSLATED
|
||||
same_password: 'New password cannot be the same as your old password.', // UNTRANSLATED
|
||||
password_required_in_profile: 'You need to set a password before signing-in.', // UNTRANSLATED
|
||||
new_password_required_in_profile: 'You need to set a new password.', // UNTRANSLATED
|
||||
password_exists_in_profile: 'Password already exists in your profile.', // UNTRANSLATED
|
||||
username_required_in_profile: 'You need to set a username before signing-in.', // UNTRANSLATED
|
||||
username_exists_in_profile: 'Username already exists in your profile.', // UNTRANSLATED
|
||||
email_required_in_profile: 'You need to add an email address before signing-in.', // UNTRANSLATED
|
||||
email_exists_in_profile: 'Your profile has already associated with an email address.', // UNTRANSLATED
|
||||
phone_required_in_profile: 'You need to add a phone number before signing-in.', // UNTRANSLATED
|
||||
phone_exists_in_profile: 'Your profile has already associated with a phone number.', // UNTRANSLATED
|
||||
social_account_exists_in_profile: 'Bu sosyal hesap zaten ilişkilendirilmiş.',
|
||||
cannot_delete_self: 'Kendinizi silemezsiniz.',
|
||||
sign_up_method_not_enabled: 'Bu kayıt yöntemi etkin değil.',
|
||||
sign_in_method_not_enabled: 'Bu oturum açma yöntemi etkin değil.',
|
||||
same_password: 'Yeni şifre, eski şifrenizle aynı olamaz.',
|
||||
password_required_in_profile: 'Oturum açmadan önce bir şifre belirlemeniz gerekiyor.',
|
||||
new_password_required_in_profile: 'Yeni bir şifre belirlemeniz gerekiyor.',
|
||||
password_exists_in_profile: 'Şifre profilinizde zaten mevcut.',
|
||||
username_required_in_profile: 'Oturum açmadan önce bir kullanıcı adı belirlemeniz gerekiyor.',
|
||||
username_exists_in_profile: 'Kullanıcı adı profilinizde zaten mevcut.',
|
||||
email_required_in_profile: 'Oturum açmadan önce bir e-posta adresi eklemeniz gerekiyor.',
|
||||
email_exists_in_profile: 'Profiliniz zaten bir e-posta adresi ile ilişkilendirilmiştir.',
|
||||
phone_required_in_profile: 'Oturum açmadan önce bir telefon numarası eklemeniz gerekiyor.',
|
||||
phone_exists_in_profile: 'Profiliniz zaten bir telefon numarası ile ilişkilendirilmiştir.',
|
||||
email_or_phone_required_in_profile:
|
||||
'You need to add an email address or phone number before signing-in.', // UNTRANSLATED
|
||||
suspended: 'This account is suspended.', // UNTRANSLATED
|
||||
user_not_exist: 'User with {{ identifier }} does not exist.', // UNTRANSLATED,
|
||||
missing_profile: 'You need to provide additional info before signing-in.', // UNTRANSLATED
|
||||
role_exists: 'The role id {{roleId}} is already been added to this user', // UNTRANSLATED
|
||||
'Oturum açmadan önce bir e-posta adresi veya telefon numarası eklemeniz gerekiyor.',
|
||||
suspended: 'Bu hesap askıya alındı.',
|
||||
user_not_exist: '{{identifier}} kimliğine sahip kullanıcı mevcut değil.',
|
||||
missing_profile: 'Oturum açmadan önce ek bilgi sağlamanız gerekiyor.',
|
||||
role_exists: '{{roleId}} rol kimliği bu kullanıcıya zaten eklenmiştir.',
|
||||
},
|
||||
password: {
|
||||
unsupported_encryption_method: '{{name}} şifreleme metodu desteklenmiyor.',
|
||||
|
@ -83,28 +84,27 @@ const errors = {
|
|||
connector_session_not_found:
|
||||
'Bağlayıcı oturum bulunamadı. Lütfen geri dönüp tekrardan giriş yapınız.',
|
||||
verification_session_not_found:
|
||||
'The verification was not successful. Restart the verification flow and try again.', // UNTRANSLATED
|
||||
'Doğrulama başarısız oldu. Lütfen doğrulama işlemini yeniden başlatın ve tekrar deneyin.',
|
||||
verification_expired:
|
||||
'The connection has timed out. Verify again to ensure your account safety.', // UNTRANSLATED
|
||||
'Bağlantı zaman aşımına uğradı. Hesap güvenliğiniz için yeniden doğrulama yapın.',
|
||||
unauthorized: 'Lütfen önce oturum açın.',
|
||||
unsupported_prompt_name: 'Desteklenmeyen prompt adı.',
|
||||
forgot_password_not_enabled: 'Forgot password is not enabled.', // UNTRANSLATED
|
||||
forgot_password_not_enabled: 'Parolamı unuttum özelliği etkin değil.',
|
||||
verification_failed:
|
||||
'The verification was not successful. Restart the verification flow and try again.', // UNTRANSLATED
|
||||
connector_validation_session_not_found:
|
||||
'The connector session for token validation is not found.', // UNTRANSLATED
|
||||
identifier_not_found: 'User identifier not found. Please go back and sign in again.', // UNTRANSLATED
|
||||
'Doğrulama başarısız oldu. Lütfen doğrulama işlemini yeniden başlatın ve tekrar deneyin.',
|
||||
connector_validation_session_not_found: 'Token doğrulama için bağlayıcı oturumu bulunamadı.',
|
||||
identifier_not_found: 'Kullanıcı kimliği bulunamadı. Lütfen geri gidin ve yeniden giriş yapın.',
|
||||
interaction_not_found:
|
||||
'Interaction session not found. Please go back and start the session again.', // UNTRANSLATED
|
||||
'Etkileşim oturumu bulunamadı. Lütfen geri gidin ve oturumu yeniden başlatın.',
|
||||
},
|
||||
connector: {
|
||||
general: 'Bağdaştırıcıda bir hata oluştu: {{errorDescription}}',
|
||||
not_found: '{{type}} tipi icin uygun bağlayıcı bulunamadı.',
|
||||
not_enabled: 'Bağlayıcı etkin değil.',
|
||||
invalid_metadata: "The connector's metadata is invalid.", // UNTRANSLATED
|
||||
invalid_config_guard: "The connector's config guard is invalid.", // UNTRANSLATED
|
||||
unexpected_type: "The connector's type is unexpected.", // UNTRANSLATED
|
||||
invalid_request_parameters: 'The request is with wrong input parameter(s).', // UNTRANSLATED
|
||||
invalid_metadata: 'Bağlayıcının meta verileri geçersizdir.',
|
||||
invalid_config_guard: 'Bağlayıcının yapılandırma koruyucusu geçersizdir.',
|
||||
unexpected_type: 'Bağlayıcının türü beklenmedik.',
|
||||
invalid_request_parameters: 'İstek yanlış girdi parametreleri ile gönderildi.',
|
||||
insufficient_request_parameters: 'İstek, bazı input parametrelerini atlayabilir.',
|
||||
invalid_config: 'Bağlayıcının ayarları geçersiz.',
|
||||
invalid_response: 'Bağlayıcının yanıtı geçersiz.',
|
||||
|
@ -117,29 +117,29 @@ const errors = {
|
|||
social_auth_code_invalid: 'Erişim tokenı alınamıyor, lütfen yetkilendirme kodunu kontrol edin.',
|
||||
more_than_one_sms: 'SMS bağlayıcılarının sayısı 1den fazla.',
|
||||
more_than_one_email: 'E-posta adresi bağlayıcılarının sayısı 1den fazla.',
|
||||
more_than_one_connector_factory:
|
||||
'Found multiple connector factories (with id {{connectorIds}}), you may uninstall unnecessary ones.', // UNTRANSLATED
|
||||
db_connector_type_mismatch: 'Dbde türle eşleşmeyen bir bağlayıcı var.',
|
||||
not_found_with_connector_id: 'Can not find connector with given standard connector id.', // UNTRANSLATED
|
||||
more_than_one_connector_factory:
|
||||
'Birden fazla bağlayıcı fabrikası bulundu ({{connectorIds}} ID numarasıyla), gereksiz olanları kaldırabilirsiniz.',
|
||||
not_found_with_connector_id: 'Belirtilen standart bağlayıcı kimliğiyle bağlayıcı bulunamadı.',
|
||||
multiple_instances_not_supported:
|
||||
'Can not create multiple instance with picked standard connector.', // UNTRANSLATED
|
||||
invalid_type_for_syncing_profile: 'You can only sync user profile with social connectors.', // UNTRANSLATED
|
||||
can_not_modify_target: "The connector 'target' can not be modified.", // UNTRANSLATED
|
||||
should_specify_target: "You should specify 'target'.", // UNTRANSLATED
|
||||
'Seçilen standart bağlayıcı ile birden fazla örnek oluşturulamaz.',
|
||||
invalid_type_for_syncing_profile:
|
||||
'Kullanıcı profili yalnızca sosyal bağlayıcılarla senkronize edilebilir.',
|
||||
can_not_modify_target: "'Hedef' bağlayıcı değiştirilemez.",
|
||||
should_specify_target: "'Hedef' belirtilmelidir.",
|
||||
multiple_target_with_same_platform:
|
||||
'You can not have multiple social connectors that have same target and platform.', // UNTRANSLATED
|
||||
'Aynı hedefe ve platforma sahip birden fazla sosyal bağlayıcıya sahip olamazsınız.',
|
||||
cannot_overwrite_metadata_for_non_standard_connector:
|
||||
"This connector's 'metadata' cannot be overwritten.", // UNTRANSLATED
|
||||
"Bu bağlayıcının 'metadata'sı üzerine yazılamaz.",
|
||||
},
|
||||
verification_code: {
|
||||
phone_email_empty: 'Both phone and email are empty.', // UNTRANSLATED
|
||||
not_found: 'Verification code not found. Please send verification code first.', // UNTRANSLATED
|
||||
phone_mismatch: 'Phone mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
email_mismatch: 'Email mismatch. Please request a new verification code.', // UNTRANSLATED
|
||||
code_mismatch: 'Invalid verification code.', // UNTRANSLATED
|
||||
expired: 'Verification code has expired. Please request a new verification code.', // UNTRANSLATED
|
||||
exceed_max_try:
|
||||
'Verification code retries limitation exceeded. Please request a new verification code.', // UNTRANSLATED
|
||||
phone_email_empty: 'Telefon ve e-posta alanları boş.',
|
||||
not_found: 'Doğrulama kodu bulunamadı. Lütfen önce doğrulama kodu gönderin.',
|
||||
phone_mismatch: 'Telefon eşleşmiyor. Lütfen yeni bir doğrulama kodu isteyin.',
|
||||
email_mismatch: 'E-posta eşleşmiyor. Lütfen yeni bir doğrulama kodu isteyin.',
|
||||
code_mismatch: 'Geçersiz doğrulama kodu.',
|
||||
expired: 'Doğrulama kodu süresi dolmuştur. Lütfen yeni bir doğrulama kodu isteyin.',
|
||||
exceed_max_try: 'Doğrulama kodu deneme sınırı aşıldı. Lütfen yeni bir doğrulama kodu isteyin.',
|
||||
},
|
||||
sign_in_experiences: {
|
||||
empty_content_url_of_terms_of_use:
|
||||
|
@ -149,20 +149,22 @@ const errors = {
|
|||
enabled_connector_not_found: 'Etkin {{type}} bağlayıcı bulunamadı.',
|
||||
not_one_and_only_one_primary_sign_in_method:
|
||||
'Yalnızca bir tane birincil oturum açma yöntemi olmalıdır. Lütfen inputu kontrol ediniz.',
|
||||
username_requires_password: 'Must enable set a password for username sign up identifier.', // UNTRANSLATED
|
||||
passwordless_requires_verify: 'Must enable verify for email/phone sign up identifier.', // UNTRANSLATED
|
||||
miss_sign_up_identifier_in_sign_in: 'Sign in methods must contain the sign up identifier.', // UNTRANSLATED
|
||||
username_requires_password: 'Kullanıcı adı kayıt kimliği için bir şifre belirlemek zorunludur.',
|
||||
passwordless_requires_verify:
|
||||
'E-posta/telefon kayıt kimliği için doğrulama etkinleştirilmelidir.',
|
||||
miss_sign_up_identifier_in_sign_in: 'Oturum açma yöntemleri, kayıt kimliğini içermelidir.',
|
||||
password_sign_in_must_be_enabled:
|
||||
'Password sign in must be enabled when set a password is required in sign up.', // UNTRANSLATED
|
||||
'Kayıtta şifre belirleme zorunlu olduğunda şifreyle oturum açma etkinleştirilmelidir.',
|
||||
code_sign_in_must_be_enabled:
|
||||
'Verification code sign in must be enabled when set a password is not required in sign up.', // UNTRANSLATED
|
||||
unsupported_default_language: 'This language - {{language}} is not supported at the moment.', // UNTRANSLATED
|
||||
at_least_one_authentication_factor: 'You have to select at least one authentication factor.', // UNTRANSLATED
|
||||
'Kayıtta şifre belirleme zorunlu olmadığında doğrulama koduyla oturum açma etkinleştirilmelidir.',
|
||||
unsupported_default_language: 'Bu dil - {{language}}, şu anda desteklenmemektedir.',
|
||||
at_least_one_authentication_factor: 'En az bir doğrulama faktörü seçmelisiniz.',
|
||||
},
|
||||
localization: {
|
||||
cannot_delete_default_language:
|
||||
'{{languageTag}} is set as your default language and can’t be deleted.', // UNTRANSLATED
|
||||
invalid_translation_structure: 'Invalid data schemas. Please check your input and try again.', // UNTRANSLATED
|
||||
'{{languageTag}} varsayılan dil olarak ayarlanmıştır ve silinemez.',
|
||||
invalid_translation_structure:
|
||||
'Geçersiz veri şemaları. Lütfen girdilerinizi kontrol edin ve tekrar deneyin.',
|
||||
},
|
||||
swagger: {
|
||||
invalid_zod_type:
|
||||
|
@ -177,25 +179,25 @@ const errors = {
|
|||
not_found: 'Kaynak mevcut değil.',
|
||||
},
|
||||
log: {
|
||||
invalid_type: 'The log type is invalid.', // UNTRANSLATED
|
||||
invalid_type: 'Geçersiz günlük türü.',
|
||||
},
|
||||
role: {
|
||||
name_in_use: 'This role name {{name}} is already in use', // UNTRANSLATED
|
||||
scope_exists: 'The scope id {{scopeId}} has already been added to this role', // UNTRANSLATED
|
||||
user_exists: 'The user id {{userId}} is already been added to this role', // UNTRANSLATED
|
||||
name_in_use: 'Bu rol adı {{name}} zaten kullanımda',
|
||||
scope_exists: 'Bu kapsam kimliği {{scopeId}} zaten bu role eklendi',
|
||||
user_exists: 'Bu kullanıcı kimliği {{userId}} zaten bu role eklendi',
|
||||
default_role_missing:
|
||||
'Some of the default roleNames does not exist in database, please ensure to create roles first', // UNTRANSLATED
|
||||
'Varsayılan rol adlarından bazıları veritabanında mevcut değil, lütfen önce rolleri oluşturduğunuzdan emin olun',
|
||||
internal_role_violation:
|
||||
'You may be trying to update or delete an internal role which is forbidden by Logto. If you are creating a new role, try another name that does not start with "#internal:".', // UNTRANSLATED
|
||||
'Logto tarafından yasaklanan dahili bir rolü güncelleme veya silmeye çalışıyor olabilirsiniz. Yeni bir rol oluşturuyorsanız, "#internal:" ile başlamayan başka bir isim deneyin.',
|
||||
},
|
||||
scope: {
|
||||
name_exists: 'The scope name {{name}} is already in use', // UNTRANSLATED
|
||||
name_with_space: 'The name of the scope cannot contain any spaces.', // UNTRANSLATED
|
||||
name_exists: 'Bu kapsam adı {{name}} zaten kullanımda',
|
||||
name_with_space: 'Kapsam adı boşluk içeremez.',
|
||||
},
|
||||
storage: {
|
||||
not_configured: 'Storage provider is not configured.', // UNTRANSLATED
|
||||
missing_parameter: 'Missing parameter {{parameter}} for storage provider.', // UNTRANSLATED
|
||||
upload_error: 'Failed to upload file to the storage provider.', // UNTRANSLATED
|
||||
not_configured: 'Depolama sağlayıcısı yapılandırılmamış.',
|
||||
missing_parameter: 'Depolama sağlayıcısı için eksik parametre {{parameter}}.',
|
||||
upload_error: 'Dosya yüklenemedi.',
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue