mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
55 lines
3.7 KiB
PHP
55 lines
3.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Authentication Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used during authentication for various
|
|
| messages that we need to display to the user. You are free to modify
|
|
| these language lines according to your application's requirements.
|
|
|
|
|
*/
|
|
|
|
'resource_not_found' => 'Resource nicht gefunden',
|
|
'error_occured' => 'Ein Fehler ist aufgetreten:',
|
|
'refresh' => 'Aktualisieren',
|
|
'no_valid_otp' => 'Keine gültige OTP-Ressource in diesem QR-Code',
|
|
'something_wrong_with_server' => 'Etwas stimmt mit Ihrem Server nicht',
|
|
'Unable_to_decrypt_uri' => 'URI konnte nicht entschlüsselt werden',
|
|
'not_a_supported_otp_type' => 'Dieses OTP-Format wird derzeit nicht unterstützt',
|
|
'cannot_create_otp_without_secret' => 'Das OTP kann nicht ohne Geheimnis erstellt werden',
|
|
'data_of_qrcode_is_not_valid_URI' => 'The data of this QR code is not a valid OTP Auth URI. The QR code contains:',
|
|
'wrong_current_password' => 'Aktuelles Passwort falsch, nichts wurde geändert',
|
|
'error_during_encryption' => 'Verschlüsselung fehlgeschlagen, Ihre Datenbank bleibt ungeschützt.',
|
|
'error_during_decryption' => 'Entschlüsselung fehlgeschlagen, Ihre Datenbank bleibt geschützt. Dies wird hauptsächlich durch eine Integritätsproblem verschlüsselter Daten für ein oder mehrere Konten verursacht.',
|
|
'qrcode_cannot_be_read' => 'Dieser QR-Code ist unlesbar',
|
|
'too_many_ids' => 'zu viele Ids wurden in den Abfrageparameter eingefügt, maximal 100 erlaubt',
|
|
'delete_user_setting_only' => 'Nur benutzerdefinierte Einstellungen können gelöscht werden',
|
|
'indecipherable' => '*nicht lesbar*',
|
|
'cannot_decipher_secret' => 'Das Geheimnis kann nicht entschlüsselt werden. Dies wird hauptsächlich durch einen falsch gesetzten APP_KEY in der .env-Konfigurationsdatei von 2Fauth oder durch beschädigte Daten in der Datenbank verursacht.',
|
|
'https_required' => 'HTTPS-Kontext erforderlich',
|
|
'browser_does_not_support_webauthn' => 'Ihr Gerät unterstützt nicht webauthn. Versuchen Sie es später mit einem moderneren Browser erneut',
|
|
'aborted_by_user' => 'Vom Benutzer abgebrochen',
|
|
'security_device_unsupported' => 'Unsupported or in use device',
|
|
'not_allowed_operation' => 'Operation not allowed',
|
|
'unsupported_operation' => 'Unsupported operation',
|
|
'unknown_error' => 'Unknown error',
|
|
'security_error_check_rpid' => 'Security error<br/>Check your WEBAUTHN_ID env var',
|
|
'unsupported_with_reverseproxy' => 'Nicht anwendbar, wenn ein Auth-Proxy benutzt wird',
|
|
'user_deletion_failed' => 'Löschen des Benutzerkontos fehlgeschlagen, es wurden keine Daten gelöscht',
|
|
'auth_proxy_failed' => 'Proxy-Anmeldung scheitern',
|
|
'auth_proxy_failed_legend' => '2Fauth ist so konfiguriert, dass es hinter einem Authentifizierungs-Proxy läuft, aber Ihr Proxy gibt nicht den erwarteten Header zurück. Überprüfen Sie Ihre Konfiguration und versuchen Sie es erneut.',
|
|
'invalid_x_migration' => 'Invalid or unreadable :appname data',
|
|
'invalid_2fa_data' => 'Invalid 2FA data',
|
|
'unsupported_migration' => 'Data do not match any supported format',
|
|
'unsupported_otp_type' => 'Nicht unterstützter OTP -Typ',
|
|
'encrypted_migration' => 'Unreadable, the data seem encrypted',
|
|
'no_logo_found_for_x' => 'Kein Logo verfügbar für {service}',
|
|
'file_upload_failed' => 'File upload failed',
|
|
'unauthorized' => 'Unauthorized',
|
|
'unauthorized_legend' => 'You do not have permissions to view this resource or to perform this action',
|
|
'cannot_delete_the_only_admin' => 'Cannot delete the only admin account'
|
|
]; |