| 12345678910111213141516171819202122232425262728293031 |
- <?php
- return [
- 'welcome' => 'Welcome to our application',
- 'created' => 'Created successfully',
- 'updated' => 'Updated successfully',
- 'deleted' => 'Deleted successfully',
- 'email_sent' => 'Email sent successfully',
- 'email_not_sent' => 'Email not sent',
- 'imported' => 'Imported successfully',
- 'import_error' => 'Error importing',
- 'buyer_not_allowed' => 'Buyer not allowed',
- 'notification_sent' => 'Notification sent successfully',
- 'notification_read' => 'Notification marked as read',
- 'interest_added' => 'Interest registered successfully',
- 'interest_removed' => 'Interest removed successfully',
- 'appointment_created' => 'Appointment created successfully',
- 'appointment_cancelled' => 'Appointment cancelled successfully',
- 'appointment_confirmed' => 'Appointment confirmed successfully',
- 'not_found' => 'Record not found',
- 'unauthorized' => 'Unauthorized action',
- 'landing' => [
- 'register_success' => 'Association request sent successfully!',
- 'registration_taken' => 'There is already an account with this badge. Use the "My First Access" option on the login screen.',
- ],
- 'first_access' => [
- 'register_success' => 'Registration completed successfully!',
- 'already_done' => 'The first access for this badge has already been completed. Please sign in or use "Forgot your password?".',
- 'invalid_token' => 'Session expired. Please enter your badge again to continue.',
- ],
- ];
|