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.
85 lines
3.0 KiB
85 lines
3.0 KiB
<?php
|
|
|
|
return [
|
|
// Labels
|
|
'project' => 'Project',
|
|
'projects' => 'Project List',
|
|
'index_title' => ':status Project List',
|
|
'work_duration' => 'Work Duration',
|
|
'cash_in_total' => 'Cash in Total',
|
|
'cash_out_total' => 'Cash out Total',
|
|
'all' => 'All Projects',
|
|
'search' => 'Search Projects',
|
|
'detail' => 'Project Detail',
|
|
'found' => 'Projects found',
|
|
'not_found' => 'Project not found.',
|
|
'select' => 'Select Project',
|
|
'empty' => 'Project list is empty.',
|
|
'back_to_show' => 'Back to Project Detail',
|
|
'back_to_index' => 'Back to Project List',
|
|
'receiveable_earnings' => 'Receiveable Earning',
|
|
'payment_remaining' => 'Payment Remaining',
|
|
'earnings_calculation' => 'Earnings Calculation',
|
|
'additional_jobs' => 'Additional Job List',
|
|
'overall_progress' => 'Overall Progress',
|
|
|
|
// Payments
|
|
'view_payments' => 'View All Project Payments',
|
|
'payment_summary' => 'Payment Summary',
|
|
'payment_status' => 'Payment Status',
|
|
'payment_statuses' => [
|
|
'paid' => 'Paid',
|
|
'outstanding' => 'Outstanding',
|
|
],
|
|
|
|
// Actions
|
|
'create' => 'Create new Project',
|
|
'created' => 'New Project has been created.',
|
|
'show' => 'Show Project Detail',
|
|
'edit' => 'Edit Project',
|
|
'update' => 'Update Project',
|
|
'updated' => 'Project has been updated.',
|
|
'delete' => 'Delete Project',
|
|
'deleted' => 'Project has been deleted.',
|
|
'undeleted' => 'Project not deleted.',
|
|
'show_jobs' => 'Show Job',
|
|
'update_status' => 'Update Project Status',
|
|
|
|
'jobs_list_export_html' => 'Export HTML',
|
|
'jobs_export_excel' => 'Export Excel',
|
|
'jobs_progress_export_html' => 'Export Progress',
|
|
'sort_jobs' => 'Sort Job Priority',
|
|
|
|
// Attributes
|
|
'name' => 'Project Name',
|
|
'description' => 'Project Description',
|
|
'start_date' => 'Start Date',
|
|
'end_date' => 'End Date',
|
|
'due_date' => 'Due Date',
|
|
'proposal_date' => 'Proposal Date',
|
|
'project_value' => 'Project Value',
|
|
'proposal_value' => 'Proposal Value',
|
|
'updated_at' => 'Last Update',
|
|
|
|
// Relations
|
|
'files' => 'Document List',
|
|
'jobs' => 'Job List',
|
|
'no_jobs' => 'Job list is empty.',
|
|
'cost_proposal' => 'Cost Proposal',
|
|
'invoices' => 'Invoice List',
|
|
'customer' => 'Customer',
|
|
'worker' => 'Worker',
|
|
'subscriptions' => 'Subscriptions',
|
|
'status' => 'Project Status',
|
|
'payments' => 'Payments',
|
|
'issues' => 'Issues',
|
|
'activities' => 'Activities',
|
|
|
|
// Statuses
|
|
'planned' => 'Planned',
|
|
'progress' => 'Progress',
|
|
'done' => 'Done',
|
|
'closed' => 'Closed',
|
|
'canceled' => 'Canceled',
|
|
'on_hold' => 'On Hold',
|
|
];
|