54 lines
1.5 KiB
PHP
54 lines
1.5 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.',
|
|
|
|
// 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',
|
|
];
|