31 lines
941 B
PHP
31 lines
941 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'this_year' => 'Tahun ini',
|
|
'previous_year' => 'Tahun sebelumnya',
|
|
'this_quarter' => 'Kuartal ini',
|
|
'previous_quarter' => 'Kuartal sebelumnya',
|
|
'last_12_months' => '12 Bulan terakhir',
|
|
'profit_loss' => 'Profit & Loss',
|
|
'gross_profit' => 'Gross Profit',
|
|
'net_profit' => 'Net Profit',
|
|
'total_expenses' => 'Total Expenses',
|
|
'net' => 'NET',
|
|
|
|
'summary' => [
|
|
'income' => 'Ringkasan Pendapatan',
|
|
'expense' => 'Ringkasan Pengeluaran',
|
|
'income_expense' => 'Pendapatan berbanding Pengeluaran',
|
|
'tax' => 'Tax Summary',
|
|
],
|
|
|
|
'quarter' => [
|
|
'1' => 'Jan-Mar',
|
|
'2' => 'Apr-Jun',
|
|
'3' => 'Jul-Sep',
|
|
'4' => 'Oct-Dec',
|
|
],
|
|
|
|
];
|