85 lines
2.6 KiB
PHP
85 lines
2.6 KiB
PHP
<?php
|
|
|
|
return [
|
|
// Page Header
|
|
'export_users' => 'Export Users',
|
|
'export_users_description' => 'Export client data in CSV or PDF format',
|
|
|
|
// Filter Labels
|
|
'user_type' => 'User Type',
|
|
'all_types' => 'All Types',
|
|
'status' => 'Status',
|
|
'all_statuses' => 'All Statuses',
|
|
'date_range' => 'Date Range',
|
|
'date_from' => 'From Date',
|
|
'date_to' => 'To Date',
|
|
'clear_filters' => 'Clear Filters',
|
|
|
|
// Column Headers
|
|
'name' => 'Name',
|
|
'email' => 'Email',
|
|
'phone' => 'Phone',
|
|
'id_number' => 'ID Number',
|
|
'created_at' => 'Created Date',
|
|
|
|
// User Types
|
|
'type_individual' => 'Individual',
|
|
'type_company' => 'Company',
|
|
|
|
// Statuses
|
|
'status_active' => 'Active',
|
|
'status_deactivated' => 'Deactivated',
|
|
|
|
// Export Buttons
|
|
'export_csv' => 'Export CSV',
|
|
'export_pdf' => 'Export PDF',
|
|
'exporting' => 'Exporting...',
|
|
|
|
// Messages
|
|
'no_users_match' => 'No users match the selected filters.',
|
|
'export_started' => 'Export started. Your download will begin shortly.',
|
|
'export_failed' => 'Export failed. Please try again.',
|
|
'large_export_warning' => 'Large export may take a moment to generate.',
|
|
|
|
// Consultation Export
|
|
'export_consultations' => 'Export Consultations',
|
|
'export_consultations_description' => 'Export consultation data in CSV or PDF format',
|
|
'client_name' => 'Client Name',
|
|
'date' => 'Date',
|
|
'time' => 'Time',
|
|
'consultation_type' => 'Consultation Type',
|
|
'all_consultation_types' => 'All Types',
|
|
'payment_status' => 'Payment Status',
|
|
'all_payment_statuses' => 'All Payment Statuses',
|
|
'problem_summary' => 'Problem Summary',
|
|
'no_consultations_match' => 'No consultations match the selected filters.',
|
|
'consultations_export_title' => 'Consultations Export Report',
|
|
|
|
// Consultation Types
|
|
'type_free' => 'Free',
|
|
'type_paid' => 'Paid',
|
|
|
|
// Consultation Statuses
|
|
'status_pending' => 'Pending',
|
|
'status_approved' => 'Approved',
|
|
'status_completed' => 'Completed',
|
|
'status_cancelled' => 'Cancelled',
|
|
'status_no_show' => 'No Show',
|
|
'status_rejected' => 'Rejected',
|
|
|
|
// Payment Statuses
|
|
'payment_pending' => 'Pending',
|
|
'payment_received' => 'Received',
|
|
'payment_not_applicable' => 'N/A',
|
|
|
|
// PDF Template
|
|
'users_export_title' => 'Users Export Report',
|
|
'generated_at' => 'Generated at',
|
|
'page' => 'Page',
|
|
'of' => 'of',
|
|
'total_records' => 'Total Records',
|
|
'filters_applied' => 'Filters Applied',
|
|
'no_filters' => 'No filters applied',
|
|
'libra_law_firm' => 'Libra Law Firm',
|
|
];
|