2020-01-12 19:55:17 +01:00
< ? 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 .
|
*/
2020-01-14 11:48:42 +01:00
'resource_not_found' => 'Resource not found' ,
2020-01-17 00:23:38 +01:00
'error_occured' => 'An error occured:' ,
2020-10-14 23:33:07 +02:00
'refresh' => 'Refresh' ,
2020-11-20 14:11:32 +01:00
'no_valid_otp' => 'No valid OTP resource in this QR code' ,
2020-01-23 23:02:54 +01:00
'something_wrong_with_server' => 'Something is wrong with your server' ,
2020-01-21 21:31:28 +01:00
'Unable_to_decrypt_uri' => 'Unable to decrypt uri' ,
2020-11-05 22:50:49 +01:00
'not_a_supported_otp_type' => 'This OTP format is not currently supported' ,
2020-11-12 00:09:33 +01:00
'cannot_create_otp_without_secret' => 'Cannot create an OTP without a secret' ,
2022-09-21 21:38:53 +02:00
'data_of_qrcode_is_not_valid_URI' => 'The data of this QR code is not a valid OTP Auth URI. The QR code contains:' ,
2020-10-31 01:16:15 +01:00
'wrong_current_password' => 'Wrong current password, nothing has changed' ,
2020-11-06 17:49:28 +01:00
'error_during_encryption' => 'Encryption failed, your database remains unprotected.' ,
'error_during_decryption' => 'Decryption failed, your database is still protected. This is mainly caused by an integrity issue of encrypted data for one or more accounts.' ,
2020-11-20 14:11:32 +01:00
'qrcode_cannot_be_read' => 'This QR code is unreadable' ,
2021-09-19 22:42:21 +02:00
'too_many_ids' => 'too many ids were included in the query parameter, max 100 allowed' ,
2021-10-11 23:11:52 +02:00
'delete_user_setting_only' => 'Only user-created setting can be deleted' ,
'indecipherable' => '*indecipherable*' ,
'cannot_decipher_secret' => 'The secret cannot be deciphered. This is mainly caused by a wrong APP_KEY set in the .env configuration file of 2Fauth or a corrupted data stored in database.' ,
2022-03-15 14:47:07 +01:00
'https_required' => 'HTTPS context required' ,
'browser_does_not_support_webauthn' => 'Your device does not support webauthn. Try again later using a more modern browser' ,
'aborted_by_user' => 'Aborted by user' ,
2022-11-14 17:13:24 +01:00
'security_device_unsupported' => 'Unsupported or in use device' ,
'not_allowed_operation' => 'Operation not allowed' ,
'security_error_check_rpid' => 'Security error<br/>Check your WEBAUTHN_ID env var' ,
2022-03-24 14:58:30 +01:00
'unsupported_with_reverseproxy' => 'Not applicable when using an auth proxy' ,
2022-03-28 13:45:19 +02:00
'user_deletion_failed' => 'User account deletion failed, no data have been deleted' ,
2022-05-19 15:50:06 +02:00
'auth_proxy_failed' => 'Proxy authentication failed' ,
2022-06-20 17:50:32 +02:00
'auth_proxy_failed_legend' => '2Fauth is configured to run behind an authentication proxy but your proxy does not return the expected header. Check your configuration and try again.' ,
2022-10-07 18:58:48 +02:00
'invalid_x_migration' => 'Invalid or unreadable :appname data' ,
2022-10-11 11:20:07 +02:00
'invalid_2fa_data' => 'Invalid 2FA data' ,
2022-10-07 18:58:48 +02:00
'unsupported_migration' => 'Data do not match any supported format' ,
2022-07-05 10:10:24 +02:00
'unsupported_otp_type' => 'Unsupported OTP type' ,
2022-10-07 18:58:48 +02:00
'encrypted_migration' => 'Unreadable, the data seem encrypted' ,
2022-09-02 14:28:57 +02:00
'no_logo_found_for_x' => 'No logo available for {service}' ,
2023-02-17 17:12:53 +01:00
'file_upload_failed' => 'File upload failed' ,
'unauthorized' => 'Unauthorized' ,
'unauthorized_legend' => 'You do not have permissions to view this resource or to perform this action' ,
2020-01-12 19:55:17 +01:00
];