@spaceinvoices/react-ui 0.4.12 → 0.4.31
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/src/common/autocomplete.tsx +7 -1
- package/src/components/advance-invoices/advance-invoices.hooks.ts +35 -44
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +189 -73
- package/src/components/advance-invoices/create/locales/bg.ts +17 -9
- package/src/components/advance-invoices/create/locales/cs.ts +17 -9
- package/src/components/advance-invoices/create/locales/de.ts +15 -7
- package/src/components/advance-invoices/create/locales/en.ts +15 -7
- package/src/components/advance-invoices/create/locales/es.ts +15 -7
- package/src/components/advance-invoices/create/locales/et.ts +17 -9
- package/src/components/advance-invoices/create/locales/fi.ts +18 -10
- package/src/components/advance-invoices/create/locales/fr.ts +16 -8
- package/src/components/advance-invoices/create/locales/hr.ts +15 -7
- package/src/components/advance-invoices/create/locales/is.ts +17 -9
- package/src/components/advance-invoices/create/locales/it.ts +15 -7
- package/src/components/advance-invoices/create/locales/nb.ts +17 -9
- package/src/components/advance-invoices/create/locales/nl.ts +15 -7
- package/src/components/advance-invoices/create/locales/pl.ts +17 -9
- package/src/components/advance-invoices/create/locales/pt.ts +16 -8
- package/src/components/advance-invoices/create/locales/sk.ts +17 -9
- package/src/components/advance-invoices/create/locales/sl.ts +14 -5
- package/src/components/advance-invoices/create/locales/sv.ts +17 -9
- package/src/components/advance-invoices/create/prepare-advance-invoice-submission.ts +47 -1
- package/src/components/advance-invoices/list/list-table.tsx +2 -1
- package/src/components/credit-notes/create/create-credit-note-form.tsx +253 -85
- package/src/components/credit-notes/create/locales/bg.ts +22 -8
- package/src/components/credit-notes/create/locales/cs.ts +22 -8
- package/src/components/credit-notes/create/locales/de.ts +20 -7
- package/src/components/credit-notes/create/locales/en.ts +19 -5
- package/src/components/credit-notes/create/locales/es.ts +20 -7
- package/src/components/credit-notes/create/locales/et.ts +22 -8
- package/src/components/credit-notes/create/locales/fi.ts +23 -9
- package/src/components/credit-notes/create/locales/fr.ts +21 -8
- package/src/components/credit-notes/create/locales/hr.ts +20 -7
- package/src/components/credit-notes/create/locales/is.ts +22 -8
- package/src/components/credit-notes/create/locales/it.ts +20 -7
- package/src/components/credit-notes/create/locales/nb.ts +22 -8
- package/src/components/credit-notes/create/locales/nl.ts +20 -7
- package/src/components/credit-notes/create/locales/pl.ts +22 -9
- package/src/components/credit-notes/create/locales/pt.ts +21 -8
- package/src/components/credit-notes/create/locales/sk.ts +22 -8
- package/src/components/credit-notes/create/locales/sl.ts +19 -5
- package/src/components/credit-notes/create/locales/sv.ts +22 -8
- package/src/components/credit-notes/create/prepare-credit-note-submission.ts +35 -1
- package/src/components/credit-notes/credit-notes.hooks.ts +21 -2
- package/src/components/credit-notes/list/list-table.tsx +2 -1
- package/src/components/delivery-notes/create/create-delivery-note-form.tsx +132 -30
- package/src/components/delivery-notes/create/locales/bg.ts +1 -0
- package/src/components/delivery-notes/create/locales/cs.ts +1 -0
- package/src/components/delivery-notes/create/locales/de.ts +1 -0
- package/src/components/delivery-notes/create/locales/en.ts +1 -0
- package/src/components/delivery-notes/create/locales/es.ts +1 -0
- package/src/components/delivery-notes/create/locales/et.ts +1 -0
- package/src/components/delivery-notes/create/locales/fi.ts +1 -0
- package/src/components/delivery-notes/create/locales/fr.ts +1 -0
- package/src/components/delivery-notes/create/locales/hr.ts +1 -0
- package/src/components/delivery-notes/create/locales/is.ts +1 -0
- package/src/components/delivery-notes/create/locales/it.ts +1 -0
- package/src/components/delivery-notes/create/locales/nb.ts +1 -0
- package/src/components/delivery-notes/create/locales/nl.ts +1 -0
- package/src/components/delivery-notes/create/locales/pl.ts +1 -0
- package/src/components/delivery-notes/create/locales/pt.ts +1 -0
- package/src/components/delivery-notes/create/locales/sk.ts +1 -0
- package/src/components/delivery-notes/create/locales/sl.ts +1 -0
- package/src/components/delivery-notes/create/locales/sv.ts +1 -0
- package/src/components/delivery-notes/create/prepare-delivery-note-submission.ts +34 -1
- package/src/components/delivery-notes/delivery-notes.hooks.ts +15 -1
- package/src/components/delivery-notes/list/list-table.tsx +2 -1
- package/src/components/documents/create/custom-create-template.ts +114 -0
- package/src/components/documents/create/document-add-item-form.tsx +12 -8
- package/src/components/documents/create/document-add-item-tax-rate-field.tsx +1 -2
- package/src/components/documents/create/document-date-validation.ts +111 -0
- package/src/components/documents/create/document-details-section.tsx +93 -48
- package/src/components/documents/create/document-form-item.ts +67 -0
- package/src/components/documents/create/document-item-validation.ts +6 -2
- package/src/components/documents/create/form-types.ts +2 -2
- package/src/components/documents/create/linked-documents-info.tsx +2 -11
- package/src/components/documents/create/live-preview.tsx +3 -3
- package/src/components/documents/create/mark-as-paid-section.tsx +14 -11
- package/src/components/documents/create/payment-rows.ts +30 -0
- package/src/components/documents/create/prepare-document-submission.ts +143 -103
- package/src/components/documents/create/prepare-preview-data.ts +12 -0
- package/src/components/documents/create/preserved-expected-total.ts +90 -0
- package/src/components/documents/public/public-document-summary.tsx +6 -13
- package/src/components/documents/view/document-actions-bar.tsx +10 -1
- package/src/components/documents/view/document-details-card.tsx +4 -12
- package/src/components/documents/view/document-relations-list.tsx +4 -4
- package/src/components/documents/view/locales/bg.ts +8 -8
- package/src/components/documents/view/locales/cs.ts +8 -8
- package/src/components/documents/view/locales/de.ts +1 -1
- package/src/components/documents/view/locales/en.ts +14 -14
- package/src/components/documents/view/locales/es.ts +1 -1
- package/src/components/documents/view/locales/et.ts +8 -8
- package/src/components/documents/view/locales/fi.ts +10 -10
- package/src/components/documents/view/locales/fr.ts +1 -1
- package/src/components/documents/view/locales/hr.ts +6 -6
- package/src/components/documents/view/locales/is.ts +8 -8
- package/src/components/documents/view/locales/it.ts +1 -1
- package/src/components/documents/view/locales/nb.ts +8 -8
- package/src/components/documents/view/locales/nl.ts +1 -1
- package/src/components/documents/view/locales/pl.ts +1 -1
- package/src/components/documents/view/locales/pt.ts +1 -1
- package/src/components/documents/view/locales/sk.ts +8 -8
- package/src/components/documents/view/locales/sl.ts +9 -9
- package/src/components/documents/view/locales/sv.ts +1 -1
- package/src/components/documents/view/use-document-download.ts +2 -2
- package/src/components/entities/entity-settings-form/locales/bg.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/cs.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/de.ts +9 -0
- package/src/components/entities/entity-settings-form/locales/en.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/es.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/et.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/fi.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/hr.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/is.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/nb.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/pl.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/pt.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/sk.ts +7 -0
- package/src/components/entities/entity-settings-form/locales/sl.ts +12 -4
- package/src/components/entities/entity-settings-form/locales/sv.ts +7 -0
- package/src/components/entities/settings/tax-rules-settings-form.tsx +36 -0
- package/src/components/estimates/create/create-estimate-form.tsx +195 -47
- package/src/components/estimates/create/locales/bg.ts +6 -5
- package/src/components/estimates/create/locales/cs.ts +6 -5
- package/src/components/estimates/create/locales/de.ts +4 -3
- package/src/components/estimates/create/locales/en.ts +4 -3
- package/src/components/estimates/create/locales/es.ts +4 -3
- package/src/components/estimates/create/locales/et.ts +6 -5
- package/src/components/estimates/create/locales/fi.ts +9 -8
- package/src/components/estimates/create/locales/fr.ts +4 -3
- package/src/components/estimates/create/locales/hr.ts +7 -6
- package/src/components/estimates/create/locales/is.ts +6 -5
- package/src/components/estimates/create/locales/it.ts +4 -3
- package/src/components/estimates/create/locales/nb.ts +6 -5
- package/src/components/estimates/create/locales/nl.ts +4 -3
- package/src/components/estimates/create/locales/pl.ts +4 -3
- package/src/components/estimates/create/locales/pt.ts +4 -3
- package/src/components/estimates/create/locales/sk.ts +6 -5
- package/src/components/estimates/create/locales/sl.ts +7 -6
- package/src/components/estimates/create/locales/sv.ts +6 -5
- package/src/components/estimates/create/prepare-estimate-submission.ts +37 -3
- package/src/components/estimates/estimates.hooks.ts +11 -2
- package/src/components/estimates/list/list-table.tsx +11 -1
- package/src/components/estimates/list/locales/bg.ts +2 -0
- package/src/components/estimates/list/locales/cs.ts +2 -0
- package/src/components/estimates/list/locales/de.ts +2 -0
- package/src/components/estimates/list/locales/en.ts +2 -0
- package/src/components/estimates/list/locales/es.ts +2 -0
- package/src/components/estimates/list/locales/et.ts +2 -0
- package/src/components/estimates/list/locales/fi.ts +2 -0
- package/src/components/estimates/list/locales/fr.ts +2 -0
- package/src/components/estimates/list/locales/hr.ts +7 -5
- package/src/components/estimates/list/locales/is.ts +2 -0
- package/src/components/estimates/list/locales/it.ts +2 -0
- package/src/components/estimates/list/locales/nb.ts +2 -0
- package/src/components/estimates/list/locales/nl.ts +2 -0
- package/src/components/estimates/list/locales/pl.ts +2 -0
- package/src/components/estimates/list/locales/pt.ts +2 -0
- package/src/components/estimates/list/locales/sk.ts +2 -0
- package/src/components/estimates/list/locales/sl.ts +9 -7
- package/src/components/estimates/list/locales/sv.ts +2 -0
- package/src/components/invoices/create/create-invoice-form.tsx +230 -60
- package/src/components/invoices/create/locales/bg.ts +23 -14
- package/src/components/invoices/create/locales/cs.ts +23 -14
- package/src/components/invoices/create/locales/de.ts +17 -9
- package/src/components/invoices/create/locales/en.ts +16 -7
- package/src/components/invoices/create/locales/es.ts +18 -9
- package/src/components/invoices/create/locales/et.ts +23 -14
- package/src/components/invoices/create/locales/fi.ts +24 -15
- package/src/components/invoices/create/locales/fr.ts +19 -11
- package/src/components/invoices/create/locales/hr.ts +18 -9
- package/src/components/invoices/create/locales/is.ts +23 -14
- package/src/components/invoices/create/locales/it.ts +19 -11
- package/src/components/invoices/create/locales/nb.ts +23 -14
- package/src/components/invoices/create/locales/nl.ts +19 -10
- package/src/components/invoices/create/locales/pl.ts +19 -11
- package/src/components/invoices/create/locales/pt.ts +19 -10
- package/src/components/invoices/create/locales/sk.ts +23 -14
- package/src/components/invoices/create/locales/sl.ts +17 -9
- package/src/components/invoices/create/locales/sv.ts +17 -8
- package/src/components/invoices/create/prepare-invoice-submission.ts +55 -1
- package/src/components/invoices/invoices.hooks.ts +11 -2
- package/src/components/invoices/list/list-table.tsx +2 -1
- package/src/components/invoices/send-email-dialog/locales/bg.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/cs.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/de.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/en.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/es.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/et.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/fi.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/fr.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/hr.ts +8 -3
- package/src/components/invoices/send-email-dialog/locales/is.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/it.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/nb.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/nl.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/pl.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/pt.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/sk.ts +5 -0
- package/src/components/invoices/send-email-dialog/locales/sl.ts +8 -3
- package/src/components/invoices/send-email-dialog/locales/sv.ts +5 -0
- package/src/components/invoices/send-email-dialog/send-email-dialog.tsx +2 -1
- package/src/components/items/item-combobox.tsx +4 -4
- package/src/components/payments/create-payment-form/create-payment-form.tsx +5 -2
- package/src/components/payments/edit-payment-form/edit-payment-form.tsx +5 -1
- package/src/components/recurring-invoices/create-recurring-invoice-form/create-recurring-invoice-form.tsx +98 -22
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/bg.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/cs.ts +25 -25
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/et.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/fi.ts +36 -36
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/is.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/nb.ts +26 -26
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sk.ts +25 -25
- package/src/components/recurring-invoices/create-recurring-invoice-form/locales/sv.ts +26 -26
- package/src/components/recurring-invoices/list/list-row-actions.tsx +9 -1
- package/src/components/recurring-invoices/list/list-table.tsx +53 -5
- package/src/components/recurring-invoices/list/locales/bg.ts +4 -0
- package/src/components/recurring-invoices/list/locales/cs.ts +4 -0
- package/src/components/recurring-invoices/list/locales/de.ts +4 -0
- package/src/components/recurring-invoices/list/locales/en.ts +4 -0
- package/src/components/recurring-invoices/list/locales/es.ts +4 -0
- package/src/components/recurring-invoices/list/locales/et.ts +4 -0
- package/src/components/recurring-invoices/list/locales/fi.ts +4 -0
- package/src/components/recurring-invoices/list/locales/fr.ts +4 -0
- package/src/components/recurring-invoices/list/locales/hr.ts +4 -0
- package/src/components/recurring-invoices/list/locales/is.ts +4 -0
- package/src/components/recurring-invoices/list/locales/it.ts +4 -0
- package/src/components/recurring-invoices/list/locales/nb.ts +4 -0
- package/src/components/recurring-invoices/list/locales/nl.ts +4 -0
- package/src/components/recurring-invoices/list/locales/pl.ts +4 -0
- package/src/components/recurring-invoices/list/locales/pt.ts +4 -0
- package/src/components/recurring-invoices/list/locales/sk.ts +4 -0
- package/src/components/recurring-invoices/list/locales/sl.ts +4 -0
- package/src/components/recurring-invoices/list/locales/sv.ts +4 -0
- package/src/components/tax-reports/slovenia-tax-profile-step.tsx +4 -1
- package/src/components/tax-reports/slovenia-yearly-export-form.tsx +3 -0
- package/src/components/tax-reports/slovenia-yearly-review-step.tsx +2 -1
- package/src/components/ui/form.tsx +5 -13
- package/src/components/ui/select.tsx +0 -1
- package/src/components/ui/sidebar.tsx +2 -2
- package/src/generate-schemas.ts +132 -99
- package/src/generated/schemas/acceptentityinvitation_body.ts +4 -3
- package/src/generated/schemas/accountwebhook.ts +4 -8
- package/src/generated/schemas/addentityuser_body.ts +4 -3
- package/src/generated/schemas/advanceinvoice.ts +167 -168
- package/src/generated/schemas/authorizeshopify_body.ts +4 -3
- package/src/generated/schemas/calculatedocumentpreview.ts +120 -0
- package/src/generated/schemas/checktransactiontype.ts +35 -0
- package/src/generated/schemas/creditnote.ts +203 -76
- package/src/generated/schemas/customadvanceinvoice.ts +172 -165
- package/src/generated/schemas/customcreditnote.ts +183 -155
- package/src/generated/schemas/customdeliverynote.ts +166 -0
- package/src/generated/schemas/customer.ts +4 -8
- package/src/generated/schemas/customestimate.ts +123 -97
- package/src/generated/schemas/customincomingpurchasedocument.ts +142 -0
- package/src/generated/schemas/custominvoice.ts +183 -154
- package/src/generated/schemas/deliverynote.ts +124 -79
- package/src/generated/schemas/einvoice.ts +19 -0
- package/src/generated/schemas/einvoicingsettings.ts +21 -0
- package/src/generated/schemas/einvoicingsupplier.ts +45 -0
- package/src/generated/schemas/entity.ts +44 -40
- package/src/generated/schemas/entityapikey.ts +1 -3
- package/src/generated/schemas/entityuserrole.ts +1 -3
- package/src/generated/schemas/estimate.ts +120 -127
- package/src/generated/schemas/exportsloveniavodxml_body.ts +4 -3
- package/src/generated/schemas/exportsloveniayearlynormiranireport_body.ts +4 -3
- package/src/generated/schemas/finadevice.ts +15 -0
- package/src/generated/schemas/finalizedocument.ts +52 -0
- package/src/generated/schemas/finapremise.ts +15 -0
- package/src/generated/schemas/finasettings.ts +1 -3
- package/src/generated/schemas/furselectronicdevice.ts +15 -0
- package/src/generated/schemas/furssettings.ts +1 -3
- package/src/generated/schemas/image.ts +15 -0
- package/src/generated/schemas/incomingpurchasedocument.ts +7 -27
- package/src/generated/schemas/incomingpurchasedocumentattachment.ts +15 -0
- package/src/generated/schemas/incomingpurchasedocumentpayment.ts +1 -3
- package/src/generated/schemas/index.ts +20 -5
- package/src/generated/schemas/invoice.ts +182 -183
- package/src/generated/schemas/item.ts +6 -10
- package/src/generated/schemas/legacymigrationauth.ts +18 -0
- package/src/generated/schemas/me.ts +2 -24
- package/src/generated/schemas/migrationjob.ts +20 -0
- package/src/generated/schemas/order.ts +4 -8
- package/src/generated/schemas/orderintegration.ts +4 -8
- package/src/generated/schemas/payment.ts +4 -8
- package/src/generated/schemas/ptatcudseries.ts +1 -3
- package/src/generated/schemas/queryentitystats.ts +15 -0
- package/src/generated/schemas/recurringinvoice.ts +4 -8
- package/src/generated/schemas/registerfursmovablepremise_body.ts +1 -3
- package/src/generated/schemas/registerfursrealestatepremise_body.ts +1 -3
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +10 -16
- package/src/generated/schemas/rendercreditnotepreview_body.ts +10 -16
- package/src/generated/schemas/renderdeliverynotepreview_body.ts +9 -5
- package/src/generated/schemas/renderestimatepreview_body.ts +11 -7
- package/src/generated/schemas/renderinvoicepreview_body.ts +10 -16
- package/src/generated/schemas/reviewsloveniayearlynormiranireport.ts +15 -0
- package/src/generated/schemas/searcheinvoicingcustomer.ts +18 -0
- package/src/generated/schemas/senddocument_body.ts +1 -3
- package/src/generated/schemas/sendemail_body.ts +2 -24
- package/src/generated/schemas/sloveniataxprofile.ts +8 -10
- package/src/generated/schemas/starteslogexport_body.ts +4 -3
- package/src/generated/schemas/startpdfexport_body.ts +8 -87
- package/src/generated/schemas/stripeappconnect_body.ts +4 -3
- package/src/generated/schemas/stripeappcreateinvoice_body.ts +4 -6
- package/src/generated/schemas/stripeappmarketplaceauthorize.ts +15 -0
- package/src/generated/schemas/stripeappupdatesettings_body.ts +6 -6
- package/src/generated/schemas/supplier.ts +4 -8
- package/src/generated/schemas/syncshopifyorders_body.ts +4 -3
- package/src/generated/schemas/tax.ts +6 -8
- package/src/generated/schemas/uploadfile_body.ts +1 -3
- package/src/generated/schemas/uploadfurscertificate_body.ts +6 -6
- package/src/generated/schemas/userfinasettings.ts +1 -3
- package/src/generated/schemas/userfurssettings.ts +1 -3
- package/src/generated/schemas/userptsettings.ts +1 -3
- package/src/generated/schemas/voidinvoice_body.ts +8 -3
- package/src/generated/schemas/webhook.ts +4 -8
- package/src/generated/schemas/wlsubscriptionbillingemail.ts +17 -0
- package/src/hooks/use-duplicate-document.ts +61 -30
- package/src/lib/date-only.ts +58 -0
- package/src/lib/document-display.ts +18 -0
- package/src/lib/payment-display.ts +5 -3
- package/src/lib/schemas/shared.ts +11 -0
- package/src/providers/wl-subscription-provider.tsx +5 -0
- package/src/generated/schemas/account_webhook.ts +0 -43
- package/src/generated/schemas/previewadvanceinvoice_body.ts +0 -354
- package/src/generated/schemas/previewestimate_body.ts +0 -309
- package/src/generated/schemas/registerfinamovablepremise_body.ts +0 -26
- package/src/generated/schemas/registerfinarealestatepremise_body.ts +0 -37
- package/src/generated/schemas/renderdocument_body.ts +0 -594
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Položky",
|
|
11
11
|
"Add item": "Add item",
|
|
12
12
|
Save: "Uložit",
|
|
13
|
+
Update: "Aktualizovat",
|
|
13
14
|
"Save as Draft": "Save as Draft",
|
|
14
15
|
Quantity: "Quantity",
|
|
15
16
|
Price: "Cena",
|
|
@@ -23,16 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "No taxes found",
|
|
24
25
|
"Add new tax...": "Add new tax...",
|
|
25
26
|
Description: "Popis",
|
|
26
|
-
"Mark as Paid": "
|
|
27
|
-
Paid: "Zaplaceno",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation": "
|
|
29
|
-
"Payment Type": "
|
|
27
|
+
"Mark as Paid": "Označit jako zaplacené",
|
|
28
|
+
"Paid": "Zaplaceno",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Dobropis bude při vytvoření označen jako plně uhrazený",
|
|
30
|
+
"Payment Type": "Typ platby",
|
|
30
31
|
"Select payment type": "Vyberte typ platby",
|
|
31
|
-
Cash: "Hotovost",
|
|
32
|
+
"Cash": "Hotovost",
|
|
32
33
|
"Bank Transfer": "Bankovní převod",
|
|
33
|
-
Card: "Karta",
|
|
34
|
-
Check: "Šek",
|
|
35
|
-
Other: "Jiné",
|
|
34
|
+
"Card": "Karta",
|
|
35
|
+
"Check": "Šek",
|
|
36
|
+
"Other": "Jiné",
|
|
36
37
|
Note: "Note",
|
|
37
38
|
"Insert variable": "Insert variable",
|
|
38
39
|
"Add payment instructions, terms, or other notes...": "Add payment instructions, terms, or other notes...",
|
|
@@ -84,4 +85,17 @@ export default {
|
|
|
84
85
|
Footer: "Footer",
|
|
85
86
|
"Add document footer...": "Add document footer...",
|
|
86
87
|
"Reverse charge - tax exempt EU B2B sale": "Reverse charge - tax exempt EU B2B sale",
|
|
88
|
+
"Please select": "Vyberte prosím",
|
|
89
|
+
"Amount": "Částka",
|
|
90
|
+
"Add payment": "Přidat platbu",
|
|
91
|
+
"Recorded now": "Nyní zaznamenáno",
|
|
92
|
+
"Remaining due": "Zbývá uhradit",
|
|
93
|
+
"Remaining to allocate": "Zbývá přiřadit",
|
|
94
|
+
"This document must be fully paid on creation": "Tento dokument musí být při vytvoření plně uhrazen",
|
|
95
|
+
"Record one or more payments on creation": "Při vytvoření zaznamenejte jednu nebo více plateb",
|
|
96
|
+
// Service date
|
|
97
|
+
"Service Date": "Datum služby",
|
|
98
|
+
"Service Period": "Období služby",
|
|
99
|
+
From: "Od",
|
|
100
|
+
To: "Do",
|
|
87
101
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Artikel",
|
|
11
11
|
"Add item": "Artikel hinzufügen",
|
|
12
12
|
Save: "Speichern",
|
|
13
|
+
Update: "Aktualisieren",
|
|
13
14
|
"Save as Draft": "Als Entwurf speichern",
|
|
14
15
|
Quantity: "Menge",
|
|
15
16
|
Price: "Preis",
|
|
@@ -24,16 +25,15 @@ export default {
|
|
|
24
25
|
"Add new tax...": "Neue Steuer hinzufügen...",
|
|
25
26
|
Description: "Beschreibung",
|
|
26
27
|
"Mark as Paid": "Als bezahlt markieren",
|
|
27
|
-
Paid: "Bezahlt",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
"Gutschrift wird bei Erstellung als vollständig bezahlt markiert",
|
|
28
|
+
"Paid": "Bezahlt",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Die Gutschrift wird bei der Erstellung als vollständig bezahlt markiert",
|
|
30
30
|
"Payment Type": "Zahlungsart",
|
|
31
31
|
"Select payment type": "Zahlungsart auswählen",
|
|
32
|
-
Cash: "Bargeld",
|
|
32
|
+
"Cash": "Bargeld",
|
|
33
33
|
"Bank Transfer": "Banküberweisung",
|
|
34
|
-
Card: "Karte",
|
|
35
|
-
Check: "Scheck",
|
|
36
|
-
Other: "Andere",
|
|
34
|
+
"Card": "Karte",
|
|
35
|
+
"Check": "Scheck",
|
|
36
|
+
"Other": "Andere",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Notiz",
|
|
39
39
|
"Insert variable": "Variable einfügen",
|
|
@@ -98,4 +98,17 @@ export default {
|
|
|
98
98
|
Footer: "Fußzeile",
|
|
99
99
|
"Add document footer...": "Dokumentfußzeile hinzufügen...",
|
|
100
100
|
"Reverse charge - tax exempt EU B2B sale": "Umkehrung der Steuerschuldnerschaft - steuerbefreiter EU B2B Verkauf",
|
|
101
|
+
"Please select": "Bitte auswählen",
|
|
102
|
+
"Amount": "Betrag",
|
|
103
|
+
"Add payment": "Zahlung hinzufügen",
|
|
104
|
+
"Recorded now": "Jetzt erfasst",
|
|
105
|
+
"Remaining due": "Offener Restbetrag",
|
|
106
|
+
"Remaining to allocate": "Noch zuzuweisen",
|
|
107
|
+
"This document must be fully paid on creation": "Dieses Dokument muss bei der Erstellung vollständig bezahlt sein",
|
|
108
|
+
"Record one or more payments on creation": "Bei der Erstellung eine oder mehrere Zahlungen erfassen",
|
|
109
|
+
// Service date
|
|
110
|
+
"Service Date": "Leistungsdatum",
|
|
111
|
+
"Service Period": "Leistungszeitraum",
|
|
112
|
+
From: "Von",
|
|
113
|
+
To: "Bis",
|
|
101
114
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Items",
|
|
11
11
|
"Add item": "Add item",
|
|
12
12
|
Save: "Save",
|
|
13
|
+
Update: "Update",
|
|
13
14
|
"Save as Draft": "Save as Draft",
|
|
14
15
|
Quantity: "Quantity",
|
|
15
16
|
Price: "Price",
|
|
@@ -24,15 +25,15 @@ export default {
|
|
|
24
25
|
"Add new tax...": "Add new tax...",
|
|
25
26
|
Description: "Description",
|
|
26
27
|
"Mark as Paid": "Mark as Paid",
|
|
27
|
-
Paid: "Paid",
|
|
28
|
+
"Paid": "Paid",
|
|
28
29
|
"Credit note will be marked as fully paid upon creation": "Credit note will be marked as fully paid upon creation",
|
|
29
30
|
"Payment Type": "Payment Type",
|
|
30
31
|
"Select payment type": "Select payment type",
|
|
31
|
-
Cash: "Cash",
|
|
32
|
+
"Cash": "Cash",
|
|
32
33
|
"Bank Transfer": "Bank Transfer",
|
|
33
|
-
Card: "Card",
|
|
34
|
-
Check: "Check",
|
|
35
|
-
Other: "Other",
|
|
34
|
+
"Card": "Card",
|
|
35
|
+
"Check": "Check",
|
|
36
|
+
"Other": "Other",
|
|
36
37
|
Note: "Note",
|
|
37
38
|
"Insert variable": "Insert variable",
|
|
38
39
|
"Add payment instructions, terms, or other notes...": "Add payment instructions, terms, or other notes...",
|
|
@@ -84,4 +85,17 @@ export default {
|
|
|
84
85
|
Footer: "Footer",
|
|
85
86
|
"Add document footer...": "Add document footer...",
|
|
86
87
|
"Reverse charge - tax exempt EU B2B sale": "Reverse charge - tax exempt EU B2B sale",
|
|
88
|
+
"Please select": "Please select",
|
|
89
|
+
"Amount": "Amount",
|
|
90
|
+
"Add payment": "Add payment",
|
|
91
|
+
"Recorded now": "Recorded now",
|
|
92
|
+
"Remaining due": "Remaining due",
|
|
93
|
+
"Remaining to allocate": "Remaining to allocate",
|
|
94
|
+
"This document must be fully paid on creation": "This document must be fully paid on creation",
|
|
95
|
+
"Record one or more payments on creation": "Record one or more payments on creation",
|
|
96
|
+
// Service date
|
|
97
|
+
"Service Date": "Service Date",
|
|
98
|
+
"Service Period": "Service Period",
|
|
99
|
+
From: "From",
|
|
100
|
+
To: "To",
|
|
87
101
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Articulos",
|
|
11
11
|
"Add item": "Agregar articulo",
|
|
12
12
|
Save: "Guardar",
|
|
13
|
+
Update: "Actualizar",
|
|
13
14
|
"Save as Draft": "Guardar como borrador",
|
|
14
15
|
Quantity: "Cantidad",
|
|
15
16
|
Price: "Precio",
|
|
@@ -24,16 +25,15 @@ export default {
|
|
|
24
25
|
"Add new tax...": "Agregar nuevo impuesto...",
|
|
25
26
|
Description: "Descripcion",
|
|
26
27
|
"Mark as Paid": "Marcar como pagado",
|
|
27
|
-
Paid: "Pagado",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
"La nota de credito se marcara como totalmente pagada al crearla",
|
|
28
|
+
"Paid": "Pagado",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "La nota de crédito se marcará como totalmente pagada al crearla",
|
|
30
30
|
"Payment Type": "Tipo de pago",
|
|
31
31
|
"Select payment type": "Seleccione tipo de pago",
|
|
32
|
-
Cash: "Efectivo",
|
|
32
|
+
"Cash": "Efectivo",
|
|
33
33
|
"Bank Transfer": "Transferencia bancaria",
|
|
34
|
-
Card: "Tarjeta",
|
|
35
|
-
Check: "Cheque",
|
|
36
|
-
Other: "Otro",
|
|
34
|
+
"Card": "Tarjeta",
|
|
35
|
+
"Check": "Cheque",
|
|
36
|
+
"Other": "Otro",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Nota",
|
|
39
39
|
"Insert variable": "Insertar variable",
|
|
@@ -97,4 +97,17 @@ export default {
|
|
|
97
97
|
Footer: "Pie de página",
|
|
98
98
|
"Add document footer...": "Añadir pie de página del documento...",
|
|
99
99
|
"Reverse charge - tax exempt EU B2B sale": "Inversión del sujeto pasivo - venta EU B2B exenta de impuestos",
|
|
100
|
+
"Please select": "Seleccione",
|
|
101
|
+
"Amount": "Importe",
|
|
102
|
+
"Add payment": "Añadir pago",
|
|
103
|
+
"Recorded now": "Registrado ahora",
|
|
104
|
+
"Remaining due": "Importe pendiente",
|
|
105
|
+
"Remaining to allocate": "Pendiente por asignar",
|
|
106
|
+
"This document must be fully paid on creation": "Este documento debe estar totalmente pagado al crearse",
|
|
107
|
+
"Record one or more payments on creation": "Registrar uno o más pagos al crear",
|
|
108
|
+
// Service date
|
|
109
|
+
"Service Date": "Fecha de servicio",
|
|
110
|
+
"Service Period": "Periodo de servicio",
|
|
111
|
+
From: "Desde",
|
|
112
|
+
To: "Hasta",
|
|
100
113
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Tooted",
|
|
11
11
|
"Add item": "Add item",
|
|
12
12
|
Save: "Salvesta",
|
|
13
|
+
Update: "Uuenda",
|
|
13
14
|
"Save as Draft": "Save as Draft",
|
|
14
15
|
Quantity: "Quantity",
|
|
15
16
|
Price: "Hind",
|
|
@@ -23,16 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "No taxes found",
|
|
24
25
|
"Add new tax...": "Add new tax...",
|
|
25
26
|
Description: "Kirjeldus",
|
|
26
|
-
"Mark as Paid": "
|
|
27
|
-
Paid: "
|
|
28
|
-
"Credit note will be marked as fully paid upon creation": "
|
|
29
|
-
"Payment Type": "
|
|
27
|
+
"Mark as Paid": "Märgi tasutuks",
|
|
28
|
+
"Paid": "Tasatud",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Kreeditarve märgitakse loomisel täielikult tasutuks",
|
|
30
|
+
"Payment Type": "Makseviis",
|
|
30
31
|
"Select payment type": "Vali makse tüüp",
|
|
31
|
-
Cash: "Sularaha",
|
|
32
|
+
"Cash": "Sularaha",
|
|
32
33
|
"Bank Transfer": "Pangaülekanne",
|
|
33
|
-
Card: "Kaart",
|
|
34
|
-
Check: "Tšekk",
|
|
35
|
-
Other: "Muu",
|
|
34
|
+
"Card": "Kaart",
|
|
35
|
+
"Check": "Tšekk",
|
|
36
|
+
"Other": "Muu",
|
|
36
37
|
Note: "Note",
|
|
37
38
|
"Insert variable": "Insert variable",
|
|
38
39
|
"Add payment instructions, terms, or other notes...": "Add payment instructions, terms, or other notes...",
|
|
@@ -84,4 +85,17 @@ export default {
|
|
|
84
85
|
Footer: "Footer",
|
|
85
86
|
"Add document footer...": "Add document footer...",
|
|
86
87
|
"Reverse charge - tax exempt EU B2B sale": "Reverse charge - tax exempt EU B2B sale",
|
|
88
|
+
"Please select": "Vali",
|
|
89
|
+
"Amount": "Summa",
|
|
90
|
+
"Add payment": "Lisa makse",
|
|
91
|
+
"Recorded now": "Praegu registreeritud",
|
|
92
|
+
"Remaining due": "Tasuda jäänud",
|
|
93
|
+
"Remaining to allocate": "Jaotada jäänud",
|
|
94
|
+
"This document must be fully paid on creation": "See dokument peab loomisel olema täielikult tasutud",
|
|
95
|
+
"Record one or more payments on creation": "Registreeri loomisel üks või mitu makset",
|
|
96
|
+
// Service date
|
|
97
|
+
"Service Date": "Teenuse kuupäev",
|
|
98
|
+
"Service Period": "Teenuse periood",
|
|
99
|
+
From: "Alates",
|
|
100
|
+
To: "Kuni",
|
|
87
101
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Rivit",
|
|
11
11
|
"Add item": "Add item",
|
|
12
12
|
Save: "Save",
|
|
13
|
+
Update: "Päivitä",
|
|
13
14
|
"Save as Draft": "Save as Draft",
|
|
14
15
|
Quantity: "Quantity",
|
|
15
16
|
Price: "Price",
|
|
@@ -23,16 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "No taxes found",
|
|
24
25
|
"Add new tax...": "Add new tax...",
|
|
25
26
|
Description: "Description",
|
|
26
|
-
"Mark as Paid": "
|
|
27
|
-
Paid: "Maksettu",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation": "
|
|
29
|
-
"Payment Type": "
|
|
27
|
+
"Mark as Paid": "Merkitse maksetuksi",
|
|
28
|
+
"Paid": "Maksettu",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Hyvityslasku merkitään luotaessa kokonaan maksetuksi",
|
|
30
|
+
"Payment Type": "Maksutapa",
|
|
30
31
|
"Select payment type": "Valitse maksutapa",
|
|
31
|
-
Cash: "
|
|
32
|
-
"Bank Transfer": "
|
|
33
|
-
Card: "
|
|
34
|
-
Check: "
|
|
35
|
-
Other: "
|
|
32
|
+
"Cash": "Käteinen",
|
|
33
|
+
"Bank Transfer": "Tilisiirto",
|
|
34
|
+
"Card": "Kortti",
|
|
35
|
+
"Check": "Sekki",
|
|
36
|
+
"Other": "Muu",
|
|
36
37
|
Note: "Note",
|
|
37
38
|
"Insert variable": "Insert variable",
|
|
38
39
|
"Add payment instructions, terms, or other notes...": "Add payment instructions, terms, or other notes...",
|
|
@@ -84,4 +85,17 @@ export default {
|
|
|
84
85
|
Footer: "Footer",
|
|
85
86
|
"Add document footer...": "Add document footer...",
|
|
86
87
|
"Reverse charge - tax exempt EU B2B sale": "Reverse charge - tax exempt EU B2B sale",
|
|
88
|
+
"Please select": "Valitse",
|
|
89
|
+
"Amount": "Määrä",
|
|
90
|
+
"Add payment": "Lisää maksu",
|
|
91
|
+
"Recorded now": "Kirjattu nyt",
|
|
92
|
+
"Remaining due": "Jäljellä maksettavaa",
|
|
93
|
+
"Remaining to allocate": "Jäljellä kohdistettavaa",
|
|
94
|
+
"This document must be fully paid on creation": "Tämän asiakirjan on oltava kokonaan maksettu luotaessa",
|
|
95
|
+
"Record one or more payments on creation": "Kirjaa yksi tai useampi maksu luotaessa",
|
|
96
|
+
// Service date
|
|
97
|
+
"Service Date": "Palvelupäivä",
|
|
98
|
+
"Service Period": "Palvelujakso",
|
|
99
|
+
From: "Alkaen",
|
|
100
|
+
To: "Asti",
|
|
87
101
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Articles",
|
|
11
11
|
"Add item": "Ajouter un article",
|
|
12
12
|
Save: "Enregistrer",
|
|
13
|
+
Update: "Mettre à jour",
|
|
13
14
|
"Save as Draft": "Enregistrer comme brouillon",
|
|
14
15
|
Quantity: "Quantite",
|
|
15
16
|
Price: "Prix",
|
|
@@ -23,17 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "Aucune taxe trouvee",
|
|
24
25
|
"Add new tax...": "Ajouter une nouvelle taxe...",
|
|
25
26
|
Description: "Description",
|
|
26
|
-
"Mark as Paid": "Marquer comme
|
|
27
|
-
Paid: "
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
"L'avoir sera marque comme entierement paye lors de la creation",
|
|
27
|
+
"Mark as Paid": "Marquer comme payé",
|
|
28
|
+
"Paid": "Payé",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "L'avoir sera marqué comme entièrement payé à la création",
|
|
30
30
|
"Payment Type": "Type de paiement",
|
|
31
31
|
"Select payment type": "Selectionnez le type de paiement",
|
|
32
|
-
Cash: "
|
|
32
|
+
"Cash": "Espèces",
|
|
33
33
|
"Bank Transfer": "Virement bancaire",
|
|
34
|
-
Card: "Carte",
|
|
35
|
-
Check: "
|
|
36
|
-
Other: "Autre",
|
|
34
|
+
"Card": "Carte",
|
|
35
|
+
"Check": "Chèque",
|
|
36
|
+
"Other": "Autre",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Note",
|
|
39
39
|
"Insert variable": "Inserer une variable",
|
|
@@ -97,4 +97,17 @@ export default {
|
|
|
97
97
|
Footer: "Pied de page",
|
|
98
98
|
"Add document footer...": "Ajouter un pied de page...",
|
|
99
99
|
"Reverse charge - tax exempt EU B2B sale": "Autoliquidation - vente B2B UE exonérée de taxe",
|
|
100
|
+
"Please select": "Veuillez sélectionner",
|
|
101
|
+
"Amount": "Montant",
|
|
102
|
+
"Add payment": "Ajouter un paiement",
|
|
103
|
+
"Recorded now": "Enregistré maintenant",
|
|
104
|
+
"Remaining due": "Reste dû",
|
|
105
|
+
"Remaining to allocate": "Reste à affecter",
|
|
106
|
+
"This document must be fully paid on creation": "Ce document doit être entièrement payé à la création",
|
|
107
|
+
"Record one or more payments on creation": "Enregistrer un ou plusieurs paiements à la création",
|
|
108
|
+
// Service date
|
|
109
|
+
"Service Date": "Date de service",
|
|
110
|
+
"Service Period": "Période de service",
|
|
111
|
+
From: "Du",
|
|
112
|
+
To: "Au",
|
|
100
113
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Stavke",
|
|
11
11
|
"Add item": "Dodaj stavku",
|
|
12
12
|
Save: "Spremi",
|
|
13
|
+
Update: "Ažuriraj",
|
|
13
14
|
"Save as Draft": "Spremi kao skicu",
|
|
14
15
|
Quantity: "Količina",
|
|
15
16
|
Price: "Cijena",
|
|
@@ -24,16 +25,15 @@ export default {
|
|
|
24
25
|
"Add new tax...": "Dodaj novi porez...",
|
|
25
26
|
Description: "Opis",
|
|
26
27
|
"Mark as Paid": "Označi kao plaćeno",
|
|
27
|
-
Paid: "Plaćeno",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
"Odobrenje će biti označeno kao u cijelosti plaćeno pri izradi",
|
|
28
|
+
"Paid": "Plaćeno",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Kreditna nota će biti označena kao u potpunosti plaćena pri izradi",
|
|
30
30
|
"Payment Type": "Vrsta plaćanja",
|
|
31
31
|
"Select payment type": "Odaberi vrstu plaćanja",
|
|
32
|
-
Cash: "Gotovina",
|
|
32
|
+
"Cash": "Gotovina",
|
|
33
33
|
"Bank Transfer": "Bankovni prijenos",
|
|
34
|
-
Card: "Kartica",
|
|
35
|
-
Check: "Ček",
|
|
36
|
-
Other: "Ostalo",
|
|
34
|
+
"Card": "Kartica",
|
|
35
|
+
"Check": "Ček",
|
|
36
|
+
"Other": "Ostalo",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Napomena",
|
|
39
39
|
"Insert variable": "Umetni varijablu",
|
|
@@ -95,4 +95,17 @@ export default {
|
|
|
95
95
|
Footer: "Podnožje",
|
|
96
96
|
"Add document footer...": "Dodaj podnožje dokumenta...",
|
|
97
97
|
"Reverse charge - tax exempt EU B2B sale": "Prijenos porezne obveze - porezno oslobođena EU B2B prodaja",
|
|
98
|
+
"Please select": "Odaberite",
|
|
99
|
+
"Amount": "Iznos",
|
|
100
|
+
"Add payment": "Dodaj plaćanje",
|
|
101
|
+
"Recorded now": "Trenutno evidentirano",
|
|
102
|
+
"Remaining due": "Preostalo za plaćanje",
|
|
103
|
+
"Remaining to allocate": "Preostalo za raspodjelu",
|
|
104
|
+
"This document must be fully paid on creation": "Ovaj dokument mora biti u potpunosti plaćen pri izradi",
|
|
105
|
+
"Record one or more payments on creation": "Evidentiraj jedno ili više plaćanja pri izradi",
|
|
106
|
+
// Service date
|
|
107
|
+
"Service Date": "Datum usluge",
|
|
108
|
+
"Service Period": "Razdoblje usluge",
|
|
109
|
+
From: "Od",
|
|
110
|
+
To: "Do",
|
|
98
111
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Vörur",
|
|
11
11
|
"Add item": "Add item",
|
|
12
12
|
Save: "Vista",
|
|
13
|
+
Update: "Uppfæra",
|
|
13
14
|
"Save as Draft": "Save as Draft",
|
|
14
15
|
Quantity: "Quantity",
|
|
15
16
|
Price: "Verð",
|
|
@@ -23,16 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "No taxes found",
|
|
24
25
|
"Add new tax...": "Add new tax...",
|
|
25
26
|
Description: "Lýsing",
|
|
26
|
-
"Mark as Paid": "
|
|
27
|
-
Paid: "Greitt",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation": "
|
|
29
|
-
"Payment Type": "
|
|
27
|
+
"Mark as Paid": "Merkja sem greitt",
|
|
28
|
+
"Paid": "Greitt",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Kreditreikningurinn verður merktur sem að fullu greiddur við stofnun",
|
|
30
|
+
"Payment Type": "Greiðslumáti",
|
|
30
31
|
"Select payment type": "Veldu greiðslutegund",
|
|
31
|
-
Cash: "Reiðufé",
|
|
32
|
+
"Cash": "Reiðufé",
|
|
32
33
|
"Bank Transfer": "Bankamillifærsla",
|
|
33
|
-
Card: "Kort",
|
|
34
|
-
Check: "Ávísun",
|
|
35
|
-
Other: "Annað",
|
|
34
|
+
"Card": "Kort",
|
|
35
|
+
"Check": "Ávísun",
|
|
36
|
+
"Other": "Annað",
|
|
36
37
|
Note: "Note",
|
|
37
38
|
"Insert variable": "Insert variable",
|
|
38
39
|
"Add payment instructions, terms, or other notes...": "Add payment instructions, terms, or other notes...",
|
|
@@ -84,4 +85,17 @@ export default {
|
|
|
84
85
|
Footer: "Footer",
|
|
85
86
|
"Add document footer...": "Add document footer...",
|
|
86
87
|
"Reverse charge - tax exempt EU B2B sale": "Reverse charge - tax exempt EU B2B sale",
|
|
88
|
+
"Please select": "Veldu",
|
|
89
|
+
"Amount": "Upphæð",
|
|
90
|
+
"Add payment": "Bæta við greiðslu",
|
|
91
|
+
"Recorded now": "Skráð núna",
|
|
92
|
+
"Remaining due": "Eftirstöðvar",
|
|
93
|
+
"Remaining to allocate": "Eftir til úthlutunar",
|
|
94
|
+
"This document must be fully paid on creation": "Þetta skjal verður að vera að fullu greitt við stofnun",
|
|
95
|
+
"Record one or more payments on creation": "Skrá eina eða fleiri greiðslur við stofnun",
|
|
96
|
+
// Service date
|
|
97
|
+
"Service Date": "Þjónustudagsetning",
|
|
98
|
+
"Service Period": "Þjónustutímabil",
|
|
99
|
+
From: "Frá",
|
|
100
|
+
To: "Til",
|
|
87
101
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Voci",
|
|
11
11
|
"Add item": "Aggiungi voce",
|
|
12
12
|
Save: "Salva",
|
|
13
|
+
Update: "Aggiorna",
|
|
13
14
|
"Save as Draft": "Salva come bozza",
|
|
14
15
|
Quantity: "Quantita",
|
|
15
16
|
Price: "Prezzo",
|
|
@@ -24,16 +25,15 @@ export default {
|
|
|
24
25
|
"Add new tax...": "Aggiungi nuova imposta...",
|
|
25
26
|
Description: "Descrizione",
|
|
26
27
|
"Mark as Paid": "Segna come pagato",
|
|
27
|
-
Paid: "Pagato",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
"La nota di credito sara contrassegnata come completamente pagata al momento della creazione",
|
|
28
|
+
"Paid": "Pagato",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "La nota di credito sarà contrassegnata come interamente pagata alla creazione",
|
|
30
30
|
"Payment Type": "Tipo di pagamento",
|
|
31
31
|
"Select payment type": "Seleziona tipo di pagamento",
|
|
32
|
-
Cash: "Contanti",
|
|
32
|
+
"Cash": "Contanti",
|
|
33
33
|
"Bank Transfer": "Bonifico bancario",
|
|
34
|
-
Card: "Carta",
|
|
35
|
-
Check: "Assegno",
|
|
36
|
-
Other: "Altro",
|
|
34
|
+
"Card": "Carta",
|
|
35
|
+
"Check": "Assegno",
|
|
36
|
+
"Other": "Altro",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Nota",
|
|
39
39
|
"Insert variable": "Inserisci variabile",
|
|
@@ -98,4 +98,17 @@ export default {
|
|
|
98
98
|
Footer: "Piè di pagina",
|
|
99
99
|
"Add document footer...": "Aggiungi piè di pagina del documento...",
|
|
100
100
|
"Reverse charge - tax exempt EU B2B sale": "Inversione contabile - vendita B2B UE esente da imposta",
|
|
101
|
+
"Please select": "Seleziona",
|
|
102
|
+
"Amount": "Importo",
|
|
103
|
+
"Add payment": "Aggiungi pagamento",
|
|
104
|
+
"Recorded now": "Registrato ora",
|
|
105
|
+
"Remaining due": "Residuo dovuto",
|
|
106
|
+
"Remaining to allocate": "Residuo da allocare",
|
|
107
|
+
"This document must be fully paid on creation": "Questo documento deve essere interamente pagato alla creazione",
|
|
108
|
+
"Record one or more payments on creation": "Registra uno o più pagamenti alla creazione",
|
|
109
|
+
// Service date
|
|
110
|
+
"Service Date": "Data del servizio",
|
|
111
|
+
"Service Period": "Periodo di servizio",
|
|
112
|
+
From: "Da",
|
|
113
|
+
To: "A",
|
|
101
114
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Varer",
|
|
11
11
|
"Add item": "Add item",
|
|
12
12
|
Save: "Lagre",
|
|
13
|
+
Update: "Oppdater",
|
|
13
14
|
"Save as Draft": "Save as Draft",
|
|
14
15
|
Quantity: "Quantity",
|
|
15
16
|
Price: "Pris",
|
|
@@ -23,16 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "No taxes found",
|
|
24
25
|
"Add new tax...": "Add new tax...",
|
|
25
26
|
Description: "Beskrivelse",
|
|
26
|
-
"Mark as Paid": "
|
|
27
|
-
Paid: "Betalt",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation": "
|
|
29
|
-
"Payment Type": "
|
|
27
|
+
"Mark as Paid": "Merk som betalt",
|
|
28
|
+
"Paid": "Betalt",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Kreditnotaen blir markert som fullt betalt ved opprettelse",
|
|
30
|
+
"Payment Type": "Betalingstype",
|
|
30
31
|
"Select payment type": "Velg betalingstype",
|
|
31
|
-
Cash: "Kontant",
|
|
32
|
+
"Cash": "Kontant",
|
|
32
33
|
"Bank Transfer": "Bankoverføring",
|
|
33
|
-
Card: "Kort",
|
|
34
|
-
Check: "Sjekk",
|
|
35
|
-
Other: "Annet",
|
|
34
|
+
"Card": "Kort",
|
|
35
|
+
"Check": "Sjekk",
|
|
36
|
+
"Other": "Annet",
|
|
36
37
|
Note: "Note",
|
|
37
38
|
"Insert variable": "Insert variable",
|
|
38
39
|
"Add payment instructions, terms, or other notes...": "Add payment instructions, terms, or other notes...",
|
|
@@ -84,4 +85,17 @@ export default {
|
|
|
84
85
|
Footer: "Footer",
|
|
85
86
|
"Add document footer...": "Add document footer...",
|
|
86
87
|
"Reverse charge - tax exempt EU B2B sale": "Reverse charge - tax exempt EU B2B sale",
|
|
88
|
+
"Please select": "Velg",
|
|
89
|
+
"Amount": "Beløp",
|
|
90
|
+
"Add payment": "Legg til betaling",
|
|
91
|
+
"Recorded now": "Registrert nå",
|
|
92
|
+
"Remaining due": "Gjenstående å betale",
|
|
93
|
+
"Remaining to allocate": "Gjenstår å fordele",
|
|
94
|
+
"This document must be fully paid on creation": "Dette dokumentet må være fullt betalt ved opprettelse",
|
|
95
|
+
"Record one or more payments on creation": "Registrer én eller flere betalinger ved opprettelse",
|
|
96
|
+
// Service date
|
|
97
|
+
"Service Date": "Tjenestedato",
|
|
98
|
+
"Service Period": "Tjenesteperiode",
|
|
99
|
+
From: "Fra",
|
|
100
|
+
To: "Til",
|
|
87
101
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Artikelen",
|
|
11
11
|
"Add item": "Artikel toevoegen",
|
|
12
12
|
Save: "Opslaan",
|
|
13
|
+
Update: "Bijwerken",
|
|
13
14
|
"Save as Draft": "Opslaan als concept",
|
|
14
15
|
Quantity: "Aantal",
|
|
15
16
|
Price: "Prijs",
|
|
@@ -24,16 +25,15 @@ export default {
|
|
|
24
25
|
"Add new tax...": "Nieuwe belasting toevoegen...",
|
|
25
26
|
Description: "Beschrijving",
|
|
26
27
|
"Mark as Paid": "Markeren als betaald",
|
|
27
|
-
Paid: "Betaald",
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
"De creditnota wordt bij aanmaak als volledig betaald gemarkeerd",
|
|
28
|
+
"Paid": "Betaald",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "De creditnota wordt bij het aanmaken als volledig betaald gemarkeerd",
|
|
30
30
|
"Payment Type": "Betaaltype",
|
|
31
31
|
"Select payment type": "Selecteer betaaltype",
|
|
32
|
-
Cash: "Contant",
|
|
32
|
+
"Cash": "Contant",
|
|
33
33
|
"Bank Transfer": "Bankoverschrijving",
|
|
34
|
-
Card: "Kaart",
|
|
35
|
-
Check: "Cheque",
|
|
36
|
-
Other: "Overig",
|
|
34
|
+
"Card": "Kaart",
|
|
35
|
+
"Check": "Cheque",
|
|
36
|
+
"Other": "Overig",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Opmerking",
|
|
39
39
|
"Insert variable": "Variabele invoegen",
|
|
@@ -97,4 +97,17 @@ export default {
|
|
|
97
97
|
Footer: "Voettekst",
|
|
98
98
|
"Add document footer...": "Documentvoettekst toevoegen...",
|
|
99
99
|
"Reverse charge - tax exempt EU B2B sale": "Verlegging - belastingvrijgestelde EU B2B verkoop",
|
|
100
|
+
"Please select": "Selecteer",
|
|
101
|
+
"Amount": "Bedrag",
|
|
102
|
+
"Add payment": "Betaling toevoegen",
|
|
103
|
+
"Recorded now": "Nu geregistreerd",
|
|
104
|
+
"Remaining due": "Resterend verschuldigd",
|
|
105
|
+
"Remaining to allocate": "Nog toe te wijzen",
|
|
106
|
+
"This document must be fully paid on creation": "Dit document moet volledig betaald zijn bij het aanmaken",
|
|
107
|
+
"Record one or more payments on creation": "Registreer een of meer betalingen bij het aanmaken",
|
|
108
|
+
// Service date
|
|
109
|
+
"Service Date": "Servicedatum",
|
|
110
|
+
"Service Period": "Serviceperiode",
|
|
111
|
+
From: "Van",
|
|
112
|
+
To: "Tot",
|
|
100
113
|
} as const;
|
|
@@ -10,6 +10,7 @@ export default {
|
|
|
10
10
|
Items: "Pozycje",
|
|
11
11
|
"Add item": "Dodaj pozycje",
|
|
12
12
|
Save: "Zapisz",
|
|
13
|
+
Update: "Zaktualizuj",
|
|
13
14
|
"Save as Draft": "Zapisz jako szkic",
|
|
14
15
|
Quantity: "Ilosc",
|
|
15
16
|
Price: "Cena",
|
|
@@ -23,17 +24,16 @@ export default {
|
|
|
23
24
|
"No taxes found": "Nie znaleziono podatkow",
|
|
24
25
|
"Add new tax...": "Dodaj nowy podatek...",
|
|
25
26
|
Description: "Opis",
|
|
26
|
-
"Mark as Paid": "Oznacz jako
|
|
27
|
-
Paid: "
|
|
28
|
-
"Credit note will be marked as fully paid upon creation":
|
|
29
|
-
|
|
30
|
-
"Payment Type": "Rodzaj platnosci",
|
|
27
|
+
"Mark as Paid": "Oznacz jako opłacone",
|
|
28
|
+
"Paid": "Opłacone",
|
|
29
|
+
"Credit note will be marked as fully paid upon creation": "Nota kredytowa zostanie oznaczona jako w pełni opłacona przy tworzeniu",
|
|
30
|
+
"Payment Type": "Rodzaj płatności",
|
|
31
31
|
"Select payment type": "Wybierz rodzaj platnosci",
|
|
32
|
-
Cash: "
|
|
32
|
+
"Cash": "Gotówka",
|
|
33
33
|
"Bank Transfer": "Przelew bankowy",
|
|
34
|
-
Card: "Karta",
|
|
35
|
-
Check: "Czek",
|
|
36
|
-
Other: "Inne",
|
|
34
|
+
"Card": "Karta",
|
|
35
|
+
"Check": "Czek",
|
|
36
|
+
"Other": "Inne",
|
|
37
37
|
// Note field
|
|
38
38
|
Note: "Notatka",
|
|
39
39
|
"Insert variable": "Wstaw zmienna",
|
|
@@ -95,4 +95,17 @@ export default {
|
|
|
95
95
|
Footer: "Stopka",
|
|
96
96
|
"Add document footer...": "Dodaj stopkę dokumentu...",
|
|
97
97
|
"Reverse charge - tax exempt EU B2B sale": "Odwrotne obciążenie - zwolniona z podatku sprzedaż EU B2B",
|
|
98
|
+
"Please select": "Wybierz",
|
|
99
|
+
"Amount": "Kwota",
|
|
100
|
+
"Add payment": "Dodaj płatność",
|
|
101
|
+
"Recorded now": "Zarejestrowano teraz",
|
|
102
|
+
"Remaining due": "Pozostało do zapłaty",
|
|
103
|
+
"Remaining to allocate": "Pozostało do przypisania",
|
|
104
|
+
"This document must be fully paid on creation": "Ten dokument musi być w pełni opłacony przy tworzeniu",
|
|
105
|
+
"Record one or more payments on creation": "Zarejestruj jedną lub więcej płatności przy tworzeniu",
|
|
106
|
+
// Service date
|
|
107
|
+
"Service Date": "Data usługi",
|
|
108
|
+
"Service Period": "Okres usługi",
|
|
109
|
+
From: "Od",
|
|
110
|
+
To: "Do",
|
|
98
111
|
} as const;
|