You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.2 KiB
67 lines
2.2 KiB
<?php
|
|
|
|
return [
|
|
// Common messages
|
|
'success' => 'Operation successful',
|
|
'error' => 'Operation failed',
|
|
'not_found' => 'Data not found',
|
|
'unauthorized' => 'Unauthorized access',
|
|
'forbidden' => 'Access forbidden',
|
|
'validation_failed' => 'Data validation failed',
|
|
'server_error' => 'Internal server error',
|
|
|
|
// Language related
|
|
'language_switched' => 'Language switched successfully',
|
|
'invalid_language' => 'Unsupported language',
|
|
'current_language' => 'Current language',
|
|
|
|
// Operation related
|
|
'create_success' => 'Created successfully',
|
|
'update_success' => 'Updated successfully',
|
|
'delete_success' => 'Deleted successfully',
|
|
'save_success' => 'Saved successfully',
|
|
'cancel_success' => 'Cancelled successfully',
|
|
'approve_success' => 'Approved successfully',
|
|
'reject_success' => 'Rejected successfully',
|
|
|
|
// Status related
|
|
'status_active' => 'Active',
|
|
'status_inactive' => 'Inactive',
|
|
'status_pending' => 'Pending',
|
|
'status_approved' => 'Approved',
|
|
'status_rejected' => 'Rejected',
|
|
'status_completed' => 'Completed',
|
|
'status_cancelled' => 'Cancelled',
|
|
|
|
// Pagination related
|
|
'page_info' => 'Page :current of :total, Total :count records',
|
|
'no_data' => 'No data available',
|
|
'loading' => 'Loading...',
|
|
|
|
// Time related
|
|
'today' => 'Today',
|
|
'yesterday' => 'Yesterday',
|
|
'tomorrow' => 'Tomorrow',
|
|
'this_week' => 'This week',
|
|
'this_month' => 'This month',
|
|
'this_year' => 'This year',
|
|
|
|
// Confirmation operations
|
|
'confirm_delete' => 'Are you sure you want to delete?',
|
|
'confirm_cancel' => 'Are you sure you want to cancel?',
|
|
'confirm_approve' => 'Are you sure you want to approve?',
|
|
'confirm_reject' => 'Are you sure you want to reject?',
|
|
|
|
// File related
|
|
'file_upload_success' => 'File uploaded successfully',
|
|
'file_upload_failed' => 'File upload failed',
|
|
'file_not_found' => 'File not found',
|
|
'file_too_large' => 'File too large',
|
|
'file_type_not_supported' => 'Unsupported file type',
|
|
|
|
// Network related
|
|
'network_error' => 'Network error',
|
|
'request_timeout' => 'Request timeout',
|
|
'service_unavailable' => 'Service unavailable',
|
|
];
|