177 lines
7.7 KiB
PHP
177 lines
7.7 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Navigation & Headers
|
|
'individual_clients' => 'Individual Clients',
|
|
'company_clients' => 'Company Clients',
|
|
'clients' => 'Clients',
|
|
'client' => 'Client',
|
|
'create_client' => 'Create Client',
|
|
'edit_client' => 'Edit Client',
|
|
'view_client' => 'View Client',
|
|
'client_profile' => 'Client Profile',
|
|
'back_to_clients' => 'Back to Clients',
|
|
|
|
// Form Labels
|
|
'full_name' => 'Full Name',
|
|
'national_id' => 'National ID Number',
|
|
'email' => 'Email Address',
|
|
'phone' => 'Phone Number',
|
|
'password' => 'Password',
|
|
'preferred_language' => 'Preferred Language',
|
|
'status' => 'Status',
|
|
'user_type' => 'User Type',
|
|
'created_at' => 'Created Date',
|
|
'updated_at' => 'Updated Date',
|
|
|
|
// Status Values
|
|
'active' => 'Active',
|
|
'deactivated' => 'Deactivated',
|
|
|
|
// User Types
|
|
'individual' => 'Individual',
|
|
'company' => 'Company',
|
|
|
|
// Language Options
|
|
'arabic' => 'Arabic',
|
|
'english' => 'English',
|
|
|
|
// Actions
|
|
'create' => 'Create',
|
|
'save' => 'Save',
|
|
'update' => 'Update',
|
|
'edit' => 'Edit',
|
|
'view' => 'View',
|
|
'delete' => 'Delete',
|
|
'cancel' => 'Cancel',
|
|
'search' => 'Search',
|
|
'filter' => 'Filter',
|
|
'clear_filters' => 'Clear Filters',
|
|
'actions' => 'Actions',
|
|
|
|
// Search & Filter
|
|
'search_placeholder' => 'Search by name, email, or National ID...',
|
|
'filter_by_status' => 'Filter by Status',
|
|
'all_statuses' => 'All Statuses',
|
|
|
|
// Pagination
|
|
'per_page' => 'Per Page',
|
|
'showing' => 'Showing',
|
|
'of' => 'of',
|
|
'results' => 'results',
|
|
|
|
// Messages
|
|
'client_created' => 'Client created successfully.',
|
|
'client_updated' => 'Client updated successfully.',
|
|
'client_deleted' => 'Client deleted successfully.',
|
|
'no_clients_found' => 'No clients found.',
|
|
'no_clients_match' => 'No clients match your search criteria.',
|
|
|
|
// Validation Messages
|
|
'email_exists' => 'This email address is already registered.',
|
|
'national_id_exists' => 'This National ID is already registered.',
|
|
|
|
// Company-specific
|
|
'company_name' => 'Company Name',
|
|
'registration_number' => 'Registration Number',
|
|
'contact_person' => 'Contact Person',
|
|
'contact_person_name' => 'Contact Person Name',
|
|
'contact_person_id' => 'Contact Person ID',
|
|
'create_company' => 'Create Company',
|
|
'edit_company' => 'Edit Company',
|
|
'company_profile' => 'Company Profile',
|
|
'back_to_companies' => 'Back to Companies',
|
|
'search_company_placeholder' => 'Search by company name, email, or registration number...',
|
|
'company_created' => 'Company created successfully.',
|
|
'company_updated' => 'Company updated successfully.',
|
|
'registration_number_exists' => 'This registration number is already registered.',
|
|
'no_companies_found' => 'No companies found.',
|
|
'no_companies_match' => 'No companies match your search criteria.',
|
|
'company_information' => 'Company Information',
|
|
|
|
// Profile Page
|
|
'client_information' => 'Client Information',
|
|
'contact_information' => 'Contact Information',
|
|
'account_information' => 'Account Information',
|
|
'consultation_history' => 'Consultation History',
|
|
'timeline_history' => 'Timeline History',
|
|
'total_consultations' => 'Total Consultations',
|
|
'total_timelines' => 'Total Timelines',
|
|
'pending_consultations' => 'Pending Consultations',
|
|
'completed_consultations' => 'Completed Consultations',
|
|
'active_timelines' => 'Active Timelines',
|
|
'view_all_consultations' => 'View All Consultations',
|
|
'view_all_timelines' => 'View All Timelines',
|
|
'no_consultations' => 'No consultations yet.',
|
|
'no_timelines' => 'No timelines yet.',
|
|
'member_since' => 'Member Since',
|
|
|
|
// Account Conversion
|
|
'convert_to_company' => 'Convert to Company',
|
|
'convert_to_individual' => 'Convert to Individual',
|
|
'convert_to_company_description' => 'Convert this individual client account to a company account.',
|
|
'convert_to_individual_description' => 'Convert this company account to an individual account.',
|
|
'confirm_conversion' => 'Confirm Conversion',
|
|
'confirm_conversion_to_company_message' => 'Are you sure you want to convert this account to a company account? All consultations and timelines will be preserved.',
|
|
'confirm_conversion_to_individual_message' => 'Are you sure you want to convert this account to an individual account? Company data will be cleared.',
|
|
'company_fields_will_be_cleared' => 'Company fields (company name, registration number, contact person details) will be cleared upon conversion.',
|
|
'account_converted_to_company' => 'Account converted to company successfully.',
|
|
'account_converted_to_individual' => 'Account converted to individual successfully.',
|
|
'continue' => 'Continue',
|
|
'back' => 'Back',
|
|
'confirm_convert' => 'Confirm Conversion',
|
|
|
|
// Account Lifecycle Management
|
|
'account_actions' => 'Account Actions',
|
|
'deactivate' => 'Deactivate',
|
|
'reactivate' => 'Reactivate',
|
|
'reset_password' => 'Reset Password',
|
|
'delete_permanently' => 'Delete Permanently',
|
|
|
|
// Deactivate Account
|
|
'cannot_deactivate_self' => 'You cannot deactivate your own account.',
|
|
'confirm_deactivate' => 'Confirm Deactivation',
|
|
'deactivate_warning' => 'This will prevent the user from logging in to their account.',
|
|
'deactivate_effects' => 'Effects of deactivation',
|
|
'deactivate_effect_login' => 'User will not be able to log in',
|
|
'deactivate_effect_sessions' => 'All active sessions will be terminated',
|
|
'deactivate_effect_data' => 'All data (consultations, timelines) will be retained',
|
|
'deactivate_effect_reversible' => 'Account can be reactivated at any time',
|
|
'confirm_deactivate_action' => 'Deactivate Account',
|
|
'user_deactivated' => 'Account deactivated successfully.',
|
|
|
|
// Reactivate Account
|
|
'confirm_reactivate' => 'Confirm Reactivation',
|
|
'reactivate_message' => 'This will restore the user\'s ability to log in.',
|
|
'reactivate_effects' => 'Effects of reactivation',
|
|
'reactivate_effect_login' => 'User will be able to log in again',
|
|
'reactivate_effect_data' => 'All previous data remains intact',
|
|
'reactivate_effect_email' => 'User will receive an email notification',
|
|
'confirm_reactivate_action' => 'Reactivate Account',
|
|
'user_reactivated' => 'Account reactivated successfully.',
|
|
|
|
// Delete Account
|
|
'cannot_delete_self' => 'You cannot delete your own account.',
|
|
'confirm_delete' => 'Confirm Permanent Deletion',
|
|
'delete_warning_title' => 'This action cannot be undone!',
|
|
'delete_warning' => 'This will permanently remove all user data from the system.',
|
|
'will_be_deleted' => 'The following will be permanently deleted',
|
|
'delete_item_consultations' => 'All consultations and their history',
|
|
'delete_item_timelines' => 'All timelines and their updates',
|
|
'delete_item_notifications' => 'All notifications',
|
|
'delete_item_account' => 'The user account',
|
|
'type_email_to_confirm' => 'Type ":email" to confirm deletion',
|
|
'email_confirmation_mismatch' => 'The email does not match. Please type the correct email to confirm.',
|
|
'user_deleted' => 'Account deleted successfully.',
|
|
|
|
// Password Reset
|
|
'reset_password_title' => 'Reset User Password',
|
|
'reset_password_message' => 'A new random password will be generated and sent to the user.',
|
|
'reset_password_effects' => 'What will happen',
|
|
'reset_password_effect_generate' => 'A new 12-character random password will be generated',
|
|
'reset_password_effect_email' => 'The new password will be emailed to the user',
|
|
'reset_password_effect_old' => 'The old password will no longer work',
|
|
'confirm_reset_password' => 'Reset Password',
|
|
'password_reset_sent' => 'New password generated and sent to the user.',
|
|
];
|