Language

lang.js

const lang = {
title: "Invoice Tablet",
sidebar: {
btnReceived: "View Invoices",
btnSend: "Send Invoices",
btnClose: "Close"
},
receivedTab: {
heading: "Invoice Tablet",
subtitle: "Received Invoices",
tableHeaders: {
issuedBy: "Issued By",
status: "Status",
amount: "Amount",
reason: "Reason",
actions: "Actions"
},
pagination: "« 1 »"
},
sendTab: {
heading: "Invoice Tablet",
buttonCreateInvoice: "Create Invoice",
subtitle: "Sent Invoices",
tableHeaders: {
recipient: "Recipient",
status: "Status",
amount: "Amount",
reason: "Reason",
actions: "Actions"
},
pagination: "« 1 »"
},
invoiceModal: {
title: "SEND NEW INVOICE",
invoiceSelectionTitle: "INVOICE SELECTION",
invoiceTypeLabel: "INVOICE TYPE",
invoiceTypePlaceholder: "Select invoice type",
quantityLabel: "SELECT QUANTITY",
receiverLabel: "RECIPIENT",
receiverPlaceholder: "Select player",
amountLabel: "AMOUNT (€)",
btnSubmit: "SEND INVOICE"
},
selectedInvoicesSidebarTitle: "Selected Invoices",
paymentMenu: {
title: "Confirm Payment",
confirmText: "Do you want to pay this invoice for {amount}?",
btnConfirm: "PAY INVOICE",
btnClose: "×"
},
rejectMenu: {
title: "Reject Invoice",
confirmText: "Do you want to reject this invoice for {amount}?",
btnReject: "REJECT INVOICE",
btnClose: "×"
},
revokeMenu: {
title: "Revoke Invoice",
confirmText: "Do you want to revoke this invoice for {amount}?",
btnRevoke: "REVOKE INVOICE",
btnClose: "×"
},
invoiceInfoMenu: {
title: "Invoice Information",
btnClose: "×"
},
invoiceDetails: {
issuedBy: "Issued By:",
items: "Items:",
sentDate: "Sent Date:",
amount: "Amount:"
}
};

Last updated