From 5f908740b9791576a1abd5c2dc0920f9970ce40b Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Fri, 1 Nov 2024 10:09:08 +0700 Subject: [PATCH] refactor: add i18n title peview --- src/i18n/eng.ts | 6 ++++++ src/i18n/tha.ts | 8 ++++++++ 2 files changed, 14 insertions(+) diff --git a/src/i18n/eng.ts b/src/i18n/eng.ts index 89ec20c8..c97f1cb8 100644 --- a/src/i18n/eng.ts +++ b/src/i18n/eng.ts @@ -885,5 +885,11 @@ export default { discount: 'Discount', vat: 'VAT', value: 'Value', + title: { + quotation: 'Quotation', + invoice: 'Invoice', + payment: 'Payment', + receipt: 'Receipt', + }, }, }; diff --git a/src/i18n/tha.ts b/src/i18n/tha.ts index e1370e7d..ecd3cef1 100644 --- a/src/i18n/tha.ts +++ b/src/i18n/tha.ts @@ -1,3 +1,5 @@ +import { title } from 'node:process'; + export default { general: { ok: 'ตกลง', @@ -877,5 +879,11 @@ export default { discount: 'ส่วนลด', vat: 'ภาษี', value: 'มูลค่า', + title: { + quotation: 'ใบเสนอราคา', + invoice: 'ใบแจ้งหนี้', + payment: 'ชำระหนี้', + receipt: 'ใบเสร็จรับเงิน', + }, }, };