b7c7a5f6
Alexey Boroda
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
return [
'total_incomes' => 'รายได้รวม',
'receivables' => 'ลูกหนี้',
'open_invoices' => 'เปิดใบแจ้งหนี้',
'overdue_invoices' => 'ใบแจ้งหนี้ที่ค้างชำระ',
'total_expenses' => 'ค่าใช้จ่ายทั้งหมด',
'payables' => 'เจ้าหนี้',
'open_bills' => 'เปิดบิล',
'overdue_bills' => 'บิลที่ค้างชำระ',
'total_profit' => 'กำไรรวม',
'open_profit' => 'เปิดกำไร',
'overdue_profit' => 'กำไรที่ค้างชำระ',
'cash_flow' => 'กระแสเงินสด',
'no_profit_loss' => 'ไม่มีการสูญเสียกำไร',
'incomes_by_category' => 'รายได้ตามประเภท',
'expenses_by_category' => 'ค่าใช้จ่ายตามประเภท',
'account_balance' => 'ยอดเงินในบัญชี',
'latest_incomes' => 'รายได้ล่าสุด',
'latest_expenses' => 'ค่าใช้จ่ายล่าสุด',
];
|