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.
40 lines
1.4 KiB
40 lines
1.4 KiB
<?php
|
|
|
|
return [
|
|
// Labels
|
|
'customer' => 'Customer',
|
|
'list' => 'Customer List',
|
|
'search' => 'Search Customer',
|
|
'not_found' => 'Customer not found.',
|
|
'empty' => 'Customer is empty.',
|
|
'back_to_show' => 'Back to Customer Detail',
|
|
'back_to_index' => 'Back to Customer List',
|
|
'detail' => 'Customer Detail',
|
|
'contact' => 'Customer Contact',
|
|
|
|
// Actions
|
|
'create' => 'Create new Customer',
|
|
'created' => 'Create new Customer succeded.',
|
|
'show' => 'View Customer Detail',
|
|
'edit' => 'Edit Customer',
|
|
'update' => 'Update Customer',
|
|
'updated' => 'Update Customer succeded.',
|
|
'delete' => 'Delete Customer',
|
|
'delete_confirm' => 'Are you sure to delete this Customer?',
|
|
'deleted' => 'Delete Customer succeded.',
|
|
'undeleted' => 'Customer not deleted.',
|
|
'undeleteable' => 'Customer data cannot be deleted.',
|
|
|
|
// Attributes
|
|
'name' => 'Customer Name',
|
|
'description' => 'Customer Description',
|
|
'pic' => 'PIC',
|
|
'projects_count' => 'Projects count',
|
|
|
|
// Relations
|
|
'projects' => 'Project List',
|
|
'payments' => 'Payment History',
|
|
'subscriptions' => 'Subscription List',
|
|
'subscriptions_count' => 'Subscriptions Count',
|
|
'invoices' => 'Invoice List',
|
|
];
|