libra/lang/en/clients.php

124 lines
4.8 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',
];