feat: add i18n of profit

This commit is contained in:
Thanaphon Frappet 2025-03-07 15:52:33 +07:00
parent c83d48bae2
commit 7717523449
2 changed files with 52 additions and 0 deletions

View file

@ -149,6 +149,7 @@ export default {
included: 'Included', included: 'Included',
notIncluded: 'Not Included', notIncluded: 'Not Included',
dueDate: 'Due date', dueDate: 'Due date',
year: 'year',
}, },
menu: { menu: {
@ -1358,6 +1359,7 @@ export default {
Invoice: 'Payment Report', Invoice: 'Payment Report',
Product: 'Product and Service Report', Product: 'Product and Service Report',
Sale: 'Sales Summary Report', Sale: 'Sales Summary Report',
Profit: 'Profit and Loss Report',
}, },
document: { document: {
code: 'Code', code: 'Code',
@ -1384,6 +1386,15 @@ export default {
name: 'Name', name: 'Name',
count: 'Sold Quantity', count: 'Sold Quantity',
}, },
profit: {
byMonth: 'Profit Table by Month',
byYear: 'Profit Table by Year',
month: 'Month',
year: 'Year (AD)',
netProfit: 'Net Profit',
expenses: 'Expenses',
income: 'Income',
},
}, },
dashboard: { dashboard: {
title: 'Dashboard', title: 'Dashboard',
@ -1417,4 +1428,19 @@ export default {
caption: 'Based on Tax Invoices', caption: 'Based on Tax Invoices',
}, },
}, },
month: {
1: 'January',
2: 'February',
3: 'March',
4: 'April',
5: 'May',
6: 'June',
7: 'July',
8: 'August',
9: 'September',
10: 'October',
11: 'November',
12: 'December',
},
}; };

View file

@ -149,6 +149,7 @@ export default {
included: 'รวม', included: 'รวม',
notIncluded: 'ไม่รวม', notIncluded: 'ไม่รวม',
dueDate: 'วันครบกำหนด', dueDate: 'วันครบกำหนด',
year: 'ปี',
}, },
menu: { menu: {
@ -1338,6 +1339,7 @@ export default {
Invoice: 'รายงานการชำระเงิน', Invoice: 'รายงานการชำระเงิน',
Product: 'รายงานสินค้าและบริการ', Product: 'รายงานสินค้าและบริการ',
Sale: 'รายงานสรุปยอดขาย', Sale: 'รายงานสรุปยอดขาย',
Profit: 'รายงานกำไรและขาดทุน',
}, },
document: { document: {
code: 'รหัส', code: 'รหัส',
@ -1365,6 +1367,15 @@ export default {
name: 'ชื่อ', name: 'ชื่อ',
count: 'จำนวนที่ขาย', count: 'จำนวนที่ขาย',
}, },
profit: {
byMonth: 'ตารางผลกำไรตามเดือน',
byYear: 'ตารางผลกำไรตามปี',
month: 'เดือน',
year: 'ปี (ค.ศ.)',
netProfit: 'กำไร',
expenses: 'ต้นทุน',
income: 'รายได้',
},
}, },
dashboard: { dashboard: {
title: 'Dashboard', title: 'Dashboard',
@ -1398,4 +1409,19 @@ export default {
caption: 'ตามใบกำกับภาษี', caption: 'ตามใบกำกับภาษี',
}, },
}, },
month: {
1: 'มกราคม',
2: 'กุมภาพันธ์',
3: 'มีนาคม',
4: 'เมษายน',
5: 'พฤษภาคม',
6: 'มิถุนายน',
7: 'กรกฎาคม',
8: 'สิงหาคม',
9: 'กันยายน',
10: 'ตุลาคม',
11: 'พฤศจิกายน',
12: 'ธันวาคม',
},
}; };