@spaceinvoices/react-ui 0.4.1 → 0.4.3
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 +25 -0
- package/src/components/advance-invoices/advance-invoices.hooks.ts +32 -2
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +109 -4
- package/src/components/advance-invoices/create/locales/de.ts +2 -0
- package/src/components/advance-invoices/create/locales/es.ts +2 -0
- package/src/components/advance-invoices/create/locales/fr.ts +2 -0
- package/src/components/advance-invoices/create/locales/hr.ts +2 -0
- package/src/components/advance-invoices/create/locales/it.ts +2 -0
- package/src/components/advance-invoices/create/locales/nl.ts +2 -0
- package/src/components/advance-invoices/create/locales/pl.ts +2 -0
- package/src/components/advance-invoices/create/locales/pt.ts +2 -0
- package/src/components/advance-invoices/create/locales/sl.ts +2 -0
- package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +17 -0
- package/src/components/advance-invoices/list/list-row-actions.tsx +3 -6
- package/src/components/advance-invoices/list/list-table.tsx +105 -2
- package/src/components/advance-invoices/list/locales/de.ts +4 -0
- package/src/components/advance-invoices/list/locales/en.ts +4 -0
- package/src/components/advance-invoices/list/locales/es.ts +4 -0
- package/src/components/advance-invoices/list/locales/fr.ts +4 -0
- package/src/components/advance-invoices/list/locales/hr.ts +4 -0
- package/src/components/advance-invoices/list/locales/it.ts +4 -0
- package/src/components/advance-invoices/list/locales/nl.ts +4 -0
- package/src/components/advance-invoices/list/locales/pl.ts +4 -0
- package/src/components/advance-invoices/list/locales/pt.ts +4 -0
- package/src/components/advance-invoices/list/locales/sl.ts +4 -0
- package/src/components/credit-notes/create/create-credit-note-form.tsx +177 -6
- package/src/components/credit-notes/create/locales/de.ts +8 -0
- package/src/components/credit-notes/create/locales/es.ts +8 -0
- package/src/components/credit-notes/create/locales/fr.ts +7 -0
- package/src/components/credit-notes/create/locales/hr.ts +7 -0
- package/src/components/credit-notes/create/locales/it.ts +9 -0
- package/src/components/credit-notes/create/locales/nl.ts +7 -0
- package/src/components/credit-notes/create/locales/pl.ts +7 -0
- package/src/components/credit-notes/create/locales/pt.ts +7 -0
- package/src/components/credit-notes/create/locales/sl.ts +7 -0
- package/src/components/credit-notes/credit-notes.hooks.ts +30 -0
- package/src/components/credit-notes/list/list-row-actions.tsx +3 -6
- package/src/components/credit-notes/list/list-table.tsx +79 -8
- package/src/components/credit-notes/list/locales/de.ts +4 -1
- package/src/components/credit-notes/list/locales/en.ts +5 -0
- package/src/components/credit-notes/list/locales/es.ts +4 -1
- package/src/components/credit-notes/list/locales/fr.ts +4 -1
- package/src/components/credit-notes/list/locales/hr.ts +4 -1
- package/src/components/credit-notes/list/locales/it.ts +4 -1
- package/src/components/credit-notes/list/locales/nl.ts +4 -1
- package/src/components/credit-notes/list/locales/pl.ts +4 -1
- package/src/components/credit-notes/list/locales/pt.ts +4 -1
- package/src/components/credit-notes/list/locales/sl.ts +4 -1
- package/src/components/customers/create-customer-form/create-customer-form.tsx +0 -1
- package/src/components/dashboard/collection-rate-card/use-collection-rate.ts +2 -2
- package/src/components/dashboard/invoice-status-chart/use-invoice-status.ts +3 -3
- package/src/components/dashboard/payment-methods-chart/use-payment-methods.ts +1 -1
- package/src/components/dashboard/payment-trend-chart/use-payment-trend.ts +1 -1
- package/src/components/dashboard/revenue-trend-chart/use-revenue-trend.ts +1 -1
- package/src/components/dashboard/shared/use-revenue-data.ts +4 -4
- package/src/components/dashboard/shared/use-stats-counts.ts +4 -4
- package/src/components/dashboard/shared/use-stats-query.ts +1 -1
- package/src/components/dashboard/tax-collected-card/use-tax-collected.ts +2 -2
- package/src/components/dashboard/top-customers-chart/use-top-customers.ts +1 -1
- package/src/components/delivery-notes/create/create-delivery-note-form.tsx +332 -0
- package/src/components/delivery-notes/create/locales/de.ts +50 -0
- package/src/components/delivery-notes/create/locales/es.ts +49 -0
- package/src/components/delivery-notes/create/locales/fr.ts +50 -0
- package/src/components/delivery-notes/create/locales/hr.ts +49 -0
- package/src/components/delivery-notes/create/locales/it.ts +49 -0
- package/src/components/delivery-notes/create/locales/nl.ts +50 -0
- package/src/components/delivery-notes/create/locales/pl.ts +49 -0
- package/src/components/delivery-notes/create/locales/pt.ts +50 -0
- package/src/components/delivery-notes/create/locales/sl.ts +49 -0
- package/src/components/delivery-notes/create/prepare-delivery-note-submission.ts +38 -0
- package/src/components/delivery-notes/create/use-delivery-note-customer-form.ts +1 -0
- package/src/components/delivery-notes/delivery-notes.hooks.ts +15 -0
- package/src/components/delivery-notes/list/index.ts +3 -0
- package/src/components/delivery-notes/list/list-row-actions.tsx +103 -0
- package/src/components/delivery-notes/list/list-table.tsx +214 -0
- package/src/components/delivery-notes/list/locales/de.ts +9 -0
- package/src/components/delivery-notes/list/locales/en.ts +11 -0
- package/src/components/delivery-notes/list/locales/es.ts +9 -0
- package/src/components/delivery-notes/list/locales/fr.ts +9 -0
- package/src/components/delivery-notes/list/locales/hr.ts +9 -0
- package/src/components/delivery-notes/list/locales/it.ts +9 -0
- package/src/components/delivery-notes/list/locales/nl.ts +9 -0
- package/src/components/delivery-notes/list/locales/pl.ts +9 -0
- package/src/components/delivery-notes/list/locales/pt.ts +9 -0
- package/src/components/delivery-notes/list/locales/sl.ts +9 -0
- package/src/components/delivery-notes/list/use-delivery-note-download.ts +63 -0
- package/src/components/documents/create/document-details-section.tsx +103 -33
- package/src/components/documents/create/live-preview.tsx +37 -10
- package/src/components/documents/create/mark-as-paid-section.tsx +11 -2
- package/src/components/documents/create/prepare-document-submission.ts +1 -1
- package/src/components/documents/documents.hooks.ts +2 -1
- package/src/components/documents/shared/document-preview-display.tsx +12 -5
- package/src/components/documents/types.ts +10 -1
- package/src/components/documents/view/document-actions-bar.tsx +30 -0
- package/src/components/documents/view/document-details-card.tsx +3 -3
- package/src/components/documents/view/document-payments-list.tsx +3 -3
- package/src/components/documents/view/document-relations-list.tsx +105 -0
- package/src/components/documents/view/locales/de.ts +26 -0
- package/src/components/documents/view/locales/es.ts +26 -0
- package/src/components/documents/view/locales/fr.ts +26 -0
- package/src/components/documents/view/locales/hr.ts +26 -0
- package/src/components/documents/view/locales/it.ts +26 -0
- package/src/components/documents/view/locales/nl.ts +26 -0
- package/src/components/documents/view/locales/pl.ts +26 -0
- package/src/components/documents/view/locales/pt.ts +26 -0
- package/src/components/documents/view/locales/sl.ts +26 -0
- package/src/components/documents/view/use-document-download.ts +5 -3
- package/src/components/entities/create-entity-form.tsx +1 -1
- package/src/components/entities/entity-settings-form/entity-settings-form.tsx +2 -3
- package/src/components/entities/entity-settings-form/locales/es.ts +2 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +2 -0
- package/src/components/entities/entity-settings-form/locales/hr.ts +2 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +2 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +2 -0
- package/src/components/entities/entity-settings-form/locales/pl.ts +2 -0
- package/src/components/entities/entity-settings-form/locales/pt.ts +2 -0
- package/src/components/entities/fina-settings-form/fina-operator-required-dialog.tsx +109 -0
- package/src/components/entities/fina-settings-form/fina-settings-form.tsx +377 -35
- package/src/components/entities/fina-settings-form/fina-settings.hooks.ts +106 -20
- package/src/components/entities/fina-settings-form/index.ts +1 -0
- package/src/components/entities/fina-settings-form/locales/de.ts +54 -34
- package/src/components/entities/fina-settings-form/locales/en.ts +51 -34
- package/src/components/entities/fina-settings-form/locales/es.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/fr.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/hr.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/it.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/nl.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/pl.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/pt.ts +50 -34
- package/src/components/entities/fina-settings-form/locales/sl.ts +50 -34
- package/src/components/entities/fina-settings-form/sections/certificate-settings-section.tsx +18 -0
- package/src/components/entities/fina-settings-form/sections/premises-management-section.tsx +64 -89
- package/src/components/entities/fina-settings-form/sections/register-premise-dialog.tsx +51 -323
- package/src/components/entities/furs-settings-form/furs-operator-required-dialog.tsx +106 -0
- package/src/components/entities/furs-settings-form/furs-settings-form.tsx +33 -10
- package/src/components/entities/furs-settings-form/furs-settings.hooks.ts +12 -11
- package/src/components/entities/furs-settings-form/index.ts +1 -0
- package/src/components/entities/furs-settings-form/locales/de.ts +27 -3
- package/src/components/entities/furs-settings-form/locales/en.ts +17 -3
- package/src/components/entities/furs-settings-form/locales/es.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/fr.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/hr.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/it.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/nl.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/pl.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/pt.ts +26 -3
- package/src/components/entities/furs-settings-form/locales/sl.ts +16 -3
- package/src/components/entities/furs-settings-form/sections/certificate-settings-section.tsx +22 -0
- package/src/components/entities/furs-settings-form/sections/general-settings-section.tsx +26 -5
- package/src/components/entities/furs-settings-form/sections/register-premise-dialog.tsx +14 -2
- package/src/components/entities/settings/tax-rules-settings-form.tsx +4 -4
- package/src/components/estimates/list/list-row-actions.tsx +3 -7
- package/src/components/estimates/list/list-table.tsx +35 -2
- package/src/components/estimates/list/locales/de.ts +3 -0
- package/src/components/estimates/list/locales/en.ts +3 -0
- package/src/components/estimates/list/locales/es.ts +3 -0
- package/src/components/estimates/list/locales/fr.ts +3 -0
- package/src/components/estimates/list/locales/hr.ts +3 -0
- package/src/components/estimates/list/locales/it.ts +3 -0
- package/src/components/estimates/list/locales/nl.ts +3 -0
- package/src/components/estimates/list/locales/pl.ts +3 -0
- package/src/components/estimates/list/locales/pt.ts +3 -0
- package/src/components/estimates/list/locales/sl.ts +3 -0
- package/src/components/export/document-export-form.tsx +34 -34
- package/src/components/invoices/create/create-invoice-form.tsx +107 -5
- package/src/components/invoices/create/prepare-invoice-submission.ts +17 -0
- package/src/components/invoices/invoices-furs.hooks.ts +24 -9
- package/src/components/invoices/invoices.hooks.ts +32 -2
- package/src/components/invoices/list/list-row-actions.tsx +26 -11
- package/src/components/invoices/list/list-table.tsx +121 -5
- package/src/components/invoices/list/locales/de.ts +5 -0
- package/src/components/invoices/list/locales/en.ts +5 -0
- package/src/components/invoices/list/locales/es.ts +5 -0
- package/src/components/invoices/list/locales/fr.ts +5 -0
- package/src/components/invoices/list/locales/hr.ts +5 -0
- package/src/components/invoices/list/locales/it.ts +5 -0
- package/src/components/invoices/list/locales/nl.ts +5 -0
- package/src/components/invoices/list/locales/pl.ts +5 -0
- package/src/components/invoices/list/locales/pt.ts +5 -0
- package/src/components/invoices/list/locales/sl.ts +5 -0
- package/src/components/invoices/view/fiscalization-status-card.tsx +4 -1
- package/src/components/items/item-list-table/item-list-row-actions.tsx +5 -8
- package/src/components/items/item-list-table/item-list-row.tsx +5 -3
- package/src/components/items/item-list-table/item-list-table.tsx +5 -1
- package/src/components/recurring-invoices/create-recurring-invoice-form/create-recurring-invoice-form.tsx +418 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/de.ts +45 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/es.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/fr.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/hr.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/it.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/nl.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/pl.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/pt.ts +44 -0
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sl.ts +44 -0
- package/src/components/recurring-invoices/index.ts +3 -0
- package/src/components/recurring-invoices/list/index.ts +2 -0
- package/src/components/recurring-invoices/list/list-row-actions.tsx +139 -0
- package/src/components/recurring-invoices/list/list-table.tsx +179 -0
- package/src/components/recurring-invoices/list/locales/de.ts +27 -0
- package/src/components/recurring-invoices/list/locales/en.ts +5 -0
- package/src/components/recurring-invoices/list/locales/es.ts +27 -0
- package/src/components/recurring-invoices/list/locales/fr.ts +27 -0
- package/src/components/recurring-invoices/list/locales/hr.ts +27 -0
- package/src/components/recurring-invoices/list/locales/it.ts +27 -0
- package/src/components/recurring-invoices/list/locales/nl.ts +27 -0
- package/src/components/recurring-invoices/list/locales/pl.ts +27 -0
- package/src/components/recurring-invoices/list/locales/pt.ts +27 -0
- package/src/components/recurring-invoices/list/locales/sl.ts +27 -0
- package/src/components/recurring-invoices/recurring-invoices.hooks.ts +28 -0
- package/src/components/table/data-table.tsx +122 -5
- package/src/components/table/selection-toolbar.tsx +36 -0
- package/src/components/tax-reports/kir-export-form.tsx +75 -55
- package/src/components/taxes/tax-list-table/tax-list-row-actions.tsx +3 -6
- package/src/components/taxes/tax-list-table/tax-list-row.tsx +3 -2
- package/src/components/taxes/tax-list-table/tax-list-table.tsx +5 -1
- package/src/components/ui/checkbox.tsx +5 -5
- package/src/generate-schemas.ts +45 -18
- package/src/generated/schemas/authorizeshopify_body.ts +22 -0
- package/src/generated/schemas/creditnote.ts +0 -2
- package/src/generated/schemas/deliverynote.ts +134 -0
- package/src/generated/schemas/entity.ts +5 -1
- package/src/generated/schemas/index.ts +42 -28
- package/src/generated/schemas/order.ts +129 -0
- package/src/generated/schemas/orderintegration.ts +51 -0
- package/src/generated/schemas/payment.ts +24 -2
- package/src/generated/schemas/recurringinvoice.ts +61 -0
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +108 -140
- package/src/generated/schemas/rendercreditnotepreview_body.ts +109 -141
- package/src/generated/schemas/renderdeliverynotepreview_body.ts +185 -0
- package/src/generated/schemas/renderestimatepreview_body.ts +79 -82
- package/src/generated/schemas/renderinvoicepreview_body.ts +109 -141
- package/src/generated/schemas/startpdfexport_body.ts +18 -2
- package/src/generated/schemas/userfinasettings.ts +19 -0
- package/src/generated/schemas/webhook.ts +54 -0
- package/src/hooks/use-duplicate-document.ts +11 -3
- package/src/hooks/use-next-document-number.ts +2 -2
- package/src/lib/furs-error-utils.ts +36 -0
- package/src/lib/schemas/advance-invoice.ts +3 -3
- package/src/lib/schemas/credit-note.ts +3 -3
- package/src/lib/schemas/estimate.ts +3 -3
- package/src/lib/schemas/invoice.ts +3 -3
- package/src/providers/sdk-provider.tsx +5 -7
- package/src/providers/white-label-provider.tsx +3 -0
|
@@ -27,9 +27,12 @@ export default {
|
|
|
27
27
|
"Operator Information": "Informations opérateur",
|
|
28
28
|
"Configure default operator for API usage": "Configurer l'opérateur par défaut pour l'utilisation de l'API",
|
|
29
29
|
"Operator OIB": "OIB de l'opérateur",
|
|
30
|
-
"OIB of the operator (11 digits
|
|
30
|
+
"OIB of the operator (11 digits)": "OIB de l'opérateur (11 chiffres)",
|
|
31
|
+
"OIB must be exactly 11 digits": "L'OIB doit contenir exactement 11 chiffres",
|
|
32
|
+
"Operator OIB set": "OIB de l'opérateur défini",
|
|
33
|
+
"Set operator OIB in General Settings first": "Définissez d'abord l'OIB de l'opérateur dans les paramètres généraux",
|
|
31
34
|
"Operator Label": "Libellé de l'opérateur",
|
|
32
|
-
"
|
|
35
|
+
"e.g. Cashier 1": "ex. Caissier 1",
|
|
33
36
|
"PDV System": "Système PDV",
|
|
34
37
|
"Entity is registered in the Croatian PDV (VAT) system": "L'entité est enregistrée dans le système PDV (TVA) croate",
|
|
35
38
|
"Digital Certificate": "Certificat numérique",
|
|
@@ -40,6 +43,10 @@ export default {
|
|
|
40
43
|
"Type de fichier invalide. Veuillez télécharger un fichier certificat .p12 ou .pfx.",
|
|
41
44
|
"Please select a certificate file and enter the passphrase":
|
|
42
45
|
"Veuillez sélectionner un fichier certificat et entrer la phrase secrète",
|
|
46
|
+
"Invalid certificate passphrase. Please check your passphrase and try again.":
|
|
47
|
+
"Mot de passe du certificat invalide. Veuillez vérifier votre mot de passe et réessayer.",
|
|
48
|
+
"Certificate OIB does not match entity OIB. Please upload a certificate for this entity.":
|
|
49
|
+
"L'OIB du certificat ne correspond pas à l'OIB de l'entité. Veuillez télécharger un certificat pour cette entité.",
|
|
43
50
|
Valid: "Valide",
|
|
44
51
|
"Expiring Soon": "Expire bientôt",
|
|
45
52
|
Expired: "Expiré",
|
|
@@ -54,23 +61,19 @@ export default {
|
|
|
54
61
|
"Enter certificate passphrase": "Entrez la phrase secrète du certificat",
|
|
55
62
|
"Upload Certificate": "Télécharger le certificat",
|
|
56
63
|
"Upload New Certificate": "Télécharger un nouveau certificat",
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"Add
|
|
61
|
-
"Add Movable": "Ajouter un bien mobile",
|
|
64
|
+
"Manage your business premises for FINA": "Gérez vos locaux commerciaux pour FINA",
|
|
65
|
+
"Register your premises on ePorezna first, then add the premise ID here.":
|
|
66
|
+
"Enregistrez d'abord vos locaux sur ePorezna, puis ajoutez l'identifiant du local ici.",
|
|
67
|
+
"Add Premise": "Ajouter un local",
|
|
62
68
|
"No premises registered yet": "Aucun local enregistré",
|
|
63
69
|
Active: "Actif",
|
|
70
|
+
Inactive: "Inactif",
|
|
64
71
|
Closed: "Fermé",
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"Test Environment": "Environnement de test",
|
|
71
|
-
Production: "Production",
|
|
72
|
-
Vehicle: "Véhicule",
|
|
73
|
-
"Market Stall": "Étal de marché",
|
|
72
|
+
"Delete Premise": "Supprimer le local",
|
|
73
|
+
"Delete Device": "Supprimer l'appareil",
|
|
74
|
+
"Are you sure you want to delete this premise? This will also deactivate all its devices.":
|
|
75
|
+
"Êtes-vous sûr de vouloir supprimer ce local ? Cela désactivera également tous ses appareils.",
|
|
76
|
+
"Are you sure you want to delete this device?": "Êtes-vous sûr de vouloir supprimer cet appareil ?",
|
|
74
77
|
Other: "Autre",
|
|
75
78
|
Device: "Appareil",
|
|
76
79
|
Devices: "Appareils",
|
|
@@ -85,24 +88,12 @@ export default {
|
|
|
85
88
|
Cancel: "Annuler",
|
|
86
89
|
"Register Device": "Enregistrer l'appareil",
|
|
87
90
|
"Registering...": "Enregistrement...",
|
|
88
|
-
"
|
|
89
|
-
"
|
|
91
|
+
"Add Business Premise": "Ajouter un local commercial",
|
|
92
|
+
"Enter the premise ID that you registered on ePorezna. After adding, you'll need to register at least one electronic device.":
|
|
93
|
+
"Entrez l'identifiant du local que vous avez enregistré sur ePorezna. Après l'ajout, vous devrez enregistrer au moins un appareil électronique.",
|
|
90
94
|
"Premise ID": "ID du local",
|
|
91
95
|
"Unique identifier for this premise (e.g., PP1, OFFICE1)": "Identifiant unique pour ce local (ex. PP1, BUREAU1)",
|
|
92
|
-
"
|
|
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",
|
|
96
|
+
"Adding...": "Ajout...",
|
|
106
97
|
"Save Settings": "Enregistrer les paramètres",
|
|
107
98
|
"Saving...": "Enregistrement...",
|
|
108
99
|
"Loading...": "Chargement...",
|
|
@@ -140,6 +131,31 @@ export default {
|
|
|
140
131
|
"Business Premise": "Local commercial",
|
|
141
132
|
"Electronic Device": "Appareil électronique",
|
|
142
133
|
"Fiscalization Error": "Erreur de fiscalisation",
|
|
143
|
-
"
|
|
144
|
-
|
|
134
|
+
"Your Operator Settings": "Vos paramètres d'opérateur",
|
|
135
|
+
"Your personal operator info for FINA invoices": "Vos informations personnelles d'opérateur pour les factures FINA",
|
|
136
|
+
"Save Operator Settings": "Enregistrer les paramètres d'opérateur",
|
|
137
|
+
"Advanced Settings": "Paramètres avancés",
|
|
138
|
+
"API Default Operator": "Opérateur par défaut pour l'API",
|
|
139
|
+
"Default operator settings for API key usage (when no user context)":
|
|
140
|
+
"Paramètres d'opérateur par défaut pour l'utilisation de clé API (sans contexte utilisateur)",
|
|
141
|
+
"OIB for API key usage (optional)": "OIB pour l'utilisation de clé API (optionnel)",
|
|
142
|
+
"Operator label for API key usage (optional)": "Libellé de l'opérateur pour l'utilisation de clé API (optionnel)",
|
|
143
|
+
City: "Ville",
|
|
144
|
+
"Entity Information": "Informations de l'entité",
|
|
145
|
+
"Required company details for FINA fiscalization": "Coordonnées d'entreprise requises pour la fiscalisation FINA",
|
|
146
|
+
"Entity OIB": "OIB de l'entité",
|
|
147
|
+
"Your company's OIB (must match FINA certificate)": "OIB de votre entreprise (doit correspondre au certificat FINA)",
|
|
148
|
+
"Entity OIB is required for FINA fiscalization": "L'OIB de l'entité est requis pour la fiscalisation FINA",
|
|
149
|
+
"Set entity OIB in General Settings first": "Définissez d'abord l'OIB de l'entité dans les Paramètres généraux",
|
|
150
|
+
Address: "Adresse",
|
|
151
|
+
"Post Code": "Code postal",
|
|
152
|
+
"Save Entity Info": "Enregistrer les informations de l'entité",
|
|
153
|
+
"Set operator OIB and label in General Settings first": "Set operator OIB and label in General Settings first",
|
|
154
|
+
"Complete General Settings first": "Complete General Settings first",
|
|
155
|
+
"Operator OIB and label are required for FINA fiscalization":
|
|
156
|
+
"Operator OIB and label are required for FINA fiscalization",
|
|
157
|
+
"FINA Operator Settings Required": "FINA Operator Settings Required",
|
|
158
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.":
|
|
159
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.",
|
|
160
|
+
"Save & Retry": "Save & Retry",
|
|
145
161
|
} as const;
|
|
@@ -28,9 +28,12 @@ export default {
|
|
|
28
28
|
"Operator Information": "Informacije o operateru",
|
|
29
29
|
"Configure default operator for API usage": "Konfigurirajte zadanog operatera za korištenje API-ja",
|
|
30
30
|
"Operator OIB": "OIB operatera",
|
|
31
|
-
"OIB of the operator (11 digits
|
|
31
|
+
"OIB of the operator (11 digits)": "OIB operatera (11 znamenki)",
|
|
32
|
+
"OIB must be exactly 11 digits": "OIB mora imati točno 11 znamenki",
|
|
33
|
+
"Operator OIB set": "OIB operatera postavljen",
|
|
34
|
+
"Set operator OIB in General Settings first": "Prvo postavite OIB operatera u Općim postavkama",
|
|
32
35
|
"Operator Label": "Oznaka operatera",
|
|
33
|
-
"
|
|
36
|
+
"e.g. Cashier 1": "npr. Blagajnik 1",
|
|
34
37
|
"PDV System": "Sustav PDV-a",
|
|
35
38
|
"Entity is registered in the Croatian PDV (VAT) system": "Subjekt je registriran u hrvatskom sustavu PDV-a",
|
|
36
39
|
"Digital Certificate": "Digitalni certifikat",
|
|
@@ -41,6 +44,10 @@ export default {
|
|
|
41
44
|
"Nevažeća vrsta datoteke. Molimo prenesite datoteku certifikata .p12 ili .pfx.",
|
|
42
45
|
"Please select a certificate file and enter the passphrase":
|
|
43
46
|
"Molimo odaberite datoteku certifikata i unesite lozinku",
|
|
47
|
+
"Invalid certificate passphrase. Please check your passphrase and try again.":
|
|
48
|
+
"Nevažeća lozinka certifikata. Provjerite lozinku i pokušajte ponovo.",
|
|
49
|
+
"Certificate OIB does not match entity OIB. Please upload a certificate for this entity.":
|
|
50
|
+
"OIB certifikata ne odgovara OIB-u entiteta. Učitajte certifikat za ovaj entitet.",
|
|
44
51
|
Valid: "Valjan",
|
|
45
52
|
"Expiring Soon": "Uskoro ističe",
|
|
46
53
|
Expired: "Istekao",
|
|
@@ -55,23 +62,19 @@ export default {
|
|
|
55
62
|
"Enter certificate passphrase": "Unesite lozinku certifikata",
|
|
56
63
|
"Upload Certificate": "Prenesi certifikat",
|
|
57
64
|
"Upload New Certificate": "Prenesi novi certifikat",
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"Add
|
|
62
|
-
"Add Movable": "Dodaj pokretninu",
|
|
65
|
+
"Manage your business premises for FINA": "Upravljajte poslovnim prostorima za FINA",
|
|
66
|
+
"Register your premises on ePorezna first, then add the premise ID here.":
|
|
67
|
+
"Prvo registrirajte prostore na ePorezna, zatim ovdje dodajte oznaku prostora.",
|
|
68
|
+
"Add Premise": "Dodaj prostor",
|
|
63
69
|
"No premises registered yet": "Još nema registriranih prostora",
|
|
64
70
|
Active: "Aktivan",
|
|
71
|
+
Inactive: "Neaktivan",
|
|
65
72
|
Closed: "Zatvoren",
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"Test Environment": "Testno okruženje",
|
|
72
|
-
Production: "Produkcija",
|
|
73
|
-
Vehicle: "Vozilo",
|
|
74
|
-
"Market Stall": "Tržni štand",
|
|
73
|
+
"Delete Premise": "Obriši prostor",
|
|
74
|
+
"Delete Device": "Obriši uređaj",
|
|
75
|
+
"Are you sure you want to delete this premise? This will also deactivate all its devices.":
|
|
76
|
+
"Jeste li sigurni da želite obrisati ovaj prostor? Time će se također deaktivirati svi njegovi uređaji.",
|
|
77
|
+
"Are you sure you want to delete this device?": "Jeste li sigurni da želite obrisati ovaj uređaj?",
|
|
75
78
|
Other: "Ostalo",
|
|
76
79
|
Device: "Uređaj",
|
|
77
80
|
Devices: "Uređaji",
|
|
@@ -86,25 +89,13 @@ export default {
|
|
|
86
89
|
Cancel: "Odustani",
|
|
87
90
|
"Register Device": "Registriraj uređaj",
|
|
88
91
|
"Registering...": "Registriranje...",
|
|
89
|
-
"
|
|
90
|
-
"
|
|
92
|
+
"Add Business Premise": "Dodaj poslovni prostor",
|
|
93
|
+
"Enter the premise ID that you registered on ePorezna. After adding, you'll need to register at least one electronic device.":
|
|
94
|
+
"Unesite oznaku prostora koju ste registrirali na ePorezna. Nakon dodavanja, morat ćete registrirati barem jedan elektronički uređaj.",
|
|
91
95
|
"Premise ID": "ID prostora",
|
|
92
96
|
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
93
97
|
"Jedinstveni identifikator za ovaj prostor (npr. PP1, URED1)",
|
|
94
|
-
"
|
|
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",
|
|
98
|
+
"Adding...": "Dodavanje...",
|
|
108
99
|
"Save Settings": "Spremi postavke",
|
|
109
100
|
"Saving...": "Spremanje...",
|
|
110
101
|
"Loading...": "Učitavanje...",
|
|
@@ -142,6 +133,31 @@ export default {
|
|
|
142
133
|
"Business Premise": "Poslovni prostor",
|
|
143
134
|
"Electronic Device": "Elektronički uređaj",
|
|
144
135
|
"Fiscalization Error": "Greška fiskalizacije",
|
|
145
|
-
"
|
|
146
|
-
|
|
136
|
+
"Your Operator Settings": "Vaše postavke operatera",
|
|
137
|
+
"Your personal operator info for FINA invoices": "Vaši osobni podaci o operateru za FINA račune",
|
|
138
|
+
"Save Operator Settings": "Spremi postavke operatera",
|
|
139
|
+
"Advanced Settings": "Napredne postavke",
|
|
140
|
+
"API Default Operator": "Zadani operater za API",
|
|
141
|
+
"Default operator settings for API key usage (when no user context)":
|
|
142
|
+
"Zadane postavke operatera za korištenje API ključa (bez konteksta korisnika)",
|
|
143
|
+
"OIB for API key usage (optional)": "OIB za korištenje API ključa (opcionalno)",
|
|
144
|
+
"Operator label for API key usage (optional)": "Oznaka operatera za korištenje API ključa (opcionalno)",
|
|
145
|
+
City: "Grad",
|
|
146
|
+
"Entity Information": "Podaci o subjektu",
|
|
147
|
+
"Required company details for FINA fiscalization": "Obavezni podaci o tvrtki za fiskalizaciju FINA",
|
|
148
|
+
"Entity OIB": "OIB subjekta",
|
|
149
|
+
"Your company's OIB (must match FINA certificate)": "OIB vaše tvrtke (mora odgovarati certifikatu FINA)",
|
|
150
|
+
"Entity OIB is required for FINA fiscalization": "OIB subjekta je obavezan za fiskalizaciju FINA",
|
|
151
|
+
"Set entity OIB in General Settings first": "Prvo postavite OIB subjekta u Općim postavkama",
|
|
152
|
+
Address: "Adresa",
|
|
153
|
+
"Post Code": "Poštanski broj",
|
|
154
|
+
"Save Entity Info": "Spremi podatke o subjektu",
|
|
155
|
+
"Set operator OIB and label in General Settings first": "Set operator OIB and label in General Settings first",
|
|
156
|
+
"Complete General Settings first": "Complete General Settings first",
|
|
157
|
+
"Operator OIB and label are required for FINA fiscalization":
|
|
158
|
+
"Operator OIB and label are required for FINA fiscalization",
|
|
159
|
+
"FINA Operator Settings Required": "FINA Operator Settings Required",
|
|
160
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.":
|
|
161
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.",
|
|
162
|
+
"Save & Retry": "Save & Retry",
|
|
147
163
|
} as const;
|
|
@@ -28,9 +28,12 @@ export default {
|
|
|
28
28
|
"Operator Information": "Informazioni operatore",
|
|
29
29
|
"Configure default operator for API usage": "Configura l'operatore predefinito per l'utilizzo dell'API",
|
|
30
30
|
"Operator OIB": "OIB dell'operatore",
|
|
31
|
-
"OIB of the operator (11 digits
|
|
31
|
+
"OIB of the operator (11 digits)": "OIB dell'operatore (11 cifre)",
|
|
32
|
+
"OIB must be exactly 11 digits": "L'OIB deve avere esattamente 11 cifre",
|
|
33
|
+
"Operator OIB set": "OIB operatore impostato",
|
|
34
|
+
"Set operator OIB in General Settings first": "Imposta prima l'OIB operatore nelle Impostazioni generali",
|
|
32
35
|
"Operator Label": "Etichetta operatore",
|
|
33
|
-
"
|
|
36
|
+
"e.g. Cashier 1": "es. Cassiere 1",
|
|
34
37
|
"PDV System": "Sistema PDV",
|
|
35
38
|
"Entity is registered in the Croatian PDV (VAT) system": "L'entità è registrata nel sistema PDV (IVA) croato",
|
|
36
39
|
"Digital Certificate": "Certificato digitale",
|
|
@@ -41,6 +44,10 @@ export default {
|
|
|
41
44
|
"Tipo di file non valido. Carica un file certificato .p12 o .pfx.",
|
|
42
45
|
"Please select a certificate file and enter the passphrase":
|
|
43
46
|
"Seleziona un file certificato e inserisci la passphrase",
|
|
47
|
+
"Invalid certificate passphrase. Please check your passphrase and try again.":
|
|
48
|
+
"Passphrase del certificato non valida. Controlla la passphrase e riprova.",
|
|
49
|
+
"Certificate OIB does not match entity OIB. Please upload a certificate for this entity.":
|
|
50
|
+
"L'OIB del certificato non corrisponde all'OIB dell'entità. Carica un certificato per questa entità.",
|
|
44
51
|
Valid: "Valido",
|
|
45
52
|
"Expiring Soon": "In scadenza",
|
|
46
53
|
Expired: "Scaduto",
|
|
@@ -55,23 +62,19 @@ export default {
|
|
|
55
62
|
"Enter certificate passphrase": "Inserisci la passphrase del certificato",
|
|
56
63
|
"Upload Certificate": "Carica certificato",
|
|
57
64
|
"Upload New Certificate": "Carica nuovo certificato",
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"Add
|
|
62
|
-
"Add Movable": "Aggiungi mobile",
|
|
65
|
+
"Manage your business premises for FINA": "Gestisci i tuoi locali commerciali per FINA",
|
|
66
|
+
"Register your premises on ePorezna first, then add the premise ID here.":
|
|
67
|
+
"Registra prima i tuoi locali su ePorezna, poi aggiungi l'ID del locale qui.",
|
|
68
|
+
"Add Premise": "Aggiungi locale",
|
|
63
69
|
"No premises registered yet": "Nessun locale registrato",
|
|
64
70
|
Active: "Attivo",
|
|
71
|
+
Inactive: "Inattivo",
|
|
65
72
|
Closed: "Chiuso",
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"Test Environment": "Ambiente di test",
|
|
72
|
-
Production: "Produzione",
|
|
73
|
-
Vehicle: "Veicolo",
|
|
74
|
-
"Market Stall": "Bancarella",
|
|
73
|
+
"Delete Premise": "Elimina locale",
|
|
74
|
+
"Delete Device": "Elimina dispositivo",
|
|
75
|
+
"Are you sure you want to delete this premise? This will also deactivate all its devices.":
|
|
76
|
+
"Sei sicuro di voler eliminare questo locale? Questo disattiverà anche tutti i suoi dispositivi.",
|
|
77
|
+
"Are you sure you want to delete this device?": "Sei sicuro di voler eliminare questo dispositivo?",
|
|
75
78
|
Other: "Altro",
|
|
76
79
|
Device: "Dispositivo",
|
|
77
80
|
Devices: "Dispositivi",
|
|
@@ -86,25 +89,13 @@ export default {
|
|
|
86
89
|
Cancel: "Annulla",
|
|
87
90
|
"Register Device": "Registra dispositivo",
|
|
88
91
|
"Registering...": "Registrazione...",
|
|
89
|
-
"
|
|
90
|
-
"
|
|
92
|
+
"Add Business Premise": "Aggiungi locale commerciale",
|
|
93
|
+
"Enter the premise ID that you registered on ePorezna. After adding, you'll need to register at least one electronic device.":
|
|
94
|
+
"Inserisci l'ID del locale che hai registrato su ePorezna. Dopo l'aggiunta, dovrai registrare almeno un dispositivo elettronico.",
|
|
91
95
|
"Premise ID": "ID locale",
|
|
92
96
|
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
93
97
|
"Identificatore univoco per questo locale (es. PP1, UFFICIO1)",
|
|
94
|
-
"
|
|
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",
|
|
98
|
+
"Adding...": "Aggiunta...",
|
|
108
99
|
"Save Settings": "Salva impostazioni",
|
|
109
100
|
"Saving...": "Salvataggio...",
|
|
110
101
|
"Loading...": "Caricamento...",
|
|
@@ -142,6 +133,31 @@ export default {
|
|
|
142
133
|
"Business Premise": "Locale commerciale",
|
|
143
134
|
"Electronic Device": "Dispositivo elettronico",
|
|
144
135
|
"Fiscalization Error": "Errore di fiscalizzazione",
|
|
145
|
-
"
|
|
146
|
-
|
|
136
|
+
"Your Operator Settings": "Impostazioni operatore personali",
|
|
137
|
+
"Your personal operator info for FINA invoices": "Le tue informazioni operatore personali per le fatture FINA",
|
|
138
|
+
"Save Operator Settings": "Salva impostazioni operatore",
|
|
139
|
+
"Advanced Settings": "Impostazioni avanzate",
|
|
140
|
+
"API Default Operator": "Operatore predefinito per API",
|
|
141
|
+
"Default operator settings for API key usage (when no user context)":
|
|
142
|
+
"Impostazioni operatore predefinite per l'utilizzo della chiave API (senza contesto utente)",
|
|
143
|
+
"OIB for API key usage (optional)": "OIB per l'utilizzo della chiave API (opzionale)",
|
|
144
|
+
"Operator label for API key usage (optional)": "Etichetta operatore per l'utilizzo della chiave API (opzionale)",
|
|
145
|
+
City: "Città",
|
|
146
|
+
"Entity Information": "Informazioni dell'entità",
|
|
147
|
+
"Required company details for FINA fiscalization": "Dati aziendali richiesti per la fiscalizzazione FINA",
|
|
148
|
+
"Entity OIB": "OIB dell'entità",
|
|
149
|
+
"Your company's OIB (must match FINA certificate)": "OIB della tua azienda (deve corrispondere al certificato FINA)",
|
|
150
|
+
"Entity OIB is required for FINA fiscalization": "L'OIB dell'entità è richiesto per la fiscalizzazione FINA",
|
|
151
|
+
"Set entity OIB in General Settings first": "Prima imposta l'OIB dell'entità nelle Impostazioni generali",
|
|
152
|
+
Address: "Indirizzo",
|
|
153
|
+
"Post Code": "Codice postale",
|
|
154
|
+
"Save Entity Info": "Salva dati dell'entità",
|
|
155
|
+
"Set operator OIB and label in General Settings first": "Set operator OIB and label in General Settings first",
|
|
156
|
+
"Complete General Settings first": "Complete General Settings first",
|
|
157
|
+
"Operator OIB and label are required for FINA fiscalization":
|
|
158
|
+
"Operator OIB and label are required for FINA fiscalization",
|
|
159
|
+
"FINA Operator Settings Required": "FINA Operator Settings Required",
|
|
160
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.":
|
|
161
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.",
|
|
162
|
+
"Save & Retry": "Save & Retry",
|
|
147
163
|
} as const;
|
|
@@ -27,9 +27,12 @@ export default {
|
|
|
27
27
|
"Operator Information": "Operatorinformatie",
|
|
28
28
|
"Configure default operator for API usage": "Standaard operator configureren voor API-gebruik",
|
|
29
29
|
"Operator OIB": "OIB van de operator",
|
|
30
|
-
"OIB of the operator (11 digits
|
|
30
|
+
"OIB of the operator (11 digits)": "OIB van de operator (11 cijfers)",
|
|
31
|
+
"OIB must be exactly 11 digits": "OIB moet precies 11 cijfers bevatten",
|
|
32
|
+
"Operator OIB set": "Operator-OIB ingesteld",
|
|
33
|
+
"Set operator OIB in General Settings first": "Stel eerst de operator-OIB in bij Algemene instellingen",
|
|
31
34
|
"Operator Label": "Operatorlabel",
|
|
32
|
-
"
|
|
35
|
+
"e.g. Cashier 1": "bijv. Kassier 1",
|
|
33
36
|
"PDV System": "PDV-systeem",
|
|
34
37
|
"Entity is registered in the Croatian PDV (VAT) system":
|
|
35
38
|
"De entiteit is geregistreerd in het Kroatische PDV (btw) systeem",
|
|
@@ -41,6 +44,10 @@ export default {
|
|
|
41
44
|
"Ongeldig bestandstype. Upload een .p12 of .pfx certificaatbestand.",
|
|
42
45
|
"Please select a certificate file and enter the passphrase":
|
|
43
46
|
"Selecteer een certificaatbestand en voer de wachtwoordzin in",
|
|
47
|
+
"Invalid certificate passphrase. Please check your passphrase and try again.":
|
|
48
|
+
"Ongeldig certificaatwachtwoord. Controleer uw wachtwoord en probeer het opnieuw.",
|
|
49
|
+
"Certificate OIB does not match entity OIB. Please upload a certificate for this entity.":
|
|
50
|
+
"Certificaat-OIB komt niet overeen met entiteits-OIB. Upload een certificaat voor deze entiteit.",
|
|
44
51
|
Valid: "Geldig",
|
|
45
52
|
"Expiring Soon": "Verloopt binnenkort",
|
|
46
53
|
Expired: "Verlopen",
|
|
@@ -55,23 +62,19 @@ export default {
|
|
|
55
62
|
"Enter certificate passphrase": "Voer de certificaat wachtwoordzin in",
|
|
56
63
|
"Upload Certificate": "Certificaat uploaden",
|
|
57
64
|
"Upload New Certificate": "Nieuw certificaat uploaden",
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"Add
|
|
62
|
-
"Add Movable": "Mobiel toevoegen",
|
|
65
|
+
"Manage your business premises for FINA": "Beheer uw bedrijfsruimten voor FINA",
|
|
66
|
+
"Register your premises on ePorezna first, then add the premise ID here.":
|
|
67
|
+
"Registreer uw ruimten eerst op ePorezna en voeg dan het ruimte-ID hier toe.",
|
|
68
|
+
"Add Premise": "Ruimte toevoegen",
|
|
63
69
|
"No premises registered yet": "Nog geen ruimten geregistreerd",
|
|
64
70
|
Active: "Actief",
|
|
71
|
+
Inactive: "Inactief",
|
|
65
72
|
Closed: "Gesloten",
|
|
66
|
-
"
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"Test Environment": "Testomgeving",
|
|
72
|
-
Production: "Productie",
|
|
73
|
-
Vehicle: "Voertuig",
|
|
74
|
-
"Market Stall": "Marktkraam",
|
|
73
|
+
"Delete Premise": "Ruimte verwijderen",
|
|
74
|
+
"Delete Device": "Apparaat verwijderen",
|
|
75
|
+
"Are you sure you want to delete this premise? This will also deactivate all its devices.":
|
|
76
|
+
"Weet u zeker dat u deze ruimte wilt verwijderen? Dit zal ook alle bijbehorende apparaten deactiveren.",
|
|
77
|
+
"Are you sure you want to delete this device?": "Weet u zeker dat u dit apparaat wilt verwijderen?",
|
|
75
78
|
Other: "Overig",
|
|
76
79
|
Device: "Apparaat",
|
|
77
80
|
Devices: "Apparaten",
|
|
@@ -86,25 +89,13 @@ export default {
|
|
|
86
89
|
Cancel: "Annuleren",
|
|
87
90
|
"Register Device": "Apparaat registreren",
|
|
88
91
|
"Registering...": "Registreren...",
|
|
89
|
-
"
|
|
90
|
-
"
|
|
92
|
+
"Add Business Premise": "Bedrijfsruimte toevoegen",
|
|
93
|
+
"Enter the premise ID that you registered on ePorezna. After adding, you'll need to register at least one electronic device.":
|
|
94
|
+
"Voer het ruimte-ID in dat u op ePorezna hebt geregistreerd. Na toevoeging moet u ten minste één elektronisch apparaat registreren.",
|
|
91
95
|
"Premise ID": "Ruimte-ID",
|
|
92
96
|
"Unique identifier for this premise (e.g., PP1, OFFICE1)":
|
|
93
97
|
"Unieke identificatie voor deze ruimte (bijv. PP1, KANTOOR1)",
|
|
94
|
-
"
|
|
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",
|
|
98
|
+
"Adding...": "Toevoegen...",
|
|
108
99
|
"Save Settings": "Instellingen opslaan",
|
|
109
100
|
"Saving...": "Opslaan...",
|
|
110
101
|
"Loading...": "Laden...",
|
|
@@ -142,6 +133,31 @@ export default {
|
|
|
142
133
|
"Business Premise": "Bedrijfsruimte",
|
|
143
134
|
"Electronic Device": "Elektronisch apparaat",
|
|
144
135
|
"Fiscalization Error": "Fiscalisatiefout",
|
|
145
|
-
"
|
|
146
|
-
|
|
136
|
+
"Your Operator Settings": "Uw operatorinstellingen",
|
|
137
|
+
"Your personal operator info for FINA invoices": "Uw persoonlijke operatorgegevens voor FINA-facturen",
|
|
138
|
+
"Save Operator Settings": "Operatorinstellingen opslaan",
|
|
139
|
+
"Advanced Settings": "Geavanceerde instellingen",
|
|
140
|
+
"API Default Operator": "Standaard operator voor API",
|
|
141
|
+
"Default operator settings for API key usage (when no user context)":
|
|
142
|
+
"Standaard operatorinstellingen voor API-sleutelgebruik (zonder gebruikerscontext)",
|
|
143
|
+
"OIB for API key usage (optional)": "OIB voor API-sleutelgebruik (optioneel)",
|
|
144
|
+
"Operator label for API key usage (optional)": "Operatorlabel voor API-sleutelgebruik (optioneel)",
|
|
145
|
+
City: "Stad",
|
|
146
|
+
"Entity Information": "Bedrijfsinformatie",
|
|
147
|
+
"Required company details for FINA fiscalization": "Vereiste bedrijfsgegevens voor FINA-fiscalisatie",
|
|
148
|
+
"Entity OIB": "OIB van de entiteit",
|
|
149
|
+
"Your company's OIB (must match FINA certificate)": "OIB van uw bedrijf (moet overeenkomen met het FINA-certificaat)",
|
|
150
|
+
"Entity OIB is required for FINA fiscalization": "OIB van de entiteit is vereist voor FINA-fiscalisatie",
|
|
151
|
+
"Set entity OIB in General Settings first": "Stel eerst de OIB van de entiteit in bij Algemene instellingen",
|
|
152
|
+
Address: "Adres",
|
|
153
|
+
"Post Code": "Postcode",
|
|
154
|
+
"Save Entity Info": "Bedrijfsgegevens opslaan",
|
|
155
|
+
"Set operator OIB and label in General Settings first": "Set operator OIB and label in General Settings first",
|
|
156
|
+
"Complete General Settings first": "Complete General Settings first",
|
|
157
|
+
"Operator OIB and label are required for FINA fiscalization":
|
|
158
|
+
"Operator OIB and label are required for FINA fiscalization",
|
|
159
|
+
"FINA Operator Settings Required": "FINA Operator Settings Required",
|
|
160
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.":
|
|
161
|
+
"Your FINA operator information is needed to fiscalize this document. Please enter your operator details.",
|
|
162
|
+
"Save & Retry": "Save & Retry",
|
|
147
163
|
} as const;
|