@voyantjs/i18n 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/app-dmc.d.ts +22 -0
- package/dist/admin/app-dmc.d.ts.map +1 -0
- package/dist/admin/app-dmc.js +29 -0
- package/dist/admin/app-operator.d.ts +23 -0
- package/dist/admin/app-operator.d.ts.map +1 -0
- package/dist/admin/app-operator.js +17 -0
- package/dist/admin/auth.d.ts +247 -0
- package/dist/admin/auth.d.ts.map +1 -0
- package/dist/admin/auth.js +166 -0
- package/dist/admin/availability.d.ts +689 -0
- package/dist/admin/availability.d.ts.map +1 -0
- package/dist/admin/availability.js +686 -0
- package/dist/admin/bookings.d.ts +1067 -0
- package/dist/admin/bookings.d.ts.map +1 -0
- package/dist/admin/bookings.js +1064 -0
- package/dist/admin/chrome.d.ts +36 -0
- package/dist/admin/chrome.d.ts.map +1 -0
- package/dist/admin/chrome.js +24 -0
- package/dist/admin/contacts.d.ts +269 -0
- package/dist/admin/contacts.d.ts.map +1 -0
- package/dist/admin/contacts.js +266 -0
- package/dist/admin/core-dmc.d.ts +21 -0
- package/dist/admin/core-dmc.d.ts.map +1 -0
- package/dist/admin/core-dmc.js +14 -0
- package/dist/admin/core-operator.d.ts +117 -0
- package/dist/admin/core-operator.d.ts.map +1 -0
- package/dist/admin/core-operator.js +78 -0
- package/dist/admin/crm-operator.d.ts +579 -0
- package/dist/admin/crm-operator.d.ts.map +1 -0
- package/dist/admin/crm-operator.js +576 -0
- package/dist/admin/dashboard-operator.d.ts +83 -0
- package/dist/admin/dashboard-operator.d.ts.map +1 -0
- package/dist/admin/dashboard-operator.js +80 -0
- package/dist/admin/distribution-dmc.d.ts +1804 -0
- package/dist/admin/distribution-dmc.d.ts.map +1 -0
- package/dist/admin/distribution-dmc.js +1181 -0
- package/dist/admin/dmc-nav.d.ts +55 -0
- package/dist/admin/dmc-nav.d.ts.map +1 -0
- package/dist/admin/dmc-nav.js +38 -0
- package/dist/admin/finance.d.ts +377 -0
- package/dist/admin/finance.d.ts.map +1 -0
- package/dist/admin/finance.js +374 -0
- package/dist/admin/operator-nav.d.ts +76 -0
- package/dist/admin/operator-nav.d.ts.map +1 -0
- package/dist/admin/operator-nav.js +52 -0
- package/dist/admin/organizations.d.ts +87 -0
- package/dist/admin/organizations.d.ts.map +1 -0
- package/dist/admin/organizations.js +84 -0
- package/dist/admin/pricing-operator.d.ts +233 -0
- package/dist/admin/pricing-operator.d.ts.map +1 -0
- package/dist/admin/pricing-operator.js +230 -0
- package/dist/admin/products-dmc.d.ts +239 -0
- package/dist/admin/products-dmc.d.ts.map +1 -0
- package/dist/admin/products-dmc.js +236 -0
- package/dist/admin/products-operator.d.ts +999 -0
- package/dist/admin/products-operator.d.ts.map +1 -0
- package/dist/admin/products-operator.js +996 -0
- package/dist/admin/resources.d.ts +653 -0
- package/dist/admin/resources.d.ts.map +1 -0
- package/dist/admin/resources.js +650 -0
- package/dist/admin/settings-operator.d.ts +251 -0
- package/dist/admin/settings-operator.d.ts.map +1 -0
- package/dist/admin/settings-operator.js +248 -0
- package/dist/admin/suppliers-operator.d.ts +325 -0
- package/dist/admin/suppliers-operator.d.ts.map +1 -0
- package/dist/admin/suppliers-operator.js +322 -0
- package/dist/admin/suppliers.d.ts +259 -0
- package/dist/admin/suppliers.d.ts.map +1 -0
- package/dist/admin/suppliers.js +256 -0
- package/dist/admin/team.d.ts +102 -0
- package/dist/admin/team.d.ts.map +1 -0
- package/dist/admin/team.js +68 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +27 -0
- package/dist/package-formatters.d.ts +9 -0
- package/dist/package-formatters.d.ts.map +1 -0
- package/dist/package-formatters.js +56 -0
- package/dist/package-runtime.d.ts +39 -0
- package/dist/package-runtime.d.ts.map +1 -0
- package/dist/package-runtime.js +60 -0
- package/dist/runtime.d.ts +33 -0
- package/dist/runtime.d.ts.map +1 -0
- package/dist/runtime.js +120 -0
- package/package.json +48 -0
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
export const adminFinanceMessages = {
|
|
2
|
+
en: {
|
|
3
|
+
finance: {
|
|
4
|
+
title: "Finance",
|
|
5
|
+
description: "Manage invoices, payments, and supplier finances.",
|
|
6
|
+
newInvoice: "New Invoice",
|
|
7
|
+
recordSupplierPayment: "Record Supplier Payment",
|
|
8
|
+
invoicesTab: "Invoices",
|
|
9
|
+
supplierPaymentsTab: "Supplier Payments",
|
|
10
|
+
searchInvoicesPlaceholder: "Search invoices...",
|
|
11
|
+
invoiceNumberColumn: "Invoice #",
|
|
12
|
+
statusColumn: "Status",
|
|
13
|
+
totalColumn: "Total",
|
|
14
|
+
paidColumn: "Paid",
|
|
15
|
+
balanceDueColumn: "Balance Due",
|
|
16
|
+
dueDateColumn: "Due Date",
|
|
17
|
+
bookingColumn: "Booking",
|
|
18
|
+
supplierColumn: "Supplier",
|
|
19
|
+
amountColumn: "Amount",
|
|
20
|
+
dateColumn: "Date",
|
|
21
|
+
referenceColumn: "Reference",
|
|
22
|
+
invoiceStatusDraft: "Draft",
|
|
23
|
+
invoiceStatusSent: "Sent",
|
|
24
|
+
invoiceStatusPartiallyPaid: "Partially Paid",
|
|
25
|
+
invoiceStatusPaid: "Paid",
|
|
26
|
+
invoiceStatusOverdue: "Overdue",
|
|
27
|
+
invoiceStatusVoid: "Void",
|
|
28
|
+
paymentStatusPending: "Pending",
|
|
29
|
+
paymentStatusCompleted: "Completed",
|
|
30
|
+
paymentStatusFailed: "Failed",
|
|
31
|
+
paymentStatusRefunded: "Refunded",
|
|
32
|
+
paymentMethodBankTransfer: "Bank Transfer",
|
|
33
|
+
paymentMethodCreditCard: "Credit Card",
|
|
34
|
+
paymentMethodCash: "Cash",
|
|
35
|
+
paymentMethodCheque: "Cheque",
|
|
36
|
+
paymentMethodOther: "Other",
|
|
37
|
+
creditNoteStatusDraft: "Draft",
|
|
38
|
+
creditNoteStatusIssued: "Issued",
|
|
39
|
+
creditNoteStatusApplied: "Applied",
|
|
40
|
+
detailPage: {
|
|
41
|
+
notFound: "Invoice not found",
|
|
42
|
+
backToFinance: "Back to Finance",
|
|
43
|
+
edit: "Edit",
|
|
44
|
+
delete: "Delete",
|
|
45
|
+
deleteOnlyDraftAlert: "Only draft invoices can be deleted",
|
|
46
|
+
deleteConfirm: "Are you sure you want to delete this invoice?",
|
|
47
|
+
deleteLineItemConfirm: "Delete this line item?",
|
|
48
|
+
},
|
|
49
|
+
detailSections: {
|
|
50
|
+
invoiceDetailsTitle: "Invoice Details",
|
|
51
|
+
currencyLabel: "Currency",
|
|
52
|
+
subtotalLabel: "Subtotal",
|
|
53
|
+
taxLabel: "Tax",
|
|
54
|
+
totalLabel: "Total",
|
|
55
|
+
paidLabel: "Paid",
|
|
56
|
+
balanceDueLabel: "Balance Due",
|
|
57
|
+
datesLinksTitle: "Dates & Links",
|
|
58
|
+
issueDateLabel: "Issue Date",
|
|
59
|
+
dueDateLabel: "Due Date",
|
|
60
|
+
bookingLabel: "Booking",
|
|
61
|
+
viewBooking: "View Booking",
|
|
62
|
+
personLabel: "Person",
|
|
63
|
+
organizationLabel: "Organization",
|
|
64
|
+
notesLabel: "Notes",
|
|
65
|
+
createdLabel: "Created",
|
|
66
|
+
updatedLabel: "Updated",
|
|
67
|
+
lineItemsTitle: "Line Items",
|
|
68
|
+
addLineItem: "Add Line Item",
|
|
69
|
+
noLineItems: "No line items yet.",
|
|
70
|
+
descriptionColumn: "Description",
|
|
71
|
+
quantityColumn: "Qty",
|
|
72
|
+
unitPriceColumn: "Unit Price",
|
|
73
|
+
taxRateColumn: "Tax Rate",
|
|
74
|
+
paymentsTitle: "Payments",
|
|
75
|
+
recordPayment: "Record Payment",
|
|
76
|
+
noPayments: "No payments yet.",
|
|
77
|
+
methodColumn: "Method",
|
|
78
|
+
creditNotesTitle: "Credit Notes",
|
|
79
|
+
addCreditNote: "Add Credit Note",
|
|
80
|
+
noCreditNotes: "No credit notes yet.",
|
|
81
|
+
creditNoteNumberColumn: "CN #",
|
|
82
|
+
reasonColumn: "Reason",
|
|
83
|
+
notesTitle: "Notes",
|
|
84
|
+
addInternalNotePlaceholder: "Add an internal note...",
|
|
85
|
+
addNote: "Add Note",
|
|
86
|
+
noNotes: "No notes yet.",
|
|
87
|
+
noValue: "-",
|
|
88
|
+
},
|
|
89
|
+
lineItemDialog: {
|
|
90
|
+
editTitle: "Edit Line Item",
|
|
91
|
+
newTitle: "Add Line Item",
|
|
92
|
+
validationDescriptionRequired: "Description is required",
|
|
93
|
+
descriptionLabel: "Description",
|
|
94
|
+
descriptionPlaceholder: "Service description...",
|
|
95
|
+
quantityLabel: "Quantity",
|
|
96
|
+
unitPriceLabel: "Unit Price (cents)",
|
|
97
|
+
totalLabel: "Total (cents)",
|
|
98
|
+
taxRateLabel: "Tax Rate (cents, e.g. 2000 = 20%)",
|
|
99
|
+
taxRatePlaceholder: "0",
|
|
100
|
+
sortOrderLabel: "Sort Order",
|
|
101
|
+
cancel: "Cancel",
|
|
102
|
+
saveChanges: "Save Changes",
|
|
103
|
+
createLineItem: "Add Line Item",
|
|
104
|
+
},
|
|
105
|
+
creditNoteDialog: {
|
|
106
|
+
title: "Add Credit Note",
|
|
107
|
+
validationNumberRequired: "Credit note number is required",
|
|
108
|
+
validationAmountMin: "Amount must be at least 1",
|
|
109
|
+
validationReasonRequired: "Reason is required",
|
|
110
|
+
numberLabel: "Credit Note Number",
|
|
111
|
+
numberPlaceholder: "CN-2025-1234",
|
|
112
|
+
currencyLabel: "Currency",
|
|
113
|
+
amountLabel: "Amount (cents)",
|
|
114
|
+
reasonLabel: "Reason",
|
|
115
|
+
reasonPlaceholder: "Reason for credit note...",
|
|
116
|
+
notesLabel: "Notes",
|
|
117
|
+
notesPlaceholder: "Additional notes...",
|
|
118
|
+
cancel: "Cancel",
|
|
119
|
+
submit: "Create Credit Note",
|
|
120
|
+
},
|
|
121
|
+
invoiceDialog: {
|
|
122
|
+
editTitle: "Edit Invoice",
|
|
123
|
+
newTitle: "New Invoice",
|
|
124
|
+
validationInvoiceNumberRequired: "Invoice number is required",
|
|
125
|
+
validationBookingIdRequired: "Booking ID is required",
|
|
126
|
+
validationCurrencyCode: "Use 3-letter ISO code",
|
|
127
|
+
validationIssueDateRequired: "Issue date is required",
|
|
128
|
+
validationDueDateRequired: "Due date is required",
|
|
129
|
+
invoiceNumberLabel: "Invoice Number",
|
|
130
|
+
invoiceNumberPlaceholder: "INV-2025-1234",
|
|
131
|
+
statusLabel: "Status",
|
|
132
|
+
bookingIdLabel: "Booking ID",
|
|
133
|
+
bookingIdPlaceholder: "book_...",
|
|
134
|
+
currencyLabel: "Currency",
|
|
135
|
+
subtotalLabel: "Subtotal (cents)",
|
|
136
|
+
taxLabel: "Tax (cents)",
|
|
137
|
+
totalLabel: "Total (cents)",
|
|
138
|
+
issueDateLabel: "Issue Date",
|
|
139
|
+
issueDatePlaceholder: "Pick issue date",
|
|
140
|
+
dueDateLabel: "Due Date",
|
|
141
|
+
dueDatePlaceholder: "Pick due date",
|
|
142
|
+
notesLabel: "Notes",
|
|
143
|
+
notesPlaceholder: "Invoice notes...",
|
|
144
|
+
cancel: "Cancel",
|
|
145
|
+
saveChanges: "Save Changes",
|
|
146
|
+
createInvoice: "Create Invoice",
|
|
147
|
+
},
|
|
148
|
+
paymentDialog: {
|
|
149
|
+
title: "Record Payment",
|
|
150
|
+
validationAmountMin: "Amount must be at least 1",
|
|
151
|
+
validationPaymentDateRequired: "Payment date is required",
|
|
152
|
+
amountLabel: "Amount (cents)",
|
|
153
|
+
currencyLabel: "Currency",
|
|
154
|
+
paymentMethodLabel: "Payment Method",
|
|
155
|
+
statusLabel: "Status",
|
|
156
|
+
paymentDateLabel: "Payment Date",
|
|
157
|
+
referenceNumberLabel: "Reference Number",
|
|
158
|
+
referenceNumberPlaceholder: "TXN-12345",
|
|
159
|
+
notesLabel: "Notes",
|
|
160
|
+
notesPlaceholder: "Payment notes...",
|
|
161
|
+
cancel: "Cancel",
|
|
162
|
+
submit: "Record Payment",
|
|
163
|
+
},
|
|
164
|
+
supplierPaymentDialog: {
|
|
165
|
+
title: "Record Supplier Payment",
|
|
166
|
+
validationBookingIdRequired: "Booking ID is required",
|
|
167
|
+
validationAmountMin: "Amount must be at least 1",
|
|
168
|
+
validationPaymentDateRequired: "Payment date is required",
|
|
169
|
+
bookingIdLabel: "Booking ID",
|
|
170
|
+
bookingIdPlaceholder: "book_...",
|
|
171
|
+
supplierIdLabel: "Supplier ID (optional)",
|
|
172
|
+
supplierIdPlaceholder: "supp_...",
|
|
173
|
+
amountLabel: "Amount (cents)",
|
|
174
|
+
currencyLabel: "Currency",
|
|
175
|
+
paymentDateLabel: "Payment Date",
|
|
176
|
+
paymentDatePlaceholder: "Select payment date",
|
|
177
|
+
paymentMethodLabel: "Payment Method",
|
|
178
|
+
statusLabel: "Status",
|
|
179
|
+
referenceNumberLabel: "Reference Number",
|
|
180
|
+
referenceNumberPlaceholder: "TXN-12345",
|
|
181
|
+
notesLabel: "Notes",
|
|
182
|
+
notesPlaceholder: "Payment notes...",
|
|
183
|
+
cancel: "Cancel",
|
|
184
|
+
submit: "Record Supplier Payment",
|
|
185
|
+
},
|
|
186
|
+
},
|
|
187
|
+
},
|
|
188
|
+
ro: {
|
|
189
|
+
finance: {
|
|
190
|
+
title: "Financiar",
|
|
191
|
+
description: "Administreaza facturile, platile si platile catre furnizori.",
|
|
192
|
+
newInvoice: "Factura noua",
|
|
193
|
+
recordSupplierPayment: "Inregistreaza plata furnizorului",
|
|
194
|
+
invoicesTab: "Facturi",
|
|
195
|
+
supplierPaymentsTab: "Plati furnizori",
|
|
196
|
+
searchInvoicesPlaceholder: "Cauta facturi...",
|
|
197
|
+
invoiceNumberColumn: "Factura #",
|
|
198
|
+
statusColumn: "Status",
|
|
199
|
+
totalColumn: "Total",
|
|
200
|
+
paidColumn: "Platit",
|
|
201
|
+
balanceDueColumn: "Rest de plata",
|
|
202
|
+
dueDateColumn: "Data scadenta",
|
|
203
|
+
bookingColumn: "Rezervare",
|
|
204
|
+
supplierColumn: "Furnizor",
|
|
205
|
+
amountColumn: "Suma",
|
|
206
|
+
dateColumn: "Data",
|
|
207
|
+
referenceColumn: "Referinta",
|
|
208
|
+
invoiceStatusDraft: "Ciorna",
|
|
209
|
+
invoiceStatusSent: "Trimisa",
|
|
210
|
+
invoiceStatusPartiallyPaid: "Platita partial",
|
|
211
|
+
invoiceStatusPaid: "Platita",
|
|
212
|
+
invoiceStatusOverdue: "Intarziata",
|
|
213
|
+
invoiceStatusVoid: "Anulata",
|
|
214
|
+
paymentStatusPending: "In asteptare",
|
|
215
|
+
paymentStatusCompleted: "Finalizata",
|
|
216
|
+
paymentStatusFailed: "Esuata",
|
|
217
|
+
paymentStatusRefunded: "Rambursata",
|
|
218
|
+
paymentMethodBankTransfer: "Transfer bancar",
|
|
219
|
+
paymentMethodCreditCard: "Card de credit",
|
|
220
|
+
paymentMethodCash: "Numerar",
|
|
221
|
+
paymentMethodCheque: "Cec",
|
|
222
|
+
paymentMethodOther: "Alta",
|
|
223
|
+
creditNoteStatusDraft: "Ciorna",
|
|
224
|
+
creditNoteStatusIssued: "Emisa",
|
|
225
|
+
creditNoteStatusApplied: "Aplicata",
|
|
226
|
+
detailPage: {
|
|
227
|
+
notFound: "Factura nu a fost gasita",
|
|
228
|
+
backToFinance: "Inapoi la Financiar",
|
|
229
|
+
edit: "Editeaza",
|
|
230
|
+
delete: "Sterge",
|
|
231
|
+
deleteOnlyDraftAlert: "Doar facturile in ciorna pot fi sterse",
|
|
232
|
+
deleteConfirm: "Sigur vrei sa stergi aceasta factura?",
|
|
233
|
+
deleteLineItemConfirm: "Stergi aceasta pozitie?",
|
|
234
|
+
},
|
|
235
|
+
detailSections: {
|
|
236
|
+
invoiceDetailsTitle: "Detalii factura",
|
|
237
|
+
currencyLabel: "Moneda",
|
|
238
|
+
subtotalLabel: "Subtotal",
|
|
239
|
+
taxLabel: "Taxa",
|
|
240
|
+
totalLabel: "Total",
|
|
241
|
+
paidLabel: "Platit",
|
|
242
|
+
balanceDueLabel: "Rest de plata",
|
|
243
|
+
datesLinksTitle: "Date si legaturi",
|
|
244
|
+
issueDateLabel: "Data emiterii",
|
|
245
|
+
dueDateLabel: "Data scadentei",
|
|
246
|
+
bookingLabel: "Rezervare",
|
|
247
|
+
viewBooking: "Vezi rezervarea",
|
|
248
|
+
personLabel: "Persoana",
|
|
249
|
+
organizationLabel: "Organizatie",
|
|
250
|
+
notesLabel: "Note",
|
|
251
|
+
createdLabel: "Creat",
|
|
252
|
+
updatedLabel: "Actualizat",
|
|
253
|
+
lineItemsTitle: "Pozitii factura",
|
|
254
|
+
addLineItem: "Adauga pozitie",
|
|
255
|
+
noLineItems: "Nu exista pozitii momentan.",
|
|
256
|
+
descriptionColumn: "Descriere",
|
|
257
|
+
quantityColumn: "Cant.",
|
|
258
|
+
unitPriceColumn: "Pret unitar",
|
|
259
|
+
taxRateColumn: "Cota taxa",
|
|
260
|
+
paymentsTitle: "Plati",
|
|
261
|
+
recordPayment: "Inregistreaza plata",
|
|
262
|
+
noPayments: "Nu exista plati momentan.",
|
|
263
|
+
methodColumn: "Metoda",
|
|
264
|
+
creditNotesTitle: "Note de credit",
|
|
265
|
+
addCreditNote: "Adauga nota de credit",
|
|
266
|
+
noCreditNotes: "Nu exista note de credit momentan.",
|
|
267
|
+
creditNoteNumberColumn: "NC #",
|
|
268
|
+
reasonColumn: "Motiv",
|
|
269
|
+
notesTitle: "Note",
|
|
270
|
+
addInternalNotePlaceholder: "Adauga o nota interna...",
|
|
271
|
+
addNote: "Adauga nota",
|
|
272
|
+
noNotes: "Nu exista note momentan.",
|
|
273
|
+
noValue: "-",
|
|
274
|
+
},
|
|
275
|
+
lineItemDialog: {
|
|
276
|
+
editTitle: "Editeaza pozitia",
|
|
277
|
+
newTitle: "Adauga pozitie",
|
|
278
|
+
validationDescriptionRequired: "Descrierea este obligatorie",
|
|
279
|
+
descriptionLabel: "Descriere",
|
|
280
|
+
descriptionPlaceholder: "Descriere serviciu...",
|
|
281
|
+
quantityLabel: "Cantitate",
|
|
282
|
+
unitPriceLabel: "Pret unitar (centi)",
|
|
283
|
+
totalLabel: "Total (centi)",
|
|
284
|
+
taxRateLabel: "Cota taxa (centi, ex. 2000 = 20%)",
|
|
285
|
+
taxRatePlaceholder: "0",
|
|
286
|
+
sortOrderLabel: "Ordine de sortare",
|
|
287
|
+
cancel: "Anuleaza",
|
|
288
|
+
saveChanges: "Salveaza modificarile",
|
|
289
|
+
createLineItem: "Adauga pozitie",
|
|
290
|
+
},
|
|
291
|
+
creditNoteDialog: {
|
|
292
|
+
title: "Adauga nota de credit",
|
|
293
|
+
validationNumberRequired: "Numarul notei de credit este obligatoriu",
|
|
294
|
+
validationAmountMin: "Suma trebuie sa fie cel putin 1",
|
|
295
|
+
validationReasonRequired: "Motivul este obligatoriu",
|
|
296
|
+
numberLabel: "Numar nota de credit",
|
|
297
|
+
numberPlaceholder: "CN-2025-1234",
|
|
298
|
+
currencyLabel: "Moneda",
|
|
299
|
+
amountLabel: "Suma (centi)",
|
|
300
|
+
reasonLabel: "Motiv",
|
|
301
|
+
reasonPlaceholder: "Motivul notei de credit...",
|
|
302
|
+
notesLabel: "Note",
|
|
303
|
+
notesPlaceholder: "Note suplimentare...",
|
|
304
|
+
cancel: "Anuleaza",
|
|
305
|
+
submit: "Creeaza nota de credit",
|
|
306
|
+
},
|
|
307
|
+
invoiceDialog: {
|
|
308
|
+
editTitle: "Editeaza factura",
|
|
309
|
+
newTitle: "Factura noua",
|
|
310
|
+
validationInvoiceNumberRequired: "Numarul facturii este obligatoriu",
|
|
311
|
+
validationBookingIdRequired: "ID-ul rezervarii este obligatoriu",
|
|
312
|
+
validationCurrencyCode: "Foloseste un cod ISO din 3 litere",
|
|
313
|
+
validationIssueDateRequired: "Data emiterii este obligatorie",
|
|
314
|
+
validationDueDateRequired: "Data scadentei este obligatorie",
|
|
315
|
+
invoiceNumberLabel: "Numar factura",
|
|
316
|
+
invoiceNumberPlaceholder: "INV-2025-1234",
|
|
317
|
+
statusLabel: "Status",
|
|
318
|
+
bookingIdLabel: "ID rezervare",
|
|
319
|
+
bookingIdPlaceholder: "book_...",
|
|
320
|
+
currencyLabel: "Moneda",
|
|
321
|
+
subtotalLabel: "Subtotal (centi)",
|
|
322
|
+
taxLabel: "Taxa (centi)",
|
|
323
|
+
totalLabel: "Total (centi)",
|
|
324
|
+
issueDateLabel: "Data emiterii",
|
|
325
|
+
issueDatePlaceholder: "Alege data emiterii",
|
|
326
|
+
dueDateLabel: "Data scadentei",
|
|
327
|
+
dueDatePlaceholder: "Alege data scadentei",
|
|
328
|
+
notesLabel: "Note",
|
|
329
|
+
notesPlaceholder: "Note factura...",
|
|
330
|
+
cancel: "Anuleaza",
|
|
331
|
+
saveChanges: "Salveaza modificarile",
|
|
332
|
+
createInvoice: "Creeaza factura",
|
|
333
|
+
},
|
|
334
|
+
paymentDialog: {
|
|
335
|
+
title: "Inregistreaza plata",
|
|
336
|
+
validationAmountMin: "Suma trebuie sa fie cel putin 1",
|
|
337
|
+
validationPaymentDateRequired: "Data platii este obligatorie",
|
|
338
|
+
amountLabel: "Suma (centi)",
|
|
339
|
+
currencyLabel: "Moneda",
|
|
340
|
+
paymentMethodLabel: "Metoda de plata",
|
|
341
|
+
statusLabel: "Status",
|
|
342
|
+
paymentDateLabel: "Data platii",
|
|
343
|
+
referenceNumberLabel: "Numar referinta",
|
|
344
|
+
referenceNumberPlaceholder: "TXN-12345",
|
|
345
|
+
notesLabel: "Note",
|
|
346
|
+
notesPlaceholder: "Note plata...",
|
|
347
|
+
cancel: "Anuleaza",
|
|
348
|
+
submit: "Inregistreaza plata",
|
|
349
|
+
},
|
|
350
|
+
supplierPaymentDialog: {
|
|
351
|
+
title: "Inregistreaza plata furnizorului",
|
|
352
|
+
validationBookingIdRequired: "ID-ul rezervarii este obligatoriu",
|
|
353
|
+
validationAmountMin: "Suma trebuie sa fie cel putin 1",
|
|
354
|
+
validationPaymentDateRequired: "Data platii este obligatorie",
|
|
355
|
+
bookingIdLabel: "ID rezervare",
|
|
356
|
+
bookingIdPlaceholder: "book_...",
|
|
357
|
+
supplierIdLabel: "ID furnizor (optional)",
|
|
358
|
+
supplierIdPlaceholder: "supp_...",
|
|
359
|
+
amountLabel: "Suma (centi)",
|
|
360
|
+
currencyLabel: "Moneda",
|
|
361
|
+
paymentDateLabel: "Data platii",
|
|
362
|
+
paymentDatePlaceholder: "Selecteaza data platii",
|
|
363
|
+
paymentMethodLabel: "Metoda de plata",
|
|
364
|
+
statusLabel: "Status",
|
|
365
|
+
referenceNumberLabel: "Numar referinta",
|
|
366
|
+
referenceNumberPlaceholder: "TXN-12345",
|
|
367
|
+
notesLabel: "Note",
|
|
368
|
+
notesPlaceholder: "Note plata...",
|
|
369
|
+
cancel: "Anuleaza",
|
|
370
|
+
submit: "Inregistreaza plata furnizorului",
|
|
371
|
+
},
|
|
372
|
+
},
|
|
373
|
+
},
|
|
374
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
export type OperatorAdminNavMessages = {
|
|
2
|
+
dashboard: string;
|
|
3
|
+
products: string;
|
|
4
|
+
categories: string;
|
|
5
|
+
bookings: string;
|
|
6
|
+
notifications: string;
|
|
7
|
+
notificationTemplates: string;
|
|
8
|
+
notificationReminderRules: string;
|
|
9
|
+
notificationDeliveries: string;
|
|
10
|
+
notificationReminderRuns: string;
|
|
11
|
+
suppliers: string;
|
|
12
|
+
people: string;
|
|
13
|
+
organizations: string;
|
|
14
|
+
availability: string;
|
|
15
|
+
resources: string;
|
|
16
|
+
finance: string;
|
|
17
|
+
legal: string;
|
|
18
|
+
contracts: string;
|
|
19
|
+
contractTemplates: string;
|
|
20
|
+
policies: string;
|
|
21
|
+
contractNumberSeries: string;
|
|
22
|
+
settings: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const operatorAdminNavMessages: {
|
|
25
|
+
en: {
|
|
26
|
+
nav: {
|
|
27
|
+
dashboard: string;
|
|
28
|
+
products: string;
|
|
29
|
+
categories: string;
|
|
30
|
+
bookings: string;
|
|
31
|
+
notifications: string;
|
|
32
|
+
notificationTemplates: string;
|
|
33
|
+
notificationReminderRules: string;
|
|
34
|
+
notificationDeliveries: string;
|
|
35
|
+
notificationReminderRuns: string;
|
|
36
|
+
suppliers: string;
|
|
37
|
+
people: string;
|
|
38
|
+
organizations: string;
|
|
39
|
+
availability: string;
|
|
40
|
+
resources: string;
|
|
41
|
+
finance: string;
|
|
42
|
+
legal: string;
|
|
43
|
+
contracts: string;
|
|
44
|
+
contractTemplates: string;
|
|
45
|
+
policies: string;
|
|
46
|
+
contractNumberSeries: string;
|
|
47
|
+
settings: string;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
ro: {
|
|
51
|
+
nav: {
|
|
52
|
+
dashboard: string;
|
|
53
|
+
products: string;
|
|
54
|
+
categories: string;
|
|
55
|
+
bookings: string;
|
|
56
|
+
notifications: string;
|
|
57
|
+
notificationTemplates: string;
|
|
58
|
+
notificationReminderRules: string;
|
|
59
|
+
notificationDeliveries: string;
|
|
60
|
+
notificationReminderRuns: string;
|
|
61
|
+
suppliers: string;
|
|
62
|
+
people: string;
|
|
63
|
+
organizations: string;
|
|
64
|
+
availability: string;
|
|
65
|
+
resources: string;
|
|
66
|
+
finance: string;
|
|
67
|
+
legal: string;
|
|
68
|
+
contracts: string;
|
|
69
|
+
contractTemplates: string;
|
|
70
|
+
policies: string;
|
|
71
|
+
contractNumberSeries: string;
|
|
72
|
+
settings: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
//# sourceMappingURL=operator-nav.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operator-nav.d.ts","sourceRoot":"","sources":["../../src/admin/operator-nav.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,wBAAwB,GAAG;IACrC,SAAS,EAAE,MAAM,CAAA;IACjB,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,MAAM,CAAA;IAChB,aAAa,EAAE,MAAM,CAAA;IACrB,qBAAqB,EAAE,MAAM,CAAA;IAC7B,yBAAyB,EAAE,MAAM,CAAA;IACjC,sBAAsB,EAAE,MAAM,CAAA;IAC9B,wBAAwB,EAAE,MAAM,CAAA;IAChC,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,MAAM,CAAA;IACd,aAAa,EAAE,MAAM,CAAA;IACrB,YAAY,EAAE,MAAM,CAAA;IACpB,SAAS,EAAE,MAAM,CAAA;IACjB,OAAO,EAAE,MAAM,CAAA;IACf,KAAK,EAAE,MAAM,CAAA;IACb,SAAS,EAAE,MAAM,CAAA;IACjB,iBAAiB,EAAE,MAAM,CAAA;IACzB,QAAQ,EAAE,MAAM,CAAA;IAChB,oBAAoB,EAAE,MAAM,CAAA;IAC5B,QAAQ,EAAE,MAAM,CAAA;CACjB,CAAA;AAED,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmDkC,CAAA"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export const operatorAdminNavMessages = {
|
|
2
|
+
en: {
|
|
3
|
+
nav: {
|
|
4
|
+
dashboard: "Dashboard",
|
|
5
|
+
products: "Products",
|
|
6
|
+
categories: "Categories",
|
|
7
|
+
bookings: "Bookings",
|
|
8
|
+
notifications: "Notifications",
|
|
9
|
+
notificationTemplates: "Templates",
|
|
10
|
+
notificationReminderRules: "Reminder Rules",
|
|
11
|
+
notificationDeliveries: "Deliveries",
|
|
12
|
+
notificationReminderRuns: "Reminder Runs",
|
|
13
|
+
suppliers: "Suppliers",
|
|
14
|
+
people: "People",
|
|
15
|
+
organizations: "Organizations",
|
|
16
|
+
availability: "Availability",
|
|
17
|
+
resources: "Resources",
|
|
18
|
+
finance: "Finance",
|
|
19
|
+
legal: "Legal",
|
|
20
|
+
contracts: "Contracts",
|
|
21
|
+
contractTemplates: "Contract Templates",
|
|
22
|
+
policies: "Policies",
|
|
23
|
+
contractNumberSeries: "Number Series",
|
|
24
|
+
settings: "Settings",
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
ro: {
|
|
28
|
+
nav: {
|
|
29
|
+
dashboard: "Panou",
|
|
30
|
+
products: "Produse",
|
|
31
|
+
categories: "Categorii",
|
|
32
|
+
bookings: "Rezervari",
|
|
33
|
+
notifications: "Notificari",
|
|
34
|
+
notificationTemplates: "Sabloane",
|
|
35
|
+
notificationReminderRules: "Reguli reminder",
|
|
36
|
+
notificationDeliveries: "Livrari",
|
|
37
|
+
notificationReminderRuns: "Executii reminder",
|
|
38
|
+
suppliers: "Furnizori",
|
|
39
|
+
people: "Persoane",
|
|
40
|
+
organizations: "Organizatii",
|
|
41
|
+
availability: "Disponibilitate",
|
|
42
|
+
resources: "Resurse",
|
|
43
|
+
finance: "Financiar",
|
|
44
|
+
legal: "Juridic",
|
|
45
|
+
contracts: "Contracte",
|
|
46
|
+
contractTemplates: "Sabloane contract",
|
|
47
|
+
policies: "Politici",
|
|
48
|
+
contractNumberSeries: "Serii numere",
|
|
49
|
+
settings: "Setari",
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import type { LocaleMessageSchema } from "../runtime.js";
|
|
2
|
+
export declare const adminOrganizationsModuleMessages: {
|
|
3
|
+
en: {
|
|
4
|
+
organizationsModule: {
|
|
5
|
+
searchPlaceholder: string;
|
|
6
|
+
newAction: string;
|
|
7
|
+
columnName: string;
|
|
8
|
+
columnIndustry: string;
|
|
9
|
+
columnRelation: string;
|
|
10
|
+
columnWebsite: string;
|
|
11
|
+
columnUpdated: string;
|
|
12
|
+
loadFailed: string;
|
|
13
|
+
empty: string;
|
|
14
|
+
noValue: string;
|
|
15
|
+
relationClient: string;
|
|
16
|
+
relationPartner: string;
|
|
17
|
+
relationSupplier: string;
|
|
18
|
+
relationOther: string;
|
|
19
|
+
updatedToday: string;
|
|
20
|
+
updatedDaysAgo: string;
|
|
21
|
+
updatedWeeksAgo: string;
|
|
22
|
+
updatedMonthsAgo: string;
|
|
23
|
+
updatedYearsAgo: string;
|
|
24
|
+
showingSummary: string;
|
|
25
|
+
previous: string;
|
|
26
|
+
next: string;
|
|
27
|
+
pageSummary: string;
|
|
28
|
+
dialogEditTitle: string;
|
|
29
|
+
dialogNewTitle: string;
|
|
30
|
+
dialogEditDescription: string;
|
|
31
|
+
dialogNewDescription: string;
|
|
32
|
+
validationNameRequired: string;
|
|
33
|
+
saveFailed: string;
|
|
34
|
+
nameLabel: string;
|
|
35
|
+
legalNameLabel: string;
|
|
36
|
+
websiteLabel: string;
|
|
37
|
+
industryLabel: string;
|
|
38
|
+
cancel: string;
|
|
39
|
+
saving: string;
|
|
40
|
+
create: string;
|
|
41
|
+
saveChanges: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
ro: {
|
|
45
|
+
organizationsModule: {
|
|
46
|
+
searchPlaceholder: string;
|
|
47
|
+
newAction: string;
|
|
48
|
+
columnName: string;
|
|
49
|
+
columnIndustry: string;
|
|
50
|
+
columnRelation: string;
|
|
51
|
+
columnWebsite: string;
|
|
52
|
+
columnUpdated: string;
|
|
53
|
+
loadFailed: string;
|
|
54
|
+
empty: string;
|
|
55
|
+
noValue: string;
|
|
56
|
+
relationClient: string;
|
|
57
|
+
relationPartner: string;
|
|
58
|
+
relationSupplier: string;
|
|
59
|
+
relationOther: string;
|
|
60
|
+
updatedToday: string;
|
|
61
|
+
updatedDaysAgo: string;
|
|
62
|
+
updatedWeeksAgo: string;
|
|
63
|
+
updatedMonthsAgo: string;
|
|
64
|
+
updatedYearsAgo: string;
|
|
65
|
+
showingSummary: string;
|
|
66
|
+
previous: string;
|
|
67
|
+
next: string;
|
|
68
|
+
pageSummary: string;
|
|
69
|
+
dialogEditTitle: string;
|
|
70
|
+
dialogNewTitle: string;
|
|
71
|
+
dialogEditDescription: string;
|
|
72
|
+
dialogNewDescription: string;
|
|
73
|
+
validationNameRequired: string;
|
|
74
|
+
saveFailed: string;
|
|
75
|
+
nameLabel: string;
|
|
76
|
+
legalNameLabel: string;
|
|
77
|
+
websiteLabel: string;
|
|
78
|
+
industryLabel: string;
|
|
79
|
+
cancel: string;
|
|
80
|
+
saving: string;
|
|
81
|
+
create: string;
|
|
82
|
+
saveChanges: string;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
export type AdminOrganizationsModuleMessages = LocaleMessageSchema<(typeof adminOrganizationsModuleMessages)["en"]>;
|
|
87
|
+
//# sourceMappingURL=organizations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organizations.d.ts","sourceRoot":"","sources":["../../src/admin/organizations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmF5C,CAAA;AAED,MAAM,MAAM,gCAAgC,GAAG,mBAAmB,CAChE,CAAC,OAAO,gCAAgC,CAAC,CAAC,IAAI,CAAC,CAChD,CAAA"}
|