finished story 2.1 with qa test and added future recommendations for the dev
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
<?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.',
|
||||
|
||||
// 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',
|
||||
];
|
||||
Reference in New Issue
Block a user