@voyantjs/finance-ui 0.30.7 → 0.31.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/README.md +18 -0
- package/dist/components/invoice-detail-page.d.ts +113 -0
- package/dist/components/invoice-detail-page.d.ts.map +1 -0
- package/dist/components/invoice-detail-page.js +142 -0
- package/dist/components/invoices-page-skeleton.d.ts +5 -0
- package/dist/components/invoices-page-skeleton.d.ts.map +1 -0
- package/dist/components/invoices-page-skeleton.js +13 -0
- package/dist/components/invoices-page.d.ts +6 -0
- package/dist/components/invoices-page.d.ts.map +1 -0
- package/dist/components/invoices-page.js +109 -0
- package/dist/components/payment-detail-page.d.ts +41 -0
- package/dist/components/payment-detail-page.d.ts.map +1 -0
- package/dist/components/payment-detail-page.js +79 -0
- package/dist/components/payments-page-skeleton.d.ts +5 -0
- package/dist/components/payments-page-skeleton.d.ts.map +1 -0
- package/dist/components/payments-page-skeleton.js +13 -0
- package/dist/components/payments-page.d.ts +20 -0
- package/dist/components/payments-page.d.ts.map +1 -0
- package/dist/components/payments-page.js +151 -0
- package/dist/components/taxes-page.d.ts +11 -0
- package/dist/components/taxes-page.d.ts.map +1 -0
- package/dist/components/taxes-page.js +718 -0
- package/dist/i18n/en.d.ts +308 -0
- package/dist/i18n/en.d.ts.map +1 -1
- package/dist/i18n/en.js +308 -0
- package/dist/i18n/index.d.ts +1 -1
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/i18n/messages.d.ts +193 -1
- package/dist/i18n/messages.d.ts.map +1 -1
- package/dist/i18n/messages.js +11 -0
- package/dist/i18n/provider.d.ts +616 -0
- package/dist/i18n/provider.d.ts.map +1 -1
- package/dist/i18n/ro.d.ts +308 -0
- package/dist/i18n/ro.d.ts.map +1 -1
- package/dist/i18n/ro.js +308 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +7 -0
- package/package.json +9 -9
package/dist/i18n/en.d.ts
CHANGED
|
@@ -10,6 +10,17 @@ export declare const financeUiEn: {
|
|
|
10
10
|
overdue: string;
|
|
11
11
|
void: string;
|
|
12
12
|
};
|
|
13
|
+
paymentMethodLabels: {
|
|
14
|
+
bank_transfer: string;
|
|
15
|
+
credit_card: string;
|
|
16
|
+
debit_card: string;
|
|
17
|
+
cash: string;
|
|
18
|
+
cheque: string;
|
|
19
|
+
wallet: string;
|
|
20
|
+
direct_bill: string;
|
|
21
|
+
voucher: string;
|
|
22
|
+
other: string;
|
|
23
|
+
};
|
|
13
24
|
supplierPaymentMethodLabels: {
|
|
14
25
|
bank_transfer: string;
|
|
15
26
|
credit_card: string;
|
|
@@ -59,6 +70,303 @@ export declare const financeUiEn: {
|
|
|
59
70
|
dueDateRequired: string;
|
|
60
71
|
};
|
|
61
72
|
};
|
|
73
|
+
invoicesPage: {
|
|
74
|
+
title: string;
|
|
75
|
+
description: string;
|
|
76
|
+
searchPlaceholder: string;
|
|
77
|
+
actions: {
|
|
78
|
+
newInvoice: string;
|
|
79
|
+
};
|
|
80
|
+
filters: {
|
|
81
|
+
button: string;
|
|
82
|
+
statusLabel: string;
|
|
83
|
+
statusAll: string;
|
|
84
|
+
currencyLabel: string;
|
|
85
|
+
currencyAny: string;
|
|
86
|
+
dueDateLabel: string;
|
|
87
|
+
dateAny: string;
|
|
88
|
+
clear: string;
|
|
89
|
+
};
|
|
90
|
+
columns: {
|
|
91
|
+
invoiceNumber: string;
|
|
92
|
+
status: string;
|
|
93
|
+
total: string;
|
|
94
|
+
paid: string;
|
|
95
|
+
balanceDue: string;
|
|
96
|
+
dueDate: string;
|
|
97
|
+
};
|
|
98
|
+
empty: string;
|
|
99
|
+
loadFailed: string;
|
|
100
|
+
pagination: {
|
|
101
|
+
showing: string;
|
|
102
|
+
page: string;
|
|
103
|
+
previous: string;
|
|
104
|
+
next: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
paymentsPage: {
|
|
108
|
+
title: string;
|
|
109
|
+
description: string;
|
|
110
|
+
searchPlaceholder: string;
|
|
111
|
+
actions: {
|
|
112
|
+
recordPayment: string;
|
|
113
|
+
};
|
|
114
|
+
kindLabels: {
|
|
115
|
+
customer: string;
|
|
116
|
+
supplier: string;
|
|
117
|
+
};
|
|
118
|
+
filters: {
|
|
119
|
+
button: string;
|
|
120
|
+
kindLabel: string;
|
|
121
|
+
kindAll: string;
|
|
122
|
+
statusLabel: string;
|
|
123
|
+
statusAll: string;
|
|
124
|
+
methodLabel: string;
|
|
125
|
+
methodAll: string;
|
|
126
|
+
supplierLabel: string;
|
|
127
|
+
supplierAny: string;
|
|
128
|
+
supplierEmpty: string;
|
|
129
|
+
currencyLabel: string;
|
|
130
|
+
currencyAny: string;
|
|
131
|
+
paymentDateLabel: string;
|
|
132
|
+
dateAny: string;
|
|
133
|
+
clear: string;
|
|
134
|
+
};
|
|
135
|
+
columns: {
|
|
136
|
+
kind: string;
|
|
137
|
+
reference: string;
|
|
138
|
+
party: string;
|
|
139
|
+
amount: string;
|
|
140
|
+
status: string;
|
|
141
|
+
date: string;
|
|
142
|
+
method: string;
|
|
143
|
+
};
|
|
144
|
+
noValue: string;
|
|
145
|
+
empty: string;
|
|
146
|
+
loadFailed: string;
|
|
147
|
+
pagination: {
|
|
148
|
+
showing: string;
|
|
149
|
+
page: string;
|
|
150
|
+
previous: string;
|
|
151
|
+
next: string;
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
paymentDetailPage: {
|
|
155
|
+
actions: {
|
|
156
|
+
back: string;
|
|
157
|
+
viewInvoice: string;
|
|
158
|
+
viewBooking: string;
|
|
159
|
+
viewPerson: string;
|
|
160
|
+
viewOrganization: string;
|
|
161
|
+
viewSupplier: string;
|
|
162
|
+
};
|
|
163
|
+
titles: {
|
|
164
|
+
summary: string;
|
|
165
|
+
links: string;
|
|
166
|
+
metadata: string;
|
|
167
|
+
};
|
|
168
|
+
fields: {
|
|
169
|
+
amount: string;
|
|
170
|
+
baseAmount: string;
|
|
171
|
+
status: string;
|
|
172
|
+
method: string;
|
|
173
|
+
date: string;
|
|
174
|
+
reference: string;
|
|
175
|
+
notes: string;
|
|
176
|
+
kind: string;
|
|
177
|
+
paidBy: string;
|
|
178
|
+
paidTo: string;
|
|
179
|
+
organization: string;
|
|
180
|
+
invoice: string;
|
|
181
|
+
booking: string;
|
|
182
|
+
createdAt: string;
|
|
183
|
+
updatedAt: string;
|
|
184
|
+
};
|
|
185
|
+
states: {
|
|
186
|
+
loading: string;
|
|
187
|
+
loadFailed: string;
|
|
188
|
+
notFound: string;
|
|
189
|
+
noValue: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
invoiceDetailPage: {
|
|
193
|
+
actions: {
|
|
194
|
+
back: string;
|
|
195
|
+
edit: string;
|
|
196
|
+
delete: string;
|
|
197
|
+
deleteTitle: string;
|
|
198
|
+
deleteDescription: string;
|
|
199
|
+
deleteOnlyDraft: string;
|
|
200
|
+
viewBooking: string;
|
|
201
|
+
viewPerson: string;
|
|
202
|
+
viewOrganization: string;
|
|
203
|
+
addLineItem: string;
|
|
204
|
+
editLineItem: string;
|
|
205
|
+
deleteLineItemShort: string;
|
|
206
|
+
deleteLineItemTitle: string;
|
|
207
|
+
deleteLineItemDescription: string;
|
|
208
|
+
recordPayment: string;
|
|
209
|
+
addCreditNote: string;
|
|
210
|
+
addNote: string;
|
|
211
|
+
};
|
|
212
|
+
titles: {
|
|
213
|
+
summary: string;
|
|
214
|
+
links: string;
|
|
215
|
+
lineItems: string;
|
|
216
|
+
payments: string;
|
|
217
|
+
creditNotes: string;
|
|
218
|
+
notes: string;
|
|
219
|
+
};
|
|
220
|
+
fields: {
|
|
221
|
+
currency: string;
|
|
222
|
+
subtotal: string;
|
|
223
|
+
tax: string;
|
|
224
|
+
total: string;
|
|
225
|
+
paid: string;
|
|
226
|
+
balanceDue: string;
|
|
227
|
+
status: string;
|
|
228
|
+
issueDate: string;
|
|
229
|
+
dueDate: string;
|
|
230
|
+
booking: string;
|
|
231
|
+
person: string;
|
|
232
|
+
organization: string;
|
|
233
|
+
notes: string;
|
|
234
|
+
createdAt: string;
|
|
235
|
+
updatedAt: string;
|
|
236
|
+
};
|
|
237
|
+
columns: {
|
|
238
|
+
description: string;
|
|
239
|
+
quantity: string;
|
|
240
|
+
unitPrice: string;
|
|
241
|
+
total: string;
|
|
242
|
+
taxRate: string;
|
|
243
|
+
};
|
|
244
|
+
states: {
|
|
245
|
+
loading: string;
|
|
246
|
+
loadFailed: string;
|
|
247
|
+
notFound: string;
|
|
248
|
+
noValue: string;
|
|
249
|
+
noLineItems: string;
|
|
250
|
+
noPayments: string;
|
|
251
|
+
noCreditNotes: string;
|
|
252
|
+
noNotes: string;
|
|
253
|
+
};
|
|
254
|
+
placeholders: {
|
|
255
|
+
note: string;
|
|
256
|
+
};
|
|
257
|
+
creditNoteStatusLabels: {
|
|
258
|
+
draft: string;
|
|
259
|
+
issued: string;
|
|
260
|
+
applied: string;
|
|
261
|
+
};
|
|
262
|
+
};
|
|
263
|
+
taxesPage: {
|
|
264
|
+
title: string;
|
|
265
|
+
description: string;
|
|
266
|
+
addTax: string;
|
|
267
|
+
empty: string;
|
|
268
|
+
inactive: string;
|
|
269
|
+
edit: string;
|
|
270
|
+
delete: string;
|
|
271
|
+
deleteConfirm: string;
|
|
272
|
+
editSheetTitle: string;
|
|
273
|
+
newSheetTitle: string;
|
|
274
|
+
taxClassBadge: string;
|
|
275
|
+
defaultRegimeLabel: string;
|
|
276
|
+
regimeOverridesLabel: string;
|
|
277
|
+
regimeOverrideCount: string;
|
|
278
|
+
taxClassSectionTitle: string;
|
|
279
|
+
taxClassSectionDescription: string;
|
|
280
|
+
defaultRegimeSectionTitle: string;
|
|
281
|
+
defaultRegimeSectionDescription: string;
|
|
282
|
+
regimeOverridesSectionTitle: string;
|
|
283
|
+
regimeOverridesSectionDescription: string;
|
|
284
|
+
addRegimeOverride: string;
|
|
285
|
+
removeRegimeOverride: string;
|
|
286
|
+
noRegimeOverrides: string;
|
|
287
|
+
appliesToLabel: string;
|
|
288
|
+
taxRegimeLabel: string;
|
|
289
|
+
appliesToBase: string;
|
|
290
|
+
appliesToAddon: string;
|
|
291
|
+
appliesToAccommodation: string;
|
|
292
|
+
appliesToAll: string;
|
|
293
|
+
taxClassLabelLabel: string;
|
|
294
|
+
taxClassLabelPlaceholder: string;
|
|
295
|
+
taxClassCodeLabel: string;
|
|
296
|
+
taxClassCodePlaceholder: string;
|
|
297
|
+
taxClassDescriptionLabel: string;
|
|
298
|
+
taxClassDescriptionPlaceholder: string;
|
|
299
|
+
regimeNameLabel: string;
|
|
300
|
+
regimeNamePlaceholder: string;
|
|
301
|
+
regimeCodeLabel: string;
|
|
302
|
+
rateLabel: string;
|
|
303
|
+
jurisdictionLabel: string;
|
|
304
|
+
legalReferenceLabel: string;
|
|
305
|
+
legalReferencePlaceholder: string;
|
|
306
|
+
regimeDescriptionLabel: string;
|
|
307
|
+
regimeDescriptionPlaceholder: string;
|
|
308
|
+
activeLabel: string;
|
|
309
|
+
cancel: string;
|
|
310
|
+
saveChanges: string;
|
|
311
|
+
createTax: string;
|
|
312
|
+
validationNameRequired: string;
|
|
313
|
+
validationRateInvalid: string;
|
|
314
|
+
saveFailed: string;
|
|
315
|
+
policyTitle: string;
|
|
316
|
+
policyDescription: string;
|
|
317
|
+
addPolicyProfile: string;
|
|
318
|
+
addPolicyRule: string;
|
|
319
|
+
policyEmpty: string;
|
|
320
|
+
policyRulesEmpty: string;
|
|
321
|
+
deletePolicyProfileConfirm: string;
|
|
322
|
+
deletePolicyRuleConfirm: string;
|
|
323
|
+
editPolicyProfileSheetTitle: string;
|
|
324
|
+
newPolicyProfileSheetTitle: string;
|
|
325
|
+
editPolicyRuleSheetTitle: string;
|
|
326
|
+
newPolicyRuleSheetTitle: string;
|
|
327
|
+
policyProfileNameLabel: string;
|
|
328
|
+
policyProfileNamePlaceholder: string;
|
|
329
|
+
policyProfileCodeLabel: string;
|
|
330
|
+
policyProfileCodePlaceholder: string;
|
|
331
|
+
policyProfileDescriptionLabel: string;
|
|
332
|
+
policyProfileDescriptionPlaceholder: string;
|
|
333
|
+
policyPriorityLabel: string;
|
|
334
|
+
policySideLabel: string;
|
|
335
|
+
policyRuleNameLabel: string;
|
|
336
|
+
policyRuleNamePlaceholder: string;
|
|
337
|
+
policyConditionLabel: string;
|
|
338
|
+
policyConditionSectionTitle: string;
|
|
339
|
+
policyConditionSectionDescription: string;
|
|
340
|
+
policyConditionModeLabel: string;
|
|
341
|
+
policyConditionAlways: string;
|
|
342
|
+
policyConditionAlwaysDescription: string;
|
|
343
|
+
policyConditionModeAll: string;
|
|
344
|
+
policyConditionModeAny: string;
|
|
345
|
+
addPolicyCondition: string;
|
|
346
|
+
removePolicyCondition: string;
|
|
347
|
+
policyFactLabel: string;
|
|
348
|
+
policyFactHasAccommodation: string;
|
|
349
|
+
policyFactAccommodationCountries: string;
|
|
350
|
+
policyOperatorLabel: string;
|
|
351
|
+
policyOperatorEquals: string;
|
|
352
|
+
policyOperatorContains: string;
|
|
353
|
+
policyValueLabel: string;
|
|
354
|
+
policyValueYes: string;
|
|
355
|
+
policyValueNo: string;
|
|
356
|
+
policyActionsLabel: string;
|
|
357
|
+
policySideSell: string;
|
|
358
|
+
policySideBuy: string;
|
|
359
|
+
createPolicyProfile: string;
|
|
360
|
+
createPolicyRule: string;
|
|
361
|
+
validationPolicyProfileNameRequired: string;
|
|
362
|
+
validationPolicyProfileRequired: string;
|
|
363
|
+
validationPolicyRuleNameRequired: string;
|
|
364
|
+
validationPolicyRuleRegimeRequired: string;
|
|
365
|
+
validationPolicyRulePriorityInvalid: string;
|
|
366
|
+
validationPolicyRuleConditionInvalid: string;
|
|
367
|
+
savePolicyProfileFailed: string;
|
|
368
|
+
savePolicyRuleFailed: string;
|
|
369
|
+
};
|
|
62
370
|
supplierPaymentDialog: {
|
|
63
371
|
title: string;
|
|
64
372
|
fields: {
|
package/dist/i18n/en.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../src/i18n/en.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuZK,CAAA"}
|
package/dist/i18n/en.js
CHANGED
|
@@ -10,6 +10,17 @@ export const financeUiEn = {
|
|
|
10
10
|
overdue: "Overdue",
|
|
11
11
|
void: "Void",
|
|
12
12
|
},
|
|
13
|
+
paymentMethodLabels: {
|
|
14
|
+
bank_transfer: "Bank Transfer",
|
|
15
|
+
credit_card: "Credit Card",
|
|
16
|
+
debit_card: "Debit Card",
|
|
17
|
+
cash: "Cash",
|
|
18
|
+
cheque: "Cheque",
|
|
19
|
+
wallet: "Wallet",
|
|
20
|
+
direct_bill: "Direct Bill",
|
|
21
|
+
voucher: "Voucher",
|
|
22
|
+
other: "Other",
|
|
23
|
+
},
|
|
13
24
|
supplierPaymentMethodLabels: {
|
|
14
25
|
bank_transfer: "Bank Transfer",
|
|
15
26
|
credit_card: "Credit Card",
|
|
@@ -59,6 +70,303 @@ export const financeUiEn = {
|
|
|
59
70
|
dueDateRequired: "Due date is required",
|
|
60
71
|
},
|
|
61
72
|
},
|
|
73
|
+
invoicesPage: {
|
|
74
|
+
title: "Invoices",
|
|
75
|
+
description: "Customer-facing invoices, proformas, and credit notes.",
|
|
76
|
+
searchPlaceholder: "Search invoices...",
|
|
77
|
+
actions: {
|
|
78
|
+
newInvoice: "New Invoice",
|
|
79
|
+
},
|
|
80
|
+
filters: {
|
|
81
|
+
button: "Filters",
|
|
82
|
+
statusLabel: "Status",
|
|
83
|
+
statusAll: "All statuses",
|
|
84
|
+
currencyLabel: "Currency",
|
|
85
|
+
currencyAny: "Any currency",
|
|
86
|
+
dueDateLabel: "Due date",
|
|
87
|
+
dateAny: "Any date",
|
|
88
|
+
clear: "Clear",
|
|
89
|
+
},
|
|
90
|
+
columns: {
|
|
91
|
+
invoiceNumber: "Invoice #",
|
|
92
|
+
status: "Status",
|
|
93
|
+
total: "Total",
|
|
94
|
+
paid: "Paid",
|
|
95
|
+
balanceDue: "Balance Due",
|
|
96
|
+
dueDate: "Due Date",
|
|
97
|
+
},
|
|
98
|
+
empty: "No records found.",
|
|
99
|
+
loadFailed: "Failed to load records.",
|
|
100
|
+
pagination: {
|
|
101
|
+
showing: "Showing {count} of {total}",
|
|
102
|
+
page: "Page {page} / {pageCount}",
|
|
103
|
+
previous: "Previous",
|
|
104
|
+
next: "Next",
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
paymentsPage: {
|
|
108
|
+
title: "Payments",
|
|
109
|
+
description: "All customer and supplier payments in one place.",
|
|
110
|
+
searchPlaceholder: "Search by reference number...",
|
|
111
|
+
actions: {
|
|
112
|
+
recordPayment: "Record Payment",
|
|
113
|
+
},
|
|
114
|
+
kindLabels: {
|
|
115
|
+
customer: "Customer",
|
|
116
|
+
supplier: "Supplier",
|
|
117
|
+
},
|
|
118
|
+
filters: {
|
|
119
|
+
button: "Filters",
|
|
120
|
+
kindLabel: "Type",
|
|
121
|
+
kindAll: "All types",
|
|
122
|
+
statusLabel: "Status",
|
|
123
|
+
statusAll: "All statuses",
|
|
124
|
+
methodLabel: "Payment method",
|
|
125
|
+
methodAll: "All methods",
|
|
126
|
+
supplierLabel: "Supplier",
|
|
127
|
+
supplierAny: "Any supplier",
|
|
128
|
+
supplierEmpty: "No suppliers found.",
|
|
129
|
+
currencyLabel: "Currency",
|
|
130
|
+
currencyAny: "Any currency",
|
|
131
|
+
paymentDateLabel: "Payment date",
|
|
132
|
+
dateAny: "Any date",
|
|
133
|
+
clear: "Clear",
|
|
134
|
+
},
|
|
135
|
+
columns: {
|
|
136
|
+
kind: "Type",
|
|
137
|
+
reference: "Reference",
|
|
138
|
+
party: "Party",
|
|
139
|
+
amount: "Amount",
|
|
140
|
+
status: "Status",
|
|
141
|
+
date: "Date",
|
|
142
|
+
method: "Payment method",
|
|
143
|
+
},
|
|
144
|
+
noValue: "-",
|
|
145
|
+
empty: "No records found.",
|
|
146
|
+
loadFailed: "Failed to load records.",
|
|
147
|
+
pagination: {
|
|
148
|
+
showing: "Showing {count} of {total}",
|
|
149
|
+
page: "Page {page} / {pageCount}",
|
|
150
|
+
previous: "Previous",
|
|
151
|
+
next: "Next",
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
paymentDetailPage: {
|
|
155
|
+
actions: {
|
|
156
|
+
back: "Back to payments",
|
|
157
|
+
viewInvoice: "View invoice",
|
|
158
|
+
viewBooking: "View booking",
|
|
159
|
+
viewPerson: "View person",
|
|
160
|
+
viewOrganization: "View organization",
|
|
161
|
+
viewSupplier: "View supplier",
|
|
162
|
+
},
|
|
163
|
+
titles: {
|
|
164
|
+
summary: "Summary",
|
|
165
|
+
links: "Related records",
|
|
166
|
+
metadata: "Metadata",
|
|
167
|
+
},
|
|
168
|
+
fields: {
|
|
169
|
+
amount: "Amount",
|
|
170
|
+
baseAmount: "Base amount",
|
|
171
|
+
status: "Status",
|
|
172
|
+
method: "Payment method",
|
|
173
|
+
date: "Payment date",
|
|
174
|
+
reference: "Reference",
|
|
175
|
+
notes: "Notes",
|
|
176
|
+
kind: "Type",
|
|
177
|
+
paidBy: "Paid by",
|
|
178
|
+
paidTo: "Paid to",
|
|
179
|
+
organization: "Organization",
|
|
180
|
+
invoice: "Invoice",
|
|
181
|
+
booking: "Booking",
|
|
182
|
+
createdAt: "Created",
|
|
183
|
+
updatedAt: "Updated",
|
|
184
|
+
},
|
|
185
|
+
states: {
|
|
186
|
+
loading: "Loading payment...",
|
|
187
|
+
loadFailed: "Failed to load payment.",
|
|
188
|
+
notFound: "Payment not found.",
|
|
189
|
+
noValue: "-",
|
|
190
|
+
},
|
|
191
|
+
},
|
|
192
|
+
invoiceDetailPage: {
|
|
193
|
+
actions: {
|
|
194
|
+
back: "Back to finance",
|
|
195
|
+
edit: "Edit",
|
|
196
|
+
delete: "Delete",
|
|
197
|
+
deleteTitle: "Delete this invoice?",
|
|
198
|
+
deleteDescription: "This permanently removes the draft invoice and its finance records.",
|
|
199
|
+
deleteOnlyDraft: "Only draft invoices can be deleted.",
|
|
200
|
+
viewBooking: "View booking",
|
|
201
|
+
viewPerson: "View person",
|
|
202
|
+
viewOrganization: "View organization",
|
|
203
|
+
addLineItem: "Add line item",
|
|
204
|
+
editLineItem: "Edit line item",
|
|
205
|
+
deleteLineItemShort: "Delete",
|
|
206
|
+
deleteLineItemTitle: "Delete this line item?",
|
|
207
|
+
deleteLineItemDescription: "This removes the selected line item and recalculates invoice totals.",
|
|
208
|
+
recordPayment: "Record payment",
|
|
209
|
+
addCreditNote: "Add credit note",
|
|
210
|
+
addNote: "Add note",
|
|
211
|
+
},
|
|
212
|
+
titles: {
|
|
213
|
+
summary: "Invoice details",
|
|
214
|
+
links: "Dates and links",
|
|
215
|
+
lineItems: "Line items",
|
|
216
|
+
payments: "Payments",
|
|
217
|
+
creditNotes: "Credit notes",
|
|
218
|
+
notes: "Notes",
|
|
219
|
+
},
|
|
220
|
+
fields: {
|
|
221
|
+
currency: "Currency",
|
|
222
|
+
subtotal: "Subtotal",
|
|
223
|
+
tax: "Tax",
|
|
224
|
+
total: "Total",
|
|
225
|
+
paid: "Paid",
|
|
226
|
+
balanceDue: "Balance due",
|
|
227
|
+
status: "Status",
|
|
228
|
+
issueDate: "Issue date",
|
|
229
|
+
dueDate: "Due date",
|
|
230
|
+
booking: "Booking",
|
|
231
|
+
person: "Person",
|
|
232
|
+
organization: "Organization",
|
|
233
|
+
notes: "Notes",
|
|
234
|
+
createdAt: "Created",
|
|
235
|
+
updatedAt: "Updated",
|
|
236
|
+
},
|
|
237
|
+
columns: {
|
|
238
|
+
description: "Description",
|
|
239
|
+
quantity: "Qty",
|
|
240
|
+
unitPrice: "Unit price",
|
|
241
|
+
total: "Total",
|
|
242
|
+
taxRate: "Tax rate",
|
|
243
|
+
},
|
|
244
|
+
states: {
|
|
245
|
+
loading: "Loading invoice...",
|
|
246
|
+
loadFailed: "Failed to load invoice.",
|
|
247
|
+
notFound: "Invoice not found.",
|
|
248
|
+
noValue: "-",
|
|
249
|
+
noLineItems: "No line items yet.",
|
|
250
|
+
noPayments: "No payments yet.",
|
|
251
|
+
noCreditNotes: "No credit notes yet.",
|
|
252
|
+
noNotes: "No notes yet.",
|
|
253
|
+
},
|
|
254
|
+
placeholders: {
|
|
255
|
+
note: "Add an internal note...",
|
|
256
|
+
},
|
|
257
|
+
creditNoteStatusLabels: {
|
|
258
|
+
draft: "Draft",
|
|
259
|
+
issued: "Issued",
|
|
260
|
+
applied: "Applied",
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
taxesPage: {
|
|
264
|
+
title: "Tax Regimes and Classes",
|
|
265
|
+
description: "Manage tax classes and the default tax regime each class uses for VAT calculation.",
|
|
266
|
+
addTax: "Add tax class",
|
|
267
|
+
empty: "No tax classes yet. Seed or create classes such as Normala, Redusa, and Art. 311.",
|
|
268
|
+
inactive: "Inactive",
|
|
269
|
+
edit: "Edit",
|
|
270
|
+
delete: "Delete",
|
|
271
|
+
deleteConfirm: "Delete this tax class?",
|
|
272
|
+
editSheetTitle: "Edit Tax Class",
|
|
273
|
+
newSheetTitle: "New Tax Class",
|
|
274
|
+
taxClassBadge: "Tax class",
|
|
275
|
+
defaultRegimeLabel: "Default regime",
|
|
276
|
+
regimeOverridesLabel: "Overrides",
|
|
277
|
+
regimeOverrideCount: "{count} overrides",
|
|
278
|
+
taxClassSectionTitle: "Tax class",
|
|
279
|
+
taxClassSectionDescription: "The assignable classification stored on products and booking lines.",
|
|
280
|
+
defaultRegimeSectionTitle: "Default tax regime",
|
|
281
|
+
defaultRegimeSectionDescription: "The VAT/tax calculation rule linked through tax_classes.default_regime_id.",
|
|
282
|
+
regimeOverridesSectionTitle: "Regime overrides",
|
|
283
|
+
regimeOverridesSectionDescription: "Optional tax_classes.lines entries for base, addon, accommodation, or all lines.",
|
|
284
|
+
addRegimeOverride: "Add override",
|
|
285
|
+
removeRegimeOverride: "Remove override",
|
|
286
|
+
noRegimeOverrides: "No regime overrides. This class falls back to the default regime.",
|
|
287
|
+
appliesToLabel: "Applies to",
|
|
288
|
+
taxRegimeLabel: "Tax regime",
|
|
289
|
+
appliesToBase: "Base",
|
|
290
|
+
appliesToAddon: "Addon",
|
|
291
|
+
appliesToAccommodation: "Accommodation",
|
|
292
|
+
appliesToAll: "All",
|
|
293
|
+
taxClassLabelLabel: "Tax class label",
|
|
294
|
+
taxClassLabelPlaceholder: "Normala 21",
|
|
295
|
+
taxClassCodeLabel: "Tax class code",
|
|
296
|
+
taxClassCodePlaceholder: "normala",
|
|
297
|
+
taxClassDescriptionLabel: "Tax class description",
|
|
298
|
+
taxClassDescriptionPlaceholder: "Optional tax class description...",
|
|
299
|
+
regimeNameLabel: "Regime name",
|
|
300
|
+
regimeNamePlaceholder: "Normala",
|
|
301
|
+
regimeCodeLabel: "Regime code",
|
|
302
|
+
rateLabel: "Regime rate %",
|
|
303
|
+
jurisdictionLabel: "Jurisdiction",
|
|
304
|
+
legalReferenceLabel: "Legal reference",
|
|
305
|
+
legalReferencePlaceholder: "Optional legal reference",
|
|
306
|
+
regimeDescriptionLabel: "Regime description",
|
|
307
|
+
regimeDescriptionPlaceholder: "Optional tax regime description...",
|
|
308
|
+
activeLabel: "Active",
|
|
309
|
+
cancel: "Cancel",
|
|
310
|
+
saveChanges: "Save Changes",
|
|
311
|
+
createTax: "Create Tax Class",
|
|
312
|
+
validationNameRequired: "Tax class label is required",
|
|
313
|
+
validationRateInvalid: "Rate must be a non-negative number",
|
|
314
|
+
saveFailed: "Failed to save tax class",
|
|
315
|
+
policyTitle: "Tax Policy Profiles",
|
|
316
|
+
policyDescription: "Manage implementation-specific tax rules that choose tax regimes automatically.",
|
|
317
|
+
addPolicyProfile: "Add profile",
|
|
318
|
+
addPolicyRule: "Add rule",
|
|
319
|
+
policyEmpty: "No tax policy profiles yet.",
|
|
320
|
+
policyRulesEmpty: "No policy rules yet. Add ordered rules for this profile.",
|
|
321
|
+
deletePolicyProfileConfirm: "Delete this tax policy profile and its rules?",
|
|
322
|
+
deletePolicyRuleConfirm: "Delete this tax policy rule?",
|
|
323
|
+
editPolicyProfileSheetTitle: "Edit Tax Policy Profile",
|
|
324
|
+
newPolicyProfileSheetTitle: "New Tax Policy Profile",
|
|
325
|
+
editPolicyRuleSheetTitle: "Edit Tax Policy Rule",
|
|
326
|
+
newPolicyRuleSheetTitle: "New Tax Policy Rule",
|
|
327
|
+
policyProfileNameLabel: "Profile name",
|
|
328
|
+
policyProfileNamePlaceholder: "Romanian travel operator",
|
|
329
|
+
policyProfileCodeLabel: "Profile code",
|
|
330
|
+
policyProfileCodePlaceholder: "ro-travel-operator",
|
|
331
|
+
policyProfileDescriptionLabel: "Profile description",
|
|
332
|
+
policyProfileDescriptionPlaceholder: "Optional policy profile description...",
|
|
333
|
+
policyPriorityLabel: "Priority",
|
|
334
|
+
policySideLabel: "Side",
|
|
335
|
+
policyRuleNameLabel: "Rule name",
|
|
336
|
+
policyRuleNamePlaceholder: "Accommodation in Romania",
|
|
337
|
+
policyConditionLabel: "Condition",
|
|
338
|
+
policyConditionSectionTitle: "Condition",
|
|
339
|
+
policyConditionSectionDescription: "Choose when this rule applies. Rules are evaluated by priority.",
|
|
340
|
+
policyConditionModeLabel: "Match",
|
|
341
|
+
policyConditionAlways: "Always",
|
|
342
|
+
policyConditionAlwaysDescription: "This rule always matches and is usually used as the last fallback rule.",
|
|
343
|
+
policyConditionModeAll: "All conditions",
|
|
344
|
+
policyConditionModeAny: "Any condition",
|
|
345
|
+
addPolicyCondition: "Add condition",
|
|
346
|
+
removePolicyCondition: "Remove condition",
|
|
347
|
+
policyFactLabel: "Fact",
|
|
348
|
+
policyFactHasAccommodation: "Has accommodation",
|
|
349
|
+
policyFactAccommodationCountries: "Accommodation countries",
|
|
350
|
+
policyOperatorLabel: "Operator",
|
|
351
|
+
policyOperatorEquals: "is",
|
|
352
|
+
policyOperatorContains: "contains",
|
|
353
|
+
policyValueLabel: "Value",
|
|
354
|
+
policyValueYes: "Yes",
|
|
355
|
+
policyValueNo: "No",
|
|
356
|
+
policyActionsLabel: "Actions",
|
|
357
|
+
policySideSell: "Sell",
|
|
358
|
+
policySideBuy: "Buy",
|
|
359
|
+
createPolicyProfile: "Create Profile",
|
|
360
|
+
createPolicyRule: "Create Rule",
|
|
361
|
+
validationPolicyProfileNameRequired: "Profile name is required",
|
|
362
|
+
validationPolicyProfileRequired: "Tax policy profile is required",
|
|
363
|
+
validationPolicyRuleNameRequired: "Rule name is required",
|
|
364
|
+
validationPolicyRuleRegimeRequired: "Tax regime is required",
|
|
365
|
+
validationPolicyRulePriorityInvalid: "Priority must be a non-negative integer",
|
|
366
|
+
validationPolicyRuleConditionInvalid: "Condition must include at least one valid row. Country values must be two-letter ISO codes.",
|
|
367
|
+
savePolicyProfileFailed: "Failed to save tax policy profile",
|
|
368
|
+
savePolicyRuleFailed: "Failed to save tax policy rule",
|
|
369
|
+
},
|
|
62
370
|
supplierPaymentDialog: {
|
|
63
371
|
title: "Record Supplier Payment",
|
|
64
372
|
fields: {
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { financeUiEn } from "./en.js";
|
|
2
|
-
export type { FinanceUiMessages, InvoiceStatus, SupplierPaymentMethod, SupplierPaymentStatus, } from "./messages.js";
|
|
2
|
+
export type { CreditNoteStatus, FinanceUiMessages, InvoiceStatus, PaymentMethod, SupplierPaymentMethod, SupplierPaymentStatus, } from "./messages.js";
|
|
3
3
|
export { type FinanceUiMessageOverrides, FinanceUiMessagesProvider, financeUiMessageDefinitions, getFinanceUiI18n, resolveFinanceUiMessages, useFinanceUiI18n, useFinanceUiI18nOrDefault, useFinanceUiMessages, useFinanceUiMessagesOrDefault, } from "./provider.js";
|
|
4
4
|
export { financeUiRo } from "./ro.js";
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/i18n/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AACrC,YAAY,EACV,iBAAiB,EACjB,aAAa,EACb,qBAAqB,EACrB,qBAAqB,GACtB,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,KAAK,yBAAyB,EAC9B,yBAAyB,EACzB,2BAA2B,EAC3B,gBAAgB,EAChB,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,6BAA6B,GAC9B,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AACrC,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,aAAa,EACb,aAAa,EACb,qBAAqB,EACrB,qBAAqB,GACtB,MAAM,eAAe,CAAA;AACtB,OAAO,EACL,KAAK,yBAAyB,EAC9B,yBAAyB,EACzB,2BAA2B,EAC3B,gBAAgB,EAChB,wBAAwB,EACxB,gBAAgB,EAChB,yBAAyB,EACzB,oBAAoB,EACpB,6BAA6B,GAC9B,MAAM,eAAe,CAAA;AACtB,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA"}
|