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',
notIncluded: 'Not Included',
dueDate: 'Due date',
year: 'year',
},
menu: {
@ -1358,6 +1359,7 @@ export default {
Invoice: 'Payment Report',
Product: 'Product and Service Report',
Sale: 'Sales Summary Report',
Profit: 'Profit and Loss Report',
},
document: {
code: 'Code',
@ -1384,6 +1386,15 @@ export default {
name: 'Name',
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: {
title: 'Dashboard',
@ -1417,4 +1428,19 @@ export default {
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: 'รวม',
notIncluded: 'ไม่รวม',
dueDate: 'วันครบกำหนด',
year: 'ปี',
},
menu: {
@ -1338,6 +1339,7 @@ export default {
Invoice: 'รายงานการชำระเงิน',
Product: 'รายงานสินค้าและบริการ',
Sale: 'รายงานสรุปยอดขาย',
Profit: 'รายงานกำไรและขาดทุน',
},
document: {
code: 'รหัส',
@ -1365,6 +1367,15 @@ export default {
name: 'ชื่อ',
count: 'จำนวนที่ขาย',
},
profit: {
byMonth: 'ตารางผลกำไรตามเดือน',
byYear: 'ตารางผลกำไรตามปี',
month: 'เดือน',
year: 'ปี (ค.ศ.)',
netProfit: 'กำไร',
expenses: 'ต้นทุน',
income: 'รายได้',
},
},
dashboard: {
title: 'Dashboard',
@ -1398,4 +1409,19 @@ export default {
caption: 'ตามใบกำกับภาษี',
},
},
month: {
1: 'มกราคม',
2: 'กุมภาพันธ์',
3: 'มีนาคม',
4: 'เมษายน',
5: 'พฤษภาคม',
6: 'มิถุนายน',
7: 'กรกฎาคม',
8: 'สิงหาคม',
9: 'กันยายน',
10: 'ตุลาคม',
11: 'พฤศจิกายน',
12: 'ธันวาคม',
},
};