@voyant-travel/finance-react 0.119.5
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/LICENSE +201 -0
- package/README.md +75 -0
- package/dist/admin/booking-invoices-widget.d.ts +19 -0
- package/dist/admin/booking-invoices-widget.d.ts.map +1 -0
- package/dist/admin/booking-invoices-widget.js +204 -0
- package/dist/admin/booking-payment-policy-widget.d.ts +21 -0
- package/dist/admin/booking-payment-policy-widget.d.ts.map +1 -0
- package/dist/admin/booking-payment-policy-widget.js +128 -0
- package/dist/admin/booking-pending-payment-sessions-widget.d.ts +24 -0
- package/dist/admin/booking-pending-payment-sessions-widget.d.ts.map +1 -0
- package/dist/admin/booking-pending-payment-sessions-widget.js +139 -0
- package/dist/admin/credit-note-dialog.d.ts +9 -0
- package/dist/admin/credit-note-dialog.d.ts.map +1 -0
- package/dist/admin/credit-note-dialog.js +70 -0
- package/dist/admin/finance-shared.d.ts +7 -0
- package/dist/admin/finance-shared.d.ts.map +1 -0
- package/dist/admin/finance-shared.js +30 -0
- package/dist/admin/index.d.ts +99 -0
- package/dist/admin/index.d.ts.map +1 -0
- package/dist/admin/index.js +286 -0
- package/dist/admin/invoice-detail-host.d.ts +19 -0
- package/dist/admin/invoice-detail-host.d.ts.map +1 -0
- package/dist/admin/invoice-detail-host.js +147 -0
- package/dist/admin/invoice-detail-sections.d.ts +31 -0
- package/dist/admin/invoice-detail-sections.d.ts.map +1 -0
- package/dist/admin/invoice-detail-sections.js +109 -0
- package/dist/admin/invoice-detail-skeleton.d.ts +11 -0
- package/dist/admin/invoice-detail-skeleton.d.ts.map +1 -0
- package/dist/admin/invoice-detail-skeleton.js +33 -0
- package/dist/admin/line-item-dialog.d.ts +10 -0
- package/dist/admin/line-item-dialog.d.ts.map +1 -0
- package/dist/admin/line-item-dialog.js +91 -0
- package/dist/admin/pages/invoice-detail.d.ts +8 -0
- package/dist/admin/pages/invoice-detail.d.ts.map +1 -0
- package/dist/admin/pages/invoice-detail.js +11 -0
- package/dist/admin/pages/invoices-index.d.ts +8 -0
- package/dist/admin/pages/invoices-index.d.ts.map +1 -0
- package/dist/admin/pages/invoices-index.js +14 -0
- package/dist/admin/pages/payment-detail.d.ts +8 -0
- package/dist/admin/pages/payment-detail.d.ts.map +1 -0
- package/dist/admin/pages/payment-detail.js +11 -0
- package/dist/admin/pages/payments-index.d.ts +9 -0
- package/dist/admin/pages/payments-index.d.ts.map +1 -0
- package/dist/admin/pages/payments-index.js +21 -0
- package/dist/admin/pages/profitability.d.ts +10 -0
- package/dist/admin/pages/profitability.d.ts.map +1 -0
- package/dist/admin/pages/profitability.js +32 -0
- package/dist/admin/pages/supplier-invoice-detail.d.ts +20 -0
- package/dist/admin/pages/supplier-invoice-detail.d.ts.map +1 -0
- package/dist/admin/pages/supplier-invoice-detail.js +102 -0
- package/dist/admin/pages/supplier-invoices-index.d.ts +9 -0
- package/dist/admin/pages/supplier-invoices-index.d.ts.map +1 -0
- package/dist/admin/pages/supplier-invoices-index.js +16 -0
- package/dist/admin/payment-detail-host.d.ts +12 -0
- package/dist/admin/payment-detail-host.d.ts.map +1 -0
- package/dist/admin/payment-detail-host.js +108 -0
- package/dist/admin/payment-detail-skeleton.d.ts +8 -0
- package/dist/admin/payment-detail-skeleton.d.ts.map +1 -0
- package/dist/admin/payment-detail-skeleton.js +15 -0
- package/dist/admin/payment-dialog.d.ts +9 -0
- package/dist/admin/payment-dialog.d.ts.map +1 -0
- package/dist/admin/payment-dialog.js +99 -0
- package/dist/admin/record-payment-dialog.d.ts +16 -0
- package/dist/admin/record-payment-dialog.d.ts.map +1 -0
- package/dist/admin/record-payment-dialog.js +219 -0
- package/dist/admin/supplier-payment-policy-widget.d.ts +18 -0
- package/dist/admin/supplier-payment-policy-widget.d.ts.map +1 -0
- package/dist/admin/supplier-payment-policy-widget.js +31 -0
- package/dist/admin/use-supplier-picker.d.ts +19 -0
- package/dist/admin/use-supplier-picker.d.ts.map +1 -0
- package/dist/admin/use-supplier-picker.js +30 -0
- package/dist/checkout-components/collect-payment-dialog.d.ts +45 -0
- package/dist/checkout-components/collect-payment-dialog.d.ts.map +1 -0
- package/dist/checkout-components/collect-payment-dialog.js +121 -0
- package/dist/checkout-components/payment-link-landing-page.d.ts +76 -0
- package/dist/checkout-components/payment-link-landing-page.d.ts.map +1 -0
- package/dist/checkout-components/payment-link-landing-page.js +173 -0
- package/dist/checkout-components/payment-step.d.ts +42 -0
- package/dist/checkout-components/payment-step.d.ts.map +1 -0
- package/dist/checkout-components/payment-step.js +113 -0
- package/dist/checkout-hooks/index.d.ts +5 -0
- package/dist/checkout-hooks/index.d.ts.map +1 -0
- package/dist/checkout-hooks/index.js +4 -0
- package/dist/checkout-hooks/use-checkout-payment-link-config.d.ts +20 -0
- package/dist/checkout-hooks/use-checkout-payment-link-config.d.ts.map +1 -0
- package/dist/checkout-hooks/use-checkout-payment-link-config.js +26 -0
- package/dist/checkout-hooks/use-collect-payment.d.ts +227 -0
- package/dist/checkout-hooks/use-collect-payment.d.ts.map +1 -0
- package/dist/checkout-hooks/use-collect-payment.js +80 -0
- package/dist/checkout-hooks/use-initiate-checkout-collection.d.ts +308 -0
- package/dist/checkout-hooks/use-initiate-checkout-collection.d.ts.map +1 -0
- package/dist/checkout-hooks/use-initiate-checkout-collection.js +35 -0
- package/dist/checkout-hooks/use-preview-checkout-collection.d.ts +65 -0
- package/dist/checkout-hooks/use-preview-checkout-collection.d.ts.map +1 -0
- package/dist/checkout-hooks/use-preview-checkout-collection.js +27 -0
- package/dist/checkout-i18n/en.d.ts +3 -0
- package/dist/checkout-i18n/en.d.ts.map +1 -0
- package/dist/checkout-i18n/en.js +127 -0
- package/dist/checkout-i18n/index.d.ts +5 -0
- package/dist/checkout-i18n/index.d.ts.map +1 -0
- package/dist/checkout-i18n/index.js +3 -0
- package/dist/checkout-i18n/messages.d.ts +121 -0
- package/dist/checkout-i18n/messages.d.ts.map +1 -0
- package/dist/checkout-i18n/messages.js +1 -0
- package/dist/checkout-i18n/provider.d.ts +26 -0
- package/dist/checkout-i18n/provider.d.ts.map +1 -0
- package/dist/checkout-i18n/provider.js +41 -0
- package/dist/checkout-i18n/ro.d.ts +3 -0
- package/dist/checkout-i18n/ro.d.ts.map +1 -0
- package/dist/checkout-i18n/ro.js +127 -0
- package/dist/checkout-types.d.ts +53 -0
- package/dist/checkout-types.d.ts.map +1 -0
- package/dist/checkout-types.js +1 -0
- package/dist/checkout-ui.d.ts +7 -0
- package/dist/checkout-ui.d.ts.map +1 -0
- package/dist/checkout-ui.js +4 -0
- package/dist/checkout.d.ts +5 -0
- package/dist/checkout.d.ts.map +1 -0
- package/dist/checkout.js +3 -0
- package/dist/client.d.ts +16 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +79 -0
- package/dist/components/accountant-portal/body.d.ts +8 -0
- package/dist/components/accountant-portal/body.d.ts.map +1 -0
- package/dist/components/accountant-portal/body.js +114 -0
- package/dist/components/accountant-portal/widgets.d.ts +13 -0
- package/dist/components/accountant-portal/widgets.d.ts.map +1 -0
- package/dist/components/accountant-portal/widgets.js +27 -0
- package/dist/components/accountant-portal.d.ts +10 -0
- package/dist/components/accountant-portal.d.ts.map +1 -0
- package/dist/components/accountant-portal.js +22 -0
- package/dist/components/accountant-share-dialog.d.ts +6 -0
- package/dist/components/accountant-share-dialog.d.ts.map +1 -0
- package/dist/components/accountant-share-dialog.js +53 -0
- package/dist/components/async-combobox.d.ts +33 -0
- package/dist/components/async-combobox.d.ts.map +1 -0
- package/dist/components/async-combobox.js +100 -0
- package/dist/components/booking-invoice-dialog.d.ts +63 -0
- package/dist/components/booking-invoice-dialog.d.ts.map +1 -0
- package/dist/components/booking-invoice-dialog.js +383 -0
- package/dist/components/cost-categories-page.d.ts +5 -0
- package/dist/components/cost-categories-page.d.ts.map +1 -0
- package/dist/components/cost-categories-page.js +30 -0
- package/dist/components/invoice-action-ledger-card.d.ts +15 -0
- package/dist/components/invoice-action-ledger-card.d.ts.map +1 -0
- package/dist/components/invoice-action-ledger-card.js +76 -0
- package/dist/components/invoice-bulk-actions.d.ts +10 -0
- package/dist/components/invoice-bulk-actions.d.ts.map +1 -0
- package/dist/components/invoice-bulk-actions.js +19 -0
- package/dist/components/invoice-detail-page/cards.d.ts +44 -0
- package/dist/components/invoice-detail-page/cards.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/cards.js +43 -0
- package/dist/components/invoice-detail-page/header.d.ts +15 -0
- package/dist/components/invoice-detail-page/header.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/header.js +30 -0
- package/dist/components/invoice-detail-page/notes-dialogs.d.ts +28 -0
- package/dist/components/invoice-detail-page/notes-dialogs.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/notes-dialogs.js +104 -0
- package/dist/components/invoice-detail-page/primitives.d.ts +47 -0
- package/dist/components/invoice-detail-page/primitives.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/primitives.js +76 -0
- package/dist/components/invoice-detail-page-with-action-ledger.d.ts +7 -0
- package/dist/components/invoice-detail-page-with-action-ledger.d.ts.map +1 -0
- package/dist/components/invoice-detail-page-with-action-ledger.js +11 -0
- package/dist/components/invoice-detail-page.d.ts +46 -0
- package/dist/components/invoice-detail-page.d.ts.map +1 -0
- package/dist/components/invoice-detail-page.js +134 -0
- package/dist/components/invoice-dialog.d.ts +9 -0
- package/dist/components/invoice-dialog.d.ts.map +1 -0
- package/dist/components/invoice-dialog.js +145 -0
- package/dist/components/invoice-number-series-dialog.d.ts +9 -0
- package/dist/components/invoice-number-series-dialog.d.ts.map +1 -0
- package/dist/components/invoice-number-series-dialog.js +134 -0
- package/dist/components/invoice-number-series-format.d.ts +3 -0
- package/dist/components/invoice-number-series-format.d.ts.map +1 -0
- package/dist/components/invoice-number-series-format.js +4 -0
- package/dist/components/invoice-number-series-page.d.ts +5 -0
- package/dist/components/invoice-number-series-page.d.ts.map +1 -0
- package/dist/components/invoice-number-series-page.js +55 -0
- package/dist/components/invoice-table-parts.d.ts +25 -0
- package/dist/components/invoice-table-parts.d.ts.map +1 -0
- package/dist/components/invoice-table-parts.js +32 -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 +145 -0
- package/dist/components/payment-detail-page.d.ts +47 -0
- package/dist/components/payment-detail-page.d.ts.map +1 -0
- package/dist/components/payment-detail-page.js +90 -0
- package/dist/components/payment-policy-form.d.ts +49 -0
- package/dist/components/payment-policy-form.d.ts.map +1 -0
- package/dist/components/payment-policy-form.js +82 -0
- package/dist/components/payments-page/controls.d.ts +23 -0
- package/dist/components/payments-page/controls.d.ts.map +1 -0
- package/dist/components/payments-page/controls.js +20 -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 +143 -0
- package/dist/components/profitability-page/sections.d.ts +24 -0
- package/dist/components/profitability-page/sections.d.ts.map +1 -0
- package/dist/components/profitability-page/sections.js +43 -0
- package/dist/components/profitability-page.d.ts +13 -0
- package/dist/components/profitability-page.d.ts.map +1 -0
- package/dist/components/profitability-page.js +175 -0
- package/dist/components/record-booking-payment-dialog/shared.d.ts +54 -0
- package/dist/components/record-booking-payment-dialog/shared.d.ts.map +1 -0
- package/dist/components/record-booking-payment-dialog/shared.js +47 -0
- package/dist/components/record-booking-payment-dialog.d.ts +4 -0
- package/dist/components/record-booking-payment-dialog.d.ts.map +1 -0
- package/dist/components/record-booking-payment-dialog.js +256 -0
- package/dist/components/supplier-invoice-detail-page/dialogs.d.ts +34 -0
- package/dist/components/supplier-invoice-detail-page/dialogs.d.ts.map +1 -0
- package/dist/components/supplier-invoice-detail-page/dialogs.js +119 -0
- package/dist/components/supplier-invoice-detail-page/shared.d.ts +64 -0
- package/dist/components/supplier-invoice-detail-page/shared.d.ts.map +1 -0
- package/dist/components/supplier-invoice-detail-page/shared.js +70 -0
- package/dist/components/supplier-invoice-detail-page.d.ts +4 -0
- package/dist/components/supplier-invoice-detail-page.d.ts.map +1 -0
- package/dist/components/supplier-invoice-detail-page.js +101 -0
- package/dist/components/supplier-invoice-form-dialog.d.ts +45 -0
- package/dist/components/supplier-invoice-form-dialog.d.ts.map +1 -0
- package/dist/components/supplier-invoice-form-dialog.js +102 -0
- package/dist/components/supplier-invoices-page.d.ts +14 -0
- package/dist/components/supplier-invoices-page.d.ts.map +1 -0
- package/dist/components/supplier-invoices-page.js +69 -0
- package/dist/components/supplier-payment-dialog.d.ts +7 -0
- package/dist/components/supplier-payment-dialog.d.ts.map +1 -0
- package/dist/components/supplier-payment-dialog.js +103 -0
- package/dist/components/taxes-page/policy-profile-sheet.d.ts +8 -0
- package/dist/components/taxes-page/policy-profile-sheet.d.ts.map +1 -0
- package/dist/components/taxes-page/policy-profile-sheet.js +52 -0
- package/dist/components/taxes-page/policy-rule-sheet.d.ts +10 -0
- package/dist/components/taxes-page/policy-rule-sheet.d.ts.map +1 -0
- package/dist/components/taxes-page/policy-rule-sheet.js +137 -0
- package/dist/components/taxes-page/shared.d.ts +128 -0
- package/dist/components/taxes-page/shared.d.ts.map +1 -0
- package/dist/components/taxes-page/shared.js +288 -0
- package/dist/components/taxes-page/sheets.d.ts +4 -0
- package/dist/components/taxes-page/sheets.d.ts.map +1 -0
- package/dist/components/taxes-page/sheets.js +3 -0
- package/dist/components/taxes-page/tax-sheet.d.ts +9 -0
- package/dist/components/taxes-page/tax-sheet.d.ts.map +1 -0
- package/dist/components/taxes-page/tax-sheet.js +108 -0
- package/dist/components/taxes-page.d.ts +4 -0
- package/dist/components/taxes-page.d.ts.map +1 -0
- package/dist/components/taxes-page.js +165 -0
- package/dist/hooks/index.d.ts +53 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +52 -0
- package/dist/hooks/use-accountant-share-mutation.d.ts +20 -0
- package/dist/hooks/use-accountant-share-mutation.d.ts.map +1 -0
- package/dist/hooks/use-accountant-share-mutation.js +27 -0
- package/dist/hooks/use-accountant-shares.d.ts +13 -0
- package/dist/hooks/use-accountant-shares.d.ts.map +1 -0
- package/dist/hooks/use-accountant-shares.js +8 -0
- package/dist/hooks/use-admin-booking-payments.d.ts +30 -0
- package/dist/hooks/use-admin-booking-payments.d.ts.map +1 -0
- package/dist/hooks/use-admin-booking-payments.js +18 -0
- package/dist/hooks/use-all-payments.d.ts +35 -0
- package/dist/hooks/use-all-payments.d.ts.map +1 -0
- package/dist/hooks/use-all-payments.js +12 -0
- package/dist/hooks/use-booking-guarantees.d.ts +82 -0
- package/dist/hooks/use-booking-guarantees.d.ts.map +1 -0
- package/dist/hooks/use-booking-guarantees.js +46 -0
- package/dist/hooks/use-booking-payment-schedule-regenerate-mutation.d.ts +44 -0
- package/dist/hooks/use-booking-payment-schedule-regenerate-mutation.d.ts.map +1 -0
- package/dist/hooks/use-booking-payment-schedule-regenerate-mutation.js +27 -0
- package/dist/hooks/use-booking-payment-schedules.d.ts +63 -0
- package/dist/hooks/use-booking-payment-schedules.d.ts.map +1 -0
- package/dist/hooks/use-booking-payment-schedules.js +47 -0
- package/dist/hooks/use-cost-categories.d.ts +14 -0
- package/dist/hooks/use-cost-categories.d.ts.map +1 -0
- package/dist/hooks/use-cost-categories.js +9 -0
- package/dist/hooks/use-cost-category-mutation.d.ts +31 -0
- package/dist/hooks/use-cost-category-mutation.d.ts.map +1 -0
- package/dist/hooks/use-cost-category-mutation.js +27 -0
- package/dist/hooks/use-departure-profitability.d.ts +56 -0
- package/dist/hooks/use-departure-profitability.d.ts.map +1 -0
- package/dist/hooks/use-departure-profitability.js +12 -0
- package/dist/hooks/use-finance-action-ledger.d.ts +94 -0
- package/dist/hooks/use-finance-action-ledger.d.ts.map +1 -0
- package/dist/hooks/use-finance-action-ledger.js +20 -0
- package/dist/hooks/use-invoice-attachment-mutation.d.ts +43 -0
- package/dist/hooks/use-invoice-attachment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-attachment-mutation.js +39 -0
- package/dist/hooks/use-invoice-attachments.d.ts +18 -0
- package/dist/hooks/use-invoice-attachments.d.ts.map +1 -0
- package/dist/hooks/use-invoice-attachments.js +12 -0
- package/dist/hooks/use-invoice-bulk-status-mutation.d.ts +51 -0
- package/dist/hooks/use-invoice-bulk-status-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-bulk-status-mutation.js +66 -0
- package/dist/hooks/use-invoice-credit-note-mutation.d.ts +38 -0
- package/dist/hooks/use-invoice-credit-note-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-credit-note-mutation.js +35 -0
- package/dist/hooks/use-invoice-credit-notes.d.ts +17 -0
- package/dist/hooks/use-invoice-credit-notes.d.ts.map +1 -0
- package/dist/hooks/use-invoice-credit-notes.js +12 -0
- package/dist/hooks/use-invoice-fx-rate.d.ts +19 -0
- package/dist/hooks/use-invoice-fx-rate.d.ts.map +1 -0
- package/dist/hooks/use-invoice-fx-rate.js +13 -0
- package/dist/hooks/use-invoice-line-item-mutation.d.ts +40 -0
- package/dist/hooks/use-invoice-line-item-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-line-item-mutation.js +42 -0
- package/dist/hooks/use-invoice-line-items.d.ts +17 -0
- package/dist/hooks/use-invoice-line-items.d.ts.map +1 -0
- package/dist/hooks/use-invoice-line-items.js +12 -0
- package/dist/hooks/use-invoice-mutation.d.ts +225 -0
- package/dist/hooks/use-invoice-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-mutation.js +121 -0
- package/dist/hooks/use-invoice-note-mutation.d.ts +11 -0
- package/dist/hooks/use-invoice-note-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-note-mutation.js +23 -0
- package/dist/hooks/use-invoice-notes.d.ts +13 -0
- package/dist/hooks/use-invoice-notes.d.ts.map +1 -0
- package/dist/hooks/use-invoice-notes.js +12 -0
- package/dist/hooks/use-invoice-number-series-mutation.d.ts +62 -0
- package/dist/hooks/use-invoice-number-series-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-number-series-mutation.js +39 -0
- package/dist/hooks/use-invoice-number-series.d.ts +28 -0
- package/dist/hooks/use-invoice-number-series.d.ts.map +1 -0
- package/dist/hooks/use-invoice-number-series.js +12 -0
- package/dist/hooks/use-invoice-payment-mutation.d.ts +29 -0
- package/dist/hooks/use-invoice-payment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-payment-mutation.js +35 -0
- package/dist/hooks/use-invoice-payments.d.ts +21 -0
- package/dist/hooks/use-invoice-payments.d.ts.map +1 -0
- package/dist/hooks/use-invoice-payments.js +12 -0
- package/dist/hooks/use-invoice.d.ts +32 -0
- package/dist/hooks/use-invoice.d.ts.map +1 -0
- package/dist/hooks/use-invoice.js +12 -0
- package/dist/hooks/use-invoices.d.ts +36 -0
- package/dist/hooks/use-invoices.d.ts.map +1 -0
- package/dist/hooks/use-invoices.js +12 -0
- package/dist/hooks/use-payment-mutation.d.ts +57 -0
- package/dist/hooks/use-payment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-payment-mutation.js +59 -0
- package/dist/hooks/use-payment-session-mutation.d.ts +205 -0
- package/dist/hooks/use-payment-session-mutation.d.ts.map +1 -0
- package/dist/hooks/use-payment-session-mutation.js +38 -0
- package/dist/hooks/use-payment-sessions.d.ts +97 -0
- package/dist/hooks/use-payment-sessions.d.ts.map +1 -0
- package/dist/hooks/use-payment-sessions.js +17 -0
- package/dist/hooks/use-payment.d.ts +31 -0
- package/dist/hooks/use-payment.d.ts.map +1 -0
- package/dist/hooks/use-payment.js +12 -0
- package/dist/hooks/use-product-profitability.d.ts +52 -0
- package/dist/hooks/use-product-profitability.d.ts.map +1 -0
- package/dist/hooks/use-product-profitability.js +12 -0
- package/dist/hooks/use-public-booking-documents.d.ts +29 -0
- package/dist/hooks/use-public-booking-documents.d.ts.map +1 -0
- package/dist/hooks/use-public-booking-documents.js +12 -0
- package/dist/hooks/use-public-booking-payment-options.d.ts +47 -0
- package/dist/hooks/use-public-booking-payment-options.d.ts.map +1 -0
- package/dist/hooks/use-public-booking-payment-options.js +12 -0
- package/dist/hooks/use-public-booking-payments.d.ts +24 -0
- package/dist/hooks/use-public-booking-payments.d.ts.map +1 -0
- package/dist/hooks/use-public-booking-payments.js +12 -0
- package/dist/hooks/use-public-finance-document-by-reference.d.ts +27 -0
- package/dist/hooks/use-public-finance-document-by-reference.d.ts.map +1 -0
- package/dist/hooks/use-public-finance-document-by-reference.js +12 -0
- package/dist/hooks/use-public-payment-session-mutation.d.ts +82 -0
- package/dist/hooks/use-public-payment-session-mutation.d.ts.map +1 -0
- package/dist/hooks/use-public-payment-session-mutation.js +33 -0
- package/dist/hooks/use-public-payment-session.d.ts +73 -0
- package/dist/hooks/use-public-payment-session.d.ts.map +1 -0
- package/dist/hooks/use-public-payment-session.js +12 -0
- package/dist/hooks/use-public-voucher-validation-mutation.d.ts +23 -0
- package/dist/hooks/use-public-voucher-validation-mutation.d.ts.map +1 -0
- package/dist/hooks/use-public-voucher-validation-mutation.js +17 -0
- package/dist/hooks/use-supplier-invoice-attachments.d.ts +17 -0
- package/dist/hooks/use-supplier-invoice-attachments.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice-attachments.js +12 -0
- package/dist/hooks/use-supplier-invoice-mutation.d.ts +353 -0
- package/dist/hooks/use-supplier-invoice-mutation.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice-mutation.js +81 -0
- package/dist/hooks/use-supplier-invoice-payments.d.ts +26 -0
- package/dist/hooks/use-supplier-invoice-payments.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice-payments.js +12 -0
- package/dist/hooks/use-supplier-invoice.d.ts +65 -0
- package/dist/hooks/use-supplier-invoice.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice.js +12 -0
- package/dist/hooks/use-supplier-invoices.d.ts +36 -0
- package/dist/hooks/use-supplier-invoices.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoices.js +12 -0
- package/dist/hooks/use-supplier-payment-mutation.d.ts +55 -0
- package/dist/hooks/use-supplier-payment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-supplier-payment-mutation.js +35 -0
- package/dist/hooks/use-supplier-payments.d.ts +27 -0
- package/dist/hooks/use-supplier-payments.d.ts.map +1 -0
- package/dist/hooks/use-supplier-payments.js +12 -0
- package/dist/hooks/use-traveler-profitability.d.ts +24 -0
- package/dist/hooks/use-traveler-profitability.d.ts.map +1 -0
- package/dist/hooks/use-traveler-profitability.js +11 -0
- package/dist/hooks/use-voucher-mutation.d.ts +105 -0
- package/dist/hooks/use-voucher-mutation.d.ts.map +1 -0
- package/dist/hooks/use-voucher-mutation.js +50 -0
- package/dist/hooks/use-voucher.d.ts +38 -0
- package/dist/hooks/use-voucher.d.ts.map +1 -0
- package/dist/hooks/use-voucher.js +17 -0
- package/dist/hooks/use-vouchers.d.ts +34 -0
- package/dist/hooks/use-vouchers.d.ts.map +1 -0
- package/dist/hooks/use-vouchers.js +18 -0
- package/dist/i18n/en/invoices.d.ts +278 -0
- package/dist/i18n/en/invoices.d.ts.map +1 -0
- package/dist/i18n/en/invoices.js +277 -0
- package/dist/i18n/en/numberingAndPayments.d.ts +387 -0
- package/dist/i18n/en/numberingAndPayments.d.ts.map +1 -0
- package/dist/i18n/en/numberingAndPayments.js +386 -0
- package/dist/i18n/en/profitability.d.ts +147 -0
- package/dist/i18n/en/profitability.d.ts.map +1 -0
- package/dist/i18n/en/profitability.js +146 -0
- package/dist/i18n/en/suppliers.d.ts +187 -0
- package/dist/i18n/en/suppliers.d.ts.map +1 -0
- package/dist/i18n/en/suppliers.js +186 -0
- package/dist/i18n/en.d.ts +998 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +22 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/messages/core.d.ts +18 -0
- package/dist/i18n/messages/core.d.ts.map +1 -0
- package/dist/i18n/messages/core.js +30 -0
- package/dist/i18n/messages/invoices.d.ts +252 -0
- package/dist/i18n/messages/invoices.d.ts.map +1 -0
- package/dist/i18n/messages/invoices.js +1 -0
- package/dist/i18n/messages/numberingAndPayments.d.ts +277 -0
- package/dist/i18n/messages/numberingAndPayments.d.ts.map +1 -0
- package/dist/i18n/messages/numberingAndPayments.js +1 -0
- package/dist/i18n/messages/profitability.d.ts +151 -0
- package/dist/i18n/messages/profitability.d.ts.map +1 -0
- package/dist/i18n/messages/profitability.js +1 -0
- package/dist/i18n/messages/suppliers.d.ts +167 -0
- package/dist/i18n/messages/suppliers.d.ts.map +1 -0
- package/dist/i18n/messages/suppliers.js +1 -0
- package/dist/i18n/messages.d.ts +29 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +1 -0
- package/dist/i18n/provider.d.ts +2018 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro/invoices.d.ts +278 -0
- package/dist/i18n/ro/invoices.d.ts.map +1 -0
- package/dist/i18n/ro/invoices.js +277 -0
- package/dist/i18n/ro/numberingAndPayments.d.ts +387 -0
- package/dist/i18n/ro/numberingAndPayments.d.ts.map +1 -0
- package/dist/i18n/ro/numberingAndPayments.js +386 -0
- package/dist/i18n/ro/profitability.d.ts +147 -0
- package/dist/i18n/ro/profitability.d.ts.map +1 -0
- package/dist/i18n/ro/profitability.js +146 -0
- package/dist/i18n/ro/suppliers.d.ts +187 -0
- package/dist/i18n/ro/suppliers.d.ts.map +1 -0
- package/dist/i18n/ro/suppliers.js +186 -0
- package/dist/i18n/ro.d.ts +998 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +22 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/operations.d.ts +484 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +52 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +195 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +49 -0
- package/dist/query-options/public-reporting.d.ts +2129 -0
- package/dist/query-options/public-reporting.d.ts.map +1 -0
- package/dist/query-options/public-reporting.js +193 -0
- package/dist/query-options-action-ledger.d.ts +382 -0
- package/dist/query-options-action-ledger.d.ts.map +1 -0
- package/dist/query-options-action-ledger.js +36 -0
- package/dist/query-options.d.ts +2057 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +328 -0
- package/dist/schemas/accountant.d.ts +168 -0
- package/dist/schemas/accountant.d.ts.map +1 -0
- package/dist/schemas/accountant.js +53 -0
- package/dist/schemas/action-ledger.d.ts +206 -0
- package/dist/schemas/action-ledger.d.ts.map +1 -0
- package/dist/schemas/action-ledger.js +83 -0
- package/dist/schemas/common.d.ts +17 -0
- package/dist/schemas/common.d.ts.map +1 -0
- package/dist/schemas/common.js +10 -0
- package/dist/schemas/invoice.d.ts +1451 -0
- package/dist/schemas/invoice.d.ts.map +1 -0
- package/dist/schemas/invoice.js +438 -0
- package/dist/schemas/profitability.d.ts +333 -0
- package/dist/schemas/profitability.d.ts.map +1 -0
- package/dist/schemas/profitability.js +84 -0
- package/dist/schemas/public.d.ts +481 -0
- package/dist/schemas/public.d.ts.map +1 -0
- package/dist/schemas/public.js +9 -0
- package/dist/schemas/responses.d.ts +632 -0
- package/dist/schemas/responses.d.ts.map +1 -0
- package/dist/schemas/responses.js +27 -0
- package/dist/schemas/supplier.d.ts +226 -0
- package/dist/schemas/supplier.d.ts.map +1 -0
- package/dist/schemas/supplier.js +103 -0
- package/dist/schemas/vouchers.d.ts +283 -0
- package/dist/schemas/vouchers.d.ts.map +1 -0
- package/dist/schemas/vouchers.js +49 -0
- package/dist/schemas.d.ts +10 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +9 -0
- package/dist/ui.d.ts +27 -0
- package/dist/ui.d.ts.map +1 -0
- package/dist/ui.js +26 -0
- package/package.json +181 -0
- package/src/styles.css +12 -0
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
export const invoiceNumberSeriesPage = {
|
|
2
|
+
title: "Serii Numere Facturi",
|
|
3
|
+
description: "Configureaza numerotarea automata pentru facturi, proforme si note de credit.",
|
|
4
|
+
actions: {
|
|
5
|
+
create: "Serie noua",
|
|
6
|
+
},
|
|
7
|
+
columns: {
|
|
8
|
+
code: "Cod",
|
|
9
|
+
name: "Nume",
|
|
10
|
+
prefix: "Prefix",
|
|
11
|
+
current: "Curent",
|
|
12
|
+
reset: "Resetare",
|
|
13
|
+
scope: "Tip",
|
|
14
|
+
default: "Implicit",
|
|
15
|
+
status: "Status",
|
|
16
|
+
external: "Extern",
|
|
17
|
+
},
|
|
18
|
+
filters: {
|
|
19
|
+
scopeLabel: "Tip",
|
|
20
|
+
scopeAll: "Toate tipurile",
|
|
21
|
+
activeLabel: "Status",
|
|
22
|
+
activeAll: "Toate statusurile",
|
|
23
|
+
activeOnly: "Active",
|
|
24
|
+
inactiveOnly: "Inactive",
|
|
25
|
+
},
|
|
26
|
+
scopeLabels: {
|
|
27
|
+
invoice: "Factura",
|
|
28
|
+
proforma: "Proforma",
|
|
29
|
+
credit_note: "Nota de credit",
|
|
30
|
+
},
|
|
31
|
+
resetStrategyLabels: {
|
|
32
|
+
never: "Niciodata",
|
|
33
|
+
annual: "Anual",
|
|
34
|
+
monthly: "Lunar",
|
|
35
|
+
},
|
|
36
|
+
active: "Activa",
|
|
37
|
+
inactive: "Inactiva",
|
|
38
|
+
default: "Implicita",
|
|
39
|
+
notDefault: "Nu",
|
|
40
|
+
noExternalProvider: "-",
|
|
41
|
+
empty: "Nu exista serii de numere pentru facturi.",
|
|
42
|
+
loadFailed: "Incarcarea seriilor de numere a esuat.",
|
|
43
|
+
deleteConfirm: 'Stergi seria de numere "{name}"?',
|
|
44
|
+
};
|
|
45
|
+
export const invoiceNumberSeriesDialog = {
|
|
46
|
+
titleNew: "Serie numere factura noua",
|
|
47
|
+
titleEdit: "Editeaza serie numere factura",
|
|
48
|
+
fields: {
|
|
49
|
+
code: "Cod",
|
|
50
|
+
name: "Nume",
|
|
51
|
+
prefix: "Prefix",
|
|
52
|
+
separator: "Separator",
|
|
53
|
+
padLength: "Lungime completare",
|
|
54
|
+
currentSequence: "Secventa curenta",
|
|
55
|
+
resetStrategy: "Strategie resetare",
|
|
56
|
+
scope: "Tip",
|
|
57
|
+
isDefault: "Serie implicita pentru acest tip",
|
|
58
|
+
externalProvider: "Furnizor extern",
|
|
59
|
+
externalConfigKey: "Cheie configurare externa",
|
|
60
|
+
active: "Activa",
|
|
61
|
+
},
|
|
62
|
+
placeholders: {
|
|
63
|
+
code: "factura-principala",
|
|
64
|
+
name: "Seria implicita pentru facturi",
|
|
65
|
+
prefix: "INV",
|
|
66
|
+
separator: "-",
|
|
67
|
+
externalProvider: "smartbill",
|
|
68
|
+
externalConfigKey: "implicit",
|
|
69
|
+
},
|
|
70
|
+
help: {
|
|
71
|
+
previewLabel: "Previzualizare",
|
|
72
|
+
previewSample: "Urmatorul numar alocat va folosi acest format.",
|
|
73
|
+
default: "Seriile implicite active sunt folosite cand nu este ceruta o serie anume.",
|
|
74
|
+
external: "Lasa gol pentru numere alocate intern.",
|
|
75
|
+
},
|
|
76
|
+
actions: {
|
|
77
|
+
create: "Creeaza serie",
|
|
78
|
+
},
|
|
79
|
+
validation: {
|
|
80
|
+
codeRequired: "Codul este obligatoriu",
|
|
81
|
+
nameRequired: "Numele este obligatoriu",
|
|
82
|
+
padLengthInvalid: "Lungimea trebuie sa fie intre 0 si 20",
|
|
83
|
+
currentSequenceInvalid: "Secventa curenta trebuie sa fie 0 sau mai mare",
|
|
84
|
+
},
|
|
85
|
+
};
|
|
86
|
+
export const paymentsPage = {
|
|
87
|
+
title: "Plati",
|
|
88
|
+
description: "Toate platile clientilor si furnizorilor intr-un singur loc.",
|
|
89
|
+
searchPlaceholder: "Cauta dupa numar de referinta...",
|
|
90
|
+
actions: {
|
|
91
|
+
recordPayment: "Inregistreaza plata",
|
|
92
|
+
},
|
|
93
|
+
kindLabels: {
|
|
94
|
+
customer: "Client",
|
|
95
|
+
supplier: "Furnizor",
|
|
96
|
+
},
|
|
97
|
+
filters: {
|
|
98
|
+
button: "Filtre",
|
|
99
|
+
kindLabel: "Tip",
|
|
100
|
+
kindAll: "Toate tipurile",
|
|
101
|
+
statusLabel: "Status",
|
|
102
|
+
statusAll: "Toate statusurile",
|
|
103
|
+
methodLabel: "Metoda de plata",
|
|
104
|
+
methodAll: "Toate metodele",
|
|
105
|
+
supplierLabel: "Furnizor",
|
|
106
|
+
supplierAny: "Orice furnizor",
|
|
107
|
+
supplierEmpty: "Niciun furnizor gasit.",
|
|
108
|
+
currencyLabel: "Moneda",
|
|
109
|
+
currencyAny: "Orice moneda",
|
|
110
|
+
paymentDateLabel: "Data platii",
|
|
111
|
+
dateAny: "Orice data",
|
|
112
|
+
clear: "Sterge filtre",
|
|
113
|
+
},
|
|
114
|
+
columns: {
|
|
115
|
+
kind: "Tip",
|
|
116
|
+
reference: "Referinta",
|
|
117
|
+
party: "Parte",
|
|
118
|
+
amount: "Suma",
|
|
119
|
+
status: "Status",
|
|
120
|
+
date: "Data",
|
|
121
|
+
method: "Metoda de plata",
|
|
122
|
+
},
|
|
123
|
+
noValue: "-",
|
|
124
|
+
empty: "Nu au fost gasite inregistrari.",
|
|
125
|
+
loadFailed: "Incarcarea inregistrarilor a esuat.",
|
|
126
|
+
pagination: {
|
|
127
|
+
showing: "Afisare {count} din {total}",
|
|
128
|
+
page: "Pagina {page} / {pageCount}",
|
|
129
|
+
previous: "Anterior",
|
|
130
|
+
next: "Urmator",
|
|
131
|
+
},
|
|
132
|
+
};
|
|
133
|
+
export const paymentDetailPage = {
|
|
134
|
+
actions: {
|
|
135
|
+
back: "Inapoi la plati",
|
|
136
|
+
viewInvoice: "Vezi factura",
|
|
137
|
+
viewBooking: "Vezi rezervarea",
|
|
138
|
+
viewPerson: "Vezi persoana",
|
|
139
|
+
viewOrganization: "Vezi organizatia",
|
|
140
|
+
viewSupplier: "Vezi furnizorul",
|
|
141
|
+
edit: "Editeaza",
|
|
142
|
+
delete: "Sterge",
|
|
143
|
+
deleteTitle: "Stergi aceasta plata?",
|
|
144
|
+
deleteDescription: "Plata va fi stearsa definitiv si soldul asociat va fi recalculat.",
|
|
145
|
+
},
|
|
146
|
+
titles: {
|
|
147
|
+
summary: "Rezumat",
|
|
148
|
+
links: "Inregistrari asociate",
|
|
149
|
+
metadata: "Metadate",
|
|
150
|
+
},
|
|
151
|
+
fields: {
|
|
152
|
+
amount: "Suma",
|
|
153
|
+
baseAmount: "Suma de baza",
|
|
154
|
+
fxRate: "Curs valutar",
|
|
155
|
+
status: "Status",
|
|
156
|
+
method: "Metoda de plata",
|
|
157
|
+
date: "Data platii",
|
|
158
|
+
reference: "Referinta",
|
|
159
|
+
notes: "Note",
|
|
160
|
+
kind: "Tip",
|
|
161
|
+
paidBy: "Platit de",
|
|
162
|
+
paidTo: "Platit catre",
|
|
163
|
+
organization: "Organizatie",
|
|
164
|
+
invoice: "Factura",
|
|
165
|
+
booking: "Rezervare",
|
|
166
|
+
createdAt: "Creat",
|
|
167
|
+
updatedAt: "Actualizat",
|
|
168
|
+
},
|
|
169
|
+
states: {
|
|
170
|
+
loading: "Se incarca plata...",
|
|
171
|
+
loadFailed: "Plata nu a putut fi incarcata.",
|
|
172
|
+
notFound: "Plata nu a fost gasita.",
|
|
173
|
+
noValue: "-",
|
|
174
|
+
},
|
|
175
|
+
};
|
|
176
|
+
export const paymentPolicy = {
|
|
177
|
+
form: {
|
|
178
|
+
inherit: {
|
|
179
|
+
label: "Mosteneste de la parinte",
|
|
180
|
+
help: "Foloseste politica mai generala. Dezactiveaza pentru a seta o politica explicita aici.",
|
|
181
|
+
tooltipLabel: "Explica mostenirea",
|
|
182
|
+
},
|
|
183
|
+
depositKind: {
|
|
184
|
+
label: "Tip avans",
|
|
185
|
+
options: {
|
|
186
|
+
none: "Fara",
|
|
187
|
+
percent: "Procent din total",
|
|
188
|
+
fixed_cents: "Suma fixa",
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
depositValue: {
|
|
192
|
+
percentLabel: "Procent avans",
|
|
193
|
+
fixedLabel: "Suma avans",
|
|
194
|
+
},
|
|
195
|
+
depositHints: {
|
|
196
|
+
none: "Clientul plateste suma completa in avans.",
|
|
197
|
+
percent: "Foloseste un procent intreg intre 0 si 100.",
|
|
198
|
+
fixed_cents: "Limitat la totalul rezervarii cand rezervarea este mai mica decat aceasta suma.",
|
|
199
|
+
},
|
|
200
|
+
days: {
|
|
201
|
+
minDaysLabel: "Fereastra avans",
|
|
202
|
+
minDaysHelp: "Daca plecarea este mai aproape decat acest prag, rezervarea cere plata completa in avans.",
|
|
203
|
+
balanceDaysLabel: "Scadenta sold",
|
|
204
|
+
balanceDaysHelp: "Cu cate zile inainte de plecare este scadent soldul ramas.",
|
|
205
|
+
graceDaysLabel: "Perioada minima",
|
|
206
|
+
graceDaysHelp: "Numarul minim de zile de acum pana cand soldul poate fi scadent, chiar pentru plecari apropiate.",
|
|
207
|
+
tooltipLabel: "Arata ajutorul campului",
|
|
208
|
+
suffix: "zile",
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
preview: {
|
|
212
|
+
inheriting: "Se mosteneste de la parinte - fara previzualizare pe acest nivel.",
|
|
213
|
+
sample: "Exemplu: rezervare de {amount}, plecare in {days} zile",
|
|
214
|
+
scheduleTypes: {
|
|
215
|
+
deposit: "Avans",
|
|
216
|
+
balance: "Sold",
|
|
217
|
+
full: "Plata completa",
|
|
218
|
+
},
|
|
219
|
+
due: "scadent {date}",
|
|
220
|
+
},
|
|
221
|
+
supplierCard: {
|
|
222
|
+
title: "Politica de plata a clientului",
|
|
223
|
+
description: "Cand este setata, rezervarile externe catre acest furnizor mostenesc acesti termeni in locul politicii implicite a operatorului. Lasati mostenirea pentru a folosi politica generala a platformei.",
|
|
224
|
+
missingCurrency: "Setati mai intai moneda implicita a furnizorului inainte de a defini o politica de plata; sumele trebuie exprimate intr-o moneda cunoscuta.",
|
|
225
|
+
save: "Salveaza politica",
|
|
226
|
+
savedToast: "Politica de plata a clientului a fost salvata",
|
|
227
|
+
saveFailed: "Politica nu a putut fi salvata",
|
|
228
|
+
},
|
|
229
|
+
};
|
|
230
|
+
export const taxesPage = {
|
|
231
|
+
title: "Regimuri si clase de taxe",
|
|
232
|
+
description: "Administreaza clasele de taxe si regimul fiscal implicit folosit pentru calcul TVA.",
|
|
233
|
+
addTax: "Adauga clasa de taxe",
|
|
234
|
+
empty: "Nu exista clase de taxe momentan. Seed sau creeaza clase precum Normala, Redusa si Art. 311.",
|
|
235
|
+
inactive: "Inactiv",
|
|
236
|
+
edit: "Editeaza",
|
|
237
|
+
delete: "Sterge",
|
|
238
|
+
deleteConfirm: "Stergi aceasta clasa de taxe?",
|
|
239
|
+
editSheetTitle: "Editeaza clasa de taxe",
|
|
240
|
+
newSheetTitle: "Clasa de taxe noua",
|
|
241
|
+
taxClassBadge: "Clasa de taxe",
|
|
242
|
+
defaultRegimeLabel: "Regim implicit",
|
|
243
|
+
regimeOverridesLabel: "Suprascrieri",
|
|
244
|
+
regimeOverrideCount: "{count} suprascrieri",
|
|
245
|
+
taxClassSectionTitle: "Clasa de taxe",
|
|
246
|
+
taxClassSectionDescription: "Clasificarea selectabila salvata pe produse si linii de rezervare.",
|
|
247
|
+
defaultRegimeSectionTitle: "Regim fiscal implicit",
|
|
248
|
+
defaultRegimeSectionDescription: "Regula de calcul TVA/taxe legata prin tax_classes.default_regime_id.",
|
|
249
|
+
regimeOverridesSectionTitle: "Suprascrieri de regim",
|
|
250
|
+
regimeOverridesSectionDescription: "Intrari optionale tax_classes.lines pentru baza, addon, cazare sau toate liniile.",
|
|
251
|
+
addRegimeOverride: "Adauga suprascriere",
|
|
252
|
+
removeRegimeOverride: "Sterge suprascrierea",
|
|
253
|
+
noRegimeOverrides: "Nu exista suprascrieri de regim. Clasa foloseste regimul implicit.",
|
|
254
|
+
appliesToLabel: "Se aplica la",
|
|
255
|
+
taxRegimeLabel: "Regim fiscal",
|
|
256
|
+
appliesToBase: "Baza",
|
|
257
|
+
appliesToAddon: "Addon",
|
|
258
|
+
appliesToAccommodation: "Cazare",
|
|
259
|
+
appliesToAll: "Toate",
|
|
260
|
+
taxClassLabelLabel: "Eticheta clasei de taxe",
|
|
261
|
+
taxClassLabelPlaceholder: "Normala 21",
|
|
262
|
+
taxClassCodeLabel: "Cod clasa de taxe",
|
|
263
|
+
taxClassCodePlaceholder: "normala",
|
|
264
|
+
taxClassDescriptionLabel: "Descriere clasa de taxe",
|
|
265
|
+
taxClassDescriptionPlaceholder: "Descriere optionala pentru clasa de taxe...",
|
|
266
|
+
regimeNameLabel: "Nume regim",
|
|
267
|
+
regimeNamePlaceholder: "Normala",
|
|
268
|
+
regimeCodeLabel: "Cod regim",
|
|
269
|
+
rateLabel: "Cota regim %",
|
|
270
|
+
jurisdictionLabel: "Jurisdictie",
|
|
271
|
+
legalReferenceLabel: "Referinta legala",
|
|
272
|
+
legalReferencePlaceholder: "Referinta legala optionala",
|
|
273
|
+
regimeDescriptionLabel: "Descriere regim",
|
|
274
|
+
regimeDescriptionPlaceholder: "Descriere optionala pentru regimul fiscal...",
|
|
275
|
+
activeLabel: "Activ",
|
|
276
|
+
cancel: "Anuleaza",
|
|
277
|
+
saveChanges: "Salveaza modificarile",
|
|
278
|
+
createTax: "Creeaza clasa de taxe",
|
|
279
|
+
validationNameRequired: "Eticheta clasei de taxe este obligatorie",
|
|
280
|
+
validationRateInvalid: "Cota trebuie sa fie un numar pozitiv",
|
|
281
|
+
saveFailed: "Clasa de taxe nu a putut fi salvata",
|
|
282
|
+
policyTitle: "Profile de politica fiscala",
|
|
283
|
+
policyDescription: "Administreaza reguli fiscale specifice implementarii care aleg automat regimurile fiscale.",
|
|
284
|
+
addPolicyProfile: "Adauga profil",
|
|
285
|
+
addPolicyRule: "Adauga regula",
|
|
286
|
+
policyEmpty: "Nu exista profile de politica fiscala momentan.",
|
|
287
|
+
policyRulesEmpty: "Nu exista reguli. Adauga reguli ordonate pentru acest profil.",
|
|
288
|
+
deletePolicyProfileConfirm: "Stergi acest profil de politica fiscala si regulile lui?",
|
|
289
|
+
deletePolicyRuleConfirm: "Stergi aceasta regula fiscala?",
|
|
290
|
+
editPolicyProfileSheetTitle: "Editeaza profilul de politica fiscala",
|
|
291
|
+
newPolicyProfileSheetTitle: "Profil de politica fiscala nou",
|
|
292
|
+
editPolicyRuleSheetTitle: "Editeaza regula fiscala",
|
|
293
|
+
newPolicyRuleSheetTitle: "Regula fiscala noua",
|
|
294
|
+
policyProfileNameLabel: "Nume profil",
|
|
295
|
+
policyProfileNamePlaceholder: "Operator turistic Romania",
|
|
296
|
+
policyProfileCodeLabel: "Cod profil",
|
|
297
|
+
policyProfileCodePlaceholder: "ro-travel-operator",
|
|
298
|
+
policyProfileDescriptionLabel: "Descriere profil",
|
|
299
|
+
policyProfileDescriptionPlaceholder: "Descriere optionala pentru profil...",
|
|
300
|
+
policyPriorityLabel: "Prioritate",
|
|
301
|
+
policySideLabel: "Parte",
|
|
302
|
+
policyRuleNameLabel: "Nume regula",
|
|
303
|
+
policyRuleNamePlaceholder: "Cazare in Romania",
|
|
304
|
+
policyConditionLabel: "Conditie",
|
|
305
|
+
policyConditionSectionTitle: "Conditie",
|
|
306
|
+
policyConditionSectionDescription: "Alege cand se aplica aceasta regula. Regulile sunt evaluate dupa prioritate.",
|
|
307
|
+
policyConditionModeLabel: "Potrivire",
|
|
308
|
+
policyConditionAlways: "Intotdeauna",
|
|
309
|
+
policyConditionAlwaysDescription: "Aceasta regula se potriveste intotdeauna si este folosita de obicei ca regula implicita finala.",
|
|
310
|
+
policyConditionModeAll: "Toate conditiile",
|
|
311
|
+
policyConditionModeAny: "Oricare conditie",
|
|
312
|
+
addPolicyCondition: "Adauga conditie",
|
|
313
|
+
removePolicyCondition: "Sterge conditia",
|
|
314
|
+
policyFactLabel: "Fapt",
|
|
315
|
+
policyFactHasAccommodation: "Are cazare",
|
|
316
|
+
policyFactAccommodationCountries: "Tari cazare",
|
|
317
|
+
policyOperatorLabel: "Operator",
|
|
318
|
+
policyOperatorEquals: "este",
|
|
319
|
+
policyOperatorContains: "contine",
|
|
320
|
+
policyValueLabel: "Valoare",
|
|
321
|
+
policyValueYes: "Da",
|
|
322
|
+
policyValueNo: "Nu",
|
|
323
|
+
policyActionsLabel: "Actiuni",
|
|
324
|
+
policySideSell: "Vanzare",
|
|
325
|
+
policySideBuy: "Achizitie",
|
|
326
|
+
createPolicyProfile: "Creeaza profilul",
|
|
327
|
+
createPolicyRule: "Creeaza regula",
|
|
328
|
+
validationPolicyProfileNameRequired: "Numele profilului este obligatoriu",
|
|
329
|
+
validationPolicyProfileRequired: "Profilul de politica fiscala este obligatoriu",
|
|
330
|
+
validationPolicyRuleNameRequired: "Numele regulii este obligatoriu",
|
|
331
|
+
validationPolicyRuleRegimeRequired: "Regimul fiscal este obligatoriu",
|
|
332
|
+
validationPolicyRulePriorityInvalid: "Prioritatea trebuie sa fie un intreg pozitiv",
|
|
333
|
+
validationPolicyRuleConditionInvalid: "Conditia trebuie sa includa cel putin un rand valid. Tarile trebuie sa fie coduri ISO din doua litere.",
|
|
334
|
+
savePolicyProfileFailed: "Profilul de politica fiscala nu a putut fi salvat",
|
|
335
|
+
savePolicyRuleFailed: "Regula fiscala nu a putut fi salvata",
|
|
336
|
+
};
|
|
337
|
+
export const recordBookingPaymentDialog = {
|
|
338
|
+
title: "Inregistreaza plata",
|
|
339
|
+
editTitle: "Editeaza plata",
|
|
340
|
+
description: "Inregistreaza o plata deja incasata (transfer bancar, numerar, cec, plata cu cardul efectuata manual etc.). Pentru a trimite clientului un link de plata cu cardul sau prin transfer bancar, foloseste {generateLink}.",
|
|
341
|
+
generateLinkLabel: "Genereaza link de plata",
|
|
342
|
+
fields: {
|
|
343
|
+
invoice: "Factura",
|
|
344
|
+
amountCents: "Suma",
|
|
345
|
+
currency: "Moneda platii",
|
|
346
|
+
fxRate: "Curs (1 {invoiceCurrency} = ? {paymentCurrency})",
|
|
347
|
+
paymentDate: "Data platii",
|
|
348
|
+
paymentMethod: "Metoda",
|
|
349
|
+
status: "Status",
|
|
350
|
+
referenceNumber: "Referinta",
|
|
351
|
+
notes: "Note",
|
|
352
|
+
convertProformaAfter: "Converteste proforma in factura",
|
|
353
|
+
convertProformaAfterHint: "Emite factura finala cu aceleasi totaluri si linii, legata de aceasta proforma.",
|
|
354
|
+
},
|
|
355
|
+
placeholders: {
|
|
356
|
+
invoice: "Selecteaza factura",
|
|
357
|
+
currency: "Selecteaza moneda...",
|
|
358
|
+
fxRate: "1 {invoiceCurrency} = ? {paymentCurrency}",
|
|
359
|
+
referenceNumber: "Referinta bancara, numar de chitanta etc.",
|
|
360
|
+
},
|
|
361
|
+
fx: {
|
|
362
|
+
title: "Decontare in alta moneda",
|
|
363
|
+
help: "Introdu suma incasata; valoarea pe factura se calculeaza automat.",
|
|
364
|
+
loadingRate: "Se incarca cursul valutar...",
|
|
365
|
+
summary: "{amount} {paymentCurrency} ≈ {baseAmount} {invoiceCurrency} · 1 {invoiceCurrency} = {rate} {paymentCurrency}",
|
|
366
|
+
commissionNote: "Curs BNR {rawRate} + {commission}% comision valutar",
|
|
367
|
+
source: "Curs BNR",
|
|
368
|
+
rateUnavailable: "Cursul {invoiceCurrency}/{paymentCurrency} indisponibil — introdu-l manual.",
|
|
369
|
+
override: "Suprascrie cursul",
|
|
370
|
+
useAuto: "Foloseste cursul automat",
|
|
371
|
+
},
|
|
372
|
+
invoiceOption: "{number} — {status} — {balance} {currency} de incasat",
|
|
373
|
+
invoiceMeta: "Total {total} {currency} • platit {paid} {currency} • de incasat {due} {currency}",
|
|
374
|
+
loadingInvoices: "Se incarca facturile…",
|
|
375
|
+
noInvoices: "Nu exista facturi neachitate pe aceasta rezervare.",
|
|
376
|
+
actions: {
|
|
377
|
+
record: "Inregistreaza plata",
|
|
378
|
+
save: "Salveaza modificarile",
|
|
379
|
+
},
|
|
380
|
+
validation: {
|
|
381
|
+
invoiceRequired: "Selecteaza o factura pentru aceasta plata.",
|
|
382
|
+
amountMinimum: "Suma trebuie sa fie mai mare decat zero.",
|
|
383
|
+
baseAmountRequired: "Introdu suma care se aplica in moneda facturii.",
|
|
384
|
+
recordFailed: "Inregistrarea platii a esuat.",
|
|
385
|
+
},
|
|
386
|
+
};
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export declare const profitability: {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
loadFailed: string;
|
|
5
|
+
empty: string;
|
|
6
|
+
noDate: string;
|
|
7
|
+
noProduct: string;
|
|
8
|
+
exportCsv: string;
|
|
9
|
+
unconvertibleNote: string;
|
|
10
|
+
filters: {
|
|
11
|
+
currency: string;
|
|
12
|
+
from: string;
|
|
13
|
+
to: string;
|
|
14
|
+
baseCurrency: string;
|
|
15
|
+
product: string;
|
|
16
|
+
departure: string;
|
|
17
|
+
allProducts: string;
|
|
18
|
+
allDepartures: string;
|
|
19
|
+
};
|
|
20
|
+
kpis: {
|
|
21
|
+
revenue: string;
|
|
22
|
+
actualCost: string;
|
|
23
|
+
profit: string;
|
|
24
|
+
margin: string;
|
|
25
|
+
plannedCost: string;
|
|
26
|
+
variance: string;
|
|
27
|
+
unattributed: string;
|
|
28
|
+
};
|
|
29
|
+
charts: {
|
|
30
|
+
departurePnl: string;
|
|
31
|
+
costByServiceType: string;
|
|
32
|
+
revenue: string;
|
|
33
|
+
actualCost: string;
|
|
34
|
+
profit: string;
|
|
35
|
+
};
|
|
36
|
+
serviceTypeLabels: {
|
|
37
|
+
transport: string;
|
|
38
|
+
flight: string;
|
|
39
|
+
accommodation: string;
|
|
40
|
+
guide: string;
|
|
41
|
+
meal: string;
|
|
42
|
+
experience: string;
|
|
43
|
+
insurance: string;
|
|
44
|
+
other: string;
|
|
45
|
+
};
|
|
46
|
+
departures: {
|
|
47
|
+
title: string;
|
|
48
|
+
none: string;
|
|
49
|
+
columns: {
|
|
50
|
+
departure: string;
|
|
51
|
+
date: string;
|
|
52
|
+
product: string;
|
|
53
|
+
revenue: string;
|
|
54
|
+
actualCost: string;
|
|
55
|
+
plannedCost: string;
|
|
56
|
+
profit: string;
|
|
57
|
+
margin: string;
|
|
58
|
+
variance: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
products: {
|
|
62
|
+
title: string;
|
|
63
|
+
none: string;
|
|
64
|
+
columns: {
|
|
65
|
+
product: string;
|
|
66
|
+
departures: string;
|
|
67
|
+
revenue: string;
|
|
68
|
+
actualCost: string;
|
|
69
|
+
plannedCost: string;
|
|
70
|
+
profit: string;
|
|
71
|
+
margin: string;
|
|
72
|
+
variance: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
travelers: {
|
|
76
|
+
title: string;
|
|
77
|
+
none: string;
|
|
78
|
+
loadFailed: string;
|
|
79
|
+
columns: {
|
|
80
|
+
traveler: string;
|
|
81
|
+
booking: string;
|
|
82
|
+
revenue: string;
|
|
83
|
+
actualCost: string;
|
|
84
|
+
plannedCost: string;
|
|
85
|
+
profit: string;
|
|
86
|
+
margin: string;
|
|
87
|
+
variance: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
share: {
|
|
91
|
+
button: string;
|
|
92
|
+
title: string;
|
|
93
|
+
description: string;
|
|
94
|
+
from: string;
|
|
95
|
+
to: string;
|
|
96
|
+
baseCurrency: string;
|
|
97
|
+
ttlDays: string;
|
|
98
|
+
create: string;
|
|
99
|
+
creating: string;
|
|
100
|
+
active: string;
|
|
101
|
+
none: string;
|
|
102
|
+
copy: string;
|
|
103
|
+
copied: string;
|
|
104
|
+
revoke: string;
|
|
105
|
+
allTime: string;
|
|
106
|
+
expires: string;
|
|
107
|
+
opened: string;
|
|
108
|
+
neverOpened: string;
|
|
109
|
+
};
|
|
110
|
+
portal: {
|
|
111
|
+
title: string;
|
|
112
|
+
subtitle: string;
|
|
113
|
+
language: string;
|
|
114
|
+
allTime: string;
|
|
115
|
+
loadFailed: string;
|
|
116
|
+
gone: string;
|
|
117
|
+
invoices: string;
|
|
118
|
+
invoicesNone: string;
|
|
119
|
+
download: string;
|
|
120
|
+
downloadAll: string;
|
|
121
|
+
noFile: string;
|
|
122
|
+
kindClient: string;
|
|
123
|
+
kindSupplier: string;
|
|
124
|
+
columns: {
|
|
125
|
+
type: string;
|
|
126
|
+
invoice: string;
|
|
127
|
+
status: string;
|
|
128
|
+
issueDate: string;
|
|
129
|
+
total: string;
|
|
130
|
+
balanceDue: string;
|
|
131
|
+
attachments: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
export declare const costCategories: {
|
|
136
|
+
title: string;
|
|
137
|
+
description: string;
|
|
138
|
+
add: string;
|
|
139
|
+
adding: string;
|
|
140
|
+
namePlaceholder: string;
|
|
141
|
+
empty: string;
|
|
142
|
+
archive: string;
|
|
143
|
+
restore: string;
|
|
144
|
+
archivedBadge: string;
|
|
145
|
+
showArchived: string;
|
|
146
|
+
};
|
|
147
|
+
//# sourceMappingURL=profitability.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profitability.d.ts","sourceRoot":"","sources":["../../../src/i18n/ro/profitability.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsIzB,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;;;;CAY1B,CAAA"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export const profitability = {
|
|
2
|
+
title: "Profitabilitate",
|
|
3
|
+
description: "Venituri, costuri si marja pe plecare si produs.",
|
|
4
|
+
loadFailed: "Incarcarea profitabilitatii a esuat.",
|
|
5
|
+
empty: "Nu exista date de profitabilitate pentru aceasta perioada.",
|
|
6
|
+
noDate: "Fara data",
|
|
7
|
+
noProduct: "Fara produs",
|
|
8
|
+
exportCsv: "Exporta CSV",
|
|
9
|
+
unconvertibleNote: "Fara curs valutar pentru {currencies} — excluse din total.",
|
|
10
|
+
filters: {
|
|
11
|
+
currency: "Moneda",
|
|
12
|
+
from: "De la",
|
|
13
|
+
to: "Pana la",
|
|
14
|
+
baseCurrency: "Moneda de baza",
|
|
15
|
+
product: "Produs",
|
|
16
|
+
departure: "Plecare",
|
|
17
|
+
allProducts: "Toate produsele",
|
|
18
|
+
allDepartures: "Toate plecarile",
|
|
19
|
+
},
|
|
20
|
+
kpis: {
|
|
21
|
+
revenue: "Venituri",
|
|
22
|
+
actualCost: "Cost real",
|
|
23
|
+
profit: "Profit",
|
|
24
|
+
margin: "Marja",
|
|
25
|
+
plannedCost: "Cost planificat",
|
|
26
|
+
variance: "Diferenta",
|
|
27
|
+
unattributed: "Cost neatribuit",
|
|
28
|
+
},
|
|
29
|
+
charts: {
|
|
30
|
+
departurePnl: "P&L pe plecare",
|
|
31
|
+
costByServiceType: "Cost pe categorie",
|
|
32
|
+
revenue: "Venituri",
|
|
33
|
+
actualCost: "Cost real",
|
|
34
|
+
profit: "Profit",
|
|
35
|
+
},
|
|
36
|
+
serviceTypeLabels: {
|
|
37
|
+
transport: "Transport",
|
|
38
|
+
flight: "Zbor",
|
|
39
|
+
accommodation: "Cazare",
|
|
40
|
+
guide: "Ghid",
|
|
41
|
+
meal: "Masa",
|
|
42
|
+
experience: "Experienta",
|
|
43
|
+
insurance: "Asigurare",
|
|
44
|
+
other: "Altele",
|
|
45
|
+
},
|
|
46
|
+
departures: {
|
|
47
|
+
title: "Pe plecare",
|
|
48
|
+
none: "Nicio plecare cu activitate in aceasta perioada.",
|
|
49
|
+
columns: {
|
|
50
|
+
departure: "Plecare",
|
|
51
|
+
date: "Data",
|
|
52
|
+
product: "Produs",
|
|
53
|
+
revenue: "Venituri",
|
|
54
|
+
actualCost: "Cost real",
|
|
55
|
+
plannedCost: "Cost planificat",
|
|
56
|
+
profit: "Profit",
|
|
57
|
+
margin: "Marja",
|
|
58
|
+
variance: "Diferenta",
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
products: {
|
|
62
|
+
title: "Pe produs",
|
|
63
|
+
none: "Niciun produs cu activitate in aceasta perioada.",
|
|
64
|
+
columns: {
|
|
65
|
+
product: "Produs",
|
|
66
|
+
departures: "Plecari",
|
|
67
|
+
revenue: "Venituri",
|
|
68
|
+
actualCost: "Cost real",
|
|
69
|
+
plannedCost: "Cost planificat",
|
|
70
|
+
profit: "Profit",
|
|
71
|
+
margin: "Marja",
|
|
72
|
+
variance: "Diferenta",
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
travelers: {
|
|
76
|
+
title: "Pasageri — {departure}",
|
|
77
|
+
none: "Niciun pasager pe aceasta plecare.",
|
|
78
|
+
loadFailed: "Incarcarea pasagerilor a esuat.",
|
|
79
|
+
columns: {
|
|
80
|
+
traveler: "Pasager",
|
|
81
|
+
booking: "Rezervare",
|
|
82
|
+
revenue: "Venituri",
|
|
83
|
+
actualCost: "Cost real",
|
|
84
|
+
plannedCost: "Cost planificat",
|
|
85
|
+
profit: "Profit",
|
|
86
|
+
margin: "Marja",
|
|
87
|
+
variance: "Diferenta",
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
share: {
|
|
91
|
+
button: "Trimite contabilului",
|
|
92
|
+
title: "Trimite contabilului",
|
|
93
|
+
description: "Creeaza un link read-only catre situatia financiara pe o perioada. Contabilul il deschide fara cont; il poti revoca oricand.",
|
|
94
|
+
from: "De la",
|
|
95
|
+
to: "Pana la",
|
|
96
|
+
baseCurrency: "Moneda de baza",
|
|
97
|
+
ttlDays: "Expira in (zile)",
|
|
98
|
+
create: "Creeaza link",
|
|
99
|
+
creating: "Se creeaza…",
|
|
100
|
+
active: "Linkuri active",
|
|
101
|
+
none: "Niciun link activ.",
|
|
102
|
+
copy: "Copiaza link",
|
|
103
|
+
copied: "Copiat",
|
|
104
|
+
revoke: "Revoca",
|
|
105
|
+
allTime: "Tot timpul",
|
|
106
|
+
expires: "Expira {date}",
|
|
107
|
+
opened: "deschis de {count} ori",
|
|
108
|
+
neverOpened: "nedeschis inca",
|
|
109
|
+
},
|
|
110
|
+
portal: {
|
|
111
|
+
title: "Situatie financiara",
|
|
112
|
+
subtitle: "Venituri, costuri si marja pe plecare si produs.",
|
|
113
|
+
language: "Limba",
|
|
114
|
+
allTime: "Tot timpul",
|
|
115
|
+
loadFailed: "Incarcarea situatiei financiare a esuat.",
|
|
116
|
+
gone: "Acest link a expirat sau a fost revocat.",
|
|
117
|
+
invoices: "Facturi",
|
|
118
|
+
invoicesNone: "Nicio factura in aceasta perioada.",
|
|
119
|
+
download: "Descarca",
|
|
120
|
+
downloadAll: "Descarca toate (ZIP)",
|
|
121
|
+
noFile: "Fara fisier",
|
|
122
|
+
kindClient: "Client",
|
|
123
|
+
kindSupplier: "Furnizor",
|
|
124
|
+
columns: {
|
|
125
|
+
type: "Tip",
|
|
126
|
+
invoice: "Factura",
|
|
127
|
+
status: "Status",
|
|
128
|
+
issueDate: "Data emiterii",
|
|
129
|
+
total: "Total",
|
|
130
|
+
balanceDue: "Rest de plata",
|
|
131
|
+
attachments: "Documente",
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
};
|
|
135
|
+
export const costCategories = {
|
|
136
|
+
title: "Categorii de cost",
|
|
137
|
+
description: "Clasifica costurile de la furnizori. Acestea genereaza defalcarea costurilor in profitabilitate.",
|
|
138
|
+
add: "Adauga categorie",
|
|
139
|
+
adding: "Se adauga…",
|
|
140
|
+
namePlaceholder: "Nume categorie",
|
|
141
|
+
empty: "Nicio categorie de cost inca.",
|
|
142
|
+
archive: "Arhiveaza",
|
|
143
|
+
restore: "Restaureaza",
|
|
144
|
+
archivedBadge: "Arhivata",
|
|
145
|
+
showArchived: "Arata arhivate",
|
|
146
|
+
};
|