29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
'LoginController' => [
|
|
'not_permitted' => 'This action is not permitted.',
|
|
'email_in_use' => 'This email address is already in use.',
|
|
'invalid_token' => 'Invalid token.',
|
|
'wrong_credentials' => 'Wrong credentials.',
|
|
'unknown_error' => 'An unknown error occurred.',
|
|
'unknown_error_with_details' => 'An unknown error occurred: :error',
|
|
],
|
|
'PreApplicationController' => [
|
|
'success' => 'Application submitted successfully. Please check your email inbox.',
|
|
'already_submitted' => 'You have already submitted an application.',
|
|
'wrong_passport_type' => 'Wrong passport type',
|
|
'invalid_email_format' => 'Invalid email format',
|
|
'failed_to_process' => 'Failed to process application: :error',
|
|
'invalid_characters' => 'Invalid characters in name or location',
|
|
'event_not_found' => 'Chaos event not found',
|
|
'application_not_found' => 'Application not found'
|
|
],
|
|
'BlogController' => [
|
|
'error_occurred' => 'An error occurred while processing the blog: :error',
|
|
],
|
|
'TickerController' => [
|
|
'error_occurred' => 'An error occurred while processing the ticker: :error',
|
|
],
|
|
];
|