@spaceinvoices/react-ui 0.1.1 → 0.4.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/cli/dist/index.js +1 -1
- package/package.json +1 -1
- package/registry.json +86 -122
- package/src/components/activities/activity-timeline.tsx +8 -1
- package/src/components/activities/locales/es.ts +30 -0
- package/src/components/activities/locales/fr.ts +30 -0
- package/src/components/activities/locales/hr.ts +30 -0
- package/src/components/activities/locales/it.ts +30 -0
- package/src/components/activities/locales/nl.ts +30 -0
- package/src/components/activities/locales/pl.ts +30 -0
- package/src/components/activities/locales/pt.ts +30 -0
- package/src/components/advance-invoices/advance-invoices.hooks.ts +2 -2
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +21 -7
- package/src/components/advance-invoices/create/locales/es.ts +29 -0
- package/src/components/advance-invoices/create/locales/fr.ts +28 -0
- package/src/components/advance-invoices/create/locales/hr.ts +27 -0
- package/src/components/advance-invoices/create/locales/it.ts +29 -0
- package/src/components/advance-invoices/create/locales/nl.ts +28 -0
- package/src/components/advance-invoices/create/locales/pl.ts +28 -0
- package/src/components/advance-invoices/create/locales/pt.ts +29 -0
- package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +3 -3
- package/src/components/advance-invoices/list/list-table.tsx +20 -3
- package/src/components/advance-invoices/list/locales/de.ts +9 -0
- package/src/components/advance-invoices/list/locales/en.ts +8 -0
- package/src/components/advance-invoices/list/locales/es.ts +41 -0
- package/src/components/advance-invoices/list/locales/fr.ts +41 -0
- package/src/components/advance-invoices/list/locales/hr.ts +41 -0
- package/src/components/advance-invoices/list/locales/it.ts +41 -0
- package/src/components/advance-invoices/list/locales/nl.ts +41 -0
- package/src/components/advance-invoices/list/locales/pl.ts +41 -0
- package/src/components/advance-invoices/list/locales/pt.ts +41 -0
- package/src/components/advance-invoices/list/locales/sl.ts +9 -0
- package/src/components/credit-notes/create/create-credit-note-form.tsx +19 -5
- package/src/components/credit-notes/create/locales/es.ts +68 -0
- package/src/components/credit-notes/create/locales/fr.ts +69 -0
- package/src/components/credit-notes/create/locales/hr.ts +68 -0
- package/src/components/credit-notes/create/locales/it.ts +68 -0
- package/src/components/credit-notes/create/locales/nl.ts +69 -0
- package/src/components/credit-notes/create/locales/pl.ts +68 -0
- package/src/components/credit-notes/create/locales/pt.ts +68 -0
- package/src/components/credit-notes/list/list-table.tsx +25 -8
- package/src/components/credit-notes/list/locales/de.ts +10 -2
- package/src/components/credit-notes/list/locales/en.ts +8 -0
- package/src/components/credit-notes/list/locales/es.ts +41 -0
- package/src/components/credit-notes/list/locales/fr.ts +41 -0
- package/src/components/credit-notes/list/locales/hr.ts +41 -0
- package/src/components/credit-notes/list/locales/it.ts +41 -0
- package/src/components/credit-notes/list/locales/nl.ts +41 -0
- package/src/components/credit-notes/list/locales/pl.ts +41 -0
- package/src/components/credit-notes/list/locales/pt.ts +41 -0
- package/src/components/credit-notes/list/locales/sl.ts +10 -2
- package/src/components/customers/create-customer-form/create-customer-form.tsx +21 -3
- package/src/components/customers/create-customer-form/locales/de.ts +1 -0
- package/src/components/customers/create-customer-form/locales/es.ts +21 -0
- package/src/components/customers/create-customer-form/locales/fr.ts +21 -0
- package/src/components/customers/create-customer-form/locales/hr.ts +21 -0
- package/src/components/customers/create-customer-form/locales/it.ts +21 -0
- package/src/components/customers/create-customer-form/locales/nl.ts +21 -0
- package/src/components/customers/create-customer-form/locales/pl.ts +21 -0
- package/src/components/customers/create-customer-form/locales/pt.ts +21 -0
- package/src/components/customers/create-customer-form/locales/sl.ts +1 -0
- package/src/components/customers/customer-list-table/customer-list-row-actions.tsx +72 -16
- package/src/components/customers/customer-list-table/customer-list-table.tsx +35 -2
- package/src/components/customers/customer-list-table/locales/de.ts +9 -0
- package/src/components/customers/customer-list-table/locales/en.ts +10 -0
- package/src/components/customers/customer-list-table/locales/es.ts +25 -0
- package/src/components/customers/customer-list-table/locales/fr.ts +25 -0
- package/src/components/customers/customer-list-table/locales/hr.ts +25 -0
- package/src/components/customers/customer-list-table/locales/it.ts +25 -0
- package/src/components/customers/customer-list-table/locales/nl.ts +25 -0
- package/src/components/customers/customer-list-table/locales/pl.ts +25 -0
- package/src/components/customers/customer-list-table/locales/pt.ts +25 -0
- package/src/components/customers/customer-list-table/locales/sl.ts +9 -0
- package/src/components/customers/customers.hooks.test.ts +8 -8
- package/src/components/customers/customers.hooks.ts +6 -1
- package/src/components/customers/edit-customer-form/edit-customer-form.tsx +143 -0
- package/src/components/customers/edit-customer-form/locales/de.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/es.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/fr.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/hr.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/it.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/nl.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/pl.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/pt.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/sl.ts +13 -0
- package/src/components/customers/index.ts +1 -0
- package/src/components/dashboard/collection-rate-card/collection-rate-card.tsx +9 -1
- package/src/components/dashboard/collection-rate-card/locales/de.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/es.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/fr.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/hr.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/it.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/nl.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/pl.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/pt.ts +3 -0
- package/src/components/dashboard/invoice-status-chart/invoice-status-chart.tsx +9 -1
- package/src/components/dashboard/invoice-status-chart/locales/de.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/es.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/fr.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/hr.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/it.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/nl.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/pl.ts +9 -0
- package/src/components/dashboard/invoice-status-chart/locales/pt.ts +9 -0
- package/src/components/dashboard/payment-methods-chart/locales/de.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/es.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/fr.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/hr.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/it.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/nl.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/pl.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/pt.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/payment-methods-chart.tsx +9 -1
- package/src/components/dashboard/payment-trend-chart/locales/de.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/es.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/fr.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/hr.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/it.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/nl.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/pl.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/locales/pt.ts +5 -0
- package/src/components/dashboard/payment-trend-chart/payment-trend-chart.tsx +10 -2
- package/src/components/dashboard/revenue-trend-chart/locales/de.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/es.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/fr.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/hr.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/it.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/nl.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/pl.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/locales/pt.ts +5 -0
- package/src/components/dashboard/revenue-trend-chart/revenue-trend-chart.tsx +10 -2
- package/src/components/dashboard/top-customers-chart/locales/de.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/es.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/fr.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/hr.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/it.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/nl.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/pl.ts +5 -0
- package/src/components/dashboard/top-customers-chart/locales/pt.ts +5 -0
- package/src/components/dashboard/top-customers-chart/top-customers-chart.tsx +10 -2
- package/src/components/documents/create/document-add-item-form.tsx +1 -1
- package/src/components/documents/create/form-types.ts +1 -5
- package/src/components/documents/create/mark-as-paid-section.tsx +60 -23
- package/src/components/documents/create/prepare-document-submission.test.ts +2 -2
- package/src/components/documents/create/prepare-document-submission.ts +12 -7
- package/src/components/documents/create/prepare-preview-data.test.ts +1 -1
- package/src/components/documents/documents.hooks.ts +5 -48
- package/src/components/documents/shared/document-preview-display.tsx +12 -1
- package/src/components/documents/view/document-actions-bar.tsx +28 -13
- package/src/components/documents/view/document-activities-list.tsx +166 -0
- package/src/components/documents/view/document-details-card.tsx +14 -7
- package/src/components/documents/view/document-payments-list.tsx +8 -1
- package/src/components/documents/view/index.ts +1 -0
- package/src/components/documents/view/locales/de.ts +32 -0
- package/src/components/documents/view/locales/es.ts +115 -0
- package/src/components/documents/view/locales/fr.ts +115 -0
- package/src/components/documents/view/locales/hr.ts +115 -0
- package/src/components/documents/view/locales/it.ts +115 -0
- package/src/components/documents/view/locales/nl.ts +116 -0
- package/src/components/documents/view/locales/pl.ts +115 -0
- package/src/components/documents/view/locales/pt.ts +115 -0
- package/src/components/documents/view/locales/sl.ts +32 -0
- package/src/components/entities/create-entity-form.tsx +12 -2
- package/src/components/entities/entity-settings-form/entity-settings-form.tsx +18 -0
- package/src/components/entities/entity-settings-form/locales/de.ts +3 -1
- package/src/components/entities/entity-settings-form/locales/es.ts +197 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +196 -0
- package/src/components/entities/entity-settings-form/locales/hr.ts +189 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +195 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +192 -0
- package/src/components/entities/entity-settings-form/locales/pl.ts +193 -0
- package/src/components/entities/entity-settings-form/locales/pt.ts +194 -0
- package/src/components/entities/entity-settings-form/locales/sl.ts +2 -0
- package/src/components/entities/fina-settings-form/fina-settings-form.tsx +461 -0
- package/src/components/entities/fina-settings-form/fina-settings.hooks.ts +215 -0
- package/src/components/entities/fina-settings-form/index.ts +3 -0
- package/src/components/entities/fina-settings-form/locales/de.ts +148 -0
- package/src/components/entities/fina-settings-form/locales/en.ts +145 -0
- package/src/components/entities/fina-settings-form/locales/es.ts +146 -0
- package/src/components/entities/fina-settings-form/locales/fr.ts +145 -0
- package/src/components/entities/fina-settings-form/locales/hr.ts +147 -0
- package/src/components/entities/fina-settings-form/locales/it.ts +147 -0
- package/src/components/entities/fina-settings-form/locales/nl.ts +147 -0
- package/src/components/entities/fina-settings-form/locales/pl.ts +145 -0
- package/src/components/entities/fina-settings-form/locales/pt.ts +147 -0
- package/src/components/entities/fina-settings-form/locales/sl.ts +147 -0
- package/src/components/entities/fina-settings-form/sections/certificate-settings-section.tsx +233 -0
- package/src/components/entities/fina-settings-form/sections/premises-management-section.tsx +363 -0
- package/src/components/entities/fina-settings-form/sections/register-premise-dialog.tsx +395 -0
- package/src/components/entities/furs-settings-form/furs-settings-form.tsx +24 -9
- package/src/components/entities/furs-settings-form/furs-settings.hooks.ts +15 -11
- package/src/components/entities/furs-settings-form/locales/de.ts +54 -88
- package/src/components/entities/furs-settings-form/locales/en.ts +15 -0
- package/src/components/entities/furs-settings-form/locales/es.ts +198 -0
- package/src/components/entities/furs-settings-form/locales/fr.ts +198 -0
- package/src/components/entities/furs-settings-form/locales/hr.ts +197 -0
- package/src/components/entities/furs-settings-form/locales/it.ts +198 -0
- package/src/components/entities/furs-settings-form/locales/nl.ts +197 -0
- package/src/components/entities/furs-settings-form/locales/pl.ts +196 -0
- package/src/components/entities/furs-settings-form/locales/pt.ts +197 -0
- package/src/components/entities/furs-settings-form/locales/sl.ts +16 -0
- package/src/components/entities/furs-settings-form/sections/certificate-settings-section.tsx +19 -4
- package/src/components/entities/furs-settings-form/sections/general-settings-section.tsx +121 -1
- package/src/components/entities/furs-settings-form/sections/register-premise-dialog.tsx +17 -66
- package/src/components/entities/keys.ts +1 -1
- package/src/components/entities/settings/company-settings-form.tsx +28 -0
- package/src/components/entities/settings/pdf-template-selector/locales/es.ts +18 -0
- package/src/components/entities/settings/pdf-template-selector/locales/fr.ts +18 -0
- package/src/components/entities/settings/pdf-template-selector/locales/hr.ts +18 -0
- package/src/components/entities/settings/pdf-template-selector/locales/it.ts +18 -0
- package/src/components/entities/settings/pdf-template-selector/locales/nl.ts +17 -0
- package/src/components/entities/settings/pdf-template-selector/locales/pl.ts +18 -0
- package/src/components/entities/settings/pdf-template-selector/locales/pt.ts +18 -0
- package/src/components/estimates/create/create-estimate-form.tsx +14 -0
- package/src/components/estimates/create/locales/es.ts +57 -0
- package/src/components/estimates/create/locales/fr.ts +58 -0
- package/src/components/estimates/create/locales/hr.ts +57 -0
- package/src/components/estimates/create/locales/it.ts +57 -0
- package/src/components/estimates/create/locales/nl.ts +58 -0
- package/src/components/estimates/create/locales/pl.ts +57 -0
- package/src/components/estimates/create/locales/pt.ts +58 -0
- package/src/components/estimates/create/prepare-estimate-submission.ts +1 -1
- package/src/components/estimates/list/list-table.tsx +20 -3
- package/src/components/estimates/list/locales/de.ts +9 -0
- package/src/components/estimates/list/locales/en.ts +8 -0
- package/src/components/estimates/list/locales/es.ts +32 -0
- package/src/components/estimates/list/locales/fr.ts +32 -0
- package/src/components/estimates/list/locales/hr.ts +32 -0
- package/src/components/estimates/list/locales/it.ts +32 -0
- package/src/components/estimates/list/locales/nl.ts +32 -0
- package/src/components/estimates/list/locales/pl.ts +32 -0
- package/src/components/estimates/list/locales/pt.ts +32 -0
- package/src/components/estimates/list/locales/sl.ts +9 -0
- package/src/components/export/document-export-form.tsx +0 -2
- package/src/components/invoices/create/create-invoice-form.tsx +24 -10
- package/src/components/invoices/create/eslog-validation.test.ts +2 -0
- package/src/components/invoices/create/locales/es.ts +103 -0
- package/src/components/invoices/create/locales/fr.ts +105 -0
- package/src/components/invoices/create/locales/hr.ts +103 -0
- package/src/components/invoices/create/locales/it.ts +105 -0
- package/src/components/invoices/create/locales/nl.ts +104 -0
- package/src/components/invoices/create/locales/pl.ts +104 -0
- package/src/components/invoices/create/locales/pt.ts +105 -0
- package/src/components/invoices/create/prepare-invoice-submission.test.ts +54 -55
- package/src/components/invoices/create/prepare-invoice-submission.ts +3 -3
- package/src/components/invoices/index.ts +1 -1
- package/src/components/invoices/list/list-table.tsx +20 -3
- package/src/components/invoices/list/locales/de.ts +9 -0
- package/src/components/invoices/list/locales/en.ts +8 -0
- package/src/components/invoices/list/locales/es.ts +42 -0
- package/src/components/invoices/list/locales/fr.ts +42 -0
- package/src/components/invoices/list/locales/hr.ts +42 -0
- package/src/components/invoices/list/locales/it.ts +42 -0
- package/src/components/invoices/list/locales/nl.ts +42 -0
- package/src/components/invoices/list/locales/pl.ts +42 -0
- package/src/components/invoices/list/locales/pt.ts +42 -0
- package/src/components/invoices/list/locales/sl.ts +9 -0
- package/src/components/invoices/send-email-dialog/locales/es.ts +18 -0
- package/src/components/invoices/send-email-dialog/locales/fr.ts +18 -0
- package/src/components/invoices/send-email-dialog/locales/hr.ts +17 -0
- package/src/components/invoices/send-email-dialog/locales/it.ts +18 -0
- package/src/components/invoices/send-email-dialog/locales/nl.ts +18 -0
- package/src/components/invoices/send-email-dialog/locales/pl.ts +18 -0
- package/src/components/invoices/send-email-dialog/locales/pt.ts +18 -0
- package/src/components/invoices/send-email-dialog/send-email-dialog.tsx +22 -14
- package/src/components/invoices/shared/scaled-document-preview.tsx +1 -0
- package/src/components/invoices/view/eslog-info-display.tsx +1 -0
- package/src/components/invoices/view/fiscalization-status-card.tsx +121 -0
- package/src/components/items/create-item-form/create-item-form.tsx +14 -0
- package/src/components/items/create-item-form/locales/en.ts +5 -0
- package/src/components/items/create-item-form/locales/es.ts +14 -0
- package/src/components/items/create-item-form/locales/fr.ts +14 -0
- package/src/components/items/create-item-form/locales/hr.ts +14 -0
- package/src/components/items/create-item-form/locales/it.ts +14 -0
- package/src/components/items/create-item-form/locales/nl.ts +14 -0
- package/src/components/items/create-item-form/locales/pl.ts +14 -0
- package/src/components/items/create-item-form/locales/pt.ts +14 -0
- package/src/components/items/edit-item-form/edit-item-form.tsx +170 -0
- package/src/components/items/edit-item-form/locales/de.ts +12 -0
- package/src/components/items/edit-item-form/locales/es.ts +12 -0
- package/src/components/items/edit-item-form/locales/fr.ts +12 -0
- package/src/components/items/edit-item-form/locales/hr.ts +12 -0
- package/src/components/items/edit-item-form/locales/it.ts +12 -0
- package/src/components/items/edit-item-form/locales/nl.ts +12 -0
- package/src/components/items/edit-item-form/locales/pl.ts +12 -0
- package/src/components/items/edit-item-form/locales/pt.ts +12 -0
- package/src/components/items/edit-item-form/locales/sl.ts +12 -0
- package/src/components/items/item-list-table/item-list-table.tsx +20 -13
- package/src/components/items/item-list-table/locales/de.ts +6 -0
- package/src/components/items/item-list-table/locales/en.ts +5 -0
- package/src/components/items/item-list-table/locales/es.ts +16 -0
- package/src/components/items/item-list-table/locales/fr.ts +16 -0
- package/src/components/items/item-list-table/locales/hr.ts +16 -0
- package/src/components/items/item-list-table/locales/it.ts +16 -0
- package/src/components/items/item-list-table/locales/nl.ts +16 -0
- package/src/components/items/item-list-table/locales/pl.ts +16 -0
- package/src/components/items/item-list-table/locales/pt.ts +16 -0
- package/src/components/items/item-list-table/locales/sl.ts +6 -0
- package/src/components/items/items.hooks.ts +7 -2
- package/src/components/payments/create-payment-form/create-payment-form.tsx +14 -0
- package/src/components/payments/create-payment-form/locales/es.ts +20 -0
- package/src/components/payments/create-payment-form/locales/fr.ts +20 -0
- package/src/components/payments/create-payment-form/locales/hr.ts +20 -0
- package/src/components/payments/create-payment-form/locales/it.ts +20 -0
- package/src/components/payments/create-payment-form/locales/nl.ts +20 -0
- package/src/components/payments/create-payment-form/locales/pl.ts +20 -0
- package/src/components/payments/create-payment-form/locales/pt.ts +20 -0
- package/src/components/payments/edit-payment-form/edit-payment-form.tsx +18 -2
- package/src/components/payments/edit-payment-form/locales/es.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/fr.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/hr.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/it.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/nl.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/pl.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/pt.ts +20 -0
- package/src/components/payments/list/list-row-actions.tsx +14 -0
- package/src/components/payments/list/list-table.tsx +21 -2
- package/src/components/payments/list/locales/de.ts +6 -0
- package/src/components/payments/list/locales/en.ts +7 -0
- package/src/components/payments/list/locales/es.ts +25 -0
- package/src/components/payments/list/locales/fr.ts +25 -0
- package/src/components/payments/list/locales/hr.ts +25 -0
- package/src/components/payments/list/locales/it.ts +25 -0
- package/src/components/payments/list/locales/nl.ts +25 -0
- package/src/components/payments/list/locales/pl.ts +25 -0
- package/src/components/payments/list/locales/pt.ts +25 -0
- package/src/components/payments/list/locales/sl.ts +6 -0
- package/src/components/payments/payments.hooks.ts +7 -2
- package/src/components/request-logs/index.ts +1 -1
- package/src/components/table/data-table.tsx +8 -3
- package/src/components/table/filter-panel.tsx +4 -4
- package/src/components/table/hooks/use-table-query.ts +3 -0
- package/src/components/table/table-empty-state.tsx +11 -4
- package/src/components/table/table-no-results.tsx +6 -4
- package/src/components/table/types.ts +2 -2
- package/src/components/tax-reports/kir-export-form.tsx +0 -1
- package/src/components/taxes/create-tax-form/create-tax-form.tsx +14 -0
- package/src/components/taxes/create-tax-form/locales/en.ts +1 -0
- package/src/components/taxes/create-tax-form/locales/es.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/fr.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/hr.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/it.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/nl.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/pl.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/pt.ts +8 -0
- package/src/components/taxes/edit-tax-form/edit-tax-form.tsx +119 -0
- package/src/components/taxes/edit-tax-form/locales/de.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/es.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/fr.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/hr.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/it.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/nl.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/pl.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/pt.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/sl.ts +6 -0
- package/src/components/taxes/tax-list-table/locales/de.ts +6 -0
- package/src/components/taxes/tax-list-table/locales/en.ts +6 -0
- package/src/components/taxes/tax-list-table/locales/es.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/fr.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/hr.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/it.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/nl.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/pl.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/pt.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/sl.ts +6 -0
- package/src/components/taxes/tax-list-table/tax-list-table.tsx +18 -0
- package/src/components/taxes/taxes.hooks.ts +12 -7
- package/src/components/ui/tooltip.tsx +2 -2
- package/src/components/wl-subscription/locked-feature.tsx +1 -0
- package/src/components/wl-subscription/upgrade-modal.tsx +1 -0
- package/src/generated/schemas/acceptentityinvitation_body.ts +17 -0
- package/src/generated/schemas/addentityuser_body.ts +18 -0
- package/src/generated/schemas/advanceinvoice.ts +184 -12
- package/src/generated/schemas/creditnote.ts +99 -127
- package/src/generated/schemas/customadvanceinvoice.ts +246 -0
- package/src/generated/schemas/customcreditnote.ts +237 -0
- package/src/generated/schemas/customer.ts +26 -0
- package/src/generated/schemas/customestimate.ts +181 -0
- package/src/generated/schemas/custominvoice.ts +237 -0
- package/src/generated/schemas/entity.ts +66 -7
- package/src/generated/schemas/entityuserrole.ts +19 -0
- package/src/generated/schemas/estimate.ts +149 -1
- package/src/generated/schemas/finasettings.ts +25 -0
- package/src/generated/schemas/furssettings.ts +1 -2
- package/src/generated/schemas/index.ts +24 -5
- package/src/generated/schemas/invoice.ts +224 -22
- package/src/generated/schemas/me.ts +22 -0
- package/src/generated/schemas/registerfinamovablepremise_body.ts +26 -0
- package/src/generated/schemas/registerfinarealestatepremise_body.ts +37 -0
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +342 -0
- package/src/generated/schemas/rendercreditnotepreview_body.ts +344 -0
- package/src/generated/schemas/renderestimatepreview_body.ts +284 -0
- package/src/generated/schemas/renderinvoicepreview_body.ts +344 -0
- package/src/generated/schemas/senddocument_body.ts +23 -0
- package/src/generated/schemas/sendemail_body.ts +8 -10
- package/src/generated/schemas/stripeappconnect_body.ts +18 -0
- package/src/generated/schemas/stripeappcreateinvoice_body.ts +20 -0
- package/src/generated/schemas/stripeappupdatesettings_body.ts +26 -0
- package/src/generated/schemas/webhook.ts +143 -0
- package/src/hooks/create-resource-hooks.ts +85 -1
- package/src/hooks/use-duplicate-document.ts +19 -11
- package/src/hooks/use-next-document-number.ts +1 -1
- package/src/hooks/use-resource-mutation.ts +4 -3
- package/src/lib/browser-cookies.ts +12 -1
- package/src/lib/cookies.ts +2 -2
- package/src/lib/translation.ts +1 -1
- package/src/providers/entities-provider.tsx +105 -39
- package/src/providers/sdk-provider.tsx +7 -3
- package/src/providers/white-label-provider.tsx +5 -2
- package/src/providers/wl-subscription-provider.tsx +1 -0
- package/src/components/invoices/view/furs-info-display.tsx +0 -213
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* FINA (Croatia) Settings Hooks
|
|
3
|
+
* TanStack Query hooks for FINA fiscalization settings management
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
type UseMutationOptions,
|
|
8
|
+
type UseQueryOptions,
|
|
9
|
+
useMutation,
|
|
10
|
+
useQuery,
|
|
11
|
+
useQueryClient,
|
|
12
|
+
} from "@tanstack/react-query";
|
|
13
|
+
import { useSDK } from "../../../providers/sdk-provider";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Query Keys
|
|
17
|
+
*/
|
|
18
|
+
export const finaQueryKeys = {
|
|
19
|
+
settings: (entityId: string) => ["fina", "settings", entityId] as const,
|
|
20
|
+
premises: (entityId: string) => ["fina", "premises", entityId] as const,
|
|
21
|
+
premise: (premiseId: string) => ["fina", "premise", premiseId] as const,
|
|
22
|
+
devices: (premiseId: string) => ["fina", "devices", premiseId] as const,
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Hook: Get FINA settings
|
|
27
|
+
*/
|
|
28
|
+
export function useFinaSettings(entityId: string, options?: Omit<UseQueryOptions<any>, "queryKey" | "queryFn">) {
|
|
29
|
+
const { sdk } = useSDK();
|
|
30
|
+
|
|
31
|
+
return useQuery({
|
|
32
|
+
queryKey: finaQueryKeys.settings(entityId),
|
|
33
|
+
queryFn: async () => {
|
|
34
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
35
|
+
if (!entityId) throw new Error("Entity ID required");
|
|
36
|
+
return sdk.finaSettings.list({ entity_id: entityId });
|
|
37
|
+
},
|
|
38
|
+
enabled: !!sdk && !!entityId,
|
|
39
|
+
staleTime: 0,
|
|
40
|
+
...options,
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Hook: Update FINA settings
|
|
46
|
+
*/
|
|
47
|
+
export function useUpdateFinaSettings(options?: UseMutationOptions<any, Error, { entityId: string; data: any }>) {
|
|
48
|
+
const { sdk } = useSDK();
|
|
49
|
+
const queryClient = useQueryClient();
|
|
50
|
+
|
|
51
|
+
return useMutation({
|
|
52
|
+
...options,
|
|
53
|
+
mutationFn: async ({ entityId, data }) => {
|
|
54
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
55
|
+
return sdk.finaSettings.update(data, { entity_id: entityId });
|
|
56
|
+
},
|
|
57
|
+
onSuccess: (data, variables, context) => {
|
|
58
|
+
queryClient.invalidateQueries({
|
|
59
|
+
queryKey: finaQueryKeys.settings(variables.entityId),
|
|
60
|
+
});
|
|
61
|
+
if (options?.onSuccess) {
|
|
62
|
+
(options.onSuccess as (d: any, v: any, c: any) => void)(data, variables, context);
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
});
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Hook: Upload FINA certificate
|
|
70
|
+
*/
|
|
71
|
+
export function useUploadFinaCertificate(
|
|
72
|
+
options?: UseMutationOptions<any, Error, { entityId: string; file: Blob; passphrase: string }>,
|
|
73
|
+
) {
|
|
74
|
+
const { sdk } = useSDK();
|
|
75
|
+
const queryClient = useQueryClient();
|
|
76
|
+
|
|
77
|
+
return useMutation({
|
|
78
|
+
...options,
|
|
79
|
+
mutationFn: async ({ entityId, file, passphrase }) => {
|
|
80
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
81
|
+
return sdk.finaCertificate.uploadFinaCertificate({ file, passphrase }, { entity_id: entityId });
|
|
82
|
+
},
|
|
83
|
+
onSuccess: (data, variables, context) => {
|
|
84
|
+
queryClient.invalidateQueries({
|
|
85
|
+
queryKey: finaQueryKeys.settings(variables.entityId),
|
|
86
|
+
});
|
|
87
|
+
if (options?.onSuccess) {
|
|
88
|
+
(options.onSuccess as (d: any, v: any, c: any) => void)(data, variables, context);
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Hook: List FINA business premises
|
|
96
|
+
*/
|
|
97
|
+
export function useFinaPremises(entityId: string, options?: Omit<UseQueryOptions<any[]>, "queryKey" | "queryFn">) {
|
|
98
|
+
const { sdk } = useSDK();
|
|
99
|
+
|
|
100
|
+
return useQuery({
|
|
101
|
+
queryKey: finaQueryKeys.premises(entityId),
|
|
102
|
+
queryFn: async () => {
|
|
103
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
104
|
+
return sdk.finaPremises.listFinaPremises({ entity_id: entityId });
|
|
105
|
+
},
|
|
106
|
+
enabled: !!sdk,
|
|
107
|
+
staleTime: 0,
|
|
108
|
+
...options,
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Hook: Register real estate premise
|
|
114
|
+
*/
|
|
115
|
+
export function useRegisterFinaRealEstatePremise(
|
|
116
|
+
options?: UseMutationOptions<any, Error, { entityId: string; data: any }>,
|
|
117
|
+
) {
|
|
118
|
+
const { sdk } = useSDK();
|
|
119
|
+
const queryClient = useQueryClient();
|
|
120
|
+
|
|
121
|
+
return useMutation({
|
|
122
|
+
...options,
|
|
123
|
+
mutationFn: async ({ entityId, data }) => {
|
|
124
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
125
|
+
return sdk.finaPremises.registerFinaRealEstatePremise(data, { entity_id: entityId });
|
|
126
|
+
},
|
|
127
|
+
onSuccess: (data, variables, context) => {
|
|
128
|
+
queryClient.invalidateQueries({
|
|
129
|
+
queryKey: finaQueryKeys.premises(variables.entityId),
|
|
130
|
+
});
|
|
131
|
+
if (options?.onSuccess) {
|
|
132
|
+
(options.onSuccess as (d: any, v: any, c: any) => void)(data, variables, context);
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Hook: Register movable premise
|
|
140
|
+
*/
|
|
141
|
+
export function useRegisterFinaMovablePremise(
|
|
142
|
+
options?: UseMutationOptions<any, Error, { entityId: string; data: any }>,
|
|
143
|
+
) {
|
|
144
|
+
const { sdk } = useSDK();
|
|
145
|
+
const queryClient = useQueryClient();
|
|
146
|
+
|
|
147
|
+
return useMutation({
|
|
148
|
+
...options,
|
|
149
|
+
mutationFn: async ({ entityId, data }) => {
|
|
150
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
151
|
+
return sdk.finaPremises.registerFinaMovablePremise(data, { entity_id: entityId });
|
|
152
|
+
},
|
|
153
|
+
onSuccess: (data, variables, context) => {
|
|
154
|
+
queryClient.invalidateQueries({
|
|
155
|
+
queryKey: finaQueryKeys.premises(variables.entityId),
|
|
156
|
+
});
|
|
157
|
+
if (options?.onSuccess) {
|
|
158
|
+
(options.onSuccess as (d: any, v: any, c: any) => void)(data, variables, context);
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* Hook: Close premise
|
|
166
|
+
*/
|
|
167
|
+
export function useCloseFinaPremise(options?: UseMutationOptions<any, Error, { entityId: string; premiseId: string }>) {
|
|
168
|
+
const { sdk } = useSDK();
|
|
169
|
+
const queryClient = useQueryClient();
|
|
170
|
+
|
|
171
|
+
return useMutation({
|
|
172
|
+
...options,
|
|
173
|
+
mutationFn: async ({ entityId, premiseId }) => {
|
|
174
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
175
|
+
return sdk.finaPremises.closeFinaPremise(premiseId, { entity_id: entityId });
|
|
176
|
+
},
|
|
177
|
+
onSuccess: (data, variables, context) => {
|
|
178
|
+
queryClient.invalidateQueries({
|
|
179
|
+
queryKey: finaQueryKeys.premises(variables.entityId),
|
|
180
|
+
});
|
|
181
|
+
if (options?.onSuccess) {
|
|
182
|
+
(options.onSuccess as (d: any, v: any, c: any) => void)(data, variables, context);
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
});
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* Hook: Register electronic device
|
|
190
|
+
*/
|
|
191
|
+
export function useRegisterFinaElectronicDevice(
|
|
192
|
+
options?: UseMutationOptions<any, Error, { entityId: string; premiseId: string; deviceId: string }>,
|
|
193
|
+
) {
|
|
194
|
+
const { sdk } = useSDK();
|
|
195
|
+
const queryClient = useQueryClient();
|
|
196
|
+
|
|
197
|
+
return useMutation({
|
|
198
|
+
...options,
|
|
199
|
+
mutationFn: async ({ entityId, premiseId, deviceId }) => {
|
|
200
|
+
if (!sdk) throw new Error("SDK not initialized");
|
|
201
|
+
return sdk.finaDevices.registerFinaDevice(premiseId, { device_id: deviceId }, { entity_id: entityId });
|
|
202
|
+
},
|
|
203
|
+
onSuccess: (data, variables, context) => {
|
|
204
|
+
queryClient.invalidateQueries({
|
|
205
|
+
queryKey: finaQueryKeys.premises(variables.entityId),
|
|
206
|
+
});
|
|
207
|
+
queryClient.invalidateQueries({
|
|
208
|
+
queryKey: finaQueryKeys.devices(variables.premiseId),
|
|
209
|
+
});
|
|
210
|
+
if (options?.onSuccess) {
|
|
211
|
+
(options.onSuccess as (d: any, v: any, c: any) => void)(data, variables, context);
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
});
|
|
215
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA ist nur für kroatische Unternehmen",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"FINA-Fiskalisierung ist nur für Unternehmen mit Ländercode HR (Kroatien) verfügbar",
|
|
5
|
+
"Test Mode (Sandbox)": "Testmodus (Sandbox)",
|
|
6
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.":
|
|
7
|
+
"Dieses Unternehmen befindet sich im Testmodus. FINA-Rechnungen werden an die Testumgebung gesendet. Es erfolgt keine echte Fiskalisierung.",
|
|
8
|
+
"General Settings": "Allgemeine Einstellungen",
|
|
9
|
+
Certificate: "Zertifikat",
|
|
10
|
+
"Business Premises": "Geschäftsräume",
|
|
11
|
+
"Enable FINA Fiscalization": "FINA-Fiskalisierung aktivieren",
|
|
12
|
+
"Upload and validate digital certificate first":
|
|
13
|
+
"Laden Sie zuerst ein digitales Zertifikat hoch und validieren Sie es",
|
|
14
|
+
"Certificate Required": "Zertifikat erforderlich",
|
|
15
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
16
|
+
"Sie müssen ein FINA-Digitalzertifikat hochladen, bevor Sie Rechnungen fiskalisieren können",
|
|
17
|
+
"Business Premise Required": "Geschäftsraum erforderlich",
|
|
18
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
19
|
+
"Registrieren Sie mindestens einen Geschäftsraum, bevor Sie Rechnungen fiskalisieren",
|
|
20
|
+
"Numbering Sequence": "Nummerierungsfolge",
|
|
21
|
+
"Choose how invoice numbers are sequenced": "Wählen Sie, wie Rechnungsnummern sequenziert werden",
|
|
22
|
+
"Per Premise (N)": "Pro Raum (N)",
|
|
23
|
+
"Per Device (P)": "Pro Gerät (P)",
|
|
24
|
+
Recommended: "Empfohlen",
|
|
25
|
+
"One sequence per business premise. Simpler to manage.": "Eine Sequenz pro Geschäftsraum. Einfacher zu verwalten.",
|
|
26
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
27
|
+
"Separate Sequenz pro elektronischem Gerät. Für Setups mit mehreren Geräten.",
|
|
28
|
+
"Operator Information": "Betreiberinformationen",
|
|
29
|
+
"Configure default operator for API usage": "Konfigurieren Sie den Standardbetreiber für die API-Nutzung",
|
|
30
|
+
"Operator OIB": "Betreiber-OIB",
|
|
31
|
+
"OIB of the operator (11 digits, optional)": "OIB des Betreibers (11 Ziffern, optional)",
|
|
32
|
+
"Operator Label": "Betreiber-Bezeichnung",
|
|
33
|
+
"Descriptive label for the operator (optional)": "Beschreibende Bezeichnung für den Betreiber (optional)",
|
|
34
|
+
"PDV System": "PDV-System",
|
|
35
|
+
"Entity is registered in the Croatian PDV (VAT) system":
|
|
36
|
+
"Unternehmen ist im kroatischen PDV (MwSt.)-System registriert",
|
|
37
|
+
"Digital Certificate": "Digitales Zertifikat",
|
|
38
|
+
"Upload your FINA digital certificate": "Laden Sie Ihr FINA-Digitalzertifikat hoch",
|
|
39
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
40
|
+
"Ihr Zertifikat wird benötigt, um alle fiskalisierten Rechnungen digital zu signieren. Das Zertifikat muss von FINA (Finanzagentur Kroatiens) bezogen werden.",
|
|
41
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
42
|
+
"Ungültiger Dateityp. Bitte laden Sie eine .p12- oder .pfx-Zertifikatsdatei hoch.",
|
|
43
|
+
"Please select a certificate file and enter the passphrase":
|
|
44
|
+
"Bitte wählen Sie eine Zertifikatsdatei und geben Sie das Passwort ein",
|
|
45
|
+
Valid: "Gültig",
|
|
46
|
+
"Expiring Soon": "Läuft bald ab",
|
|
47
|
+
Expired: "Abgelaufen",
|
|
48
|
+
Missing: "Fehlt",
|
|
49
|
+
Expires: "Läuft ab",
|
|
50
|
+
Issuer: "Aussteller",
|
|
51
|
+
Subject: "Subjekt",
|
|
52
|
+
"Change Certificate": "Zertifikat ändern",
|
|
53
|
+
"P12/PFX Certificate File": "P12/PFX-Zertifikatsdatei",
|
|
54
|
+
Selected: "Ausgewählt",
|
|
55
|
+
"Certificate Passphrase": "Zertifikatspasswort",
|
|
56
|
+
"Enter certificate passphrase": "Zertifikatspasswort eingeben",
|
|
57
|
+
"Upload Certificate": "Zertifikat hochladen",
|
|
58
|
+
"Upload New Certificate": "Neues Zertifikat hochladen",
|
|
59
|
+
"Register your business premises for FINA": "Registrieren Sie Ihre Geschäftsräume für FINA",
|
|
60
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
61
|
+
"Jeder Raum muss bei FINA registriert werden, bevor Sie Rechnungen von diesem Standort fiskalisieren können.",
|
|
62
|
+
"Add Real Estate": "Immobilie hinzufügen",
|
|
63
|
+
"Add Movable": "Bewegliche Einheit hinzufügen",
|
|
64
|
+
"No premises registered yet": "Noch keine Räume registriert",
|
|
65
|
+
Active: "Aktiv",
|
|
66
|
+
Closed: "Geschlossen",
|
|
67
|
+
"Real Estate": "Immobilie",
|
|
68
|
+
Movable: "Bewegliche Einheit",
|
|
69
|
+
"Close Premise": "Raum schließen",
|
|
70
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
71
|
+
"Sind Sie sicher, dass Sie diesen Raum schließen möchten? Diese Aktion kann nicht rückgängig gemacht werden.",
|
|
72
|
+
"Test Environment": "Testumgebung",
|
|
73
|
+
Production: "Produktion",
|
|
74
|
+
Vehicle: "Fahrzeug",
|
|
75
|
+
"Market Stall": "Marktstand",
|
|
76
|
+
Other: "Sonstiges",
|
|
77
|
+
Device: "Gerät",
|
|
78
|
+
Devices: "Geräte",
|
|
79
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
80
|
+
"Keine Geräte registriert. Fügen Sie mindestens ein Gerät zur Fiskalisierung von Rechnungen hinzu.",
|
|
81
|
+
Created: "Erstellt",
|
|
82
|
+
"Add Electronic Device": "Elektronisches Gerät hinzufügen",
|
|
83
|
+
"Register an electronic device for this business premise.":
|
|
84
|
+
"Registrieren Sie ein elektronisches Gerät für diesen Geschäftsraum.",
|
|
85
|
+
"Device ID": "Geräte-ID",
|
|
86
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Geben Sie eine numerische Geräte-ID ein (z.B. 1, 2, 3)",
|
|
87
|
+
Cancel: "Abbrechen",
|
|
88
|
+
"Register Device": "Gerät registrieren",
|
|
89
|
+
"Registering...": "Wird registriert...",
|
|
90
|
+
"Register Real Estate Premise": "Immobilie registrieren",
|
|
91
|
+
"Register Movable Premise": "Bewegliche Einheit registrieren",
|
|
92
|
+
"Premise ID": "Raum-ID",
|
|
93
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
94
|
+
"Eindeutiger Bezeichner für diesen Raum (z.B. PP1, BUERO1)",
|
|
95
|
+
"Cadastral Municipality": "Katastergemeinde",
|
|
96
|
+
"Land Registry Number": "Grundbuchnummer",
|
|
97
|
+
"Building Number": "Gebäudenummer",
|
|
98
|
+
"Sub-Building Number": "Untergebäudenummer",
|
|
99
|
+
Street: "Straße",
|
|
100
|
+
"House Number": "Hausnummer",
|
|
101
|
+
"House Number Additional": "Hausnummernzusatz",
|
|
102
|
+
Settlement: "Siedlung",
|
|
103
|
+
City: "Stadt",
|
|
104
|
+
"Postal Code": "Postleitzahl",
|
|
105
|
+
"Premise Type": "Raumtyp",
|
|
106
|
+
"Type of movable business premise": "Art des beweglichen Geschäftsraums",
|
|
107
|
+
"Other Movable": "Sonstiges beweglich",
|
|
108
|
+
"Register Premise": "Raum registrieren",
|
|
109
|
+
"Save Settings": "Einstellungen speichern",
|
|
110
|
+
"Saving...": "Wird gespeichert...",
|
|
111
|
+
"Loading...": "Wird geladen...",
|
|
112
|
+
"Enable Fiscalization": "Fiskalisierung aktivieren",
|
|
113
|
+
"Turn on FINA fiscalization for invoices": "FINA-Fiskalisierung für Rechnungen einschalten",
|
|
114
|
+
"Setup Checklist": "Einrichtungs-Checkliste",
|
|
115
|
+
"Valid certificate uploaded": "Gültiges Zertifikat hochgeladen",
|
|
116
|
+
"At least one business premise registered": "Mindestens ein Geschäftsraum registriert",
|
|
117
|
+
"At least one electronic device registered": "Mindestens ein elektronisches Gerät registriert",
|
|
118
|
+
"Cannot Enable Fiscalization": "Fiskalisierung kann nicht aktiviert werden",
|
|
119
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
120
|
+
"Erfüllen Sie alle oben genannten Voraussetzungen, bevor Sie die FINA-Fiskalisierung aktivieren.",
|
|
121
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
122
|
+
"Nach der Aktivierung werden alle neuen B2C-Rechnungen automatisch mit FINA fiskalisiert",
|
|
123
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
124
|
+
"Warnung: Die Deaktivierung der Fiskalisierung verhindert, dass neue Rechnungen fiskalisiert werden.",
|
|
125
|
+
"Register at least one business premise first": "Registrieren Sie zuerst mindestens einen Geschäftsraum",
|
|
126
|
+
"Register at least one electronic device first": "Registrieren Sie zuerst mindestens ein elektronisches Gerät",
|
|
127
|
+
"Activate FINA fiscalization for your invoices": "Aktivieren Sie die FINA-Fiskalisierung für Ihre Rechnungen",
|
|
128
|
+
"You must upload a digital certificate before you can register business premises":
|
|
129
|
+
"Sie müssen ein digitales Zertifikat hochladen, bevor Sie Geschäftsräume registrieren können",
|
|
130
|
+
"FINA Fiscalization": "FINA-Fiskalisierung",
|
|
131
|
+
"Croatian tax authority fiscalization details": "Details zur Fiskalisierung bei der kroatischen Steuerbehörde",
|
|
132
|
+
Fiscalized: "Fiskalisiert",
|
|
133
|
+
Pending: "Ausstehend",
|
|
134
|
+
Failed: "Fehlgeschlagen",
|
|
135
|
+
JIR: "JIR",
|
|
136
|
+
ZKI: "ZKI",
|
|
137
|
+
"Invoice Number": "Rechnungsnummer",
|
|
138
|
+
"QR Code": "QR-Code",
|
|
139
|
+
"Issuer OIB": "OIB des Ausstellers",
|
|
140
|
+
Operator: "Bediener",
|
|
141
|
+
Verify: "Überprüfen",
|
|
142
|
+
"Fiscalized at": "Fiskalisiert am",
|
|
143
|
+
"Business Premise": "Geschäftsraum",
|
|
144
|
+
"Electronic Device": "Elektronisches Gerät",
|
|
145
|
+
"Fiscalization Error": "Fiskalisierungsfehler",
|
|
146
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
147
|
+
"Registrieren Sie einen neuen Geschäftsraum bei FINA. Nach der Registrierung müssen Sie mindestens ein elektronisches Gerät hinzufügen.",
|
|
148
|
+
} as const;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA is for Croatian Entities",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"FINA fiscalization is only available for entities with country code HR",
|
|
5
|
+
"Test Mode (Sandbox)": "Test Mode (Sandbox)",
|
|
6
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.":
|
|
7
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.",
|
|
8
|
+
"General Settings": "General Settings",
|
|
9
|
+
Certificate: "Certificate",
|
|
10
|
+
"Business Premises": "Business Premises",
|
|
11
|
+
"Enable FINA Fiscalization": "Enable FINA Fiscalization",
|
|
12
|
+
"Upload and validate digital certificate first": "Upload and validate digital certificate first",
|
|
13
|
+
"Certificate Required": "Certificate Required",
|
|
14
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
15
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices",
|
|
16
|
+
"Business Premise Required": "Business Premise Required",
|
|
17
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
18
|
+
"Register at least one business premise before fiscalizing invoices",
|
|
19
|
+
"Numbering Sequence": "Numbering Sequence",
|
|
20
|
+
"Choose how invoice numbers are sequenced": "Choose how invoice numbers are sequenced",
|
|
21
|
+
"Per Premise (N)": "Per Premise (N)",
|
|
22
|
+
"Per Device (P)": "Per Device (P)",
|
|
23
|
+
Recommended: "Recommended",
|
|
24
|
+
"One sequence per business premise. Simpler to manage.": "One sequence per business premise. Simpler to manage.",
|
|
25
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
26
|
+
"Separate sequence per electronic device. For multi-device setups.",
|
|
27
|
+
"Operator Information": "Operator Information",
|
|
28
|
+
"Configure default operator for API usage": "Configure default operator for API usage",
|
|
29
|
+
"Operator OIB": "Operator OIB",
|
|
30
|
+
"OIB of the operator (11 digits, optional)": "OIB of the operator (11 digits, optional)",
|
|
31
|
+
"Operator Label": "Operator Label",
|
|
32
|
+
"Descriptive label for the operator (optional)": "Descriptive label for the operator (optional)",
|
|
33
|
+
"PDV System": "PDV System",
|
|
34
|
+
"Entity is registered in the Croatian PDV (VAT) system": "Entity is registered in the Croatian PDV (VAT) system",
|
|
35
|
+
"Digital Certificate": "Digital Certificate",
|
|
36
|
+
"Upload your FINA digital certificate": "Upload your FINA digital certificate",
|
|
37
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
38
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).",
|
|
39
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
40
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.",
|
|
41
|
+
"Please select a certificate file and enter the passphrase":
|
|
42
|
+
"Please select a certificate file and enter the passphrase",
|
|
43
|
+
Valid: "Valid",
|
|
44
|
+
"Expiring Soon": "Expiring Soon",
|
|
45
|
+
Expired: "Expired",
|
|
46
|
+
Missing: "Missing",
|
|
47
|
+
Expires: "Expires",
|
|
48
|
+
Issuer: "Issuer",
|
|
49
|
+
Subject: "Subject",
|
|
50
|
+
"Change Certificate": "Change Certificate",
|
|
51
|
+
"P12/PFX Certificate File": "P12/PFX Certificate File",
|
|
52
|
+
Selected: "Selected",
|
|
53
|
+
"Certificate Passphrase": "Certificate Passphrase",
|
|
54
|
+
"Enter certificate passphrase": "Enter certificate passphrase",
|
|
55
|
+
"Upload Certificate": "Upload Certificate",
|
|
56
|
+
"Upload New Certificate": "Upload New Certificate",
|
|
57
|
+
"Register your business premises for FINA": "Register your business premises for FINA",
|
|
58
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
59
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.",
|
|
60
|
+
"Add Real Estate": "Add Real Estate",
|
|
61
|
+
"Add Movable": "Add Movable",
|
|
62
|
+
"No premises registered yet": "No premises registered yet",
|
|
63
|
+
Active: "Active",
|
|
64
|
+
Closed: "Closed",
|
|
65
|
+
"Real Estate": "Real Estate",
|
|
66
|
+
Movable: "Movable",
|
|
67
|
+
"Close Premise": "Close Premise",
|
|
68
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
69
|
+
"Are you sure you want to close this premise? This action cannot be undone.",
|
|
70
|
+
"Test Environment": "Test Environment",
|
|
71
|
+
Production: "Production",
|
|
72
|
+
Vehicle: "Vehicle",
|
|
73
|
+
"Market Stall": "Market Stall",
|
|
74
|
+
Other: "Other",
|
|
75
|
+
Device: "Device",
|
|
76
|
+
Devices: "Devices",
|
|
77
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
78
|
+
"No devices registered. Add at least one device to fiscalize invoices.",
|
|
79
|
+
Created: "Created",
|
|
80
|
+
"Add Electronic Device": "Add Electronic Device",
|
|
81
|
+
"Register an electronic device for this business premise.":
|
|
82
|
+
"Register an electronic device for this business premise.",
|
|
83
|
+
"Device ID": "Device ID",
|
|
84
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Enter a numeric device ID (e.g., 1, 2, 3)",
|
|
85
|
+
Cancel: "Cancel",
|
|
86
|
+
"Register Device": "Register Device",
|
|
87
|
+
"Registering...": "Registering...",
|
|
88
|
+
"Register Real Estate Premise": "Register Real Estate Premise",
|
|
89
|
+
"Register Movable Premise": "Register Movable Premise",
|
|
90
|
+
"Premise ID": "Premise ID",
|
|
91
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)": "Unique identifier for this premise (e.g., PP1, OFFICE1)",
|
|
92
|
+
"Cadastral Municipality": "Cadastral Municipality",
|
|
93
|
+
"Land Registry Number": "Land Registry Number",
|
|
94
|
+
"Building Number": "Building Number",
|
|
95
|
+
"Sub-Building Number": "Sub-Building Number",
|
|
96
|
+
Street: "Street",
|
|
97
|
+
"House Number": "House Number",
|
|
98
|
+
"House Number Additional": "House Number Additional",
|
|
99
|
+
Settlement: "Settlement",
|
|
100
|
+
City: "City",
|
|
101
|
+
"Postal Code": "Postal Code",
|
|
102
|
+
"Premise Type": "Premise Type",
|
|
103
|
+
"Type of movable business premise": "Type of movable business premise",
|
|
104
|
+
"Other Movable": "Other Movable",
|
|
105
|
+
"Register Premise": "Register Premise",
|
|
106
|
+
"Save Settings": "Save Settings",
|
|
107
|
+
"Saving...": "Saving...",
|
|
108
|
+
"Loading...": "Loading...",
|
|
109
|
+
"Enable Fiscalization": "Enable Fiscalization",
|
|
110
|
+
"Turn on FINA fiscalization for invoices": "Turn on FINA fiscalization for invoices",
|
|
111
|
+
"Setup Checklist": "Setup Checklist",
|
|
112
|
+
"Valid certificate uploaded": "Valid certificate uploaded",
|
|
113
|
+
"At least one business premise registered": "At least one business premise registered",
|
|
114
|
+
"At least one electronic device registered": "At least one electronic device registered",
|
|
115
|
+
"Cannot Enable Fiscalization": "Cannot Enable Fiscalization",
|
|
116
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
117
|
+
"Complete all prerequisites above before enabling FINA fiscalization.",
|
|
118
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
119
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA",
|
|
120
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
121
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.",
|
|
122
|
+
"Register at least one business premise first": "Register at least one business premise first",
|
|
123
|
+
"Register at least one electronic device first": "Register at least one electronic device first",
|
|
124
|
+
"Activate FINA fiscalization for your invoices": "Activate FINA fiscalization for your invoices",
|
|
125
|
+
"You must upload a digital certificate before you can register business premises":
|
|
126
|
+
"You must upload a digital certificate before you can register business premises",
|
|
127
|
+
"FINA Fiscalization": "FINA Fiscalization",
|
|
128
|
+
"Croatian tax authority fiscalization details": "Croatian tax authority fiscalization details",
|
|
129
|
+
Fiscalized: "Fiscalized",
|
|
130
|
+
Pending: "Pending",
|
|
131
|
+
Failed: "Failed",
|
|
132
|
+
JIR: "JIR",
|
|
133
|
+
ZKI: "ZKI",
|
|
134
|
+
"Invoice Number": "Invoice Number",
|
|
135
|
+
"QR Code": "QR Code",
|
|
136
|
+
"Issuer OIB": "Issuer OIB",
|
|
137
|
+
Operator: "Operator",
|
|
138
|
+
Verify: "Verify",
|
|
139
|
+
"Fiscalized at": "Fiscalized at",
|
|
140
|
+
"Business Premise": "Business Premise",
|
|
141
|
+
"Electronic Device": "Electronic Device",
|
|
142
|
+
"Fiscalization Error": "Fiscalization Error",
|
|
143
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
144
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.",
|
|
145
|
+
} as const;
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA es solo para empresas croatas",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"La fiscalización FINA solo está disponible para entidades con código de país HR (Croacia)",
|
|
5
|
+
"Test Mode (Sandbox)": "Modo de prueba (Sandbox)",
|
|
6
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.":
|
|
7
|
+
"Esta entidad está en modo de prueba. Las facturas FINA se enviarán al entorno de prueba. No se realizará fiscalización real.",
|
|
8
|
+
"General Settings": "Configuración general",
|
|
9
|
+
Certificate: "Certificado",
|
|
10
|
+
"Business Premises": "Locales comerciales",
|
|
11
|
+
"Enable FINA Fiscalization": "Activar fiscalización FINA",
|
|
12
|
+
"Upload and validate digital certificate first": "Primero suba y valide el certificado digital",
|
|
13
|
+
"Certificate Required": "Certificado requerido",
|
|
14
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
15
|
+
"Debe subir un certificado digital FINA antes de poder fiscalizar facturas",
|
|
16
|
+
"Business Premise Required": "Local comercial requerido",
|
|
17
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
18
|
+
"Registre al menos un local comercial antes de fiscalizar facturas",
|
|
19
|
+
"Numbering Sequence": "Secuencia de numeración",
|
|
20
|
+
"Choose how invoice numbers are sequenced": "Elija cómo se secuencian los números de factura",
|
|
21
|
+
"Per Premise (N)": "Por local (N)",
|
|
22
|
+
"Per Device (P)": "Por dispositivo (P)",
|
|
23
|
+
Recommended: "Recomendado",
|
|
24
|
+
"One sequence per business premise. Simpler to manage.":
|
|
25
|
+
"Una secuencia por local comercial. Más simple de gestionar.",
|
|
26
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
27
|
+
"Secuencia separada por dispositivo electrónico. Para configuraciones multi-dispositivo.",
|
|
28
|
+
"Operator Information": "Información del operador",
|
|
29
|
+
"Configure default operator for API usage": "Configurar operador predeterminado para uso de API",
|
|
30
|
+
"Operator OIB": "OIB del operador",
|
|
31
|
+
"OIB of the operator (11 digits, optional)": "OIB del operador (11 dígitos, opcional)",
|
|
32
|
+
"Operator Label": "Etiqueta del operador",
|
|
33
|
+
"Descriptive label for the operator (optional)": "Etiqueta descriptiva del operador (opcional)",
|
|
34
|
+
"PDV System": "Sistema PDV",
|
|
35
|
+
"Entity is registered in the Croatian PDV (VAT) system": "La entidad está registrada en el sistema PDV (IVA) croata",
|
|
36
|
+
"Digital Certificate": "Certificado digital",
|
|
37
|
+
"Upload your FINA digital certificate": "Suba su certificado digital FINA",
|
|
38
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
39
|
+
"Su certificado es necesario para firmar digitalmente todas las facturas fiscalizadas. El certificado debe obtenerse de FINA (Agencia Financiera de Croacia).",
|
|
40
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
41
|
+
"Tipo de archivo inválido. Suba un archivo de certificado .p12 o .pfx.",
|
|
42
|
+
"Please select a certificate file and enter the passphrase":
|
|
43
|
+
"Seleccione un archivo de certificado e introduzca la contraseña",
|
|
44
|
+
Valid: "Válido",
|
|
45
|
+
"Expiring Soon": "Expira pronto",
|
|
46
|
+
Expired: "Expirado",
|
|
47
|
+
Missing: "Faltante",
|
|
48
|
+
Expires: "Expira",
|
|
49
|
+
Issuer: "Emisor",
|
|
50
|
+
Subject: "Sujeto",
|
|
51
|
+
"Change Certificate": "Cambiar certificado",
|
|
52
|
+
"P12/PFX Certificate File": "Archivo de certificado P12/PFX",
|
|
53
|
+
Selected: "Seleccionado",
|
|
54
|
+
"Certificate Passphrase": "Contraseña del certificado",
|
|
55
|
+
"Enter certificate passphrase": "Introduzca la contraseña del certificado",
|
|
56
|
+
"Upload Certificate": "Subir certificado",
|
|
57
|
+
"Upload New Certificate": "Subir nuevo certificado",
|
|
58
|
+
"Register your business premises for FINA": "Registre sus locales comerciales para FINA",
|
|
59
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
60
|
+
"Cada local debe estar registrado en FINA antes de poder emitir facturas fiscalizadas desde esa ubicación.",
|
|
61
|
+
"Add Real Estate": "Añadir inmueble",
|
|
62
|
+
"Add Movable": "Añadir móvil",
|
|
63
|
+
"No premises registered yet": "Ningún local registrado aún",
|
|
64
|
+
Active: "Activo",
|
|
65
|
+
Closed: "Cerrado",
|
|
66
|
+
"Real Estate": "Inmueble",
|
|
67
|
+
Movable: "Unidad móvil",
|
|
68
|
+
"Close Premise": "Cerrar local",
|
|
69
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
70
|
+
"¿Está seguro de que desea cerrar este local? Esta acción no se puede deshacer.",
|
|
71
|
+
"Test Environment": "Entorno de prueba",
|
|
72
|
+
Production: "Producción",
|
|
73
|
+
Vehicle: "Vehículo",
|
|
74
|
+
"Market Stall": "Puesto de mercado",
|
|
75
|
+
Other: "Otro",
|
|
76
|
+
Device: "Dispositivo",
|
|
77
|
+
Devices: "Dispositivos",
|
|
78
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
79
|
+
"Ningún dispositivo registrado. Añada al menos un dispositivo para fiscalizar facturas.",
|
|
80
|
+
Created: "Creado",
|
|
81
|
+
"Add Electronic Device": "Añadir dispositivo electrónico",
|
|
82
|
+
"Register an electronic device for this business premise.":
|
|
83
|
+
"Registre un dispositivo electrónico para este local comercial.",
|
|
84
|
+
"Device ID": "ID del dispositivo",
|
|
85
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Introduzca un ID numérico de dispositivo (ej. 1, 2, 3)",
|
|
86
|
+
Cancel: "Cancelar",
|
|
87
|
+
"Register Device": "Registrar dispositivo",
|
|
88
|
+
"Registering...": "Registrando...",
|
|
89
|
+
"Register Real Estate Premise": "Registrar local inmueble",
|
|
90
|
+
"Register Movable Premise": "Registrar local móvil",
|
|
91
|
+
"Premise ID": "ID del local",
|
|
92
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)": "Identificador único para este local (ej. PP1, OFICINA1)",
|
|
93
|
+
"Cadastral Municipality": "Municipio catastral",
|
|
94
|
+
"Land Registry Number": "Número de registro catastral",
|
|
95
|
+
"Building Number": "Número de edificio",
|
|
96
|
+
"Sub-Building Number": "Número de sub-edificio",
|
|
97
|
+
Street: "Calle",
|
|
98
|
+
"House Number": "Número",
|
|
99
|
+
"House Number Additional": "Número adicional",
|
|
100
|
+
Settlement: "Localidad",
|
|
101
|
+
City: "Ciudad",
|
|
102
|
+
"Postal Code": "Código postal",
|
|
103
|
+
"Premise Type": "Tipo de local",
|
|
104
|
+
"Type of movable business premise": "Tipo de local comercial móvil",
|
|
105
|
+
"Other Movable": "Otro móvil",
|
|
106
|
+
"Register Premise": "Registrar local",
|
|
107
|
+
"Save Settings": "Guardar configuración",
|
|
108
|
+
"Saving...": "Guardando...",
|
|
109
|
+
"Loading...": "Cargando...",
|
|
110
|
+
"Enable Fiscalization": "Activar fiscalización",
|
|
111
|
+
"Turn on FINA fiscalization for invoices": "Active la fiscalización FINA para facturas",
|
|
112
|
+
"Setup Checklist": "Lista de verificación",
|
|
113
|
+
"Valid certificate uploaded": "Certificado válido subido",
|
|
114
|
+
"At least one business premise registered": "Al menos un local comercial registrado",
|
|
115
|
+
"At least one electronic device registered": "Al menos un dispositivo electrónico registrado",
|
|
116
|
+
"Cannot Enable Fiscalization": "No se puede activar la fiscalización",
|
|
117
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
118
|
+
"Complete todos los requisitos previos antes de activar la fiscalización FINA.",
|
|
119
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
120
|
+
"Una vez activada, todas las nuevas facturas B2C serán fiscalizadas automáticamente con FINA",
|
|
121
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
122
|
+
"Advertencia: Desactivar la fiscalización impedirá que las nuevas facturas sean fiscalizadas.",
|
|
123
|
+
"Register at least one business premise first": "Registre primero al menos un local comercial",
|
|
124
|
+
"Register at least one electronic device first": "Registre primero al menos un dispositivo electrónico",
|
|
125
|
+
"Activate FINA fiscalization for your invoices": "Active la fiscalización FINA para sus facturas",
|
|
126
|
+
"You must upload a digital certificate before you can register business premises":
|
|
127
|
+
"Debe subir un certificado digital antes de poder registrar locales comerciales",
|
|
128
|
+
"FINA Fiscalization": "Fiscalización FINA",
|
|
129
|
+
"Croatian tax authority fiscalization details": "Detalles de fiscalización de la autoridad fiscal croata",
|
|
130
|
+
Fiscalized: "Fiscalizado",
|
|
131
|
+
Pending: "Pendiente",
|
|
132
|
+
Failed: "Fallido",
|
|
133
|
+
JIR: "JIR",
|
|
134
|
+
ZKI: "ZKI",
|
|
135
|
+
"Invoice Number": "Número de factura",
|
|
136
|
+
"QR Code": "Código QR",
|
|
137
|
+
"Issuer OIB": "OIB del emisor",
|
|
138
|
+
Operator: "Operador",
|
|
139
|
+
Verify: "Verificar",
|
|
140
|
+
"Fiscalized at": "Fiscalizado el",
|
|
141
|
+
"Business Premise": "Local comercial",
|
|
142
|
+
"Electronic Device": "Dispositivo electrónico",
|
|
143
|
+
"Fiscalization Error": "Error de fiscalización",
|
|
144
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
145
|
+
"Registre un nuevo local comercial en FINA. Después del registro, deberá añadir al menos un dispositivo electrónico.",
|
|
146
|
+
} as const;
|