Uecko_ERP/modules/customer-invoices/src/common/locales/en.json

135 lines
3.3 KiB
JSON
Raw Normal View History

2025-06-11 15:13:44 +00:00
{
2025-07-08 18:50:08 +00:00
"common": {
"append_empty_row": "Append row",
"append_empty_row_tooltip": "Append a empty row",
"duplicate_row": "Duplicate",
"insert_row_above": "Insert row above",
"insert_row_below": "Insert row below",
"remove_row": "Remove"
},
2025-07-07 18:25:13 +00:00
"pages": {
2025-06-11 15:13:44 +00:00
"title": "Customer invoices",
"description": "Manage your customer invoices",
"list": {
"title": "Customer invoice list",
2025-07-07 18:25:13 +00:00
"description": "List all customer invoices",
"grid_columns": {
"invoice_number": "Inv. number",
"invoice_series": "Serie",
"invoice_status": "Status",
"issue_date": "Date",
"total_price": "Total price"
}
2025-06-11 15:13:44 +00:00
},
"create": {
2025-07-07 18:25:13 +00:00
"title": "New customer invoice",
"description": "Create a new customer invoice",
"back_to_list": "Back to the list"
2025-06-11 15:13:44 +00:00
},
"edit": {
"title": "Edit customer invoice",
"description": "Edit the selected customer invoice"
},
"delete": {
"title": "Delete customer invoice",
"description": "Delete the selected customer invoice"
},
"view": {
"title": "View customer invoice",
"description": "View the details of the selected customer invoice"
}
2025-07-07 18:25:13 +00:00
},
"status": {
"draft": "Draft",
"emitted": "Emitted",
"sent": "Sent",
"received": "Received",
"rejected": "Rejected"
},
"form_fields": {
"invoice_number": {
"label": "Invoice number",
"placeholder": "",
"description": ""
},
2025-07-08 18:50:08 +00:00
"issue_date": {
"label": "Date",
"placeholder": "Select a date",
"description": "Invoice issue date"
},
2025-07-09 17:56:15 +00:00
"invoice_series": {
"label": "Serie",
"placeholder": "",
"description": ""
},
2025-07-08 18:50:08 +00:00
"operation_date": {
"label": "Operation date",
"placeholder": "Select a date",
"description": "Invoice operation date"
},
2025-07-10 10:45:59 +00:00
"subtotal_price": {
"label": "Subtotal",
"placeholder": "",
"desc": "Invoice subtotal"
},
"discount": {
"label": "Discount (%)",
"placeholder": "",
"desc": "Percentage discount"
},
"discount_price": {
"label": "Discount price",
"placeholder": "",
"desc": "Percentage discount price"
},
"tax": {
"label": "Tax (%)",
"placeholder": "",
"desc": "Percentage Tax"
},
"tax_price": {
"label": "Tax price",
"placeholder": "",
"desc": "Percentage tax price"
},
"total_price": {
"label": "Total price",
"placeholder": "",
"desc": "Invoice total price"
},
2025-07-07 18:25:13 +00:00
"items": {
"quantity": {
"label": "Quantity",
"placeholder": "",
"description": ""
},
"description": {
"label": "Description",
"placeholder": "",
"description": ""
},
"unit_price": {
"label": "Unit price",
"placeholder": "",
"description": "Item unit price"
},
"subtotal_price": {
"label": "Subtotal",
"placeholder": "",
"description": ""
},
"discount": {
"label": "Dto (%)",
"placeholder": "",
"description": "Percentage discount"
},
"total_price": {
"label": "Total price",
"placeholder": "",
"description": "Total price with percentage discount"
}
}
2025-06-11 15:13:44 +00:00
}
}