mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 01:04:25 +08:00
support using parseDateTime function and IANA time zone names when importing DSV files using custom script
This commit is contained in:
+3
-2
@@ -1404,8 +1404,8 @@
|
||||
"functionParamRowDescription": "อาร์เรย์ของสตริง แต่ละตัวแทนค่าของคอลัมน์",
|
||||
"functionParamIndexDescription": "ดัชนีของแถว (เริ่มจาก 0)",
|
||||
"functionReturnDescription": "อ็อบเจ็กต์แทนธุรกรรม (มีฟิลด์ตามที่กำหนดด้านล่าง) หรือ null เพื่อข้ามแถวนี้",
|
||||
"fieldTimeDescription": "[จำเป็น] เวลาของธุรกรรม, รูปแบบ: YYYY-MM-DD HH:mm:ss",
|
||||
"fieldUtcOffsetDescription": "[จำเป็น] ค่าชดเชยเขตเวลาเป็นนาที เช่น '480' สำหรับ UTC+8, '-300' สำหรับ UTC-5",
|
||||
"fieldTimeDescription": "[required] Transaction time, format: YYYY-MM-DD HH:mm:ss. You can also use the parseDateTime(value, format) function to convert a custom formatted time string to the standard format, where 'format' argument is the format of the custom time string, e.g. parseDateTime('12/31/2023 23:59', 'MM/DD/YYYY HH:mm') means converting '12/31/2023 23:59' to the standard format '2023-12-31 23:59:00'",
|
||||
"fieldUtcOffsetDescription": "[required] Transaction timezone offset in minutes, e.g. '480' for UTC+8, '-300' for UTC-5. You can also use the parseUtcOffset(timezoneName) function to get the timezone offset in minutes automatically according to the transaction time, where 'timezoneName' argument is the IANA time zone name, e.g. parseUtcOffset('Asia/Shanghai') means getting the timezone offset in minutes for Beijing Time",
|
||||
"fieldTypeDescription": "[จำเป็น] ประเภทของธุรกรรม ต้องเป็นหนึ่งใน 'TransactionType.Income', 'TransactionType.Expense' หรือ 'TransactionType.Transfer'",
|
||||
"fieldCategoryNameDescription": "[ไม่จำเป็น] ชื่อหมวดหมู่",
|
||||
"fieldSourceAccountNameDescription": "[ไม่จำเป็น] ชื่อบัญชีต้นทาง",
|
||||
@@ -1961,6 +1961,7 @@
|
||||
"Please execute the custom script first": "กรุณาเรียกใช้สคริปต์กำหนดเองก่อน",
|
||||
"Executing Script...": "กำลังเรียกใช้สคริปต์...",
|
||||
"No parse function defined": "ไม่ได้กำหนดฟังก์ชัน parse",
|
||||
"Failed to parse time": "Failed to parse time",
|
||||
"Failed to execute custom script": "เรียกใช้สคริปต์กำหนดเองล้มเหลว",
|
||||
"Batch Replace Selected Expense Categories": "แทนที่หมวดค่าใช้จ่ายที่เลือกแบบกลุ่ม",
|
||||
"Batch Replace Selected Income Categories": "แทนที่หมวดรายได้ที่เลือกแบบกลุ่ม",
|
||||
|
||||
Reference in New Issue
Block a user