31 lines
890 B
PHP
31 lines
890 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'this_year' => '今年',
|
|
'previous_year' => '去年',
|
|
'this_quarter' => '本季',
|
|
'previous_quarter' => '前一季',
|
|
'last_12_months' => '過去 12 個月',
|
|
'profit_loss' => '損益',
|
|
'gross_profit' => '毛利',
|
|
'net_profit' => '初始利潤',
|
|
'total_expenses' => '總費用',
|
|
'net' => '初始',
|
|
|
|
'summary' => [
|
|
'income' => '收入概要',
|
|
'expense' => '支出概要',
|
|
'income_expense' => '收入 vs 支出',
|
|
'tax' => '稅務概要',
|
|
],
|
|
|
|
'quarter' => [
|
|
'1' => '一至三月',
|
|
'2' => '四至六月',
|
|
'3' => '七至九月',
|
|
'4' => '十至十二月',
|
|
],
|
|
|
|
];
|