|
| 1 | +<?php |
| 2 | + |
| 3 | +return [ |
| 4 | + |
| 5 | + 'nav_label' => 'Currencies', |
| 6 | + 'breadcrumb' => 'Currencies', |
| 7 | + 'plural' => 'Currencies', |
| 8 | + |
| 9 | + 'table' => [ |
| 10 | + 'id' => [ |
| 11 | + 'label' => 'Code', |
| 12 | + ], |
| 13 | + 'name' => [ |
| 14 | + 'label' => 'Name', |
| 15 | + ], |
| 16 | + 'is_active' => [ |
| 17 | + 'label' => 'Active', |
| 18 | + ], |
| 19 | + ], |
| 20 | + |
| 21 | + 'actions' => [ |
| 22 | + 'create' => [ |
| 23 | + 'label' => 'New currency', |
| 24 | + 'heading' => 'New Currency', |
| 25 | + ], |
| 26 | + 'edit' => [ |
| 27 | + 'label' => 'Edit', |
| 28 | + 'heading' => 'Edit Currency', |
| 29 | + ], |
| 30 | + 'delete' => [ |
| 31 | + 'label' => 'Delete', |
| 32 | + 'heading' => 'Delete Currency', |
| 33 | + ], |
| 34 | + 'restore' => [ |
| 35 | + 'label' => 'Restore', |
| 36 | + 'heading' => 'Restore Currency', |
| 37 | + ], |
| 38 | + 'force_delete' => [ |
| 39 | + 'label' => 'Permanent delete', |
| 40 | + 'heading' => 'Permanent Deletion of Currency', |
| 41 | + 'description' => 'Are you sure you want to delete the currency :name? This action cannot be undone.', |
| 42 | + ], |
| 43 | + ], |
| 44 | + |
| 45 | + 'form' => [ |
| 46 | + 'id' => [ |
| 47 | + 'label' => 'Code', |
| 48 | + 'helper' => 'Three-letter currency code (ISO 4217)', |
| 49 | + ], |
| 50 | + 'name' => [ |
| 51 | + 'label' => 'Name', |
| 52 | + ], |
| 53 | + 'is_active' => [ |
| 54 | + 'label' => 'Active', |
| 55 | + ], |
| 56 | + ], |
| 57 | + |
| 58 | + 'import' => [ |
| 59 | + 'action_label' => 'Import Currencies', |
| 60 | + 'modal_heading' => 'Import Currencies', |
| 61 | + 'success_title' => 'Import Currencies', |
| 62 | + 'success_message' => 'The import currencies job has been queued.', |
| 63 | + ], |
| 64 | + |
| 65 | + 'notifications' => [ |
| 66 | + 'success' => [ |
| 67 | + 'title' => 'Currencies Import Completed', |
| 68 | + 'message' => 'All currencies have been successfully imported and updated.', |
| 69 | + ], |
| 70 | + 'failed' => [ |
| 71 | + 'title' => 'Currencies Import Failed', |
| 72 | + 'message' => 'Failed to import currencies data.', |
| 73 | + ], |
| 74 | + ], |
| 75 | +]; |
0 commit comments