@spaceinvoices/react-ui 0.4.10 → 0.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -8
- package/cli/dist/index.js +89 -26
- package/package.json +6 -2
- package/registry.json +30 -31
- package/spaceinvoices.schema.json +6 -1
- package/src/common/autocomplete.tsx +41 -25
- package/src/components/activities/locales/bg.ts +21 -0
- package/src/components/activities/locales/cs.ts +21 -0
- package/src/components/activities/locales/en.ts +21 -0
- package/src/components/activities/locales/et.ts +21 -0
- package/src/components/activities/locales/fi.ts +21 -0
- package/src/components/activities/locales/is.ts +21 -0
- package/src/components/activities/locales/nb.ts +21 -0
- package/src/components/activities/locales/sk.ts +21 -0
- package/src/components/activities/locales/sv.ts +21 -0
- package/src/components/advance-invoices/advance-invoices.hooks.ts +2 -3
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +290 -69
- package/src/components/advance-invoices/create/locales/bg.ts +48 -0
- package/src/components/advance-invoices/create/locales/cs.ts +48 -0
- package/src/components/advance-invoices/create/locales/en.ts +48 -0
- package/src/components/advance-invoices/create/locales/et.ts +48 -0
- package/src/components/advance-invoices/create/locales/fi.ts +48 -0
- package/src/components/advance-invoices/create/locales/hr.ts +17 -17
- package/src/components/advance-invoices/create/locales/is.ts +48 -0
- package/src/components/advance-invoices/create/locales/nb.ts +48 -0
- package/src/components/advance-invoices/create/locales/sk.ts +48 -0
- package/src/components/advance-invoices/create/locales/sl.ts +9 -7
- package/src/components/advance-invoices/create/locales/sv.ts +48 -0
- package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +16 -2
- package/src/components/advance-invoices/list/list-row-actions.tsx +48 -16
- package/src/components/advance-invoices/list/list-table.tsx +33 -8
- package/src/components/advance-invoices/list/locales/bg.ts +51 -0
- package/src/components/advance-invoices/list/locales/cs.ts +51 -0
- package/src/components/advance-invoices/list/locales/en.ts +33 -2
- package/src/components/advance-invoices/list/locales/et.ts +51 -0
- package/src/components/advance-invoices/list/locales/fi.ts +51 -0
- package/src/components/advance-invoices/list/locales/hr.ts +15 -15
- package/src/components/advance-invoices/list/locales/is.ts +51 -0
- package/src/components/advance-invoices/list/locales/nb.ts +51 -0
- package/src/components/advance-invoices/list/locales/sk.ts +51 -0
- package/src/components/advance-invoices/list/locales/sv.ts +51 -0
- package/src/components/advance-invoices/list/use-advance-invoice-download.ts +3 -5
- package/src/components/common/autocomplete-locales.ts +101 -0
- package/src/components/company-registry/company-registry.hooks.ts +3 -7
- package/src/components/credit-notes/create/create-credit-note-form.tsx +211 -22
- package/src/components/credit-notes/create/locales/bg.ts +87 -0
- package/src/components/credit-notes/create/locales/cs.ts +87 -0
- package/src/components/credit-notes/create/locales/en.ts +87 -0
- package/src/components/credit-notes/create/locales/et.ts +87 -0
- package/src/components/credit-notes/create/locales/fi.ts +87 -0
- package/src/components/credit-notes/create/locales/hr.ts +24 -24
- package/src/components/credit-notes/create/locales/is.ts +87 -0
- package/src/components/credit-notes/create/locales/nb.ts +87 -0
- package/src/components/credit-notes/create/locales/sk.ts +87 -0
- package/src/components/credit-notes/create/locales/sl.ts +9 -9
- package/src/components/credit-notes/create/locales/sv.ts +87 -0
- package/src/components/credit-notes/create/prepare-credit-note-submission.ts +32 -0
- package/src/components/credit-notes/credit-notes.hooks.ts +15 -3
- package/src/components/credit-notes/list/list-row-actions.tsx +19 -7
- package/src/components/credit-notes/list/list-table.tsx +58 -7
- package/src/components/credit-notes/list/locales/bg.ts +48 -0
- package/src/components/credit-notes/list/locales/cs.ts +48 -0
- package/src/components/credit-notes/list/locales/en.ts +31 -2
- package/src/components/credit-notes/list/locales/et.ts +48 -0
- package/src/components/credit-notes/list/locales/fi.ts +48 -0
- package/src/components/credit-notes/list/locales/hr.ts +12 -12
- package/src/components/credit-notes/list/locales/is.ts +48 -0
- package/src/components/credit-notes/list/locales/nb.ts +48 -0
- package/src/components/credit-notes/list/locales/sk.ts +48 -0
- package/src/components/credit-notes/list/locales/sv.ts +48 -0
- package/src/components/credit-notes/list/use-credit-note-download.ts +3 -5
- package/src/components/customers/create-customer-form/locales/bg.ts +21 -0
- package/src/components/customers/create-customer-form/locales/cs.ts +21 -0
- package/src/components/customers/create-customer-form/locales/en.ts +21 -0
- package/src/components/customers/create-customer-form/locales/et.ts +21 -0
- package/src/components/customers/create-customer-form/locales/fi.ts +21 -0
- package/src/components/customers/create-customer-form/locales/hr.ts +11 -11
- package/src/components/customers/create-customer-form/locales/is.ts +21 -0
- package/src/components/customers/create-customer-form/locales/nb.ts +21 -0
- package/src/components/customers/create-customer-form/locales/sk.ts +21 -0
- package/src/components/customers/create-customer-form/locales/sv.ts +21 -0
- package/src/components/customers/customer-autocomplete.tsx +32 -4
- package/src/components/customers/customer-list-table/customer-list-table.tsx +8 -6
- package/src/components/customers/customer-list-table/locales/bg.ts +25 -0
- package/src/components/customers/customer-list-table/locales/cs.ts +25 -0
- package/src/components/customers/customer-list-table/locales/en.ts +17 -2
- package/src/components/customers/customer-list-table/locales/et.ts +25 -0
- package/src/components/customers/customer-list-table/locales/fi.ts +25 -0
- package/src/components/customers/customer-list-table/locales/hr.ts +11 -11
- package/src/components/customers/customer-list-table/locales/is.ts +25 -0
- package/src/components/customers/customer-list-table/locales/nb.ts +25 -0
- package/src/components/customers/customer-list-table/locales/sk.ts +25 -0
- package/src/components/customers/customer-list-table/locales/sv.ts +25 -0
- package/src/components/customers/customers.hooks.ts +14 -17
- package/src/components/customers/edit-customer-form/locales/bg.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/cs.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/en.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/et.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/fi.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/hr.ts +5 -5
- package/src/components/customers/edit-customer-form/locales/is.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/nb.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/sk.ts +13 -0
- package/src/components/customers/edit-customer-form/locales/sv.ts +13 -0
- package/src/components/dashboard/collection-rate-card/collection-rate-card.tsx +7 -6
- package/src/components/dashboard/collection-rate-card/locales/en.ts +3 -0
- package/src/components/dashboard/collection-rate-card/use-collection-rate.ts +8 -7
- package/src/components/dashboard/invoice-status-chart/invoice-status-chart.tsx +7 -4
- package/src/components/dashboard/invoice-status-chart/locales/bg.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/cs.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/de.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/en.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/es.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/et.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/fi.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/fr.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/hr.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/is.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/it.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/nb.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/nl.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/pl.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/pt.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/sk.ts +5 -5
- package/src/components/dashboard/invoice-status-chart/locales/sl.ts +1 -1
- package/src/components/dashboard/invoice-status-chart/locales/sv.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/bg.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/cs.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/en.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/et.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/fi.ts +6 -6
- package/src/components/dashboard/payment-methods-chart/locales/hr.ts +3 -3
- package/src/components/dashboard/payment-methods-chart/locales/is.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/nb.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/sk.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/locales/sv.ts +5 -5
- package/src/components/dashboard/payment-methods-chart/payment-methods-chart.tsx +4 -3
- package/src/components/dashboard/payment-trend-chart/locales/bg.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/cs.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/en.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/et.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/fi.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/is.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/nb.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/sk.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/locales/sv.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/payment-trend-chart.tsx +4 -3
- package/src/components/dashboard/payment-trend-chart/use-payment-trend.ts +12 -9
- package/src/components/dashboard/revenue-card.tsx +3 -3
- package/src/components/dashboard/revenue-trend-chart/locales/bg.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/cs.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/en.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/et.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/fi.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/is.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/nb.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/sk.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/locales/sv.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/revenue-trend-chart.tsx +4 -3
- package/src/components/dashboard/revenue-trend-chart/use-revenue-trend.ts +4 -3
- package/src/components/dashboard/shared/local-date.ts +11 -0
- package/src/components/dashboard/shared/use-revenue-data.ts +6 -5
- package/src/components/dashboard/shared/use-stats-query.ts +7 -11
- package/src/components/dashboard/stat-card.tsx +3 -3
- package/src/components/dashboard/tax-collected-card/tax-collected-card.tsx +11 -9
- package/src/components/dashboard/tax-collected-card/use-tax-collected.ts +3 -2
- package/src/components/dashboard/top-customers-chart/locales/bg.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/cs.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/en.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/et.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/fi.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/is.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/nb.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/sk.ts +2 -2
- package/src/components/dashboard/top-customers-chart/locales/sv.ts +2 -2
- package/src/components/dashboard/top-customers-chart/top-customers-chart.tsx +4 -3
- package/src/components/dashboard/top-customers-chart/use-top-customers.ts +7 -20
- package/src/components/delivery-notes/create/create-delivery-note-form.tsx +61 -31
- package/src/components/delivery-notes/create/locales/bg.ts +68 -0
- package/src/components/delivery-notes/create/locales/cs.ts +68 -0
- package/src/components/delivery-notes/create/locales/en.ts +68 -0
- package/src/components/delivery-notes/create/locales/et.ts +68 -0
- package/src/components/delivery-notes/create/locales/fi.ts +68 -0
- package/src/components/delivery-notes/create/locales/hr.ts +6 -6
- package/src/components/delivery-notes/create/locales/is.ts +68 -0
- package/src/components/delivery-notes/create/locales/nb.ts +68 -0
- package/src/components/delivery-notes/create/locales/sk.ts +68 -0
- package/src/components/delivery-notes/create/locales/sl.ts +5 -5
- package/src/components/delivery-notes/create/locales/sv.ts +68 -0
- package/src/components/delivery-notes/delivery-notes.hooks.ts +20 -3
- package/src/components/delivery-notes/list/list-row-actions.tsx +62 -16
- package/src/components/delivery-notes/list/list-table.tsx +42 -9
- package/src/components/delivery-notes/list/locales/bg.ts +40 -0
- package/src/components/delivery-notes/list/locales/cs.ts +40 -0
- package/src/components/delivery-notes/list/locales/et.ts +40 -0
- package/src/components/delivery-notes/list/locales/fi.ts +40 -0
- package/src/components/delivery-notes/list/locales/is.ts +40 -0
- package/src/components/delivery-notes/list/locales/nb.ts +40 -0
- package/src/components/delivery-notes/list/locales/sk.ts +40 -0
- package/src/components/delivery-notes/list/locales/sv.ts +40 -0
- package/src/components/delivery-notes/list/use-delivery-note-download.ts +3 -5
- package/src/components/documents/create/document-add-item-form.tsx +256 -147
- package/src/components/documents/create/document-add-item-tax-rate-field.tsx +2 -1
- package/src/components/documents/create/document-details-section.tsx +30 -12
- package/src/components/documents/create/document-item-validation.ts +50 -0
- package/src/components/documents/create/document-items-section.tsx +44 -6
- package/src/components/documents/create/document-recipient-section.tsx +10 -2
- package/src/components/documents/create/linked-documents-info.tsx +4 -3
- package/src/components/documents/create/live-preview.tsx +19 -15
- package/src/components/documents/create/mark-as-paid-section.tsx +77 -20
- package/src/components/documents/create/payment-rows.ts +291 -0
- package/src/components/documents/create/prepare-document-submission.ts +24 -13
- package/src/components/documents/create/scroll-to-first-invalid-field.ts +27 -0
- package/src/components/documents/create/smart-code-insert-button.tsx +5 -53
- package/src/components/documents/create/use-document-customer-form.ts +74 -25
- package/src/components/documents/documents.hooks.ts +3 -5
- package/src/components/documents/index.ts +1 -0
- package/src/components/documents/public/index.ts +1 -0
- package/src/components/documents/public/public-document-summary.tsx +343 -0
- package/src/components/documents/shared/document-preview-display.tsx +65 -39
- package/src/components/documents/shared/index.ts +6 -1
- package/src/components/documents/shared/scaled-document-preview.tsx +33 -19
- package/src/components/documents/types.ts +24 -0
- package/src/components/documents/view/document-actions-bar.tsx +241 -62
- package/src/components/documents/view/document-activities-list.tsx +23 -11
- package/src/components/documents/view/document-details-card.tsx +7 -27
- package/src/components/documents/view/document-payments-list.tsx +114 -57
- package/src/components/documents/view/document-relations-list.tsx +26 -6
- package/src/components/documents/view/document-sidebar.tsx +25 -3
- package/src/components/documents/view/document-version-history.tsx +137 -0
- package/src/components/documents/view/index.ts +1 -0
- package/src/components/documents/view/locales/bg.ts +143 -0
- package/src/components/documents/view/locales/cs.ts +143 -0
- package/src/components/documents/view/locales/de.ts +13 -0
- package/src/components/documents/view/locales/en.ts +143 -0
- package/src/components/documents/view/locales/es.ts +13 -0
- package/src/components/documents/view/locales/et.ts +143 -0
- package/src/components/documents/view/locales/fi.ts +143 -0
- package/src/components/documents/view/locales/fr.ts +13 -0
- package/src/components/documents/view/locales/hr.ts +13 -0
- package/src/components/documents/view/locales/is.ts +143 -0
- package/src/components/documents/view/locales/it.ts +13 -0
- package/src/components/documents/view/locales/nb.ts +143 -0
- package/src/components/documents/view/locales/nl.ts +13 -0
- package/src/components/documents/view/locales/pl.ts +13 -0
- package/src/components/documents/view/locales/pt.ts +13 -0
- package/src/components/documents/view/locales/sk.ts +143 -0
- package/src/components/documents/view/locales/sl.ts +13 -0
- package/src/components/documents/view/locales/sv.ts +143 -0
- package/src/components/documents/view/use-document-download.ts +18 -17
- package/src/components/entities/create-entity-form.tsx +200 -12
- package/src/components/entities/entities.hooks.ts +15 -7
- package/src/components/entities/entity-settings-form/entity-settings-form.tsx +131 -75
- package/src/components/entities/entity-settings-form/input-with-preview.tsx +28 -4
- package/src/components/entities/entity-settings-form/locales/bg.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/cs.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/de.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/en.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/es.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/et.ts +198 -0
- package/src/components/entities/entity-settings-form/locales/fi.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/hr.ts +26 -11
- package/src/components/entities/entity-settings-form/locales/is.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/nb.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/pl.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/pt.ts +18 -3
- package/src/components/entities/entity-settings-form/locales/sk.ts +199 -0
- package/src/components/entities/entity-settings-form/locales/sl.ts +30 -15
- package/src/components/entities/entity-settings-form/locales/sv.ts +205 -0
- package/src/components/entities/fina-settings-form/fina-operator-required-dialog.tsx +34 -9
- package/src/components/entities/fina-settings-form/fina-settings-form.tsx +2 -0
- package/src/components/entities/fina-settings-form/fina-settings.hooks.ts +14 -45
- package/src/components/entities/fina-settings-form/locales/bg.ts +163 -0
- package/src/components/entities/fina-settings-form/locales/cs.ts +163 -0
- package/src/components/entities/fina-settings-form/locales/et.ts +163 -0
- package/src/components/entities/fina-settings-form/locales/fi.ts +163 -0
- package/src/components/entities/fina-settings-form/locales/hr.ts +11 -10
- package/src/components/entities/fina-settings-form/locales/is.ts +164 -0
- package/src/components/entities/fina-settings-form/locales/nb.ts +163 -0
- package/src/components/entities/fina-settings-form/locales/sk.ts +163 -0
- package/src/components/entities/fina-settings-form/locales/sl.ts +8 -7
- package/src/components/entities/fina-settings-form/locales/sv.ts +165 -0
- package/src/components/entities/furs-settings-form/furs-operator-required-dialog.tsx +34 -9
- package/src/components/entities/furs-settings-form/furs-settings-form.tsx +13 -1
- package/src/components/entities/furs-settings-form/furs-settings.hooks.ts +141 -42
- package/src/components/entities/furs-settings-form/locales/bg.ts +242 -0
- package/src/components/entities/furs-settings-form/locales/cs.ts +241 -0
- package/src/components/entities/furs-settings-form/locales/de.ts +42 -15
- package/src/components/entities/furs-settings-form/locales/en.ts +24 -0
- package/src/components/entities/furs-settings-form/locales/es.ts +42 -15
- package/src/components/entities/furs-settings-form/locales/et.ts +242 -0
- package/src/components/entities/furs-settings-form/locales/fi.ts +243 -0
- package/src/components/entities/furs-settings-form/locales/fr.ts +43 -15
- package/src/components/entities/furs-settings-form/locales/hr.ts +44 -19
- package/src/components/entities/furs-settings-form/locales/is.ts +242 -0
- package/src/components/entities/furs-settings-form/locales/it.ts +42 -15
- package/src/components/entities/furs-settings-form/locales/nb.ts +242 -0
- package/src/components/entities/furs-settings-form/locales/nl.ts +42 -15
- package/src/components/entities/furs-settings-form/locales/pl.ts +40 -15
- package/src/components/entities/furs-settings-form/locales/pt.ts +42 -15
- package/src/components/entities/furs-settings-form/locales/sk.ts +243 -0
- package/src/components/entities/furs-settings-form/locales/sl.ts +34 -10
- package/src/components/entities/furs-settings-form/locales/sv.ts +242 -0
- package/src/components/entities/furs-settings-form/sections/enable-fiscalization-section.tsx +11 -0
- package/src/components/entities/furs-settings-form/sections/furs-internal-act-download-card.tsx +111 -0
- package/src/components/entities/furs-settings-form/sections/general-settings-section.tsx +27 -0
- package/src/components/entities/furs-settings-form/sections/premises-management-section.tsx +23 -16
- package/src/components/entities/furs-settings-form/sections/register-premise-dialog.tsx +89 -31
- package/src/components/entities/settings/branding-settings-form.tsx +11 -30
- package/src/components/entities/settings/company-settings-form.tsx +2 -1
- package/src/components/entities/settings/defaults-settings-form.tsx +112 -9
- package/src/components/entities/settings/email-settings-form.tsx +245 -3
- package/src/components/entities/settings/eslog-settings-form.tsx +2 -1
- package/src/components/entities/settings/number-format-settings-form.tsx +2 -1
- package/src/components/entities/settings/pdf-template-selector/locales/bg.ts +20 -0
- package/src/components/entities/settings/pdf-template-selector/locales/cs.ts +20 -0
- package/src/components/entities/settings/pdf-template-selector/locales/en.ts +20 -0
- package/src/components/entities/settings/pdf-template-selector/locales/et.ts +19 -0
- package/src/components/entities/settings/pdf-template-selector/locales/fi.ts +20 -0
- package/src/components/entities/settings/pdf-template-selector/locales/is.ts +19 -0
- package/src/components/entities/settings/pdf-template-selector/locales/nb.ts +19 -0
- package/src/components/entities/settings/pdf-template-selector/locales/sk.ts +20 -0
- package/src/components/entities/settings/pdf-template-selector/locales/sv.ts +19 -0
- package/src/components/entities/settings/tax-rules-settings-form.tsx +21 -6
- package/src/components/estimates/create/create-estimate-form.tsx +70 -34
- package/src/components/estimates/create/locales/bg.ts +76 -0
- package/src/components/estimates/create/locales/cs.ts +76 -0
- package/src/components/estimates/create/locales/en.ts +76 -0
- package/src/components/estimates/create/locales/et.ts +76 -0
- package/src/components/estimates/create/locales/fi.ts +76 -0
- package/src/components/estimates/create/locales/hr.ts +8 -8
- package/src/components/estimates/create/locales/is.ts +76 -0
- package/src/components/estimates/create/locales/nb.ts +76 -0
- package/src/components/estimates/create/locales/sk.ts +76 -0
- package/src/components/estimates/create/locales/sl.ts +8 -8
- package/src/components/estimates/create/locales/sv.ts +76 -0
- package/src/components/estimates/create/prepare-estimate-submission.ts +4 -1
- package/src/components/estimates/estimates.hooks.ts +15 -3
- package/src/components/estimates/list/list-row-actions.tsx +34 -7
- package/src/components/estimates/list/list-table.tsx +78 -10
- package/src/components/estimates/list/locales/bg.ts +38 -0
- package/src/components/estimates/list/locales/cs.ts +38 -0
- package/src/components/estimates/list/locales/en.ts +27 -2
- package/src/components/estimates/list/locales/et.ts +38 -0
- package/src/components/estimates/list/locales/fi.ts +38 -0
- package/src/components/estimates/list/locales/hr.ts +2 -2
- package/src/components/estimates/list/locales/is.ts +38 -0
- package/src/components/estimates/list/locales/nb.ts +38 -0
- package/src/components/estimates/list/locales/sk.ts +38 -0
- package/src/components/estimates/list/locales/sv.ts +38 -0
- package/src/components/estimates/list/use-estimate-download.ts +3 -5
- package/src/components/export/document-export-form.tsx +72 -15
- package/src/components/export/sales-per-item-export-form.tsx +3 -2
- package/src/components/invoices/create/create-invoice-form.tsx +294 -76
- package/src/components/invoices/create/eslog-validation.ts +97 -8
- package/src/components/invoices/create/locales/bg.ts +164 -0
- package/src/components/invoices/create/locales/cs.ts +164 -0
- package/src/components/invoices/create/locales/de.ts +24 -0
- package/src/components/invoices/create/locales/en.ts +164 -0
- package/src/components/invoices/create/locales/es.ts +24 -0
- package/src/components/invoices/create/locales/et.ts +164 -0
- package/src/components/invoices/create/locales/fi.ts +164 -0
- package/src/components/invoices/create/locales/fr.ts +23 -0
- package/src/components/invoices/create/locales/hr.ts +32 -9
- package/src/components/invoices/create/locales/is.ts +164 -0
- package/src/components/invoices/create/locales/it.ts +24 -0
- package/src/components/invoices/create/locales/nb.ts +164 -0
- package/src/components/invoices/create/locales/nl.ts +23 -0
- package/src/components/invoices/create/locales/pl.ts +23 -0
- package/src/components/invoices/create/locales/pt.ts +24 -0
- package/src/components/invoices/create/locales/sk.ts +164 -0
- package/src/components/invoices/create/locales/sl.ts +32 -9
- package/src/components/invoices/create/locales/sv.ts +166 -0
- package/src/components/invoices/create/prepare-invoice-submission.ts +19 -2
- package/src/components/invoices/invoices-furs.hooks.ts +11 -8
- package/src/components/invoices/invoices.hooks.ts +27 -10
- package/src/components/invoices/list/list-row-actions.tsx +54 -21
- package/src/components/invoices/list/list-table.tsx +92 -11
- package/src/components/invoices/list/locales/bg.ts +49 -0
- package/src/components/invoices/list/locales/cs.ts +49 -0
- package/src/components/invoices/list/locales/en.ts +34 -2
- package/src/components/invoices/list/locales/et.ts +49 -0
- package/src/components/invoices/list/locales/fi.ts +49 -0
- package/src/components/invoices/list/locales/is.ts +49 -0
- package/src/components/invoices/list/locales/nb.ts +49 -0
- package/src/components/invoices/list/locales/sk.ts +49 -0
- package/src/components/invoices/list/locales/sv.ts +49 -0
- package/src/components/invoices/list/use-invoice-download.ts +3 -5
- package/src/components/invoices/send-email-dialog/locales/bg.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/cs.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/de.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/en.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/es.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/et.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/fi.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/fr.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/hr.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/is.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/it.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/nb.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/nl.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/pl.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/pt.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/sk.ts +58 -0
- package/src/components/invoices/send-email-dialog/locales/sl.ts +39 -0
- package/src/components/invoices/send-email-dialog/locales/sv.ts +58 -0
- package/src/components/invoices/send-email-dialog/send-email-dialog.tsx +188 -93
- package/src/components/invoices/view/eslog-info-display.tsx +2 -0
- package/src/components/invoices/view/fiscalization-status-card.tsx +2 -0
- package/src/components/items/create-item-form/create-item-form.tsx +29 -0
- package/src/components/items/create-item-form/locales/bg.ts +13 -0
- package/src/components/items/create-item-form/locales/cs.ts +13 -0
- package/src/components/items/create-item-form/locales/et.ts +13 -0
- package/src/components/items/create-item-form/locales/fi.ts +13 -0
- package/src/components/items/create-item-form/locales/is.ts +13 -0
- package/src/components/items/create-item-form/locales/nb.ts +13 -0
- package/src/components/items/create-item-form/locales/sk.ts +13 -0
- package/src/components/items/create-item-form/locales/sv.ts +13 -0
- package/src/components/items/edit-item-form/edit-item-form.tsx +39 -1
- package/src/components/items/edit-item-form/locales/bg.ts +12 -0
- package/src/components/items/edit-item-form/locales/cs.ts +12 -0
- package/src/components/items/edit-item-form/locales/en.ts +12 -0
- package/src/components/items/edit-item-form/locales/et.ts +12 -0
- package/src/components/items/edit-item-form/locales/fi.ts +12 -0
- package/src/components/items/edit-item-form/locales/is.ts +12 -0
- package/src/components/items/edit-item-form/locales/nb.ts +12 -0
- package/src/components/items/edit-item-form/locales/sk.ts +12 -0
- package/src/components/items/edit-item-form/locales/sv.ts +12 -0
- package/src/components/items/item-combobox.tsx +51 -18
- package/src/components/items/item-list-table/item-list-table.tsx +47 -23
- package/src/components/items/item-list-table/locales/bg.ts +16 -0
- package/src/components/items/item-list-table/locales/cs.ts +16 -0
- package/src/components/items/item-list-table/locales/en.ts +4 -3
- package/src/components/items/item-list-table/locales/et.ts +16 -0
- package/src/components/items/item-list-table/locales/fi.ts +16 -0
- package/src/components/items/item-list-table/locales/is.ts +16 -0
- package/src/components/items/item-list-table/locales/nb.ts +16 -0
- package/src/components/items/item-list-table/locales/sk.ts +16 -0
- package/src/components/items/item-list-table/locales/sv.ts +16 -0
- package/src/components/items/items.hooks.ts +15 -15
- package/src/components/payments/create-payment-form/create-payment-form.tsx +11 -7
- package/src/components/payments/create-payment-form/index.ts +1 -0
- package/src/components/payments/create-payment-form/locales/bg.ts +20 -0
- package/src/components/payments/create-payment-form/locales/cs.ts +20 -0
- package/src/components/payments/create-payment-form/locales/en.ts +20 -0
- package/src/components/payments/create-payment-form/locales/et.ts +20 -0
- package/src/components/payments/create-payment-form/locales/fi.ts +20 -0
- package/src/components/payments/create-payment-form/locales/hr.ts +2 -2
- package/src/components/payments/create-payment-form/locales/is.ts +20 -0
- package/src/components/payments/create-payment-form/locales/nb.ts +20 -0
- package/src/components/payments/create-payment-form/locales/sk.ts +20 -0
- package/src/components/payments/create-payment-form/locales/sl.ts +4 -4
- package/src/components/payments/create-payment-form/locales/sv.ts +20 -0
- package/src/components/payments/edit-payment-form/edit-payment-form.tsx +5 -1
- package/src/components/payments/edit-payment-form/locales/bg.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/cs.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/en.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/et.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/fi.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/hr.ts +2 -2
- package/src/components/payments/edit-payment-form/locales/is.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/nb.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/sk.ts +20 -0
- package/src/components/payments/edit-payment-form/locales/sl.ts +4 -4
- package/src/components/payments/edit-payment-form/locales/sv.ts +20 -0
- package/src/components/payments/list/list-row-actions.tsx +10 -2
- package/src/components/payments/list/list-table.tsx +51 -45
- package/src/components/payments/list/locales/bg.ts +42 -0
- package/src/components/payments/list/locales/cs.ts +42 -0
- package/src/components/payments/list/locales/de.ts +18 -0
- package/src/components/payments/list/locales/en.ts +37 -2
- package/src/components/payments/list/locales/es.ts +18 -0
- package/src/components/payments/list/locales/et.ts +42 -0
- package/src/components/payments/list/locales/fi.ts +42 -0
- package/src/components/payments/list/locales/fr.ts +18 -0
- package/src/components/payments/list/locales/hr.ts +18 -0
- package/src/components/payments/list/locales/is.ts +42 -0
- package/src/components/payments/list/locales/it.ts +18 -0
- package/src/components/payments/list/locales/nb.ts +42 -0
- package/src/components/payments/list/locales/nl.ts +18 -0
- package/src/components/payments/list/locales/pl.ts +18 -0
- package/src/components/payments/list/locales/pt.ts +18 -0
- package/src/components/payments/list/locales/sk.ts +42 -0
- package/src/components/payments/list/locales/sl.ts +18 -1
- package/src/components/payments/list/locales/sv.ts +42 -0
- package/src/components/payments/payments.hooks.ts +13 -6
- package/src/components/recurring-invoices/create-recurring-invoice-form/create-recurring-invoice-form.tsx +23 -17
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/bg.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/cs.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/en.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/et.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/fi.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/hr.ts +6 -6
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/is.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/nb.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sk.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sl.ts +4 -4
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sv.ts +44 -0
- package/src/components/recurring-invoices/list/list-row-actions.tsx +3 -5
- package/src/components/recurring-invoices/list/list-table.tsx +10 -7
- package/src/components/recurring-invoices/list/locales/bg.ts +28 -0
- package/src/components/recurring-invoices/list/locales/cs.ts +28 -0
- package/src/components/recurring-invoices/list/locales/en.ts +23 -0
- package/src/components/recurring-invoices/list/locales/et.ts +28 -0
- package/src/components/recurring-invoices/list/locales/fi.ts +28 -0
- package/src/components/recurring-invoices/list/locales/is.ts +28 -0
- package/src/components/recurring-invoices/list/locales/nb.ts +28 -0
- package/src/components/recurring-invoices/list/locales/sk.ts +28 -0
- package/src/components/recurring-invoices/list/locales/sv.ts +28 -0
- package/src/components/recurring-invoices/recurring-invoices.hooks.ts +11 -8
- package/src/components/request-logs/request-log-detail.tsx +30 -23
- package/src/components/request-logs/request-log-list-table.tsx +88 -45
- package/src/components/table/README.md +47 -9
- package/src/components/table/data-table.tsx +232 -92
- package/src/components/table/filter-bar.tsx +1 -1
- package/src/components/table/filter-panel.tsx +51 -22
- package/src/components/table/hooks/use-table-state.ts +64 -11
- package/src/components/table/index.ts +3 -0
- package/src/components/table/locales.ts +119 -4
- package/src/components/table/selection-toolbar.tsx +65 -9
- package/src/components/table/sorting.ts +80 -0
- package/src/components/table/table-skeleton.tsx +15 -9
- package/src/components/table/types.ts +17 -0
- package/src/components/tax-reports/index.ts +8 -0
- package/src/components/tax-reports/kir-export-form.tsx +4 -5
- package/src/components/tax-reports/slovenia-accounting-mappings-fields.tsx +271 -0
- package/src/components/tax-reports/slovenia-tax-profile-step.tsx +21 -10
- package/src/components/tax-reports/slovenia-vod-export-form.tsx +452 -0
- package/src/components/tax-reports/slovenia-yearly-export-form.tsx +17 -16
- package/src/components/tax-reports/slovenia-yearly-review-step.tsx +40 -18
- package/src/components/taxes/create-tax-form/create-tax-form.tsx +48 -2
- package/src/components/taxes/create-tax-form/locales/bg.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/cs.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/et.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/fi.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/is.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/nb.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/sk.ts +8 -0
- package/src/components/taxes/create-tax-form/locales/sv.ts +8 -0
- package/src/components/taxes/edit-tax-form/edit-tax-form.tsx +80 -11
- package/src/components/taxes/edit-tax-form/locales/bg.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/cs.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/en.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/et.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/fi.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/is.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/nb.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/sk.ts +6 -0
- package/src/components/taxes/edit-tax-form/locales/sv.ts +6 -0
- package/src/components/taxes/tax-list-table/locales/bg.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/cs.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/en.ts +4 -3
- package/src/components/taxes/tax-list-table/locales/et.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/fi.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/is.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/nb.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/sk.ts +17 -0
- package/src/components/taxes/tax-list-table/locales/sv.ts +17 -0
- package/src/components/taxes/tax-list-table/tax-list-table.tsx +53 -19
- package/src/components/taxes/taxes.hooks.ts +53 -12
- package/src/components/ui/badge.tsx +1 -1
- package/src/components/ui/button.tsx +1 -1
- package/src/components/ui/drawer.tsx +2 -2
- package/src/components/ui/form.tsx +118 -2
- package/src/components/ui/progress.tsx +6 -4
- package/src/components/ui/select.tsx +118 -1
- package/src/components/ui/sidebar.tsx +3 -2
- package/src/components/ui/sonner.tsx +17 -36
- package/src/components/ui/sticky-form-footer.tsx +6 -1
- package/src/components/ui/tooltip.tsx +15 -2
- package/src/components/webhook-logs/webhook-delivery-detail.tsx +22 -22
- package/src/components/webhook-logs/webhook-delivery-list-table.tsx +92 -17
- package/src/components/wl-subscription/locked-feature.tsx +11 -10
- package/src/components/wl-subscription/paywall.tsx +184 -72
- package/src/components/wl-subscription/upgrade-modal.tsx +28 -31
- package/src/generate-schemas.ts +17 -7
- package/src/generated/schemas/account_webhook.ts +43 -0
- package/src/generated/schemas/accountwebhook.ts +67 -0
- package/src/generated/schemas/entity.ts +343 -4
- package/src/generated/schemas/exportsloveniavodxml_body.ts +16 -0
- package/src/generated/schemas/exportsloveniayearlynormiranireport_body.ts +27 -0
- package/src/generated/schemas/furssettings.ts +1 -0
- package/src/generated/schemas/incomingpurchasedocument.ts +198 -0
- package/src/generated/schemas/incomingpurchasedocumentpayment.ts +38 -0
- package/src/generated/schemas/index.ts +12 -0
- package/src/generated/schemas/item.ts +36 -0
- package/src/generated/schemas/me.ts +23 -19
- package/src/generated/schemas/order.ts +2 -0
- package/src/generated/schemas/orderintegration.ts +8 -4
- package/src/generated/schemas/payment.ts +5 -0
- package/src/generated/schemas/ptatcudseries.ts +30 -0
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +35 -3
- package/src/generated/schemas/rendercreditnotepreview_body.ts +35 -3
- package/src/generated/schemas/renderdeliverynotepreview_body.ts +12 -5
- package/src/generated/schemas/renderestimatepreview_body.ts +38 -5
- package/src/generated/schemas/renderinvoicepreview_body.ts +39 -5
- package/src/generated/schemas/senddocument_body.ts +1 -0
- package/src/generated/schemas/sendemail_body.ts +67 -39
- package/src/generated/schemas/sloveniataxprofile.ts +118 -0
- package/src/generated/schemas/starteslogexport_body.ts +33 -0
- package/src/generated/schemas/startpdfexport_body.ts +94 -78
- package/src/generated/schemas/supplier.ts +59 -0
- package/src/generated/schemas/syncshopifyorders_body.ts +20 -0
- package/src/generated/schemas/tax.ts +2 -0
- package/src/generated/schemas/uploadfile_body.ts +1 -0
- package/src/generated/schemas/userptsettings.ts +26 -0
- package/src/generated/schemas/voidinvoice_body.ts +20 -0
- package/src/generated/schemas/webhook.ts +2 -0
- package/src/hooks/create-resource-hooks.ts +22 -19
- package/src/hooks/use-duplicate-document.ts +10 -8
- package/src/hooks/use-eslog-validation.ts +5 -1
- package/src/hooks/use-next-document-number.ts +13 -6
- package/src/hooks/use-resolved-entity-id.ts +14 -0
- package/src/hooks/use-resource-mutation.ts +11 -30
- package/src/hooks/use-transaction-type-check.ts +3 -8
- package/src/lib/browser-cookies.ts +1 -1
- package/src/lib/country-capabilities.ts +114 -0
- package/src/lib/date-fns-locale.ts +1 -20
- package/src/lib/eslog-export.ts +32 -0
- package/src/lib/fiscalization-options.ts +21 -1
- package/src/lib/formatting.ts +27 -0
- package/src/lib/furs-error-utils.ts +29 -0
- package/src/lib/locale.ts +4 -0
- package/src/lib/payment-display.ts +95 -0
- package/src/lib/pt-document-input.ts +67 -0
- package/src/lib/schemas/shared.ts +1 -0
- package/src/lib/template-variables.tsx +102 -4
- package/src/lib/translation.ts +51 -33
- package/src/lib/white-label-capabilities.ts +626 -0
- package/src/lib/zod-validation-message.ts +291 -0
- package/src/providers/entities-provider.tsx +32 -14
- package/src/providers/sdk-provider.tsx +112 -12
- package/src/providers/space-invoices-provider.tsx +129 -0
- package/src/providers/white-label-provider.tsx +96 -4
- package/src/providers/wl-subscription-provider.tsx +144 -10
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"Tax subject": "Avgiftspliktig",
|
|
3
|
+
"Tax ID 2": "MVA-nummer 2",
|
|
4
|
+
"Secondary tax identification number (optional)": "Sekundært MVA-nummer (valgfritt)",
|
|
5
|
+
"Company Information": "Firmainformasjon",
|
|
6
|
+
"Basic information about your company": "Basic information about your company",
|
|
7
|
+
Branding: "Merkevare",
|
|
8
|
+
"Primary Color": "Primærfarge",
|
|
9
|
+
Logo: "Logo",
|
|
10
|
+
"Logo URL": "Logo URL",
|
|
11
|
+
"Enter the URL of your company logo": "Enter the URL of your company logo",
|
|
12
|
+
"Upload your company logo for invoices": "Last opp firmalogoen din for fakturaer",
|
|
13
|
+
"Upload Logo": "Last opp logo",
|
|
14
|
+
"Change Logo": "Endre logo",
|
|
15
|
+
"Current logo (displayed on invoices)": "Nåværende logo (vises på fakturaer)",
|
|
16
|
+
"Logo preview": "Forhåndsvisning av logo",
|
|
17
|
+
"Crop Your Logo": "Beskjær logoen din",
|
|
18
|
+
Signature: "Signatur",
|
|
19
|
+
"Upload a signature image for PDFs (optional)": "Last opp et signaturbilde for PDF-er (valgfritt)",
|
|
20
|
+
"Upload Signature": "Last opp signatur",
|
|
21
|
+
"Change Signature": "Endre signatur",
|
|
22
|
+
"Current signature (for PDF documents)": "Nåværende signatur (for PDF-dokumenter)",
|
|
23
|
+
"Signature preview": "Forhåndsvisning av signatur",
|
|
24
|
+
"Crop Your Signature": "Beskjær signaturen din",
|
|
25
|
+
"Adjust the crop area or upload the full image": "Juster beskjæringsområdet eller last opp hele bildet",
|
|
26
|
+
"Upload failed. Please try again.": "Opplasting mislyktes. Vennligst prøv igjen.",
|
|
27
|
+
"Uploading...": "Laster opp...",
|
|
28
|
+
"Upload & Save": "Last opp og lagre",
|
|
29
|
+
Cancel: "Avbryt",
|
|
30
|
+
Localization: "Lokalisering",
|
|
31
|
+
"Currency Code": "Currency Code",
|
|
32
|
+
"ISO 4217 currency code (e.g., USD, EUR, GBP)": "ISO 4217 currency code (e.g., USD, EUR, GBP)",
|
|
33
|
+
Locale: "Lokale",
|
|
34
|
+
"BCP 47 language tag (e.g., en-US, de-DE, sl-SI)": "BCP 47 language tag (e.g., en-US, de-DE, sl-SI)",
|
|
35
|
+
"Select currency": "Velg valuta",
|
|
36
|
+
"Select locale": "Velg lokale",
|
|
37
|
+
"Configure entity localization": "Konfigurer enhetslokalisering",
|
|
38
|
+
"English (US)": "English (US)",
|
|
39
|
+
"German (DE)": "German (DE)",
|
|
40
|
+
"Italian (IT)": "Italian (IT)",
|
|
41
|
+
"French (FR)": "French (FR)",
|
|
42
|
+
"Spanish (ES)": "Spanish (ES)",
|
|
43
|
+
"Portuguese (Portugal)": "Portuguese (Portugal)",
|
|
44
|
+
Dutch: "Nederlandsk",
|
|
45
|
+
Polish: "Polsk",
|
|
46
|
+
Croatian: "Kroatisk",
|
|
47
|
+
"Slovenian (SI)": "Slovenian (SI)",
|
|
48
|
+
"Email Settings": "E-postinnstillinger",
|
|
49
|
+
"Configure email settings for invoices": "Configure email settings for invoices",
|
|
50
|
+
"Email Address": "E-postadresse",
|
|
51
|
+
"Email address to send invoices to": "Email address to send invoices to",
|
|
52
|
+
"Email Subject": "E-postemne",
|
|
53
|
+
"Subject line for email invoices": "Subject line for email invoices",
|
|
54
|
+
"Email Body": "E-postinnhold",
|
|
55
|
+
"Body content for email invoices": "Body content for email invoices",
|
|
56
|
+
"Save Settings": "Lagre innstillinger",
|
|
57
|
+
"Document Defaults": "Dokumentstandarder",
|
|
58
|
+
"Default values for new documents": "Default values for new documents",
|
|
59
|
+
"Default Note": "Default Note",
|
|
60
|
+
"Default Invoice Note": "Default Invoice Note",
|
|
61
|
+
"This note will be pre-filled when creating new invoices": "This note will be pre-filled when creating new invoices",
|
|
62
|
+
"This note will be pre-filled when creating new estimates":
|
|
63
|
+
"This note will be pre-filled when creating new estimates",
|
|
64
|
+
"This note will be pre-filled when creating new credit notes":
|
|
65
|
+
"This note will be pre-filled when creating new credit notes",
|
|
66
|
+
"Payment terms pre-filled when creating new invoices": "Payment terms pre-filled when creating new invoices",
|
|
67
|
+
"Payment terms pre-filled when creating new estimates": "Payment terms pre-filled when creating new estimates",
|
|
68
|
+
"Payment terms pre-filled when creating new credit notes": "Payment terms pre-filled when creating new credit notes",
|
|
69
|
+
"Optional note for the document.": "Optional note for the document.",
|
|
70
|
+
"Please remit payment using the bank details shown on the document.":
|
|
71
|
+
"Please remit payment using the bank details shown on the document.",
|
|
72
|
+
"This estimate is valid until {document_valid_until}.": "This estimate is valid until {document_valid_until}.",
|
|
73
|
+
"Payment due upon acceptance.": "Payment due upon acceptance.",
|
|
74
|
+
"Credit note for invoice {document_number}.": "Credit note for invoice {document_number}.",
|
|
75
|
+
"Credit will be applied to your account.": "Credit will be applied to your account.",
|
|
76
|
+
"Invoice Notes": "Invoice Notes",
|
|
77
|
+
"Smart Template Variables": "Smarte malvariabler",
|
|
78
|
+
"Use variables to personalize your notes automatically": "Use variables to personalize your notes automatically",
|
|
79
|
+
"Set a default note that will appear on all new invoices. Use template variables to personalize the note automatically.":
|
|
80
|
+
"Set a default note that will appear on all new invoices. Use template variables to personalize the note automatically.",
|
|
81
|
+
"Insert variable": "Insert variable",
|
|
82
|
+
Entity: "Enhet",
|
|
83
|
+
Document: "Faktura",
|
|
84
|
+
Customer: "Kunde",
|
|
85
|
+
Other: "Annet",
|
|
86
|
+
"Company name": "Company name",
|
|
87
|
+
"Email address": "E-postadresse",
|
|
88
|
+
"Invoice number": "Fakturanummer",
|
|
89
|
+
"Invoice date": "Invoice date",
|
|
90
|
+
"Due date": "Forfallsdato",
|
|
91
|
+
"Total amount": "Total amount",
|
|
92
|
+
Currency: "Valuta",
|
|
93
|
+
"Customer name": "Customer name",
|
|
94
|
+
"Customer email": "Customer email",
|
|
95
|
+
"Today's date": "Today's date",
|
|
96
|
+
"Current year": "Current year",
|
|
97
|
+
"Default Payment Terms": "Default Payment Terms",
|
|
98
|
+
"This payment terms will be pre-filled when creating new documents":
|
|
99
|
+
"This payment terms will be pre-filled when creating new documents",
|
|
100
|
+
"Payment Terms": "Payment Terms",
|
|
101
|
+
"Add payment terms...": "Add payment terms...",
|
|
102
|
+
"Document Footer": "Document Footer",
|
|
103
|
+
"Footer text displayed at the bottom of PDF documents": "Footer text displayed at the bottom of PDF documents",
|
|
104
|
+
"Footer text displayed at the bottom of all PDF documents":
|
|
105
|
+
"Footer text displayed at the bottom of all PDF documents",
|
|
106
|
+
"{entity_name} | Due Date: {document_due_date} | Invoice #{document_number}":
|
|
107
|
+
"{entity_name} | Due Date: {document_due_date} | Invoice #{document_number}",
|
|
108
|
+
"Document Signature": "Dokumentsignatur",
|
|
109
|
+
"Signature text displayed on all PDF documents": "Signature text displayed on all PDF documents",
|
|
110
|
+
"Add signature text...": "Legg til signaturtekst...",
|
|
111
|
+
"Delivery Note": "Følgeseddel",
|
|
112
|
+
"Default note for advance invoices": "Default note for advance invoices",
|
|
113
|
+
"Default note for all new advance invoices": "Default note for all new advance invoices",
|
|
114
|
+
"Default note for delivery notes": "Default note for delivery notes",
|
|
115
|
+
"Default note for all new delivery notes": "Default note for all new delivery notes",
|
|
116
|
+
"Overdue Notifications": "Overdue Notifications",
|
|
117
|
+
"Automatically remind customers about overdue invoices": "Automatically remind customers about overdue invoices",
|
|
118
|
+
"Enable Notifications": "Enable Notifications",
|
|
119
|
+
"Send automatic payment reminder emails to customers with overdue invoices":
|
|
120
|
+
"Send automatic payment reminder emails to customers with overdue invoices",
|
|
121
|
+
"Reminder Days": "Reminder Days",
|
|
122
|
+
"Days after due date to send reminders (comma-separated). E.g., '7, 14, 30' sends reminders at 7, 14, and 30 days overdue.":
|
|
123
|
+
"Days after due date to send reminders (comma-separated). E.g., '7, 14, 30' sends reminders at 7, 14, and 30 days overdue.",
|
|
124
|
+
"Custom Reminder Templates": "Custom Reminder Templates",
|
|
125
|
+
"Subject line for overdue notification emails": "Subject line for overdue notification emails",
|
|
126
|
+
"Body content for overdue emails. Use {invoice_list} to include the invoice table, or it will be auto-appended.":
|
|
127
|
+
"Body content for overdue emails. Use {invoice_list} to include the invoice table, or it will be auto-appended.",
|
|
128
|
+
"Dear {customer_name},\n\nThis is a reminder about your overdue invoices...":
|
|
129
|
+
"Dear {customer_name},\n\nThis is a reminder about your overdue invoices...",
|
|
130
|
+
"Payment Reminders": "Payment Reminders",
|
|
131
|
+
"When enabled, customers will automatically receive email reminders when their invoices become overdue. Emails are sent on the exact day each threshold is reached.":
|
|
132
|
+
"When enabled, customers will automatically receive email reminders when their invoices become overdue. Emails are sent on the exact day each threshold is reached.",
|
|
133
|
+
"Available Variables": "Available Variables",
|
|
134
|
+
"{customer_name}, {entity_name}, {entity_email}, {invoice_list}, {total_amount}, {overdue_count}":
|
|
135
|
+
"{customer_name}, {entity_name}, {entity_email}, {invoice_list}, {total_amount}, {overdue_count}",
|
|
136
|
+
"UPN QR Payment": "UPN QR Payment",
|
|
137
|
+
"Configure UPN QR payment slip for invoices": "Configure UPN QR payment slip for invoices",
|
|
138
|
+
IBAN: "IBAN",
|
|
139
|
+
"Bank account IBAN for receiving payments": "Bank account IBAN for receiving payments",
|
|
140
|
+
"Enable UPN QR on invoices": "Aktiver UPN QR på fakturaer",
|
|
141
|
+
"Show payment QR code on PDF invoices for easy mobile banking payments":
|
|
142
|
+
"Vis betalings-QR-kode på PDF-fakturaer for enkel mobilbankbetaling",
|
|
143
|
+
"Display Mode": "Visningsmodus",
|
|
144
|
+
"QR code only": "Kun QR-kode",
|
|
145
|
+
"Shows compact QR code inline with invoice content": "Viser kompakt QR-kode integrert i fakturainnholdet",
|
|
146
|
+
"Full UPN payment slip": "Fullstendig UPN-betalingsblankett",
|
|
147
|
+
"Shows complete payment slip at bottom of page": "Viser fullstendig betalingsblankett nederst på siden",
|
|
148
|
+
"Purpose Code": "Formålskode",
|
|
149
|
+
"OTHR - Other": "OTHR - Annet",
|
|
150
|
+
"GDSV - Goods and Services": "GDSV - Varer og tjenester",
|
|
151
|
+
"SUPP - Supplier Payment": "SUPP - Leverandørbetaling",
|
|
152
|
+
"Payment purpose code (ISO 20022)": "Betalingsformålskode (ISO 20022)",
|
|
153
|
+
"UPN QR Payments": "UPN QR Payments",
|
|
154
|
+
"UPN QR is a Slovenian standard for payment slips. When enabled, your invoices will include a QR code that customers can scan with their mobile banking app to pay instantly.":
|
|
155
|
+
"UPN QR is a Slovenian standard for payment slips. When enabled, your invoices will include a QR code that customers can scan with their mobile banking app to pay instantly.",
|
|
156
|
+
Invoice: "Faktura",
|
|
157
|
+
Estimate: "Tilbud",
|
|
158
|
+
"Credit Note": "Kreditnota",
|
|
159
|
+
"Advance Invoice": "Forskuddsfaktura",
|
|
160
|
+
"Number Format": "Nummerformat",
|
|
161
|
+
Preview: "Forhåndsvisning",
|
|
162
|
+
"EU Tax Rules": "EU Tax Rules",
|
|
163
|
+
"Automatic tax handling for cross-border transactions": "Automatic tax handling for cross-border transactions",
|
|
164
|
+
"tax-rules.vies_validate_vat.label": "tax-rules.vies_validate_vat.label",
|
|
165
|
+
"tax-rules.vies_validate_vat.description": "tax-rules.vies_validate_vat.description",
|
|
166
|
+
"tax-rules.auto_reverse_charge.label": "tax-rules.auto_reverse_charge.label",
|
|
167
|
+
"tax-rules.auto_reverse_charge.description": "tax-rules.auto_reverse_charge.description",
|
|
168
|
+
"tax-rules.auto_remove_tax_export.label": "tax-rules.auto_remove_tax_export.label",
|
|
169
|
+
"tax-rules.auto_remove_tax_export.description": "tax-rules.auto_remove_tax_export.description",
|
|
170
|
+
"tax-rules.require_gross_prices.label": "tax-rules.require_gross_prices.label",
|
|
171
|
+
"tax-rules.require_gross_prices.description": "tax-rules.require_gross_prices.description",
|
|
172
|
+
"Default Tax Clauses": "Default Tax Clauses",
|
|
173
|
+
"Set default tax clauses that are automatically added to documents based on transaction type":
|
|
174
|
+
"Set default tax clauses that are automatically added to documents based on transaction type",
|
|
175
|
+
"tax-clauses.other-title": "tax-clauses.other-title",
|
|
176
|
+
"tax-clauses.other-description": "tax-clauses.other-description",
|
|
177
|
+
"tax-clauses.intra_eu_b2b.label": "tax-clauses.intra_eu_b2b.label",
|
|
178
|
+
"tax-clauses.intra_eu_b2b.description": "tax-clauses.intra_eu_b2b.description",
|
|
179
|
+
"Enter reverse charge clause...": "Enter reverse charge clause...",
|
|
180
|
+
"tax-clauses.3w_b2b.label": "tax-clauses.3w_b2b.label",
|
|
181
|
+
"tax-clauses.3w_b2b.description": "tax-clauses.3w_b2b.description",
|
|
182
|
+
"tax-clauses.3w_b2c.label": "tax-clauses.3w_b2c.label",
|
|
183
|
+
"tax-clauses.3w_b2c.description": "tax-clauses.3w_b2c.description",
|
|
184
|
+
"Enter export exemption clause...": "Enter export exemption clause...",
|
|
185
|
+
"tax-clauses.domestic.label": "tax-clauses.domestic.label",
|
|
186
|
+
"tax-clauses.domestic.description": "tax-clauses.domestic.description",
|
|
187
|
+
"Enter default tax clause...": "Enter default tax clause...",
|
|
188
|
+
"tax-clauses.intra_eu_b2c.label": "tax-clauses.intra_eu_b2c.label",
|
|
189
|
+
"Enter EU consumer sales clause...": "Enter EU consumer sales clause...",
|
|
190
|
+
"tax-clauses.other.description": "tax-clauses.other.description",
|
|
191
|
+
"EPC QR Payment": "EPC QR Payment",
|
|
192
|
+
"SEPA credit transfer QR code for invoices": "SEPA credit transfer QR code for invoices",
|
|
193
|
+
"Enable EPC QR on invoices": "Aktiver EPC QR på fakturaer",
|
|
194
|
+
"Show SEPA QR code on EUR invoices for easy bank payments":
|
|
195
|
+
"Vis SEPA QR-kode på EUR-fakturaer for enkel bankbetaling",
|
|
196
|
+
"EPC QR Payments": "EPC QR Payments",
|
|
197
|
+
"EPC QR is a European standard for SEPA credit transfers. When enabled, EUR invoices include a QR code that customers can scan with their banking app to pay instantly.":
|
|
198
|
+
"EPC QR is a European standard for SEPA credit transfers. When enabled, EUR invoices include a QR code that customers can scan with their banking app to pay instantly.",
|
|
199
|
+
} as const;
|
|
@@ -37,6 +37,16 @@ export default {
|
|
|
37
37
|
"Select currency": "Valuta selecteren",
|
|
38
38
|
"Select locale": "Landinstelling selecteren",
|
|
39
39
|
"Configure entity localization": "Lokalisatie van de entiteit configureren",
|
|
40
|
+
"English (US)": "Engels (US)",
|
|
41
|
+
"German (DE)": "Duits (DE)",
|
|
42
|
+
"Italian (IT)": "Italiaans (IT)",
|
|
43
|
+
"French (FR)": "Frans (FR)",
|
|
44
|
+
"Spanish (ES)": "Spaans (ES)",
|
|
45
|
+
"Portuguese (Portugal)": "Portugees (Portugal)",
|
|
46
|
+
Dutch: "Nederlands",
|
|
47
|
+
Polish: "Pools",
|
|
48
|
+
Croatian: "Kroatisch",
|
|
49
|
+
"Slovenian (SI)": "Sloveens (SI)",
|
|
40
50
|
"Email Settings": "E-mailinstellingen",
|
|
41
51
|
"Configure email settings for invoices": "E-mailinstellingen configureren voor facturen",
|
|
42
52
|
"Email Address": "E-mailadres",
|
|
@@ -63,9 +73,9 @@ export default {
|
|
|
63
73
|
"Betalingsvoorwaarden vooraf ingevuld bij het aanmaken van nieuwe offertes",
|
|
64
74
|
"Payment terms pre-filled when creating new credit notes":
|
|
65
75
|
"Betalingsvoorwaarden vooraf ingevuld bij het aanmaken van nieuwe creditnota's",
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
76
|
+
"Optional note for the document.": "Optionele notitie voor het document.",
|
|
77
|
+
"Please remit payment using the bank details shown on the document.":
|
|
78
|
+
"Gelieve te betalen met de bankgegevens op het document.",
|
|
69
79
|
"This estimate is valid until {document_valid_until}.": "Deze offerte is geldig tot {document_valid_until}.",
|
|
70
80
|
"Payment due upon acceptance.": "Betaling bij aanvaarding.",
|
|
71
81
|
"Credit note for invoice {document_number}.": "Creditnota voor factuur {document_number}.",
|
|
@@ -109,6 +119,11 @@ export default {
|
|
|
109
119
|
"Document Signature": "Documenthandtekening",
|
|
110
120
|
"Signature text displayed on all PDF documents": "Handtekeningtekst weergegeven op alle PDF-documenten",
|
|
111
121
|
"Add signature text...": "Handtekeningtekst toevoegen...",
|
|
122
|
+
"Delivery Note": "Afleverbon",
|
|
123
|
+
"Default note for advance invoices": "Standaardnotitie voor voorschotfacturen",
|
|
124
|
+
"Default note for all new advance invoices": "Standaardnotitie voor alle nieuwe voorschotfacturen",
|
|
125
|
+
"Default note for delivery notes": "Standaardnotitie voor afleverbonnen",
|
|
126
|
+
"Default note for all new delivery notes": "Standaardnotitie voor alle nieuwe afleverbonnen",
|
|
112
127
|
// Overdue Notifications section
|
|
113
128
|
"Overdue Notifications": "Herinneringen voor achterstallige betalingen",
|
|
114
129
|
"Automatically remind customers about overdue invoices": "Klanten automatisch herinneren aan achterstallige facturen",
|
|
@@ -37,6 +37,16 @@ export default {
|
|
|
37
37
|
"Select currency": "Wybierz walutę",
|
|
38
38
|
"Select locale": "Wybierz ustawienia regionalne",
|
|
39
39
|
"Configure entity localization": "Skonfiguruj lokalizację podmiotu",
|
|
40
|
+
"English (US)": "Angielski (US)",
|
|
41
|
+
"German (DE)": "Niemiecki (DE)",
|
|
42
|
+
"Italian (IT)": "Włoski (IT)",
|
|
43
|
+
"French (FR)": "Francuski (FR)",
|
|
44
|
+
"Spanish (ES)": "Hiszpański (ES)",
|
|
45
|
+
"Portuguese (Portugal)": "Portugalski (Portugalia)",
|
|
46
|
+
Dutch: "Niderlandzki",
|
|
47
|
+
Polish: "Polski",
|
|
48
|
+
Croatian: "Chorwacki",
|
|
49
|
+
"Slovenian (SI)": "Słoweński (SI)",
|
|
40
50
|
"Email Settings": "Ustawienia email",
|
|
41
51
|
"Configure email settings for invoices": "Skonfiguruj ustawienia email dla faktur",
|
|
42
52
|
"Email Address": "Adres email",
|
|
@@ -63,9 +73,9 @@ export default {
|
|
|
63
73
|
"Warunki płatności wstępnie wypełnione podczas tworzenia nowych kosztorysów",
|
|
64
74
|
"Payment terms pre-filled when creating new credit notes":
|
|
65
75
|
"Warunki płatności wstępnie wypełnione podczas tworzenia nowych not kredytowych",
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
76
|
+
"Optional note for the document.": "Opcjonalna notatka do dokumentu.",
|
|
77
|
+
"Please remit payment using the bank details shown on the document.":
|
|
78
|
+
"Prosimy o płatność przy użyciu danych bankowych podanych w dokumencie.",
|
|
69
79
|
"This estimate is valid until {document_valid_until}.": "Ten kosztorys jest ważny do {document_valid_until}.",
|
|
70
80
|
"Payment due upon acceptance.": "Płatność przy akceptacji.",
|
|
71
81
|
"Credit note for invoice {document_number}.": "Nota kredytowa do faktury {document_number}.",
|
|
@@ -110,6 +120,11 @@ export default {
|
|
|
110
120
|
"Document Signature": "Podpis dokumentu",
|
|
111
121
|
"Signature text displayed on all PDF documents": "Tekst podpisu wyświetlany na wszystkich dokumentach PDF",
|
|
112
122
|
"Add signature text...": "Dodaj tekst podpisu...",
|
|
123
|
+
"Delivery Note": "Dokument dostawy",
|
|
124
|
+
"Default note for advance invoices": "Domyślna notatka dla faktur zaliczkowych",
|
|
125
|
+
"Default note for all new advance invoices": "Domyślna notatka dla wszystkich nowych faktur zaliczkowych",
|
|
126
|
+
"Default note for delivery notes": "Domyślna notatka dla dokumentów dostawy",
|
|
127
|
+
"Default note for all new delivery notes": "Domyślna notatka dla wszystkich nowych dokumentów dostawy",
|
|
113
128
|
// Overdue Notifications section
|
|
114
129
|
"Overdue Notifications": "Powiadomienia o zaległych płatnościach",
|
|
115
130
|
"Automatically remind customers about overdue invoices": "Automatycznie przypominaj klientom o zaległych fakturach",
|
|
@@ -37,6 +37,16 @@ export default {
|
|
|
37
37
|
"Select currency": "Selecionar moeda",
|
|
38
38
|
"Select locale": "Selecionar configuração regional",
|
|
39
39
|
"Configure entity localization": "Configurar a localização da entidade",
|
|
40
|
+
"English (US)": "Inglês (US)",
|
|
41
|
+
"German (DE)": "Alemão (DE)",
|
|
42
|
+
"Italian (IT)": "Italiano (IT)",
|
|
43
|
+
"French (FR)": "Francês (FR)",
|
|
44
|
+
"Spanish (ES)": "Espanhol (ES)",
|
|
45
|
+
"Portuguese (Portugal)": "Português (Portugal)",
|
|
46
|
+
Dutch: "Neerlandês",
|
|
47
|
+
Polish: "Polaco",
|
|
48
|
+
Croatian: "Croata",
|
|
49
|
+
"Slovenian (SI)": "Esloveno (SI)",
|
|
40
50
|
"Email Settings": "Definições de email",
|
|
41
51
|
"Configure email settings for invoices": "Configurar as definições de email para as faturas",
|
|
42
52
|
"Email Address": "Endereço de email",
|
|
@@ -61,9 +71,9 @@ export default {
|
|
|
61
71
|
"Condições de pagamento pré-preenchidas ao criar novos orçamentos",
|
|
62
72
|
"Payment terms pre-filled when creating new credit notes":
|
|
63
73
|
"Condições de pagamento pré-preenchidas ao criar novas notas de crédito",
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
74
|
+
"Optional note for the document.": "Nota opcional para o documento.",
|
|
75
|
+
"Please remit payment using the bank details shown on the document.":
|
|
76
|
+
"Efetue o pagamento utilizando os dados bancários indicados no documento.",
|
|
67
77
|
"This estimate is valid until {document_valid_until}.": "Este orçamento é válido até {document_valid_until}.",
|
|
68
78
|
"Payment due upon acceptance.": "Pagamento na aceitação.",
|
|
69
79
|
"Credit note for invoice {document_number}.": "Nota de crédito para a fatura {document_number}.",
|
|
@@ -109,6 +119,11 @@ export default {
|
|
|
109
119
|
"Document Signature": "Assinatura do documento",
|
|
110
120
|
"Signature text displayed on all PDF documents": "Texto de assinatura exibido em todos os documentos PDF",
|
|
111
121
|
"Add signature text...": "Adicionar texto de assinatura...",
|
|
122
|
+
"Delivery Note": "Guia de remessa",
|
|
123
|
+
"Default note for advance invoices": "Nota predefinida para faturas antecipadas",
|
|
124
|
+
"Default note for all new advance invoices": "Nota predefinida para todas as novas faturas antecipadas",
|
|
125
|
+
"Default note for delivery notes": "Nota predefinida para guias de remessa",
|
|
126
|
+
"Default note for all new delivery notes": "Nota predefinida para todas as novas guias de remessa",
|
|
112
127
|
// Overdue Notifications section
|
|
113
128
|
"Overdue Notifications": "Notificações de atraso",
|
|
114
129
|
"Automatically remind customers about overdue invoices":
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"Tax subject": "Platca DPH",
|
|
3
|
+
"Tax ID 2": "DIC 2",
|
|
4
|
+
"Secondary tax identification number (optional)": "Sekundárne daňové identifikačné číslo (voliteľné)",
|
|
5
|
+
"Company Information": "Informácie o spoločnosti",
|
|
6
|
+
"Basic information about your company": "Basic information about your company",
|
|
7
|
+
Branding: "Značka",
|
|
8
|
+
"Primary Color": "Hlavná farba",
|
|
9
|
+
Logo: "Logo",
|
|
10
|
+
"Logo URL": "Logo URL",
|
|
11
|
+
"Enter the URL of your company logo": "Enter the URL of your company logo",
|
|
12
|
+
"Upload your company logo for invoices": "Nahrajte logo vašej spoločnosti pre faktúry",
|
|
13
|
+
"Upload Logo": "Nahrať logo",
|
|
14
|
+
"Change Logo": "Zmenit logo",
|
|
15
|
+
"Current logo (displayed on invoices)": "Aktuálne logo (zobrazené na faktúrach)",
|
|
16
|
+
"Logo preview": "Náhľad loga",
|
|
17
|
+
"Crop Your Logo": "Orezať logo",
|
|
18
|
+
Signature: "Podpis",
|
|
19
|
+
"Upload a signature image for PDFs (optional)": "Nahrajte obrazok podpisu pre PDF (voliteľné)",
|
|
20
|
+
"Upload Signature": "Nahrať podpis",
|
|
21
|
+
"Change Signature": "Zmenit podpis",
|
|
22
|
+
"Current signature (for PDF documents)": "Aktuálny podpis (pre PDF dokumenty)",
|
|
23
|
+
"Signature preview": "Náhľad podpisu",
|
|
24
|
+
"Crop Your Signature": "Orezať podpis",
|
|
25
|
+
"Adjust the crop area or upload the full image": "Upravte oblast orezania alebo nahrajte cely obrazok",
|
|
26
|
+
"Upload failed. Please try again.": "Nahratie zlyhalo. Skúste to prosim znova.",
|
|
27
|
+
"Uploading...": "Nahrávanie...",
|
|
28
|
+
"Upload & Save": "Nahrať a uložiť",
|
|
29
|
+
Cancel: "Zrušiť",
|
|
30
|
+
Localization: "Lokalizácia",
|
|
31
|
+
"Currency Code": "Currency Code",
|
|
32
|
+
"ISO 4217 currency code (e.g., USD, EUR, GBP)": "ISO 4217 currency code (e.g., USD, EUR, GBP)",
|
|
33
|
+
Locale: "Jazyk",
|
|
34
|
+
"BCP 47 language tag (e.g., en-US, de-DE, sl-SI)": "BCP 47 language tag (e.g., en-US, de-DE, sl-SI)",
|
|
35
|
+
"Select currency": "Vyberte menu",
|
|
36
|
+
"Select locale": "Vyberte jazyk",
|
|
37
|
+
"Configure entity localization": "Nastavte lokalizáciu entity",
|
|
38
|
+
"English (US)": "English (US)",
|
|
39
|
+
"German (DE)": "German (DE)",
|
|
40
|
+
"Italian (IT)": "Italian (IT)",
|
|
41
|
+
"French (FR)": "French (FR)",
|
|
42
|
+
"Spanish (ES)": "Spanish (ES)",
|
|
43
|
+
"Portuguese (Portugal)": "Portuguese (Portugal)",
|
|
44
|
+
Dutch: "Holandčina",
|
|
45
|
+
Polish: "Poľština",
|
|
46
|
+
Croatian: "Chorvátčina",
|
|
47
|
+
"Slovenian (SI)": "Slovenian (SI)",
|
|
48
|
+
"Email Settings": "Nastavenia emailu",
|
|
49
|
+
"Configure email settings for invoices": "Configure email settings for invoices",
|
|
50
|
+
"Email Address": "Emailova adresa",
|
|
51
|
+
"Email address to send invoices to": "Email address to send invoices to",
|
|
52
|
+
"Email Subject": "Predmet emailu",
|
|
53
|
+
"Subject line for email invoices": "Subject line for email invoices",
|
|
54
|
+
"Email Body": "Telo emailu",
|
|
55
|
+
"Body content for email invoices": "Body content for email invoices",
|
|
56
|
+
"Save Settings": "Uložiť nastavenia",
|
|
57
|
+
"Document Defaults": "Predvoľby dokumentov",
|
|
58
|
+
"Default values for new documents": "Default values for new documents",
|
|
59
|
+
"Default Note": "Default Note",
|
|
60
|
+
"Default Invoice Note": "Default Invoice Note",
|
|
61
|
+
"This note will be pre-filled when creating new invoices": "This note will be pre-filled when creating new invoices",
|
|
62
|
+
"This note will be pre-filled when creating new estimates":
|
|
63
|
+
"This note will be pre-filled when creating new estimates",
|
|
64
|
+
"This note will be pre-filled when creating new credit notes":
|
|
65
|
+
"This note will be pre-filled when creating new credit notes",
|
|
66
|
+
"Payment terms pre-filled when creating new invoices": "Payment terms pre-filled when creating new invoices",
|
|
67
|
+
"Payment terms pre-filled when creating new estimates": "Payment terms pre-filled when creating new estimates",
|
|
68
|
+
"Payment terms pre-filled when creating new credit notes": "Payment terms pre-filled when creating new credit notes",
|
|
69
|
+
"Optional note for the document.": "Optional note for the document.",
|
|
70
|
+
"Please remit payment using the bank details shown on the document.":
|
|
71
|
+
"Please remit payment using the bank details shown on the document.",
|
|
72
|
+
"This estimate is valid until {document_valid_until}.": "This estimate is valid until {document_valid_until}.",
|
|
73
|
+
"Payment due upon acceptance.": "Payment due upon acceptance.",
|
|
74
|
+
"Credit note for invoice {document_number}.": "Credit note for invoice {document_number}.",
|
|
75
|
+
"Credit will be applied to your account.": "Credit will be applied to your account.",
|
|
76
|
+
"Invoice Notes": "Invoice Notes",
|
|
77
|
+
"Smart Template Variables": "Inteligentne premenné šablóny",
|
|
78
|
+
"Use variables to personalize your notes automatically": "Use variables to personalize your notes automatically",
|
|
79
|
+
"Set a default note that will appear on all new invoices. Use template variables to personalize the note automatically.":
|
|
80
|
+
"Set a default note that will appear on all new invoices. Use template variables to personalize the note automatically.",
|
|
81
|
+
"Insert variable": "Insert variable",
|
|
82
|
+
Entity: "Entita",
|
|
83
|
+
Document: "Faktura",
|
|
84
|
+
Customer: "Zákazník",
|
|
85
|
+
Other: "Iné",
|
|
86
|
+
"Company name": "Company name",
|
|
87
|
+
"Email address": "Emailova adresa",
|
|
88
|
+
"Invoice number": "Číslo faktúry",
|
|
89
|
+
"Invoice date": "Invoice date",
|
|
90
|
+
"Due date": "Dátum splatnosti",
|
|
91
|
+
"Total amount": "Total amount",
|
|
92
|
+
Currency: "Mena",
|
|
93
|
+
"Customer name": "Customer name",
|
|
94
|
+
"Customer email": "Customer email",
|
|
95
|
+
"Today's date": "Today's date",
|
|
96
|
+
"Current year": "Current year",
|
|
97
|
+
"Default Payment Terms": "Default Payment Terms",
|
|
98
|
+
"This payment terms will be pre-filled when creating new documents":
|
|
99
|
+
"This payment terms will be pre-filled when creating new documents",
|
|
100
|
+
"Payment Terms": "Payment Terms",
|
|
101
|
+
"Add payment terms...": "Add payment terms...",
|
|
102
|
+
"Document Footer": "Document Footer",
|
|
103
|
+
"Footer text displayed at the bottom of PDF documents": "Footer text displayed at the bottom of PDF documents",
|
|
104
|
+
"Footer text displayed at the bottom of all PDF documents":
|
|
105
|
+
"Footer text displayed at the bottom of all PDF documents",
|
|
106
|
+
"{entity_name} | Due Date: {document_due_date} | Invoice #{document_number}":
|
|
107
|
+
"{entity_name} | Due Date: {document_due_date} | Invoice #{document_number}",
|
|
108
|
+
"Document Signature": "Podpis dokumentu",
|
|
109
|
+
"Signature text displayed on all PDF documents": "Signature text displayed on all PDF documents",
|
|
110
|
+
"Add signature text...": "Pridat text podpisu...",
|
|
111
|
+
"Delivery Note": "Dodací list",
|
|
112
|
+
"Default note for advance invoices": "Default note for advance invoices",
|
|
113
|
+
"Default note for all new advance invoices": "Default note for all new advance invoices",
|
|
114
|
+
"Default note for delivery notes": "Default note for delivery notes",
|
|
115
|
+
"Default note for all new delivery notes": "Default note for all new delivery notes",
|
|
116
|
+
"Overdue Notifications": "Overdue Notifications",
|
|
117
|
+
"Automatically remind customers about overdue invoices": "Automatically remind customers about overdue invoices",
|
|
118
|
+
"Enable Notifications": "Enable Notifications",
|
|
119
|
+
"Send automatic payment reminder emails to customers with overdue invoices":
|
|
120
|
+
"Send automatic payment reminder emails to customers with overdue invoices",
|
|
121
|
+
"Reminder Days": "Reminder Days",
|
|
122
|
+
"Days after due date to send reminders (comma-separated). E.g., '7, 14, 30' sends reminders at 7, 14, and 30 days overdue.":
|
|
123
|
+
"Days after due date to send reminders (comma-separated). E.g., '7, 14, 30' sends reminders at 7, 14, and 30 days overdue.",
|
|
124
|
+
"Custom Reminder Templates": "Custom Reminder Templates",
|
|
125
|
+
"Subject line for overdue notification emails": "Subject line for overdue notification emails",
|
|
126
|
+
"Body content for overdue emails. Use {invoice_list} to include the invoice table, or it will be auto-appended.":
|
|
127
|
+
"Body content for overdue emails. Use {invoice_list} to include the invoice table, or it will be auto-appended.",
|
|
128
|
+
"Dear {customer_name},\n\nThis is a reminder about your overdue invoices...":
|
|
129
|
+
"Dear {customer_name},\n\nThis is a reminder about your overdue invoices...",
|
|
130
|
+
"Payment Reminders": "Payment Reminders",
|
|
131
|
+
"When enabled, customers will automatically receive email reminders when their invoices become overdue. Emails are sent on the exact day each threshold is reached.":
|
|
132
|
+
"When enabled, customers will automatically receive email reminders when their invoices become overdue. Emails are sent on the exact day each threshold is reached.",
|
|
133
|
+
"Available Variables": "Available Variables",
|
|
134
|
+
"{customer_name}, {entity_name}, {entity_email}, {invoice_list}, {total_amount}, {overdue_count}":
|
|
135
|
+
"{customer_name}, {entity_name}, {entity_email}, {invoice_list}, {total_amount}, {overdue_count}",
|
|
136
|
+
"UPN QR Payment": "UPN QR Payment",
|
|
137
|
+
"Configure UPN QR payment slip for invoices": "Configure UPN QR payment slip for invoices",
|
|
138
|
+
IBAN: "IBAN",
|
|
139
|
+
"Bank account IBAN for receiving payments": "Bank account IBAN for receiving payments",
|
|
140
|
+
"Enable UPN QR on invoices": "Povoliť UPN QR na faktúrach",
|
|
141
|
+
"Show payment QR code on PDF invoices for easy mobile banking payments":
|
|
142
|
+
"Zobraziť platobný QR kod na PDF faktúrach pre jednoduché platby cez mobilné bankovníctvo",
|
|
143
|
+
"Display Mode": "Režim zobrazenia",
|
|
144
|
+
"QR code only": "Iba QR kod",
|
|
145
|
+
"Shows compact QR code inline with invoice content": "Zobrazi kompaktný QR kod v riadku s obsahom faktúry",
|
|
146
|
+
"Full UPN payment slip": "Úplný UPN platobný prikaz",
|
|
147
|
+
"Shows complete payment slip at bottom of page": "Zobrazi kompletny platobný prikaz v dolnej časťi stranky",
|
|
148
|
+
"Purpose Code": "Kod ucelu",
|
|
149
|
+
"OTHR - Other": "OTHR - Iny",
|
|
150
|
+
"GDSV - Goods and Services": "GDSV - Tovar a sluzby",
|
|
151
|
+
"SUPP - Supplier Payment": "SUPP - Platba dodávateľovi",
|
|
152
|
+
"Payment purpose code (ISO 20022)": "Kod ucelu platby (ISO 20022)",
|
|
153
|
+
"UPN QR Payments": "UPN QR Payments",
|
|
154
|
+
"UPN QR is a Slovenian standard for payment slips. When enabled, your invoices will include a QR code that customers can scan with their mobile banking app to pay instantly.":
|
|
155
|
+
"UPN QR is a Slovenian standard for payment slips. When enabled, your invoices will include a QR code that customers can scan with their mobile banking app to pay instantly.",
|
|
156
|
+
Invoice: "Faktura",
|
|
157
|
+
Estimate: "Cenová ponuka",
|
|
158
|
+
"Credit Note": "Dobropis",
|
|
159
|
+
"Advance Invoice": "Zálohová faktúra",
|
|
160
|
+
"Number Format": "Format číslovania",
|
|
161
|
+
Preview: "Náhľad",
|
|
162
|
+
"EU Tax Rules": "EU Tax Rules",
|
|
163
|
+
"Automatic tax handling for cross-border transactions": "Automatic tax handling for cross-border transactions",
|
|
164
|
+
"tax-rules.vies_validate_vat.label": "tax-rules.vies_validate_vat.label",
|
|
165
|
+
"tax-rules.vies_validate_vat.description": "tax-rules.vies_validate_vat.description",
|
|
166
|
+
"tax-rules.auto_reverse_charge.label": "tax-rules.auto_reverse_charge.label",
|
|
167
|
+
"tax-rules.auto_reverse_charge.description": "tax-rules.auto_reverse_charge.description",
|
|
168
|
+
"tax-rules.auto_remove_tax_export.label": "tax-rules.auto_remove_tax_export.label",
|
|
169
|
+
"tax-rules.auto_remove_tax_export.description": "tax-rules.auto_remove_tax_export.description",
|
|
170
|
+
"tax-rules.require_gross_prices.label": "tax-rules.require_gross_prices.label",
|
|
171
|
+
"tax-rules.require_gross_prices.description": "tax-rules.require_gross_prices.description",
|
|
172
|
+
"Default Tax Clauses": "Default Tax Clauses",
|
|
173
|
+
"Set default tax clauses that are automatically added to documents based on transaction type":
|
|
174
|
+
"Set default tax clauses that are automatically added to documents based on transaction type",
|
|
175
|
+
"tax-clauses.other-title": "tax-clauses.other-title",
|
|
176
|
+
"tax-clauses.other-description": "tax-clauses.other-description",
|
|
177
|
+
"tax-clauses.intra_eu_b2b.label": "tax-clauses.intra_eu_b2b.label",
|
|
178
|
+
"tax-clauses.intra_eu_b2b.description": "tax-clauses.intra_eu_b2b.description",
|
|
179
|
+
"Enter reverse charge clause...": "Enter reverse charge clause...",
|
|
180
|
+
"tax-clauses.3w_b2b.label": "tax-clauses.3w_b2b.label",
|
|
181
|
+
"tax-clauses.3w_b2b.description": "tax-clauses.3w_b2b.description",
|
|
182
|
+
"tax-clauses.3w_b2c.label": "tax-clauses.3w_b2c.label",
|
|
183
|
+
"tax-clauses.3w_b2c.description": "tax-clauses.3w_b2c.description",
|
|
184
|
+
"Enter export exemption clause...": "Enter export exemption clause...",
|
|
185
|
+
"tax-clauses.domestic.label": "tax-clauses.domestic.label",
|
|
186
|
+
"tax-clauses.domestic.description": "tax-clauses.domestic.description",
|
|
187
|
+
"Enter default tax clause...": "Enter default tax clause...",
|
|
188
|
+
"tax-clauses.intra_eu_b2c.label": "tax-clauses.intra_eu_b2c.label",
|
|
189
|
+
"Enter EU consumer sales clause...": "Enter EU consumer sales clause...",
|
|
190
|
+
"tax-clauses.other.description": "tax-clauses.other.description",
|
|
191
|
+
"EPC QR Payment": "EPC QR Payment",
|
|
192
|
+
"SEPA credit transfer QR code for invoices": "SEPA credit transfer QR code for invoices",
|
|
193
|
+
"Enable EPC QR on invoices": "Povoliť EPC QR na faktúrach",
|
|
194
|
+
"Show SEPA QR code on EUR invoices for easy bank payments":
|
|
195
|
+
"Zobraziť SEPA QR kod na EUR faktúrach pre jednoduché bankové platby",
|
|
196
|
+
"EPC QR Payments": "EPC QR Payments",
|
|
197
|
+
"EPC QR is a European standard for SEPA credit transfers. When enabled, EUR invoices include a QR code that customers can scan with their banking app to pay instantly.":
|
|
198
|
+
"EPC QR is a European standard for SEPA credit transfers. When enabled, EUR invoices include a QR code that customers can scan with their banking app to pay instantly.",
|
|
199
|
+
} as const;
|
|
@@ -25,7 +25,7 @@ export default {
|
|
|
25
25
|
"Signature preview": "Predogled podpisa",
|
|
26
26
|
"Crop Your Signature": "Obreži podpis",
|
|
27
27
|
"Adjust the crop area or upload the full image": "Prilagodite območje obrezovanja ali naložite celotno sliko",
|
|
28
|
-
"Upload failed. Please try again.": "Nalaganje ni uspelo.
|
|
28
|
+
"Upload failed. Please try again.": "Nalaganje ni uspelo. Poskusite znova.",
|
|
29
29
|
"Uploading...": "Nalaganje...",
|
|
30
30
|
"Upload & Save": "Naloži in shrani",
|
|
31
31
|
Cancel: "Prekliči",
|
|
@@ -34,9 +34,19 @@ export default {
|
|
|
34
34
|
"ISO 4217 currency code (e.g., USD, EUR, GBP)": "ISO 4217 koda valute (npr. USD, EUR, GBP)",
|
|
35
35
|
Locale: "Lokalnost",
|
|
36
36
|
"BCP 47 language tag (e.g., en-US, de-DE, sl-SI)": "BCP 47 jezikovna oznaka (npr. en-US, de-DE, sl-SI)",
|
|
37
|
-
"Select currency": "
|
|
38
|
-
"Select locale": "
|
|
37
|
+
"Select currency": "Izberi valuto",
|
|
38
|
+
"Select locale": "Izberi lokalnost",
|
|
39
39
|
"Configure entity localization": "Konfigurirajte lokalizacijo pravne osebe",
|
|
40
|
+
"English (US)": "Angleščina (US)",
|
|
41
|
+
"German (DE)": "Nemščina (DE)",
|
|
42
|
+
"Italian (IT)": "Italijanščina (IT)",
|
|
43
|
+
"French (FR)": "Francoščina (FR)",
|
|
44
|
+
"Spanish (ES)": "Španščina (ES)",
|
|
45
|
+
"Portuguese (Portugal)": "Portugalščina (Portugalska)",
|
|
46
|
+
Dutch: "Nizozemščina",
|
|
47
|
+
Polish: "Poljščina",
|
|
48
|
+
Croatian: "Hrvaščina",
|
|
49
|
+
"Slovenian (SI)": "Slovenščina (SI)",
|
|
40
50
|
"Email Settings": "Nastavitve e-pošte",
|
|
41
51
|
"Configure email settings for invoices": "Konfigurirajte nastavitve e-pošte za račune",
|
|
42
52
|
"Email Address": "Naslov e-pošte",
|
|
@@ -49,32 +59,32 @@ export default {
|
|
|
49
59
|
// Document Defaults section
|
|
50
60
|
"Document Defaults": "Privzete vrednosti dokumentov",
|
|
51
61
|
"Default values for new documents": "Privzete vrednosti za nove dokumente",
|
|
52
|
-
"Default Note": "
|
|
53
|
-
"Default Invoice Note": "
|
|
62
|
+
"Default Note": "Privzeti pripis",
|
|
63
|
+
"Default Invoice Note": "Privzeti pripis računa",
|
|
54
64
|
"This note will be pre-filled when creating new invoices":
|
|
55
|
-
"Ta
|
|
65
|
+
"Ta pripis bo vnaprej izpolnjen pri ustvarjanju novih računov",
|
|
56
66
|
"This note will be pre-filled when creating new estimates":
|
|
57
|
-
"Ta
|
|
67
|
+
"Ta pripis bo vnaprej izpolnjen pri ustvarjanju novih predračunov",
|
|
58
68
|
"This note will be pre-filled when creating new credit notes":
|
|
59
|
-
"Ta
|
|
69
|
+
"Ta pripis bo vnaprej izpolnjen pri ustvarjanju novih dobropisov",
|
|
60
70
|
"Payment terms pre-filled when creating new invoices":
|
|
61
71
|
"Plačilni pogoji bodo vnaprej izpolnjeni pri ustvarjanju novih računov",
|
|
62
72
|
"Payment terms pre-filled when creating new estimates":
|
|
63
73
|
"Plačilni pogoji bodo vnaprej izpolnjeni pri ustvarjanju novih predračunov",
|
|
64
74
|
"Payment terms pre-filled when creating new credit notes":
|
|
65
75
|
"Plačilni pogoji bodo vnaprej izpolnjeni pri ustvarjanju novih dobropisov",
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
|
|
76
|
+
"Optional note for the document.": "Neobvezna opomba za dokument.",
|
|
77
|
+
"Please remit payment using the bank details shown on the document.":
|
|
78
|
+
"Plačilo izvedite po bančnih podatkih, navedenih na dokumentu.",
|
|
69
79
|
"This estimate is valid until {document_valid_until}.": "Ta predračun velja do {document_valid_until}.",
|
|
70
80
|
"Payment due upon acceptance.": "Plačilo ob sprejemu.",
|
|
71
81
|
"Credit note for invoice {document_number}.": "Dobropis za račun {document_number}.",
|
|
72
82
|
"Credit will be applied to your account.": "Dobropis bo upoštevan na vašem računu.",
|
|
73
|
-
"Invoice Notes": "
|
|
83
|
+
"Invoice Notes": "Pripisi računa",
|
|
74
84
|
"Smart Template Variables": "Pametne spremenljivke predloge",
|
|
75
|
-
"Use variables to personalize your notes automatically": "Uporabite spremenljivke za samodejno prilagajanje
|
|
85
|
+
"Use variables to personalize your notes automatically": "Uporabite spremenljivke za samodejno prilagajanje pripisov",
|
|
76
86
|
"Set a default note that will appear on all new invoices. Use template variables to personalize the note automatically.":
|
|
77
|
-
"Nastavite
|
|
87
|
+
"Nastavite privzeti pripis, ki bo prikazan na vseh novih računih. Uporabite spremenljivke predloge za samodejno prilagajanje pripisa.",
|
|
78
88
|
// Smart code insert button
|
|
79
89
|
"Insert variable": "Vstavi spremenljivko",
|
|
80
90
|
Entity: "Podjetje",
|
|
@@ -97,7 +107,7 @@ export default {
|
|
|
97
107
|
"This payment terms will be pre-filled when creating new documents":
|
|
98
108
|
"Ti plačilni pogoji bodo vnaprej izpolnjeni pri ustvarjanju novih dokumentov",
|
|
99
109
|
"Payment Terms": "Plačilni pogoji",
|
|
100
|
-
"Add payment terms...": "
|
|
110
|
+
"Add payment terms...": "Dodaj plačilne pogoje...",
|
|
101
111
|
// Document footer
|
|
102
112
|
"Document Footer": "Noga dokumenta",
|
|
103
113
|
"Footer text displayed at the bottom of PDF documents": "Besedilo noge, prikazano na dnu PDF dokumentov",
|
|
@@ -108,6 +118,11 @@ export default {
|
|
|
108
118
|
"Document Signature": "Podpis dokumenta",
|
|
109
119
|
"Signature text displayed on all PDF documents": "Besedilo podpisa, prikazano na vseh PDF dokumentih",
|
|
110
120
|
"Add signature text...": "Dodaj besedilo podpisa...",
|
|
121
|
+
"Delivery Note": "Dobavnica",
|
|
122
|
+
"Default note for advance invoices": "Privzeti pripis za avansne račune",
|
|
123
|
+
"Default note for all new advance invoices": "Privzeti pripis za vse nove avansne račune",
|
|
124
|
+
"Default note for delivery notes": "Privzeti pripis za dobavnice",
|
|
125
|
+
"Default note for all new delivery notes": "Privzeti pripis za vse nove dobavnice",
|
|
111
126
|
// Overdue Notifications section
|
|
112
127
|
"Overdue Notifications": "Opomniki o zapadlih računih",
|
|
113
128
|
"Automatically remind customers about overdue invoices": "Samodejno opominjajte stranke o zapadlih računih",
|