31 lines
935 B
PHP
31 lines
935 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'this_year' => 'امسال',
|
|
'previous_year' => 'سال قبل',
|
|
'this_quarter' => 'سه ماه',
|
|
'previous_quarter' => 'سه ماهه قبلی',
|
|
'last_12_months' => '12 ماه گذشته',
|
|
'profit_loss' => 'Profit & Loss',
|
|
'gross_profit' => 'Gross Profit',
|
|
'net_profit' => 'Net Profit',
|
|
'total_expenses' => 'Total Expenses',
|
|
'net' => 'NET',
|
|
|
|
'summary' => [
|
|
'income' => 'خلاصه درآمد',
|
|
'expense' => 'خلاصه هزینه',
|
|
'income_expense' => 'هزینه درآمد',
|
|
'tax' => 'Tax Summary',
|
|
],
|
|
|
|
'quarter' => [
|
|
'1' => 'Jan-Mar',
|
|
'2' => 'Apr-Jun',
|
|
'3' => 'Jul-Sep',
|
|
'4' => 'Oct-Dec',
|
|
],
|
|
|
|
];
|