@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,145 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA est réservé aux entreprises croates",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"La fiscalisation FINA est uniquement disponible pour les entités avec le code pays HR (Croatie)",
|
|
5
|
+
"Test Mode (Sandbox)": "Mode test (Sandbox)",
|
|
6
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.":
|
|
7
|
+
"Cette entité est en mode test. Les factures FINA seront envoyées à l'environnement de test. Aucune fiscalisation réelle ne sera effectuée.",
|
|
8
|
+
"General Settings": "Paramètres généraux",
|
|
9
|
+
Certificate: "Certificat",
|
|
10
|
+
"Business Premises": "Locaux commerciaux",
|
|
11
|
+
"Enable FINA Fiscalization": "Activer la fiscalisation FINA",
|
|
12
|
+
"Upload and validate digital certificate first": "Téléchargez et validez d'abord le certificat numérique",
|
|
13
|
+
"Certificate Required": "Certificat requis",
|
|
14
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
15
|
+
"Vous devez télécharger un certificat numérique FINA avant de pouvoir fiscaliser les factures",
|
|
16
|
+
"Business Premise Required": "Local commercial requis",
|
|
17
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
18
|
+
"Enregistrez au moins un local commercial avant de fiscaliser les factures",
|
|
19
|
+
"Numbering Sequence": "Séquence de numérotation",
|
|
20
|
+
"Choose how invoice numbers are sequenced": "Choisissez comment les numéros de factures sont séquencés",
|
|
21
|
+
"Per Premise (N)": "Par local (N)",
|
|
22
|
+
"Per Device (P)": "Par appareil (P)",
|
|
23
|
+
Recommended: "Recommandé",
|
|
24
|
+
"One sequence per business premise. Simpler to manage.": "Une séquence par local commercial. Plus simple à gérer.",
|
|
25
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
26
|
+
"Séquence séparée par appareil électronique. Pour les configurations multi-appareils.",
|
|
27
|
+
"Operator Information": "Informations opérateur",
|
|
28
|
+
"Configure default operator for API usage": "Configurer l'opérateur par défaut pour l'utilisation de l'API",
|
|
29
|
+
"Operator OIB": "OIB de l'opérateur",
|
|
30
|
+
"OIB of the operator (11 digits, optional)": "OIB de l'opérateur (11 chiffres, optionnel)",
|
|
31
|
+
"Operator Label": "Libellé de l'opérateur",
|
|
32
|
+
"Descriptive label for the operator (optional)": "Libellé descriptif de l'opérateur (optionnel)",
|
|
33
|
+
"PDV System": "Système PDV",
|
|
34
|
+
"Entity is registered in the Croatian PDV (VAT) system": "L'entité est enregistrée dans le système PDV (TVA) croate",
|
|
35
|
+
"Digital Certificate": "Certificat numérique",
|
|
36
|
+
"Upload your FINA digital certificate": "Téléchargez votre certificat numérique FINA",
|
|
37
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
38
|
+
"Votre certificat est requis pour signer numériquement toutes les factures fiscalisées. Le certificat doit être obtenu auprès de FINA (Agence financière de Croatie).",
|
|
39
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
40
|
+
"Type de fichier invalide. Veuillez télécharger un fichier certificat .p12 ou .pfx.",
|
|
41
|
+
"Please select a certificate file and enter the passphrase":
|
|
42
|
+
"Veuillez sélectionner un fichier certificat et entrer la phrase secrète",
|
|
43
|
+
Valid: "Valide",
|
|
44
|
+
"Expiring Soon": "Expire bientôt",
|
|
45
|
+
Expired: "Expiré",
|
|
46
|
+
Missing: "Manquant",
|
|
47
|
+
Expires: "Expire",
|
|
48
|
+
Issuer: "Émetteur",
|
|
49
|
+
Subject: "Sujet",
|
|
50
|
+
"Change Certificate": "Changer le certificat",
|
|
51
|
+
"P12/PFX Certificate File": "Fichier certificat P12/PFX",
|
|
52
|
+
Selected: "Sélectionné",
|
|
53
|
+
"Certificate Passphrase": "Phrase secrète du certificat",
|
|
54
|
+
"Enter certificate passphrase": "Entrez la phrase secrète du certificat",
|
|
55
|
+
"Upload Certificate": "Télécharger le certificat",
|
|
56
|
+
"Upload New Certificate": "Télécharger un nouveau certificat",
|
|
57
|
+
"Register your business premises for FINA": "Enregistrez vos locaux commerciaux pour FINA",
|
|
58
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
59
|
+
"Chaque local doit être enregistré auprès de FINA avant de pouvoir émettre des factures fiscalisées depuis ce lieu.",
|
|
60
|
+
"Add Real Estate": "Ajouter un bien immobilier",
|
|
61
|
+
"Add Movable": "Ajouter un bien mobile",
|
|
62
|
+
"No premises registered yet": "Aucun local enregistré",
|
|
63
|
+
Active: "Actif",
|
|
64
|
+
Closed: "Fermé",
|
|
65
|
+
"Real Estate": "Bien immobilier",
|
|
66
|
+
Movable: "Unité mobile",
|
|
67
|
+
"Close Premise": "Fermer le local",
|
|
68
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
69
|
+
"Êtes-vous sûr de vouloir fermer ce local ? Cette action est irréversible.",
|
|
70
|
+
"Test Environment": "Environnement de test",
|
|
71
|
+
Production: "Production",
|
|
72
|
+
Vehicle: "Véhicule",
|
|
73
|
+
"Market Stall": "Étal de marché",
|
|
74
|
+
Other: "Autre",
|
|
75
|
+
Device: "Appareil",
|
|
76
|
+
Devices: "Appareils",
|
|
77
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
78
|
+
"Aucun appareil enregistré. Ajoutez au moins un appareil pour fiscaliser les factures.",
|
|
79
|
+
Created: "Créé",
|
|
80
|
+
"Add Electronic Device": "Ajouter un appareil électronique",
|
|
81
|
+
"Register an electronic device for this business premise.":
|
|
82
|
+
"Enregistrez un appareil électronique pour ce local commercial.",
|
|
83
|
+
"Device ID": "ID de l'appareil",
|
|
84
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Entrez un ID d'appareil numérique (ex. 1, 2, 3)",
|
|
85
|
+
Cancel: "Annuler",
|
|
86
|
+
"Register Device": "Enregistrer l'appareil",
|
|
87
|
+
"Registering...": "Enregistrement...",
|
|
88
|
+
"Register Real Estate Premise": "Enregistrer un local immobilier",
|
|
89
|
+
"Register Movable Premise": "Enregistrer un local mobile",
|
|
90
|
+
"Premise ID": "ID du local",
|
|
91
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)": "Identifiant unique pour ce local (ex. PP1, BUREAU1)",
|
|
92
|
+
"Cadastral Municipality": "Commune cadastrale",
|
|
93
|
+
"Land Registry Number": "Numéro de cadastre",
|
|
94
|
+
"Building Number": "Numéro de bâtiment",
|
|
95
|
+
"Sub-Building Number": "Numéro de sous-bâtiment",
|
|
96
|
+
Street: "Rue",
|
|
97
|
+
"House Number": "Numéro de maison",
|
|
98
|
+
"House Number Additional": "Complément au numéro",
|
|
99
|
+
Settlement: "Localité",
|
|
100
|
+
City: "Ville",
|
|
101
|
+
"Postal Code": "Code postal",
|
|
102
|
+
"Premise Type": "Type de local",
|
|
103
|
+
"Type of movable business premise": "Type de local commercial mobile",
|
|
104
|
+
"Other Movable": "Autre mobile",
|
|
105
|
+
"Register Premise": "Enregistrer le local",
|
|
106
|
+
"Save Settings": "Enregistrer les paramètres",
|
|
107
|
+
"Saving...": "Enregistrement...",
|
|
108
|
+
"Loading...": "Chargement...",
|
|
109
|
+
"Enable Fiscalization": "Activer la fiscalisation",
|
|
110
|
+
"Turn on FINA fiscalization for invoices": "Activez la fiscalisation FINA pour les factures",
|
|
111
|
+
"Setup Checklist": "Liste de vérification",
|
|
112
|
+
"Valid certificate uploaded": "Certificat valide téléchargé",
|
|
113
|
+
"At least one business premise registered": "Au moins un local commercial enregistré",
|
|
114
|
+
"At least one electronic device registered": "Au moins un appareil électronique enregistré",
|
|
115
|
+
"Cannot Enable Fiscalization": "Impossible d'activer la fiscalisation",
|
|
116
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
117
|
+
"Complétez tous les prérequis ci-dessus avant d'activer la fiscalisation FINA.",
|
|
118
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
119
|
+
"Une fois activée, toutes les nouvelles factures B2C seront automatiquement fiscalisées avec FINA",
|
|
120
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
121
|
+
"Avertissement : Désactiver la fiscalisation empêchera la fiscalisation des nouvelles factures.",
|
|
122
|
+
"Register at least one business premise first": "Enregistrez d'abord au moins un local commercial",
|
|
123
|
+
"Register at least one electronic device first": "Enregistrez d'abord au moins un appareil électronique",
|
|
124
|
+
"Activate FINA fiscalization for your invoices": "Activez la fiscalisation FINA pour vos factures",
|
|
125
|
+
"You must upload a digital certificate before you can register business premises":
|
|
126
|
+
"Vous devez télécharger un certificat numérique avant de pouvoir enregistrer des locaux commerciaux",
|
|
127
|
+
"FINA Fiscalization": "Fiscalisation FINA",
|
|
128
|
+
"Croatian tax authority fiscalization details": "Détails de fiscalisation de l'autorité fiscale croate",
|
|
129
|
+
Fiscalized: "Fiscalisé",
|
|
130
|
+
Pending: "En attente",
|
|
131
|
+
Failed: "Échoué",
|
|
132
|
+
JIR: "JIR",
|
|
133
|
+
ZKI: "ZKI",
|
|
134
|
+
"Invoice Number": "Numéro de facture",
|
|
135
|
+
"QR Code": "Code QR",
|
|
136
|
+
"Issuer OIB": "OIB de l'émetteur",
|
|
137
|
+
Operator: "Opérateur",
|
|
138
|
+
Verify: "Vérifier",
|
|
139
|
+
"Fiscalized at": "Fiscalisé le",
|
|
140
|
+
"Business Premise": "Local commercial",
|
|
141
|
+
"Electronic Device": "Appareil électronique",
|
|
142
|
+
"Fiscalization Error": "Erreur de fiscalisation",
|
|
143
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
144
|
+
"Enregistrez un nouveau local commercial auprès de FINA. Après l'enregistrement, vous devrez ajouter au moins un appareil électronique.",
|
|
145
|
+
} as const;
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA je samo za hrvatska poduzeća",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"Fiskalizacija FINA dostupna je samo za subjekte s oznakom države HR (Hrvatska)",
|
|
5
|
+
"Test Mode (Sandbox)": "Testni način (Sandbox)",
|
|
6
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.":
|
|
7
|
+
"Ovaj subjekt je u testnom načinu. FINA računi bit će poslani u testno okruženje. Prava fiskalizacija se neće provesti.",
|
|
8
|
+
"General Settings": "Opće postavke",
|
|
9
|
+
Certificate: "Certifikat",
|
|
10
|
+
"Business Premises": "Poslovni prostori",
|
|
11
|
+
"Enable FINA Fiscalization": "Omogući fiskalizaciju FINA",
|
|
12
|
+
"Upload and validate digital certificate first": "Prvo prenesite i potvrdite digitalni certifikat",
|
|
13
|
+
"Certificate Required": "Certifikat je obavezan",
|
|
14
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
15
|
+
"Morate prenijeti digitalni certifikat FINA prije nego što možete fiskalizirati račune",
|
|
16
|
+
"Business Premise Required": "Poslovni prostor je obavezan",
|
|
17
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
18
|
+
"Registrirajte barem jedan poslovni prostor prije fiskalizacije računa",
|
|
19
|
+
"Numbering Sequence": "Redoslijed numeriranja",
|
|
20
|
+
"Choose how invoice numbers are sequenced": "Odaberite način numeriranja računa",
|
|
21
|
+
"Per Premise (N)": "Po prostoru (N)",
|
|
22
|
+
"Per Device (P)": "Po uređaju (P)",
|
|
23
|
+
Recommended: "Preporučeno",
|
|
24
|
+
"One sequence per business premise. Simpler to manage.":
|
|
25
|
+
"Jedan redoslijed po poslovnom prostoru. Jednostavnije za upravljanje.",
|
|
26
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
27
|
+
"Odvojeni redoslijed za svaki elektronički uređaj. Za postavke s više uređaja.",
|
|
28
|
+
"Operator Information": "Informacije o operateru",
|
|
29
|
+
"Configure default operator for API usage": "Konfigurirajte zadanog operatera za korištenje API-ja",
|
|
30
|
+
"Operator OIB": "OIB operatera",
|
|
31
|
+
"OIB of the operator (11 digits, optional)": "OIB operatera (11 znamenki, opcionalno)",
|
|
32
|
+
"Operator Label": "Oznaka operatera",
|
|
33
|
+
"Descriptive label for the operator (optional)": "Opisna oznaka za operatera (opcionalno)",
|
|
34
|
+
"PDV System": "Sustav PDV-a",
|
|
35
|
+
"Entity is registered in the Croatian PDV (VAT) system": "Subjekt je registriran u hrvatskom sustavu PDV-a",
|
|
36
|
+
"Digital Certificate": "Digitalni certifikat",
|
|
37
|
+
"Upload your FINA digital certificate": "Prenesite svoj digitalni certifikat FINA",
|
|
38
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
39
|
+
"Vaš certifikat je potreban za digitalno potpisivanje svih fiskaliziranih računa. Certifikat morate dobiti od FINA (Financijska agencija Hrvatske).",
|
|
40
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
41
|
+
"Nevažeća vrsta datoteke. Molimo prenesite datoteku certifikata .p12 ili .pfx.",
|
|
42
|
+
"Please select a certificate file and enter the passphrase":
|
|
43
|
+
"Molimo odaberite datoteku certifikata i unesite lozinku",
|
|
44
|
+
Valid: "Valjan",
|
|
45
|
+
"Expiring Soon": "Uskoro ističe",
|
|
46
|
+
Expired: "Istekao",
|
|
47
|
+
Missing: "Nedostaje",
|
|
48
|
+
Expires: "Ističe",
|
|
49
|
+
Issuer: "Izdavatelj",
|
|
50
|
+
Subject: "Subjekt",
|
|
51
|
+
"Change Certificate": "Promijeni certifikat",
|
|
52
|
+
"P12/PFX Certificate File": "Datoteka certifikata P12/PFX",
|
|
53
|
+
Selected: "Odabrano",
|
|
54
|
+
"Certificate Passphrase": "Lozinka certifikata",
|
|
55
|
+
"Enter certificate passphrase": "Unesite lozinku certifikata",
|
|
56
|
+
"Upload Certificate": "Prenesi certifikat",
|
|
57
|
+
"Upload New Certificate": "Prenesi novi certifikat",
|
|
58
|
+
"Register your business premises for FINA": "Registrirajte poslovne prostore za FINA",
|
|
59
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
60
|
+
"Svaki prostor mora biti registriran kod FINA prije nego što možete izdavati fiskalizirane račune s te lokacije.",
|
|
61
|
+
"Add Real Estate": "Dodaj nekretninu",
|
|
62
|
+
"Add Movable": "Dodaj pokretninu",
|
|
63
|
+
"No premises registered yet": "Još nema registriranih prostora",
|
|
64
|
+
Active: "Aktivan",
|
|
65
|
+
Closed: "Zatvoren",
|
|
66
|
+
"Real Estate": "Nekretnina",
|
|
67
|
+
Movable: "Pokretna jedinica",
|
|
68
|
+
"Close Premise": "Zatvori prostor",
|
|
69
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
70
|
+
"Jeste li sigurni da želite zatvoriti ovaj prostor? Ova radnja se ne može poništiti.",
|
|
71
|
+
"Test Environment": "Testno okruženje",
|
|
72
|
+
Production: "Produkcija",
|
|
73
|
+
Vehicle: "Vozilo",
|
|
74
|
+
"Market Stall": "Tržni štand",
|
|
75
|
+
Other: "Ostalo",
|
|
76
|
+
Device: "Uređaj",
|
|
77
|
+
Devices: "Uređaji",
|
|
78
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
79
|
+
"Nema registriranih uređaja. Dodajte barem jedan uređaj za fiskalizaciju računa.",
|
|
80
|
+
Created: "Kreirano",
|
|
81
|
+
"Add Electronic Device": "Dodaj elektronički uređaj",
|
|
82
|
+
"Register an electronic device for this business premise.":
|
|
83
|
+
"Registrirajte elektronički uređaj za ovaj poslovni prostor.",
|
|
84
|
+
"Device ID": "ID uređaja",
|
|
85
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Unesite numerički ID uređaja (npr. 1, 2, 3)",
|
|
86
|
+
Cancel: "Odustani",
|
|
87
|
+
"Register Device": "Registriraj uređaj",
|
|
88
|
+
"Registering...": "Registriranje...",
|
|
89
|
+
"Register Real Estate Premise": "Registriraj prostor nekretnine",
|
|
90
|
+
"Register Movable Premise": "Registriraj pokretni prostor",
|
|
91
|
+
"Premise ID": "ID prostora",
|
|
92
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
93
|
+
"Jedinstveni identifikator za ovaj prostor (npr. PP1, URED1)",
|
|
94
|
+
"Cadastral Municipality": "Katastarska općina",
|
|
95
|
+
"Land Registry Number": "Katastarski broj",
|
|
96
|
+
"Building Number": "Broj zgrade",
|
|
97
|
+
"Sub-Building Number": "Broj podzgrade",
|
|
98
|
+
Street: "Ulica",
|
|
99
|
+
"House Number": "Kućni broj",
|
|
100
|
+
"House Number Additional": "Dodatak kućnom broju",
|
|
101
|
+
Settlement: "Naselje",
|
|
102
|
+
City: "Grad",
|
|
103
|
+
"Postal Code": "Poštanski broj",
|
|
104
|
+
"Premise Type": "Vrsta prostora",
|
|
105
|
+
"Type of movable business premise": "Vrsta pokretnog poslovnog prostora",
|
|
106
|
+
"Other Movable": "Ostalo pokretno",
|
|
107
|
+
"Register Premise": "Registriraj prostor",
|
|
108
|
+
"Save Settings": "Spremi postavke",
|
|
109
|
+
"Saving...": "Spremanje...",
|
|
110
|
+
"Loading...": "Učitavanje...",
|
|
111
|
+
"Enable Fiscalization": "Omogući fiskalizaciju",
|
|
112
|
+
"Turn on FINA fiscalization for invoices": "Uključite fiskalizaciju FINA za račune",
|
|
113
|
+
"Setup Checklist": "Kontrolna lista postavki",
|
|
114
|
+
"Valid certificate uploaded": "Valjani certifikat prenesen",
|
|
115
|
+
"At least one business premise registered": "Barem jedan poslovni prostor registriran",
|
|
116
|
+
"At least one electronic device registered": "Barem jedan elektronički uređaj registriran",
|
|
117
|
+
"Cannot Enable Fiscalization": "Nije moguće omogućiti fiskalizaciju",
|
|
118
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
119
|
+
"Ispunite sve gornje preduvjete prije omogućavanja fiskalizacije FINA.",
|
|
120
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
121
|
+
"Nakon omogućavanja, svi novi B2C računi bit će automatski fiskalizirani s FINA",
|
|
122
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
123
|
+
"Upozorenje: Onemogućavanje fiskalizacije spriječit će fiskalizaciju novih računa.",
|
|
124
|
+
"Register at least one business premise first": "Prvo registrirajte barem jedan poslovni prostor",
|
|
125
|
+
"Register at least one electronic device first": "Prvo registrirajte barem jedan elektronički uređaj",
|
|
126
|
+
"Activate FINA fiscalization for your invoices": "Aktivirajte fiskalizaciju FINA za svoje račune",
|
|
127
|
+
"You must upload a digital certificate before you can register business premises":
|
|
128
|
+
"Morate prenijeti digitalni certifikat prije nego što možete registrirati poslovne prostore",
|
|
129
|
+
"FINA Fiscalization": "FINA fiskalizacija",
|
|
130
|
+
"Croatian tax authority fiscalization details": "Pojedinosti fiskalizacije hrvatskog poreznog tijela",
|
|
131
|
+
Fiscalized: "Fiskalizirano",
|
|
132
|
+
Pending: "U tijeku",
|
|
133
|
+
Failed: "Neuspješno",
|
|
134
|
+
JIR: "JIR",
|
|
135
|
+
ZKI: "ZKI",
|
|
136
|
+
"Invoice Number": "Broj računa",
|
|
137
|
+
"QR Code": "QR kod",
|
|
138
|
+
"Issuer OIB": "OIB izdavatelja",
|
|
139
|
+
Operator: "Operater",
|
|
140
|
+
Verify: "Provjeri",
|
|
141
|
+
"Fiscalized at": "Fiskalizirano dana",
|
|
142
|
+
"Business Premise": "Poslovni prostor",
|
|
143
|
+
"Electronic Device": "Elektronički uređaj",
|
|
144
|
+
"Fiscalization Error": "Greška fiskalizacije",
|
|
145
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
146
|
+
"Registrirajte novi poslovni prostor kod FINA. Nakon registracije, morat ćete dodati barem jedan elektronički uređaj.",
|
|
147
|
+
} as const;
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA è solo per aziende croate",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"La fiscalizzazione FINA è disponibile solo per entità con codice paese HR (Croazia)",
|
|
5
|
+
"Test Mode (Sandbox)": "Modalità test (Sandbox)",
|
|
6
|
+
"This entity is in test mode. FINA invoices will be sent to the test environment. No real fiscalization will occur.":
|
|
7
|
+
"Questa entità è in modalità test. Le fatture FINA saranno inviate all'ambiente di test. Non verrà effettuata alcuna fiscalizzazione reale.",
|
|
8
|
+
"General Settings": "Impostazioni generali",
|
|
9
|
+
Certificate: "Certificato",
|
|
10
|
+
"Business Premises": "Locali commerciali",
|
|
11
|
+
"Enable FINA Fiscalization": "Abilita fiscalizzazione FINA",
|
|
12
|
+
"Upload and validate digital certificate first": "Prima carica e convalida il certificato digitale",
|
|
13
|
+
"Certificate Required": "Certificato richiesto",
|
|
14
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
15
|
+
"Devi caricare un certificato digitale FINA prima di poter fiscalizzare le fatture",
|
|
16
|
+
"Business Premise Required": "Locale commerciale richiesto",
|
|
17
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
18
|
+
"Registra almeno un locale commerciale prima di fiscalizzare le fatture",
|
|
19
|
+
"Numbering Sequence": "Sequenza di numerazione",
|
|
20
|
+
"Choose how invoice numbers are sequenced": "Scegli come vengono numerati i documenti",
|
|
21
|
+
"Per Premise (N)": "Per locale (N)",
|
|
22
|
+
"Per Device (P)": "Per dispositivo (P)",
|
|
23
|
+
Recommended: "Consigliato",
|
|
24
|
+
"One sequence per business premise. Simpler to manage.":
|
|
25
|
+
"Una sequenza per locale commerciale. Più semplice da gestire.",
|
|
26
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
27
|
+
"Sequenza separata per ogni dispositivo elettronico. Per configurazioni multi-dispositivo.",
|
|
28
|
+
"Operator Information": "Informazioni operatore",
|
|
29
|
+
"Configure default operator for API usage": "Configura l'operatore predefinito per l'utilizzo dell'API",
|
|
30
|
+
"Operator OIB": "OIB dell'operatore",
|
|
31
|
+
"OIB of the operator (11 digits, optional)": "OIB dell'operatore (11 cifre, opzionale)",
|
|
32
|
+
"Operator Label": "Etichetta operatore",
|
|
33
|
+
"Descriptive label for the operator (optional)": "Etichetta descrittiva per l'operatore (opzionale)",
|
|
34
|
+
"PDV System": "Sistema PDV",
|
|
35
|
+
"Entity is registered in the Croatian PDV (VAT) system": "L'entità è registrata nel sistema PDV (IVA) croato",
|
|
36
|
+
"Digital Certificate": "Certificato digitale",
|
|
37
|
+
"Upload your FINA digital certificate": "Carica il tuo certificato digitale FINA",
|
|
38
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
39
|
+
"Il tuo certificato è necessario per firmare digitalmente tutte le fatture fiscalizzate. Il certificato deve essere ottenuto dalla FINA (Agenzia finanziaria della Croazia).",
|
|
40
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
41
|
+
"Tipo di file non valido. Carica un file certificato .p12 o .pfx.",
|
|
42
|
+
"Please select a certificate file and enter the passphrase":
|
|
43
|
+
"Seleziona un file certificato e inserisci la passphrase",
|
|
44
|
+
Valid: "Valido",
|
|
45
|
+
"Expiring Soon": "In scadenza",
|
|
46
|
+
Expired: "Scaduto",
|
|
47
|
+
Missing: "Mancante",
|
|
48
|
+
Expires: "Scade",
|
|
49
|
+
Issuer: "Emittente",
|
|
50
|
+
Subject: "Soggetto",
|
|
51
|
+
"Change Certificate": "Cambia certificato",
|
|
52
|
+
"P12/PFX Certificate File": "File certificato P12/PFX",
|
|
53
|
+
Selected: "Selezionato",
|
|
54
|
+
"Certificate Passphrase": "Passphrase del certificato",
|
|
55
|
+
"Enter certificate passphrase": "Inserisci la passphrase del certificato",
|
|
56
|
+
"Upload Certificate": "Carica certificato",
|
|
57
|
+
"Upload New Certificate": "Carica nuovo certificato",
|
|
58
|
+
"Register your business premises for FINA": "Registra i tuoi locali commerciali per FINA",
|
|
59
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
60
|
+
"Ogni locale deve essere registrato presso FINA prima di poter emettere fatture fiscalizzate da quella sede.",
|
|
61
|
+
"Add Real Estate": "Aggiungi immobile",
|
|
62
|
+
"Add Movable": "Aggiungi mobile",
|
|
63
|
+
"No premises registered yet": "Nessun locale registrato",
|
|
64
|
+
Active: "Attivo",
|
|
65
|
+
Closed: "Chiuso",
|
|
66
|
+
"Real Estate": "Immobile",
|
|
67
|
+
Movable: "Unità mobile",
|
|
68
|
+
"Close Premise": "Chiudi locale",
|
|
69
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
70
|
+
"Sei sicuro di voler chiudere questo locale? Questa azione non può essere annullata.",
|
|
71
|
+
"Test Environment": "Ambiente di test",
|
|
72
|
+
Production: "Produzione",
|
|
73
|
+
Vehicle: "Veicolo",
|
|
74
|
+
"Market Stall": "Bancarella",
|
|
75
|
+
Other: "Altro",
|
|
76
|
+
Device: "Dispositivo",
|
|
77
|
+
Devices: "Dispositivi",
|
|
78
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
79
|
+
"Nessun dispositivo registrato. Aggiungi almeno un dispositivo per fiscalizzare le fatture.",
|
|
80
|
+
Created: "Creato",
|
|
81
|
+
"Add Electronic Device": "Aggiungi dispositivo elettronico",
|
|
82
|
+
"Register an electronic device for this business premise.":
|
|
83
|
+
"Registra un dispositivo elettronico per questo locale commerciale.",
|
|
84
|
+
"Device ID": "ID dispositivo",
|
|
85
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Inserisci un ID dispositivo numerico (es. 1, 2, 3)",
|
|
86
|
+
Cancel: "Annulla",
|
|
87
|
+
"Register Device": "Registra dispositivo",
|
|
88
|
+
"Registering...": "Registrazione...",
|
|
89
|
+
"Register Real Estate Premise": "Registra locale immobile",
|
|
90
|
+
"Register Movable Premise": "Registra locale mobile",
|
|
91
|
+
"Premise ID": "ID locale",
|
|
92
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
93
|
+
"Identificatore univoco per questo locale (es. PP1, UFFICIO1)",
|
|
94
|
+
"Cadastral Municipality": "Comune catastale",
|
|
95
|
+
"Land Registry Number": "Numero catastale",
|
|
96
|
+
"Building Number": "Numero edificio",
|
|
97
|
+
"Sub-Building Number": "Numero sotto-edificio",
|
|
98
|
+
Street: "Via",
|
|
99
|
+
"House Number": "Numero civico",
|
|
100
|
+
"House Number Additional": "Aggiunta al numero civico",
|
|
101
|
+
Settlement: "Località",
|
|
102
|
+
City: "Città",
|
|
103
|
+
"Postal Code": "Codice postale",
|
|
104
|
+
"Premise Type": "Tipo di locale",
|
|
105
|
+
"Type of movable business premise": "Tipo di locale commerciale mobile",
|
|
106
|
+
"Other Movable": "Altro mobile",
|
|
107
|
+
"Register Premise": "Registra locale",
|
|
108
|
+
"Save Settings": "Salva impostazioni",
|
|
109
|
+
"Saving...": "Salvataggio...",
|
|
110
|
+
"Loading...": "Caricamento...",
|
|
111
|
+
"Enable Fiscalization": "Abilita fiscalizzazione",
|
|
112
|
+
"Turn on FINA fiscalization for invoices": "Attiva la fiscalizzazione FINA per le fatture",
|
|
113
|
+
"Setup Checklist": "Lista di controllo configurazione",
|
|
114
|
+
"Valid certificate uploaded": "Certificato valido caricato",
|
|
115
|
+
"At least one business premise registered": "Almeno un locale commerciale registrato",
|
|
116
|
+
"At least one electronic device registered": "Almeno un dispositivo elettronico registrato",
|
|
117
|
+
"Cannot Enable Fiscalization": "Impossibile abilitare la fiscalizzazione",
|
|
118
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
119
|
+
"Completa tutti i prerequisiti sopra prima di abilitare la fiscalizzazione FINA.",
|
|
120
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
121
|
+
"Una volta abilitata, tutte le nuove fatture B2C saranno automaticamente fiscalizzate con FINA",
|
|
122
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
123
|
+
"Attenzione: Disabilitare la fiscalizzazione impedirà la fiscalizzazione delle nuove fatture.",
|
|
124
|
+
"Register at least one business premise first": "Registra prima almeno un locale commerciale",
|
|
125
|
+
"Register at least one electronic device first": "Registra prima almeno un dispositivo elettronico",
|
|
126
|
+
"Activate FINA fiscalization for your invoices": "Attiva la fiscalizzazione FINA per le tue fatture",
|
|
127
|
+
"You must upload a digital certificate before you can register business premises":
|
|
128
|
+
"Devi caricare un certificato digitale prima di poter registrare i locali commerciali",
|
|
129
|
+
"FINA Fiscalization": "Fiscalizzazione FINA",
|
|
130
|
+
"Croatian tax authority fiscalization details": "Dettagli fiscalizzazione dell'autorità fiscale croata",
|
|
131
|
+
Fiscalized: "Fiscalizzato",
|
|
132
|
+
Pending: "In attesa",
|
|
133
|
+
Failed: "Fallito",
|
|
134
|
+
JIR: "JIR",
|
|
135
|
+
ZKI: "ZKI",
|
|
136
|
+
"Invoice Number": "Numero fattura",
|
|
137
|
+
"QR Code": "Codice QR",
|
|
138
|
+
"Issuer OIB": "OIB dell'emittente",
|
|
139
|
+
Operator: "Operatore",
|
|
140
|
+
Verify: "Verifica",
|
|
141
|
+
"Fiscalized at": "Fiscalizzato il",
|
|
142
|
+
"Business Premise": "Locale commerciale",
|
|
143
|
+
"Electronic Device": "Dispositivo elettronico",
|
|
144
|
+
"Fiscalization Error": "Errore di fiscalizzazione",
|
|
145
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
146
|
+
"Registra un nuovo locale commerciale presso FINA. Dopo la registrazione, dovrai aggiungere almeno un dispositivo elettronico.",
|
|
147
|
+
} as const;
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"FINA is for Croatian Entities": "FINA is alleen voor Kroatische bedrijven",
|
|
3
|
+
"FINA fiscalization is only available for entities with country code HR":
|
|
4
|
+
"FINA-fiscalisatie is alleen beschikbaar voor entiteiten met landcode HR (Kroatië)",
|
|
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
|
+
"Deze entiteit is in testmodus. FINA-facturen worden naar de testomgeving gestuurd. Er vindt geen echte fiscalisatie plaats.",
|
|
8
|
+
"General Settings": "Algemene instellingen",
|
|
9
|
+
Certificate: "Certificaat",
|
|
10
|
+
"Business Premises": "Bedrijfsruimten",
|
|
11
|
+
"Enable FINA Fiscalization": "FINA-fiscalisatie inschakelen",
|
|
12
|
+
"Upload and validate digital certificate first": "Upload en valideer eerst het digitale certificaat",
|
|
13
|
+
"Certificate Required": "Certificaat vereist",
|
|
14
|
+
"You must upload a FINA digital certificate before you can fiscalize invoices":
|
|
15
|
+
"U moet een FINA digitaal certificaat uploaden voordat u facturen kunt fiscaliseren",
|
|
16
|
+
"Business Premise Required": "Bedrijfsruimte vereist",
|
|
17
|
+
"Register at least one business premise before fiscalizing invoices":
|
|
18
|
+
"Registreer ten minste één bedrijfsruimte voordat u facturen fiscaliseert",
|
|
19
|
+
"Numbering Sequence": "Nummeringsreeks",
|
|
20
|
+
"Choose how invoice numbers are sequenced": "Kies hoe factuurnummers worden gesequenst",
|
|
21
|
+
"Per Premise (N)": "Per ruimte (N)",
|
|
22
|
+
"Per Device (P)": "Per apparaat (P)",
|
|
23
|
+
Recommended: "Aanbevolen",
|
|
24
|
+
"One sequence per business premise. Simpler to manage.": "Eén reeks per bedrijfsruimte. Eenvoudiger te beheren.",
|
|
25
|
+
"Separate sequence per electronic device. For multi-device setups.":
|
|
26
|
+
"Aparte reeks per elektronisch apparaat. Voor multi-apparaat opstellingen.",
|
|
27
|
+
"Operator Information": "Operatorinformatie",
|
|
28
|
+
"Configure default operator for API usage": "Standaard operator configureren voor API-gebruik",
|
|
29
|
+
"Operator OIB": "OIB van de operator",
|
|
30
|
+
"OIB of the operator (11 digits, optional)": "OIB van de operator (11 cijfers, optioneel)",
|
|
31
|
+
"Operator Label": "Operatorlabel",
|
|
32
|
+
"Descriptive label for the operator (optional)": "Beschrijvend label voor de operator (optioneel)",
|
|
33
|
+
"PDV System": "PDV-systeem",
|
|
34
|
+
"Entity is registered in the Croatian PDV (VAT) system":
|
|
35
|
+
"De entiteit is geregistreerd in het Kroatische PDV (btw) systeem",
|
|
36
|
+
"Digital Certificate": "Digitaal certificaat",
|
|
37
|
+
"Upload your FINA digital certificate": "Upload uw FINA digitaal certificaat",
|
|
38
|
+
"Your certificate is required to digitally sign all fiscalized invoices. The certificate must be obtained from FINA (Financial Agency of Croatia).":
|
|
39
|
+
"Uw certificaat is vereist om alle gefiscaliseerde facturen digitaal te ondertekenen. Het certificaat moet worden verkregen van FINA (Financieel Agentschap van Kroatië).",
|
|
40
|
+
"Invalid file type. Please upload a .p12 or .pfx certificate file.":
|
|
41
|
+
"Ongeldig bestandstype. Upload een .p12 of .pfx certificaatbestand.",
|
|
42
|
+
"Please select a certificate file and enter the passphrase":
|
|
43
|
+
"Selecteer een certificaatbestand en voer de wachtwoordzin in",
|
|
44
|
+
Valid: "Geldig",
|
|
45
|
+
"Expiring Soon": "Verloopt binnenkort",
|
|
46
|
+
Expired: "Verlopen",
|
|
47
|
+
Missing: "Ontbreekt",
|
|
48
|
+
Expires: "Verloopt",
|
|
49
|
+
Issuer: "Uitgever",
|
|
50
|
+
Subject: "Onderwerp",
|
|
51
|
+
"Change Certificate": "Certificaat wijzigen",
|
|
52
|
+
"P12/PFX Certificate File": "P12/PFX certificaatbestand",
|
|
53
|
+
Selected: "Geselecteerd",
|
|
54
|
+
"Certificate Passphrase": "Certificaat wachtwoordzin",
|
|
55
|
+
"Enter certificate passphrase": "Voer de certificaat wachtwoordzin in",
|
|
56
|
+
"Upload Certificate": "Certificaat uploaden",
|
|
57
|
+
"Upload New Certificate": "Nieuw certificaat uploaden",
|
|
58
|
+
"Register your business premises for FINA": "Registreer uw bedrijfsruimten voor FINA",
|
|
59
|
+
"Each premise must be registered with FINA before you can issue fiscalized invoices from that location.":
|
|
60
|
+
"Elke ruimte moet bij FINA zijn geregistreerd voordat u gefiscaliseerde facturen kunt uitgeven vanaf die locatie.",
|
|
61
|
+
"Add Real Estate": "Vastgoed toevoegen",
|
|
62
|
+
"Add Movable": "Mobiel toevoegen",
|
|
63
|
+
"No premises registered yet": "Nog geen ruimten geregistreerd",
|
|
64
|
+
Active: "Actief",
|
|
65
|
+
Closed: "Gesloten",
|
|
66
|
+
"Real Estate": "Vastgoed",
|
|
67
|
+
Movable: "Mobiele eenheid",
|
|
68
|
+
"Close Premise": "Ruimte sluiten",
|
|
69
|
+
"Are you sure you want to close this premise? This action cannot be undone.":
|
|
70
|
+
"Weet u zeker dat u deze ruimte wilt sluiten? Deze actie kan niet ongedaan worden gemaakt.",
|
|
71
|
+
"Test Environment": "Testomgeving",
|
|
72
|
+
Production: "Productie",
|
|
73
|
+
Vehicle: "Voertuig",
|
|
74
|
+
"Market Stall": "Marktkraam",
|
|
75
|
+
Other: "Overig",
|
|
76
|
+
Device: "Apparaat",
|
|
77
|
+
Devices: "Apparaten",
|
|
78
|
+
"No devices registered. Add at least one device to fiscalize invoices.":
|
|
79
|
+
"Geen apparaten geregistreerd. Voeg ten minste één apparaat toe om facturen te fiscaliseren.",
|
|
80
|
+
Created: "Aangemaakt",
|
|
81
|
+
"Add Electronic Device": "Elektronisch apparaat toevoegen",
|
|
82
|
+
"Register an electronic device for this business premise.":
|
|
83
|
+
"Registreer een elektronisch apparaat voor deze bedrijfsruimte.",
|
|
84
|
+
"Device ID": "Apparaat-ID",
|
|
85
|
+
"Enter a numeric device ID (e.g., 1, 2, 3)": "Voer een numeriek apparaat-ID in (bijv. 1, 2, 3)",
|
|
86
|
+
Cancel: "Annuleren",
|
|
87
|
+
"Register Device": "Apparaat registreren",
|
|
88
|
+
"Registering...": "Registreren...",
|
|
89
|
+
"Register Real Estate Premise": "Vastgoedruimte registreren",
|
|
90
|
+
"Register Movable Premise": "Mobiele ruimte registreren",
|
|
91
|
+
"Premise ID": "Ruimte-ID",
|
|
92
|
+
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
93
|
+
"Unieke identificatie voor deze ruimte (bijv. PP1, KANTOOR1)",
|
|
94
|
+
"Cadastral Municipality": "Kadastrale gemeente",
|
|
95
|
+
"Land Registry Number": "Kadasternummer",
|
|
96
|
+
"Building Number": "Gebouwnummer",
|
|
97
|
+
"Sub-Building Number": "Subgebouwnummer",
|
|
98
|
+
Street: "Straat",
|
|
99
|
+
"House Number": "Huisnummer",
|
|
100
|
+
"House Number Additional": "Huisnummer toevoeging",
|
|
101
|
+
Settlement: "Woonplaats",
|
|
102
|
+
City: "Stad",
|
|
103
|
+
"Postal Code": "Postcode",
|
|
104
|
+
"Premise Type": "Type ruimte",
|
|
105
|
+
"Type of movable business premise": "Type mobiele bedrijfsruimte",
|
|
106
|
+
"Other Movable": "Overig mobiel",
|
|
107
|
+
"Register Premise": "Ruimte registreren",
|
|
108
|
+
"Save Settings": "Instellingen opslaan",
|
|
109
|
+
"Saving...": "Opslaan...",
|
|
110
|
+
"Loading...": "Laden...",
|
|
111
|
+
"Enable Fiscalization": "Fiscalisatie inschakelen",
|
|
112
|
+
"Turn on FINA fiscalization for invoices": "Schakel FINA-fiscalisatie in voor facturen",
|
|
113
|
+
"Setup Checklist": "Installatiechecklist",
|
|
114
|
+
"Valid certificate uploaded": "Geldig certificaat geüpload",
|
|
115
|
+
"At least one business premise registered": "Ten minste één bedrijfsruimte geregistreerd",
|
|
116
|
+
"At least one electronic device registered": "Ten minste één elektronisch apparaat geregistreerd",
|
|
117
|
+
"Cannot Enable Fiscalization": "Kan fiscalisatie niet inschakelen",
|
|
118
|
+
"Complete all prerequisites above before enabling FINA fiscalization.":
|
|
119
|
+
"Voltooi alle bovenstaande vereisten voordat u FINA-fiscalisatie inschakelt.",
|
|
120
|
+
"Once enabled, all new B2C invoices will be automatically fiscalized with FINA":
|
|
121
|
+
"Eenmaal ingeschakeld worden alle nieuwe B2C-facturen automatisch gefiscaliseerd met FINA",
|
|
122
|
+
"Warning: Disabling fiscalization will prevent new invoices from being fiscalized.":
|
|
123
|
+
"Waarschuwing: Het uitschakelen van fiscalisatie voorkomt dat nieuwe facturen worden gefiscaliseerd.",
|
|
124
|
+
"Register at least one business premise first": "Registreer eerst ten minste één bedrijfsruimte",
|
|
125
|
+
"Register at least one electronic device first": "Registreer eerst ten minste één elektronisch apparaat",
|
|
126
|
+
"Activate FINA fiscalization for your invoices": "Activeer FINA-fiscalisatie voor uw facturen",
|
|
127
|
+
"You must upload a digital certificate before you can register business premises":
|
|
128
|
+
"U moet een digitaal certificaat uploaden voordat u bedrijfsruimten kunt registreren",
|
|
129
|
+
"FINA Fiscalization": "FINA-fiscalisatie",
|
|
130
|
+
"Croatian tax authority fiscalization details": "Fiscalisatiegegevens van de Kroatische belastingdienst",
|
|
131
|
+
Fiscalized: "Gefiscaliseerd",
|
|
132
|
+
Pending: "In behandeling",
|
|
133
|
+
Failed: "Mislukt",
|
|
134
|
+
JIR: "JIR",
|
|
135
|
+
ZKI: "ZKI",
|
|
136
|
+
"Invoice Number": "Factuurnummer",
|
|
137
|
+
"QR Code": "QR-code",
|
|
138
|
+
"Issuer OIB": "OIB van de uitgever",
|
|
139
|
+
Operator: "Operator",
|
|
140
|
+
Verify: "Verifiëren",
|
|
141
|
+
"Fiscalized at": "Gefiscaliseerd op",
|
|
142
|
+
"Business Premise": "Bedrijfsruimte",
|
|
143
|
+
"Electronic Device": "Elektronisch apparaat",
|
|
144
|
+
"Fiscalization Error": "Fiscalisatiefout",
|
|
145
|
+
"Register a new business premise with FINA. After registration, you'll need to add at least one electronic device.":
|
|
146
|
+
"Registreer een nieuwe bedrijfsruimte bij FINA. Na registratie moet u ten minste één elektronisch apparaat toevoegen.",
|
|
147
|
+
} as const;
|