@spaceinvoices/react-ui 0.4.8 → 0.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -8
- package/cli/dist/index.js +89 -26
- package/package.json +4 -1
- package/spaceinvoices.schema.json +6 -1
- package/src/common/autocomplete.tsx +69 -6
- package/src/components/advance-invoices/create/create-advance-invoice-form.tsx +124 -285
- package/src/components/advance-invoices/list/list-table.tsx +10 -3
- package/src/components/advance-invoices/list/locales/de.ts +2 -0
- package/src/components/advance-invoices/list/locales/en.ts +1 -0
- package/src/components/advance-invoices/list/locales/es.ts +1 -0
- package/src/components/advance-invoices/list/locales/fr.ts +1 -0
- package/src/components/advance-invoices/list/locales/hr.ts +1 -0
- package/src/components/advance-invoices/list/locales/it.ts +1 -0
- package/src/components/advance-invoices/list/locales/nl.ts +1 -0
- package/src/components/advance-invoices/list/locales/pl.ts +1 -0
- package/src/components/advance-invoices/list/locales/pt.ts +1 -0
- package/src/components/advance-invoices/list/locales/sl.ts +1 -0
- package/src/components/advance-invoices/list/use-advance-invoice-download.ts +1 -12
- package/src/components/credit-notes/create/create-credit-note-form.tsx +116 -238
- package/src/components/credit-notes/list/list-table.tsx +6 -3
- package/src/components/credit-notes/list/use-credit-note-download.ts +1 -12
- package/src/components/customers/customer-autocomplete.tsx +64 -11
- package/src/components/customers/customer-list-table/customer-list-table.tsx +3 -2
- package/src/components/dashboard/collection-rate-card/collection-rate-card.tsx +9 -1
- package/src/components/dashboard/collection-rate-card/locales/bg.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/cs.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/et.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/fi.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/is.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/nb.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/sk.ts +3 -0
- package/src/components/dashboard/collection-rate-card/locales/sv.ts +3 -0
- package/src/components/dashboard/invoice-status-chart/invoice-status-chart.tsx +10 -2
- package/src/components/dashboard/invoice-status-chart/locales/bg.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/cs.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/de.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/es.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/et.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/fi.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/fr.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/hr.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/is.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/it.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/nb.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/nl.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/pl.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/pt.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/sk.ts +10 -0
- package/src/components/dashboard/invoice-status-chart/locales/sl.ts +1 -0
- package/src/components/dashboard/invoice-status-chart/locales/sv.ts +10 -0
- package/src/components/dashboard/payment-methods-chart/locales/bg.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/cs.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/et.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/fi.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/is.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/nb.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/sk.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/locales/sv.ts +12 -0
- package/src/components/dashboard/payment-methods-chart/payment-methods-chart.tsx +9 -1
- package/src/components/dashboard/payment-trend-chart/locales/bg.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/cs.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/de.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/es.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/et.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/fi.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/fr.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/hr.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/is.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/it.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/nb.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/nl.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/pl.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/pt.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/sk.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/locales/sl.ts +1 -0
- package/src/components/dashboard/payment-trend-chart/locales/sv.ts +6 -0
- package/src/components/dashboard/payment-trend-chart/payment-trend-chart.tsx +15 -8
- package/src/components/dashboard/revenue-trend-chart/locales/bg.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/cs.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/de.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/es.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/et.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/fi.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/fr.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/hr.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/is.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/it.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/nb.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/nl.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/pl.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/pt.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/sk.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/locales/sl.ts +1 -0
- package/src/components/dashboard/revenue-trend-chart/locales/sv.ts +6 -0
- package/src/components/dashboard/revenue-trend-chart/revenue-trend-chart.tsx +15 -8
- package/src/components/dashboard/tax-collected-card/locales.ts +110 -0
- package/src/components/dashboard/tax-collected-card/tax-collected-card.tsx +8 -2
- package/src/components/dashboard/tax-collected-card/use-tax-collected.ts +4 -4
- package/src/components/dashboard/top-customers-chart/locales/bg.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/cs.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/de.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/es.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/et.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/fi.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/fr.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/hr.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/is.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/it.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/nb.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/nl.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/pl.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/pt.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/sk.ts +7 -0
- package/src/components/dashboard/top-customers-chart/locales/sl.ts +2 -0
- package/src/components/dashboard/top-customers-chart/locales/sv.ts +7 -0
- package/src/components/dashboard/top-customers-chart/top-customers-chart.tsx +23 -12
- package/src/components/delivery-notes/create/create-delivery-note-form.tsx +33 -20
- package/src/components/delivery-notes/list/list-table.tsx +22 -13
- package/src/components/delivery-notes/list/locales/de.ts +2 -0
- package/src/components/delivery-notes/list/locales/en.ts +1 -0
- package/src/components/delivery-notes/list/locales/es.ts +1 -0
- package/src/components/delivery-notes/list/locales/fr.ts +1 -0
- package/src/components/delivery-notes/list/locales/hr.ts +1 -0
- package/src/components/delivery-notes/list/locales/it.ts +1 -0
- package/src/components/delivery-notes/list/locales/nl.ts +1 -0
- package/src/components/delivery-notes/list/locales/pl.ts +1 -0
- package/src/components/delivery-notes/list/locales/pt.ts +1 -0
- package/src/components/delivery-notes/list/locales/sl.ts +1 -0
- package/src/components/delivery-notes/list/use-delivery-note-download.ts +1 -12
- package/src/components/documents/create/document-add-item-form.tsx +28 -16
- package/src/components/documents/create/document-add-item-tax-rate-field.tsx +12 -2
- package/src/components/documents/create/document-items-section.tsx +70 -39
- package/src/components/documents/create/document-recipient-section.tsx +10 -1
- package/src/components/documents/create/live-preview.tsx +113 -15
- package/src/components/documents/create/prepare-document-submission.ts +35 -16
- package/src/components/documents/create/use-document-customer-form.ts +14 -3
- package/src/components/documents/documents.hooks.ts +7 -2
- package/src/components/documents/shared/document-preview-display.tsx +136 -67
- package/src/components/documents/shared/scaled-document-preview.tsx +45 -5
- package/src/components/documents/view/document-actions-bar.tsx +284 -182
- package/src/components/documents/view/document-activities-list.tsx +3 -0
- package/src/components/documents/view/document-payments-list.tsx +3 -0
- package/src/components/documents/view/locales/de.ts +8 -0
- package/src/components/documents/view/locales/es.ts +8 -0
- package/src/components/documents/view/locales/fr.ts +8 -0
- package/src/components/documents/view/locales/hr.ts +8 -0
- package/src/components/documents/view/locales/it.ts +8 -0
- package/src/components/documents/view/locales/nl.ts +8 -0
- package/src/components/documents/view/locales/pl.ts +8 -0
- package/src/components/documents/view/locales/pt.ts +8 -0
- package/src/components/documents/view/locales/sl.ts +8 -0
- package/src/components/documents/view/use-document-download.ts +14 -25
- package/src/components/entities/create-entity-form.tsx +101 -16
- package/src/components/entities/entity-settings-form/entity-settings-form.tsx +10 -10
- package/src/components/entities/entity-settings-form/locales/de.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/es.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/fr.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/hr.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/it.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/nl.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/pl.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/pt.ts +10 -0
- package/src/components/entities/entity-settings-form/locales/sl.ts +10 -0
- package/src/components/entities/fina-settings-form/fina-operator-required-dialog.tsx +3 -3
- package/src/components/entities/fina-settings-form/fina-settings-form.tsx +78 -124
- package/src/components/entities/fina-settings-form/sections/certificate-settings-section.tsx +8 -1
- package/src/components/entities/fina-settings-form/sections/premises-management-section.tsx +14 -2
- package/src/components/entities/fina-settings-form/sections/register-premise-dialog.tsx +7 -2
- package/src/components/entities/furs-settings-form/furs-settings-form.tsx +56 -130
- package/src/components/entities/furs-settings-form/sections/certificate-settings-section.tsx +8 -1
- package/src/components/entities/furs-settings-form/sections/enable-fiscalization-section.tsx +1 -0
- package/src/components/entities/furs-settings-form/sections/general-settings-section.tsx +15 -2
- package/src/components/entities/furs-settings-form/sections/premises-management-section.tsx +20 -3
- package/src/components/entities/furs-settings-form/sections/register-premise-dialog.tsx +38 -12
- package/src/components/entities/settings/defaults-settings-form.tsx +6 -6
- package/src/components/entities/settings/eslog-settings-form.tsx +13 -1
- package/src/components/entities/settings/pdf-template-selector/demo-invoice-data.ts +3 -22
- package/src/components/entities/shared/fiscalization-step-flow.ts +77 -0
- package/src/components/entities/shared/fiscalization-step-tabs.tsx +71 -0
- package/src/components/estimates/create/create-estimate-form.tsx +34 -21
- package/src/components/estimates/list/list-table.tsx +23 -14
- package/src/components/estimates/list/locales/de.ts +2 -0
- package/src/components/estimates/list/locales/en.ts +1 -0
- package/src/components/estimates/list/locales/es.ts +1 -0
- package/src/components/estimates/list/locales/fr.ts +1 -0
- package/src/components/estimates/list/locales/hr.ts +1 -0
- package/src/components/estimates/list/locales/it.ts +1 -0
- package/src/components/estimates/list/locales/nl.ts +1 -0
- package/src/components/estimates/list/locales/pl.ts +1 -0
- package/src/components/estimates/list/locales/pt.ts +1 -0
- package/src/components/estimates/list/locales/sl.ts +1 -0
- package/src/components/estimates/list/use-estimate-download.ts +1 -12
- package/src/components/export/document-export-form.tsx +33 -7
- package/src/components/export/sales-per-item-export-form.tsx +23 -7
- package/src/components/invoices/create/create-invoice-form.tsx +295 -329
- package/src/components/invoices/create/prepare-invoice-submission.ts +0 -8
- package/src/components/invoices/list/list-table.tsx +7 -4
- package/src/components/invoices/list/use-invoice-download.ts +1 -11
- package/src/components/invoices/send-email-dialog/locales/de.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/es.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/fr.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/hr.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/it.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/nl.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/pl.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/pt.ts +20 -0
- package/src/components/invoices/send-email-dialog/locales/sl.ts +20 -0
- package/src/components/invoices/send-email-dialog/send-email-dialog.tsx +77 -8
- package/src/components/invoices/view/eslog-info-display.tsx +17 -1
- package/src/components/invoices/view/fiscalization-status-card.tsx +7 -3
- package/src/components/items/item-combobox.tsx +26 -6
- package/src/components/items/item-list-table/item-list-table.tsx +5 -2
- package/src/components/payments/create-payment-form/index.ts +1 -0
- package/src/components/payments/list/list-table.tsx +14 -4
- package/src/components/recurring-invoices/list/list-table.tsx +7 -4
- package/src/components/request-logs/locales.ts +412 -0
- package/src/components/request-logs/request-log-detail.tsx +37 -21
- package/src/components/request-logs/request-log-list-table.tsx +57 -11
- package/src/components/table/data-table.tsx +5 -2
- package/src/components/table/date-cell.tsx +3 -1
- package/src/components/table/filter-bar.tsx +14 -2
- package/src/components/table/hooks/use-table-query.ts +1 -1
- package/src/components/table/locales.ts +1116 -0
- package/src/components/table/search-input.tsx +12 -3
- package/src/components/table/selection-toolbar.tsx +23 -6
- package/src/components/table/table-empty-state.tsx +43 -3
- package/src/components/table/table-no-results.tsx +3 -3
- package/src/components/table/table-pagination.tsx +4 -3
- package/src/components/table/types.ts +1 -0
- package/src/components/tax-reports/index.ts +1 -0
- package/src/components/tax-reports/kir-export-form.tsx +46 -8
- package/src/components/tax-reports/slovenia-tax-profile-step.tsx +191 -0
- package/src/components/tax-reports/slovenia-yearly-export-form.tsx +509 -0
- package/src/components/tax-reports/slovenia-yearly-review-step.tsx +253 -0
- package/src/components/tax-reports/slovenia-yearly-summary.tsx +19 -0
- package/src/components/taxes/tax-list-table/tax-list-table.tsx +3 -2
- package/src/components/ui/sidebar.tsx +3 -2
- package/src/components/ui/sticky-form-footer.tsx +7 -1
- package/src/components/webhook-logs/index.ts +6 -0
- package/src/components/webhook-logs/locales.ts +392 -0
- package/src/components/webhook-logs/webhook-delivery-detail.tsx +255 -0
- package/src/components/webhook-logs/webhook-delivery-list-table.tsx +278 -0
- package/src/components/wl-subscription/index.ts +1 -0
- package/src/components/wl-subscription/locked-feature.tsx +1 -0
- package/src/components/wl-subscription/paywall.tsx +193 -0
- package/src/components/wl-subscription/upgrade-modal.tsx +93 -29
- package/src/generate-schemas.ts +12 -7
- package/src/generated/schemas/customer.ts +2 -0
- package/src/generated/schemas/entity.ts +134 -0
- package/src/generated/schemas/exportsloveniayearlynormiranireport_body.ts +27 -0
- package/src/generated/schemas/index.ts +2 -0
- package/src/generated/schemas/me.ts +20 -1
- package/src/generated/schemas/renderadvanceinvoicepreview_body.ts +40 -34
- package/src/generated/schemas/rendercreditnotepreview_body.ts +42 -36
- package/src/generated/schemas/renderdeliverynotepreview_body.ts +23 -13
- package/src/generated/schemas/renderestimatepreview_body.ts +23 -13
- package/src/generated/schemas/renderinvoicepreview_body.ts +40 -34
- package/src/generated/schemas/sendemail_body.ts +44 -0
- package/src/generated/schemas/sloveniataxprofile.ts +42 -0
- package/src/generated/schemas/startpdfexport_body.ts +91 -1
- package/src/generated/schemas/webhook.ts +10 -0
- package/src/hooks/use-duplicate-document.ts +51 -13
- package/src/hooks/use-eslog-validation.ts +59 -0
- package/src/hooks/use-premise-selection.ts +186 -0
- package/src/lib/browser-cookies.ts +4 -4
- package/src/lib/date-fns-locale.ts +48 -0
- package/src/lib/fiscalization-options.ts +81 -0
- package/src/lib/locale.ts +38 -0
- package/src/lib/template-variables.tsx +1 -1
- package/src/lib/translation.ts +14 -3
- package/src/providers/entities-context.tsx +1 -0
- package/src/providers/entities-provider.tsx +102 -3
- package/src/providers/form-footer-context.tsx +37 -4
- package/src/providers/sdk-provider.tsx +7 -2
- package/src/providers/white-label-provider.tsx +4 -1
- package/src/providers/wl-subscription-provider.tsx +90 -3
|
@@ -0,0 +1,1116 @@
|
|
|
1
|
+
const en = {
|
|
2
|
+
"Search...": "Search...",
|
|
3
|
+
Search: "Search",
|
|
4
|
+
"Clear search": "Clear search",
|
|
5
|
+
Filters: "Filters",
|
|
6
|
+
"Clear filters": "Clear filters",
|
|
7
|
+
"Date Range": "Date Range",
|
|
8
|
+
From: "From",
|
|
9
|
+
To: "To",
|
|
10
|
+
Status: "Status",
|
|
11
|
+
Paid: "Paid",
|
|
12
|
+
Unpaid: "Unpaid",
|
|
13
|
+
Overdue: "Overdue",
|
|
14
|
+
Voided: "Voided",
|
|
15
|
+
Method: "Method",
|
|
16
|
+
All: "All",
|
|
17
|
+
"2xx Success": "2xx Success",
|
|
18
|
+
"4xx Client Error": "4xx Client Error",
|
|
19
|
+
"5xx Server Error": "5xx Server Error",
|
|
20
|
+
"No results found": "No results found",
|
|
21
|
+
"Try adjusting your search criteria": "Try adjusting your search criteria",
|
|
22
|
+
"Your list is empty": "Your list is empty",
|
|
23
|
+
"Get started by creating your first entry": "Get started by creating your first entry",
|
|
24
|
+
"Create new": "Create new",
|
|
25
|
+
"Clear all": "Clear all",
|
|
26
|
+
selected: "selected",
|
|
27
|
+
"Export PDFs": "Export PDFs",
|
|
28
|
+
"Copy to Invoice": "Copy to Invoice",
|
|
29
|
+
"Retry Fiscalization": "Retry Fiscalization",
|
|
30
|
+
"Deselect all": "Deselect all",
|
|
31
|
+
"Copy to clipboard": "Copy to clipboard",
|
|
32
|
+
"Previous page": "Previous page",
|
|
33
|
+
"Next page": "Next page",
|
|
34
|
+
Date: "Date",
|
|
35
|
+
Event: "Event",
|
|
36
|
+
URL: "URL",
|
|
37
|
+
Entity: "Entity",
|
|
38
|
+
Duration: "Duration",
|
|
39
|
+
Time: "Time",
|
|
40
|
+
Resource: "Resource",
|
|
41
|
+
Path: "Path",
|
|
42
|
+
Action: "Action",
|
|
43
|
+
Attempt: "Attempt",
|
|
44
|
+
ID: "ID",
|
|
45
|
+
Request: "Request",
|
|
46
|
+
Response: "Response",
|
|
47
|
+
Headers: "Headers",
|
|
48
|
+
"Request body": "Request body",
|
|
49
|
+
"Request ID": "Request ID",
|
|
50
|
+
"Delivery ID": "Delivery ID",
|
|
51
|
+
"No request body data": "No request body data",
|
|
52
|
+
"No response body data": "No response body data",
|
|
53
|
+
"No headers data": "No headers data",
|
|
54
|
+
"No response data": "No response data",
|
|
55
|
+
Copy: "Copy",
|
|
56
|
+
success: "Success",
|
|
57
|
+
failed: "Failed",
|
|
58
|
+
pending: "Pending",
|
|
59
|
+
} as const;
|
|
60
|
+
|
|
61
|
+
const sl = {
|
|
62
|
+
"Search...": "Išči...",
|
|
63
|
+
Search: "Išči",
|
|
64
|
+
"Clear search": "Počisti iskanje",
|
|
65
|
+
Filters: "Filtri",
|
|
66
|
+
"Clear filters": "Počisti filtre",
|
|
67
|
+
"Date Range": "Datumski razpon",
|
|
68
|
+
From: "Od",
|
|
69
|
+
To: "Do",
|
|
70
|
+
Status: "Status",
|
|
71
|
+
Paid: "Plačano",
|
|
72
|
+
Unpaid: "Neplačano",
|
|
73
|
+
Overdue: "Zapadlo",
|
|
74
|
+
Voided: "Stornirano",
|
|
75
|
+
Method: "Metoda",
|
|
76
|
+
All: "Vse",
|
|
77
|
+
"2xx Success": "2xx Uspeh",
|
|
78
|
+
"4xx Client Error": "4xx Napaka odjemalca",
|
|
79
|
+
"5xx Server Error": "5xx Napaka strežnika",
|
|
80
|
+
"No results found": "Ni rezultatov",
|
|
81
|
+
"Try adjusting your search criteria": "Poskusite prilagoditi iskalne kriterije",
|
|
82
|
+
"Your list is empty": "Vaš seznam je prazen",
|
|
83
|
+
"Get started by creating your first entry": "Začnite z ustvarjanjem prvega vnosa",
|
|
84
|
+
"Create new": "Ustvari novo",
|
|
85
|
+
"Clear all": "Počisti vse",
|
|
86
|
+
selected: "izbranih",
|
|
87
|
+
"Export PDFs": "Izvozi PDF-je",
|
|
88
|
+
"Copy to Invoice": "Kopiraj v račun",
|
|
89
|
+
"Retry Fiscalization": "Ponovi fiskalizacijo",
|
|
90
|
+
"Deselect all": "Počisti izbiro",
|
|
91
|
+
"Copy to clipboard": "Kopiraj v odložišče",
|
|
92
|
+
"Previous page": "Prejšnja stran",
|
|
93
|
+
"Next page": "Naslednja stran",
|
|
94
|
+
Date: "Datum",
|
|
95
|
+
Event: "Dogodek",
|
|
96
|
+
URL: "URL",
|
|
97
|
+
Entity: "Entiteta",
|
|
98
|
+
Duration: "Trajanje",
|
|
99
|
+
Time: "Čas",
|
|
100
|
+
Resource: "Vir",
|
|
101
|
+
Path: "Pot",
|
|
102
|
+
Action: "Dejanje",
|
|
103
|
+
Attempt: "Poskus",
|
|
104
|
+
ID: "ID",
|
|
105
|
+
Request: "Zahteva",
|
|
106
|
+
Response: "Odgovor",
|
|
107
|
+
Headers: "Glave",
|
|
108
|
+
"Request body": "Telo zahteve",
|
|
109
|
+
"Request ID": "ID zahteve",
|
|
110
|
+
"Delivery ID": "ID dostave",
|
|
111
|
+
"No request body data": "Ni podatkov telesa zahteve",
|
|
112
|
+
"No response body data": "Ni podatkov telesa odgovora",
|
|
113
|
+
"No headers data": "Ni podatkov glav",
|
|
114
|
+
"No response data": "Ni podatkov odgovora",
|
|
115
|
+
Copy: "Kopiraj",
|
|
116
|
+
success: "Uspešno",
|
|
117
|
+
failed: "Neuspešno",
|
|
118
|
+
pending: "V čakanju",
|
|
119
|
+
} as const;
|
|
120
|
+
|
|
121
|
+
const de = {
|
|
122
|
+
"Search...": "Suchen...",
|
|
123
|
+
Search: "Suchen",
|
|
124
|
+
"Clear search": "Suche löschen",
|
|
125
|
+
Filters: "Filter",
|
|
126
|
+
"Clear filters": "Filter löschen",
|
|
127
|
+
"Date Range": "Datumsbereich",
|
|
128
|
+
From: "Von",
|
|
129
|
+
To: "Bis",
|
|
130
|
+
Status: "Status",
|
|
131
|
+
Paid: "Bezahlt",
|
|
132
|
+
Unpaid: "Unbezahlt",
|
|
133
|
+
Overdue: "Überfällig",
|
|
134
|
+
Voided: "Storniert",
|
|
135
|
+
Method: "Methode",
|
|
136
|
+
All: "Alle",
|
|
137
|
+
"2xx Success": "2xx Erfolg",
|
|
138
|
+
"4xx Client Error": "4xx Client-Fehler",
|
|
139
|
+
"5xx Server Error": "5xx Server-Fehler",
|
|
140
|
+
"No results found": "Keine Ergebnisse gefunden",
|
|
141
|
+
"Try adjusting your search criteria": "Passen Sie Ihre Suchkriterien an",
|
|
142
|
+
"Your list is empty": "Ihre Liste ist leer",
|
|
143
|
+
"Get started by creating your first entry": "Erstellen Sie Ihren ersten Eintrag",
|
|
144
|
+
"Create new": "Neu erstellen",
|
|
145
|
+
"Clear all": "Alles löschen",
|
|
146
|
+
selected: "ausgewählt",
|
|
147
|
+
"Export PDFs": "PDFs exportieren",
|
|
148
|
+
"Copy to Invoice": "In Rechnung kopieren",
|
|
149
|
+
"Retry Fiscalization": "Fiskalisierung wiederholen",
|
|
150
|
+
"Deselect all": "Auswahl aufheben",
|
|
151
|
+
"Copy to clipboard": "In Zwischenablage kopieren",
|
|
152
|
+
"Previous page": "Vorherige Seite",
|
|
153
|
+
"Next page": "Nächste Seite",
|
|
154
|
+
Date: "Datum",
|
|
155
|
+
Event: "Ereignis",
|
|
156
|
+
URL: "URL",
|
|
157
|
+
Entity: "Entität",
|
|
158
|
+
Duration: "Dauer",
|
|
159
|
+
Time: "Zeit",
|
|
160
|
+
Resource: "Ressource",
|
|
161
|
+
Path: "Pfad",
|
|
162
|
+
Action: "Aktion",
|
|
163
|
+
Attempt: "Versuch",
|
|
164
|
+
ID: "ID",
|
|
165
|
+
Request: "Anfrage",
|
|
166
|
+
Response: "Antwort",
|
|
167
|
+
Headers: "Header",
|
|
168
|
+
"Request body": "Anfragetext",
|
|
169
|
+
"Request ID": "Anfrage-ID",
|
|
170
|
+
"Delivery ID": "Liefer-ID",
|
|
171
|
+
"No request body data": "Keine Anfragetextdaten",
|
|
172
|
+
"No response body data": "Keine Antworttextdaten",
|
|
173
|
+
"No headers data": "Keine Header-Daten",
|
|
174
|
+
"No response data": "Keine Antwortdaten",
|
|
175
|
+
Copy: "Kopieren",
|
|
176
|
+
success: "Erfolg",
|
|
177
|
+
failed: "Fehlgeschlagen",
|
|
178
|
+
pending: "Ausstehend",
|
|
179
|
+
} as const;
|
|
180
|
+
|
|
181
|
+
const it = {
|
|
182
|
+
"Search...": "Cerca...",
|
|
183
|
+
Search: "Cerca",
|
|
184
|
+
"Clear search": "Cancella ricerca",
|
|
185
|
+
Filters: "Filtri",
|
|
186
|
+
"Clear filters": "Cancella filtri",
|
|
187
|
+
"Date Range": "Intervallo date",
|
|
188
|
+
From: "Da",
|
|
189
|
+
To: "A",
|
|
190
|
+
Status: "Stato",
|
|
191
|
+
Paid: "Pagato",
|
|
192
|
+
Unpaid: "Non pagato",
|
|
193
|
+
Overdue: "Scaduto",
|
|
194
|
+
Voided: "Annullato",
|
|
195
|
+
Method: "Metodo",
|
|
196
|
+
All: "Tutti",
|
|
197
|
+
"2xx Success": "2xx Successo",
|
|
198
|
+
"4xx Client Error": "4xx Errore client",
|
|
199
|
+
"5xx Server Error": "5xx Errore server",
|
|
200
|
+
"No results found": "Nessun risultato trovato",
|
|
201
|
+
"Try adjusting your search criteria": "Prova a modificare i criteri di ricerca",
|
|
202
|
+
"Your list is empty": "La tua lista è vuota",
|
|
203
|
+
"Get started by creating your first entry": "Inizia creando il tuo primo elemento",
|
|
204
|
+
"Create new": "Crea nuovo",
|
|
205
|
+
"Clear all": "Cancella tutto",
|
|
206
|
+
selected: "selezionati",
|
|
207
|
+
"Export PDFs": "Esporta PDF",
|
|
208
|
+
"Copy to Invoice": "Copia in fattura",
|
|
209
|
+
"Retry Fiscalization": "Riprova fiscalizzazione",
|
|
210
|
+
"Deselect all": "Deseleziona tutto",
|
|
211
|
+
"Copy to clipboard": "Copia negli appunti",
|
|
212
|
+
"Previous page": "Pagina precedente",
|
|
213
|
+
"Next page": "Pagina successiva",
|
|
214
|
+
Date: "Data",
|
|
215
|
+
Event: "Evento",
|
|
216
|
+
URL: "URL",
|
|
217
|
+
Entity: "Entità",
|
|
218
|
+
Duration: "Durata",
|
|
219
|
+
Time: "Ora",
|
|
220
|
+
Resource: "Risorsa",
|
|
221
|
+
Path: "Percorso",
|
|
222
|
+
Action: "Azione",
|
|
223
|
+
Attempt: "Tentativo",
|
|
224
|
+
ID: "ID",
|
|
225
|
+
Request: "Richiesta",
|
|
226
|
+
Response: "Risposta",
|
|
227
|
+
Headers: "Header",
|
|
228
|
+
"Request body": "Corpo richiesta",
|
|
229
|
+
"Request ID": "ID richiesta",
|
|
230
|
+
"Delivery ID": "ID consegna",
|
|
231
|
+
"No request body data": "Nessun dato del corpo richiesta",
|
|
232
|
+
"No response body data": "Nessun dato del corpo risposta",
|
|
233
|
+
"No headers data": "Nessun dato degli header",
|
|
234
|
+
"No response data": "Nessun dato di risposta",
|
|
235
|
+
Copy: "Copia",
|
|
236
|
+
success: "Successo",
|
|
237
|
+
failed: "Fallito",
|
|
238
|
+
pending: "In attesa",
|
|
239
|
+
} as const;
|
|
240
|
+
|
|
241
|
+
const fr = {
|
|
242
|
+
"Search...": "Rechercher...",
|
|
243
|
+
Search: "Rechercher",
|
|
244
|
+
"Clear search": "Effacer la recherche",
|
|
245
|
+
Filters: "Filtres",
|
|
246
|
+
"Clear filters": "Effacer les filtres",
|
|
247
|
+
"Date Range": "Plage de dates",
|
|
248
|
+
From: "De",
|
|
249
|
+
To: "À",
|
|
250
|
+
Status: "Statut",
|
|
251
|
+
Paid: "Payé",
|
|
252
|
+
Unpaid: "Impayé",
|
|
253
|
+
Overdue: "En retard",
|
|
254
|
+
Voided: "Annulé",
|
|
255
|
+
Method: "Méthode",
|
|
256
|
+
All: "Tous",
|
|
257
|
+
"2xx Success": "2xx Succès",
|
|
258
|
+
"4xx Client Error": "4xx Erreur client",
|
|
259
|
+
"5xx Server Error": "5xx Erreur serveur",
|
|
260
|
+
"No results found": "Aucun résultat trouvé",
|
|
261
|
+
"Try adjusting your search criteria": "Essayez d'ajuster vos critères de recherche",
|
|
262
|
+
"Your list is empty": "Votre liste est vide",
|
|
263
|
+
"Get started by creating your first entry": "Commencez par créer votre première entrée",
|
|
264
|
+
"Create new": "Créer",
|
|
265
|
+
"Clear all": "Tout effacer",
|
|
266
|
+
selected: "sélectionnés",
|
|
267
|
+
"Export PDFs": "Exporter les PDF",
|
|
268
|
+
"Copy to Invoice": "Copier vers la facture",
|
|
269
|
+
"Retry Fiscalization": "Réessayer la fiscalisation",
|
|
270
|
+
"Deselect all": "Tout désélectionner",
|
|
271
|
+
"Copy to clipboard": "Copier dans le presse-papiers",
|
|
272
|
+
"Previous page": "Page précédente",
|
|
273
|
+
"Next page": "Page suivante",
|
|
274
|
+
Date: "Date",
|
|
275
|
+
Event: "Événement",
|
|
276
|
+
URL: "URL",
|
|
277
|
+
Entity: "Entité",
|
|
278
|
+
Duration: "Durée",
|
|
279
|
+
Time: "Heure",
|
|
280
|
+
Resource: "Ressource",
|
|
281
|
+
Path: "Chemin",
|
|
282
|
+
Action: "Action",
|
|
283
|
+
Attempt: "Tentative",
|
|
284
|
+
ID: "ID",
|
|
285
|
+
Request: "Requête",
|
|
286
|
+
Response: "Réponse",
|
|
287
|
+
Headers: "En-têtes",
|
|
288
|
+
"Request body": "Corps de la requête",
|
|
289
|
+
"Request ID": "ID de requête",
|
|
290
|
+
"Delivery ID": "ID de livraison",
|
|
291
|
+
"No request body data": "Aucune donnée du corps de requête",
|
|
292
|
+
"No response body data": "Aucune donnée du corps de réponse",
|
|
293
|
+
"No headers data": "Aucune donnée d'en-tête",
|
|
294
|
+
"No response data": "Aucune donnée de réponse",
|
|
295
|
+
Copy: "Copier",
|
|
296
|
+
success: "Succès",
|
|
297
|
+
failed: "Échec",
|
|
298
|
+
pending: "En attente",
|
|
299
|
+
} as const;
|
|
300
|
+
|
|
301
|
+
const es = {
|
|
302
|
+
"Search...": "Buscar...",
|
|
303
|
+
Search: "Buscar",
|
|
304
|
+
"Clear search": "Borrar búsqueda",
|
|
305
|
+
Filters: "Filtros",
|
|
306
|
+
"Clear filters": "Borrar filtros",
|
|
307
|
+
"Date Range": "Rango de fechas",
|
|
308
|
+
From: "Desde",
|
|
309
|
+
To: "Hasta",
|
|
310
|
+
Status: "Estado",
|
|
311
|
+
Paid: "Pagado",
|
|
312
|
+
Unpaid: "No pagado",
|
|
313
|
+
Overdue: "Vencido",
|
|
314
|
+
Voided: "Anulado",
|
|
315
|
+
Method: "Método",
|
|
316
|
+
All: "Todos",
|
|
317
|
+
"2xx Success": "2xx Éxito",
|
|
318
|
+
"4xx Client Error": "4xx Error del cliente",
|
|
319
|
+
"5xx Server Error": "5xx Error del servidor",
|
|
320
|
+
"No results found": "No se encontraron resultados",
|
|
321
|
+
"Try adjusting your search criteria": "Intente ajustar sus criterios de búsqueda",
|
|
322
|
+
"Your list is empty": "Su lista está vacía",
|
|
323
|
+
"Get started by creating your first entry": "Comience creando su primera entrada",
|
|
324
|
+
"Create new": "Crear nuevo",
|
|
325
|
+
"Clear all": "Borrar todo",
|
|
326
|
+
selected: "seleccionados",
|
|
327
|
+
"Export PDFs": "Exportar PDF",
|
|
328
|
+
"Copy to Invoice": "Copiar a factura",
|
|
329
|
+
"Retry Fiscalization": "Reintentar fiscalización",
|
|
330
|
+
"Deselect all": "Deseleccionar todo",
|
|
331
|
+
"Copy to clipboard": "Copiar al portapapeles",
|
|
332
|
+
"Previous page": "Página anterior",
|
|
333
|
+
"Next page": "Página siguiente",
|
|
334
|
+
Date: "Fecha",
|
|
335
|
+
Event: "Evento",
|
|
336
|
+
URL: "URL",
|
|
337
|
+
Entity: "Entidad",
|
|
338
|
+
Duration: "Duración",
|
|
339
|
+
Time: "Hora",
|
|
340
|
+
Resource: "Recurso",
|
|
341
|
+
Path: "Ruta",
|
|
342
|
+
Action: "Acción",
|
|
343
|
+
Attempt: "Intento",
|
|
344
|
+
ID: "ID",
|
|
345
|
+
Request: "Solicitud",
|
|
346
|
+
Response: "Respuesta",
|
|
347
|
+
Headers: "Encabezados",
|
|
348
|
+
"Request body": "Cuerpo de la solicitud",
|
|
349
|
+
"Request ID": "ID de solicitud",
|
|
350
|
+
"Delivery ID": "ID de entrega",
|
|
351
|
+
"No request body data": "No hay datos del cuerpo de la solicitud",
|
|
352
|
+
"No response body data": "No hay datos del cuerpo de la respuesta",
|
|
353
|
+
"No headers data": "No hay datos de encabezados",
|
|
354
|
+
"No response data": "No hay datos de respuesta",
|
|
355
|
+
Copy: "Copiar",
|
|
356
|
+
success: "Éxito",
|
|
357
|
+
failed: "Fallido",
|
|
358
|
+
pending: "Pendiente",
|
|
359
|
+
} as const;
|
|
360
|
+
|
|
361
|
+
const pt = {
|
|
362
|
+
"Search...": "Pesquisar...",
|
|
363
|
+
Search: "Pesquisar",
|
|
364
|
+
"Clear search": "Limpar pesquisa",
|
|
365
|
+
Filters: "Filtros",
|
|
366
|
+
"Clear filters": "Limpar filtros",
|
|
367
|
+
"Date Range": "Intervalo de datas",
|
|
368
|
+
From: "De",
|
|
369
|
+
To: "Até",
|
|
370
|
+
Status: "Estado",
|
|
371
|
+
Paid: "Pago",
|
|
372
|
+
Unpaid: "Não pago",
|
|
373
|
+
Overdue: "Em atraso",
|
|
374
|
+
Voided: "Anulado",
|
|
375
|
+
Method: "Método",
|
|
376
|
+
All: "Todos",
|
|
377
|
+
"2xx Success": "2xx Sucesso",
|
|
378
|
+
"4xx Client Error": "4xx Erro do cliente",
|
|
379
|
+
"5xx Server Error": "5xx Erro do servidor",
|
|
380
|
+
"No results found": "Nenhum resultado encontrado",
|
|
381
|
+
"Try adjusting your search criteria": "Tente ajustar os seus critérios de pesquisa",
|
|
382
|
+
"Your list is empty": "A sua lista está vazia",
|
|
383
|
+
"Get started by creating your first entry": "Comece por criar a sua primeira entrada",
|
|
384
|
+
"Create new": "Criar novo",
|
|
385
|
+
"Clear all": "Limpar tudo",
|
|
386
|
+
selected: "selecionados",
|
|
387
|
+
"Export PDFs": "Exportar PDFs",
|
|
388
|
+
"Copy to Invoice": "Copiar para fatura",
|
|
389
|
+
"Retry Fiscalization": "Tentar fiscalização novamente",
|
|
390
|
+
"Deselect all": "Desselecionar tudo",
|
|
391
|
+
"Copy to clipboard": "Copiar para a área de transferência",
|
|
392
|
+
"Previous page": "Página anterior",
|
|
393
|
+
"Next page": "Página seguinte",
|
|
394
|
+
Date: "Data",
|
|
395
|
+
Event: "Evento",
|
|
396
|
+
URL: "URL",
|
|
397
|
+
Entity: "Entidade",
|
|
398
|
+
Duration: "Duração",
|
|
399
|
+
Time: "Hora",
|
|
400
|
+
Resource: "Recurso",
|
|
401
|
+
Path: "Caminho",
|
|
402
|
+
Action: "Ação",
|
|
403
|
+
Attempt: "Tentativa",
|
|
404
|
+
ID: "ID",
|
|
405
|
+
Request: "Pedido",
|
|
406
|
+
Response: "Resposta",
|
|
407
|
+
Headers: "Cabeçalhos",
|
|
408
|
+
"Request body": "Corpo do pedido",
|
|
409
|
+
"Request ID": "ID do pedido",
|
|
410
|
+
"Delivery ID": "ID da entrega",
|
|
411
|
+
"No request body data": "Sem dados do corpo do pedido",
|
|
412
|
+
"No response body data": "Sem dados do corpo da resposta",
|
|
413
|
+
"No headers data": "Sem dados dos cabeçalhos",
|
|
414
|
+
"No response data": "Sem dados de resposta",
|
|
415
|
+
Copy: "Copiar",
|
|
416
|
+
success: "Sucesso",
|
|
417
|
+
failed: "Falhou",
|
|
418
|
+
pending: "Pendente",
|
|
419
|
+
} as const;
|
|
420
|
+
|
|
421
|
+
const nl = {
|
|
422
|
+
"Search...": "Zoeken...",
|
|
423
|
+
Search: "Zoeken",
|
|
424
|
+
"Clear search": "Zoekopdracht wissen",
|
|
425
|
+
Filters: "Filters",
|
|
426
|
+
"Clear filters": "Filters wissen",
|
|
427
|
+
"Date Range": "Datumbereik",
|
|
428
|
+
From: "Van",
|
|
429
|
+
To: "Tot",
|
|
430
|
+
Status: "Status",
|
|
431
|
+
Paid: "Betaald",
|
|
432
|
+
Unpaid: "Onbetaald",
|
|
433
|
+
Overdue: "Achterstallig",
|
|
434
|
+
Voided: "Nietig verklaard",
|
|
435
|
+
Method: "Methode",
|
|
436
|
+
All: "Alle",
|
|
437
|
+
"2xx Success": "2xx Succes",
|
|
438
|
+
"4xx Client Error": "4xx Clientfout",
|
|
439
|
+
"5xx Server Error": "5xx Serverfout",
|
|
440
|
+
"No results found": "Geen resultaten gevonden",
|
|
441
|
+
"Try adjusting your search criteria": "Probeer je zoekcriteria aan te passen",
|
|
442
|
+
"Your list is empty": "Je lijst is leeg",
|
|
443
|
+
"Get started by creating your first entry": "Begin met het maken van je eerste item",
|
|
444
|
+
"Create new": "Nieuw maken",
|
|
445
|
+
"Clear all": "Alles wissen",
|
|
446
|
+
selected: "geselecteerd",
|
|
447
|
+
"Export PDFs": "PDF's exporteren",
|
|
448
|
+
"Copy to Invoice": "Kopiëren naar factuur",
|
|
449
|
+
"Retry Fiscalization": "Fiscalisatie opnieuw proberen",
|
|
450
|
+
"Deselect all": "Alles deselecteren",
|
|
451
|
+
"Copy to clipboard": "Kopiëren naar klembord",
|
|
452
|
+
"Previous page": "Vorige pagina",
|
|
453
|
+
"Next page": "Volgende pagina",
|
|
454
|
+
Date: "Datum",
|
|
455
|
+
Event: "Gebeurtenis",
|
|
456
|
+
URL: "URL",
|
|
457
|
+
Entity: "Entiteit",
|
|
458
|
+
Duration: "Duur",
|
|
459
|
+
Time: "Tijd",
|
|
460
|
+
Resource: "Resource",
|
|
461
|
+
Path: "Pad",
|
|
462
|
+
Action: "Actie",
|
|
463
|
+
Attempt: "Poging",
|
|
464
|
+
ID: "ID",
|
|
465
|
+
Request: "Verzoek",
|
|
466
|
+
Response: "Respons",
|
|
467
|
+
Headers: "Kopteksten",
|
|
468
|
+
"Request body": "Request-body",
|
|
469
|
+
"Request ID": "Request-ID",
|
|
470
|
+
"Delivery ID": "Delivery-ID",
|
|
471
|
+
"No request body data": "Geen gegevens in request-body",
|
|
472
|
+
"No response body data": "Geen gegevens in response-body",
|
|
473
|
+
"No headers data": "Geen headergegevens",
|
|
474
|
+
"No response data": "Geen responsgegevens",
|
|
475
|
+
Copy: "Kopiëren",
|
|
476
|
+
success: "Geslaagd",
|
|
477
|
+
failed: "Mislukt",
|
|
478
|
+
pending: "In behandeling",
|
|
479
|
+
} as const;
|
|
480
|
+
|
|
481
|
+
const pl = {
|
|
482
|
+
"Search...": "Szukaj...",
|
|
483
|
+
Search: "Szukaj",
|
|
484
|
+
"Clear search": "Wyczyść wyszukiwanie",
|
|
485
|
+
Filters: "Filtry",
|
|
486
|
+
"Clear filters": "Wyczyść filtry",
|
|
487
|
+
"Date Range": "Zakres dat",
|
|
488
|
+
From: "Od",
|
|
489
|
+
To: "Do",
|
|
490
|
+
Status: "Status",
|
|
491
|
+
Paid: "Opłacone",
|
|
492
|
+
Unpaid: "Nieopłacone",
|
|
493
|
+
Overdue: "Zaległe",
|
|
494
|
+
Voided: "Anulowane",
|
|
495
|
+
Method: "Metoda",
|
|
496
|
+
All: "Wszystkie",
|
|
497
|
+
"2xx Success": "2xx Sukces",
|
|
498
|
+
"4xx Client Error": "4xx Błąd klienta",
|
|
499
|
+
"5xx Server Error": "5xx Błąd serwera",
|
|
500
|
+
"No results found": "Nie znaleziono wyników",
|
|
501
|
+
"Try adjusting your search criteria": "Spróbuj dostosować kryteria wyszukiwania",
|
|
502
|
+
"Your list is empty": "Twoja lista jest pusta",
|
|
503
|
+
"Get started by creating your first entry": "Zacznij od utworzenia pierwszego wpisu",
|
|
504
|
+
"Create new": "Utwórz nowy",
|
|
505
|
+
"Clear all": "Wyczyść wszystko",
|
|
506
|
+
selected: "wybranych",
|
|
507
|
+
"Export PDFs": "Eksportuj PDF-y",
|
|
508
|
+
"Copy to Invoice": "Kopiuj do faktury",
|
|
509
|
+
"Retry Fiscalization": "Ponów fiskalizację",
|
|
510
|
+
"Deselect all": "Odznacz wszystko",
|
|
511
|
+
"Copy to clipboard": "Kopiuj do schowka",
|
|
512
|
+
"Previous page": "Poprzednia strona",
|
|
513
|
+
"Next page": "Następna strona",
|
|
514
|
+
Date: "Data",
|
|
515
|
+
Event: "Zdarzenie",
|
|
516
|
+
URL: "URL",
|
|
517
|
+
Entity: "Encja",
|
|
518
|
+
Duration: "Czas trwania",
|
|
519
|
+
Time: "Czas",
|
|
520
|
+
Resource: "Zasób",
|
|
521
|
+
Path: "Ścieżka",
|
|
522
|
+
Action: "Akcja",
|
|
523
|
+
Attempt: "Próba",
|
|
524
|
+
ID: "ID",
|
|
525
|
+
Request: "Żądanie",
|
|
526
|
+
Response: "Odpowiedź",
|
|
527
|
+
Headers: "Nagłówki",
|
|
528
|
+
"Request body": "Treść żądania",
|
|
529
|
+
"Request ID": "ID żądania",
|
|
530
|
+
"Delivery ID": "ID dostawy",
|
|
531
|
+
"No request body data": "Brak danych treści żądania",
|
|
532
|
+
"No response body data": "Brak danych treści odpowiedzi",
|
|
533
|
+
"No headers data": "Brak danych nagłówków",
|
|
534
|
+
"No response data": "Brak danych odpowiedzi",
|
|
535
|
+
Copy: "Kopiuj",
|
|
536
|
+
success: "Sukces",
|
|
537
|
+
failed: "Niepowodzenie",
|
|
538
|
+
pending: "Oczekujące",
|
|
539
|
+
} as const;
|
|
540
|
+
|
|
541
|
+
const hr = {
|
|
542
|
+
"Search...": "Pretraži...",
|
|
543
|
+
Search: "Pretraži",
|
|
544
|
+
"Clear search": "Očisti pretragu",
|
|
545
|
+
Filters: "Filtri",
|
|
546
|
+
"Clear filters": "Očisti filtre",
|
|
547
|
+
"Date Range": "Datumski raspon",
|
|
548
|
+
From: "Od",
|
|
549
|
+
To: "Do",
|
|
550
|
+
Status: "Status",
|
|
551
|
+
Paid: "Plaćeno",
|
|
552
|
+
Unpaid: "Neplaćeno",
|
|
553
|
+
Overdue: "Dospjelo",
|
|
554
|
+
Voided: "Stornirano",
|
|
555
|
+
Method: "Metoda",
|
|
556
|
+
All: "Sve",
|
|
557
|
+
"2xx Success": "2xx Uspjeh",
|
|
558
|
+
"4xx Client Error": "4xx Greška klijenta",
|
|
559
|
+
"5xx Server Error": "5xx Greška poslužitelja",
|
|
560
|
+
"No results found": "Nema rezultata",
|
|
561
|
+
"Try adjusting your search criteria": "Pokušajte prilagoditi kriterije pretrage",
|
|
562
|
+
"Your list is empty": "Vaš popis je prazan",
|
|
563
|
+
"Get started by creating your first entry": "Započnite stvaranjem prve stavke",
|
|
564
|
+
"Create new": "Stvori novo",
|
|
565
|
+
"Clear all": "Očisti sve",
|
|
566
|
+
selected: "odabrano",
|
|
567
|
+
"Export PDFs": "Izvezi PDF-ove",
|
|
568
|
+
"Copy to Invoice": "Kopiraj u račun",
|
|
569
|
+
"Retry Fiscalization": "Ponovi fiskalizaciju",
|
|
570
|
+
"Deselect all": "Poništi odabir",
|
|
571
|
+
"Copy to clipboard": "Kopiraj u međuspremnik",
|
|
572
|
+
"Previous page": "Prethodna stranica",
|
|
573
|
+
"Next page": "Sljedeća stranica",
|
|
574
|
+
Date: "Datum",
|
|
575
|
+
Event: "Događaj",
|
|
576
|
+
URL: "URL",
|
|
577
|
+
Entity: "Entitet",
|
|
578
|
+
Duration: "Trajanje",
|
|
579
|
+
Time: "Vrijeme",
|
|
580
|
+
Resource: "Resurs",
|
|
581
|
+
Path: "Putanja",
|
|
582
|
+
Action: "Radnja",
|
|
583
|
+
Attempt: "Pokušaj",
|
|
584
|
+
ID: "ID",
|
|
585
|
+
Request: "Zahtjev",
|
|
586
|
+
Response: "Odgovor",
|
|
587
|
+
Headers: "Zaglavlja",
|
|
588
|
+
"Request body": "Tijelo zahtjeva",
|
|
589
|
+
"Request ID": "ID zahtjeva",
|
|
590
|
+
"Delivery ID": "ID isporuke",
|
|
591
|
+
"No request body data": "Nema podataka tijela zahtjeva",
|
|
592
|
+
"No response body data": "Nema podataka tijela odgovora",
|
|
593
|
+
"No headers data": "Nema podataka zaglavlja",
|
|
594
|
+
"No response data": "Nema podataka odgovora",
|
|
595
|
+
Copy: "Kopiraj",
|
|
596
|
+
success: "Uspješno",
|
|
597
|
+
failed: "Neuspješno",
|
|
598
|
+
pending: "Na čekanju",
|
|
599
|
+
} as const;
|
|
600
|
+
|
|
601
|
+
const bg = {
|
|
602
|
+
"Search...": "Търсене...",
|
|
603
|
+
Search: "Търсене",
|
|
604
|
+
"Clear search": "Изчисти търсенето",
|
|
605
|
+
Filters: "Филтри",
|
|
606
|
+
"Clear filters": "Изчисти филтрите",
|
|
607
|
+
"Date Range": "Период",
|
|
608
|
+
From: "От",
|
|
609
|
+
To: "До",
|
|
610
|
+
Status: "Статус",
|
|
611
|
+
Paid: "Платени",
|
|
612
|
+
Unpaid: "Неплатени",
|
|
613
|
+
Overdue: "Просрочени",
|
|
614
|
+
Voided: "Анулирани",
|
|
615
|
+
Method: "Метод",
|
|
616
|
+
All: "Всички",
|
|
617
|
+
"2xx Success": "2xx Успех",
|
|
618
|
+
"4xx Client Error": "4xx Грешка на клиента",
|
|
619
|
+
"5xx Server Error": "5xx Грешка на сървъра",
|
|
620
|
+
"No results found": "Няма намерени резултати",
|
|
621
|
+
"Try adjusting your search criteria": "Опитайте да промените критериите за търсене",
|
|
622
|
+
"Your list is empty": "Списъкът е празен",
|
|
623
|
+
"Get started by creating your first entry": "Започнете със създаването на първия запис",
|
|
624
|
+
"Create new": "Създай нов",
|
|
625
|
+
"Clear all": "Изчисти всичко",
|
|
626
|
+
selected: "избрани",
|
|
627
|
+
"Export PDFs": "Експортиране на PDF",
|
|
628
|
+
"Copy to Invoice": "Копирай във фактура",
|
|
629
|
+
"Retry Fiscalization": "Опитай фискализацията отново",
|
|
630
|
+
"Deselect all": "Изчисти избора",
|
|
631
|
+
"Copy to clipboard": "Копирай в клипборда",
|
|
632
|
+
"Previous page": "Предишна страница",
|
|
633
|
+
"Next page": "Следваща страница",
|
|
634
|
+
Date: "Дата",
|
|
635
|
+
Event: "Събитие",
|
|
636
|
+
URL: "URL",
|
|
637
|
+
Entity: "Ентитет",
|
|
638
|
+
Duration: "Продължителност",
|
|
639
|
+
Time: "Час",
|
|
640
|
+
Resource: "Ресурс",
|
|
641
|
+
Path: "Път",
|
|
642
|
+
Action: "Действие",
|
|
643
|
+
Attempt: "Опит",
|
|
644
|
+
ID: "ID",
|
|
645
|
+
Request: "Заявка",
|
|
646
|
+
Response: "Отговор",
|
|
647
|
+
Headers: "Заглавки",
|
|
648
|
+
"Request body": "Тяло на заявката",
|
|
649
|
+
"Request ID": "ID на заявката",
|
|
650
|
+
"Delivery ID": "ID на доставката",
|
|
651
|
+
"No request body data": "Няма данни в тялото на заявката",
|
|
652
|
+
"No response body data": "Няма данни в тялото на отговора",
|
|
653
|
+
"No headers data": "Няма данни за заглавките",
|
|
654
|
+
"No response data": "Няма данни за отговора",
|
|
655
|
+
Copy: "Копирай",
|
|
656
|
+
success: "Успешно",
|
|
657
|
+
failed: "Неуспешно",
|
|
658
|
+
pending: "Изчакващо",
|
|
659
|
+
} as const;
|
|
660
|
+
|
|
661
|
+
const cs = {
|
|
662
|
+
"Search...": "Hledat...",
|
|
663
|
+
Search: "Hledat",
|
|
664
|
+
"Clear search": "Vymazat hledání",
|
|
665
|
+
Filters: "Filtry",
|
|
666
|
+
"Clear filters": "Vymazat filtry",
|
|
667
|
+
"Date Range": "Rozsah dat",
|
|
668
|
+
From: "Od",
|
|
669
|
+
To: "Do",
|
|
670
|
+
Status: "Stav",
|
|
671
|
+
Paid: "Uhrazené",
|
|
672
|
+
Unpaid: "Neuhrazené",
|
|
673
|
+
Overdue: "Po splatnosti",
|
|
674
|
+
Voided: "Stornované",
|
|
675
|
+
Method: "Metoda",
|
|
676
|
+
All: "Vše",
|
|
677
|
+
"2xx Success": "2xx Úspěch",
|
|
678
|
+
"4xx Client Error": "4xx Chyba klienta",
|
|
679
|
+
"5xx Server Error": "5xx Chyba serveru",
|
|
680
|
+
"No results found": "Nenalezeny žádné výsledky",
|
|
681
|
+
"Try adjusting your search criteria": "Zkuste upravit kritéria vyhledávání",
|
|
682
|
+
"Your list is empty": "Váš seznam je prázdný",
|
|
683
|
+
"Get started by creating your first entry": "Začněte vytvořením první položky",
|
|
684
|
+
"Create new": "Vytvořit nový",
|
|
685
|
+
"Clear all": "Vymazat vše",
|
|
686
|
+
selected: "vybráno",
|
|
687
|
+
"Export PDFs": "Exportovat PDF",
|
|
688
|
+
"Copy to Invoice": "Kopírovat do faktury",
|
|
689
|
+
"Retry Fiscalization": "Zkusit fiskalizaci znovu",
|
|
690
|
+
"Deselect all": "Zrušit výběr",
|
|
691
|
+
"Copy to clipboard": "Kopírovat do schránky",
|
|
692
|
+
"Previous page": "Předchozí stránka",
|
|
693
|
+
"Next page": "Další stránka",
|
|
694
|
+
Date: "Datum",
|
|
695
|
+
Event: "Událost",
|
|
696
|
+
URL: "URL",
|
|
697
|
+
Entity: "Entita",
|
|
698
|
+
Duration: "Doba trvání",
|
|
699
|
+
Time: "Čas",
|
|
700
|
+
Resource: "Zdroj",
|
|
701
|
+
Path: "Cesta",
|
|
702
|
+
Action: "Akce",
|
|
703
|
+
Attempt: "Pokus",
|
|
704
|
+
ID: "ID",
|
|
705
|
+
Request: "Požadavek",
|
|
706
|
+
Response: "Odpověď",
|
|
707
|
+
Headers: "Hlavičky",
|
|
708
|
+
"Request body": "Tělo požadavku",
|
|
709
|
+
"Request ID": "ID požadavku",
|
|
710
|
+
"Delivery ID": "ID doručení",
|
|
711
|
+
"No request body data": "Žádná data těla požadavku",
|
|
712
|
+
"No response body data": "Žádná data těla odpovědi",
|
|
713
|
+
"No headers data": "Žádná data hlaviček",
|
|
714
|
+
"No response data": "Žádná data odpovědi",
|
|
715
|
+
Copy: "Kopírovat",
|
|
716
|
+
success: "Úspěch",
|
|
717
|
+
failed: "Selhalo",
|
|
718
|
+
pending: "Čeká",
|
|
719
|
+
} as const;
|
|
720
|
+
|
|
721
|
+
const et = {
|
|
722
|
+
"Search...": "Otsi...",
|
|
723
|
+
Search: "Otsi",
|
|
724
|
+
"Clear search": "Tühjenda otsing",
|
|
725
|
+
Filters: "Filtrid",
|
|
726
|
+
"Clear filters": "Tühjenda filtrid",
|
|
727
|
+
"Date Range": "Kuupäevavahemik",
|
|
728
|
+
From: "Alates",
|
|
729
|
+
To: "Kuni",
|
|
730
|
+
Status: "Olek",
|
|
731
|
+
Paid: "Makstud",
|
|
732
|
+
Unpaid: "Tasumata",
|
|
733
|
+
Overdue: "Üle tähtaja",
|
|
734
|
+
Voided: "Tühistatud",
|
|
735
|
+
Method: "Meetod",
|
|
736
|
+
All: "Kõik",
|
|
737
|
+
"2xx Success": "2xx Edukas",
|
|
738
|
+
"4xx Client Error": "4xx Kliendi viga",
|
|
739
|
+
"5xx Server Error": "5xx Serveri viga",
|
|
740
|
+
"No results found": "Tulemusi ei leitud",
|
|
741
|
+
"Try adjusting your search criteria": "Proovi muuta otsingukriteeriume",
|
|
742
|
+
"Your list is empty": "Sinu nimekiri on tühi",
|
|
743
|
+
"Get started by creating your first entry": "Alusta oma esimese kirje loomisega",
|
|
744
|
+
"Create new": "Loo uus",
|
|
745
|
+
"Clear all": "Tühjenda kõik",
|
|
746
|
+
selected: "valitud",
|
|
747
|
+
"Export PDFs": "Ekspordi PDF-id",
|
|
748
|
+
"Copy to Invoice": "Kopeeri arveks",
|
|
749
|
+
"Retry Fiscalization": "Proovi fiskaliseerimist uuesti",
|
|
750
|
+
"Deselect all": "Tühista valik",
|
|
751
|
+
"Copy to clipboard": "Kopeeri lõikelauale",
|
|
752
|
+
"Previous page": "Eelmine leht",
|
|
753
|
+
"Next page": "Järgmine leht",
|
|
754
|
+
Date: "Kuupäev",
|
|
755
|
+
Event: "Sündmus",
|
|
756
|
+
URL: "URL",
|
|
757
|
+
Entity: "Olemi",
|
|
758
|
+
Duration: "Kestus",
|
|
759
|
+
Time: "Aeg",
|
|
760
|
+
Resource: "Ressurss",
|
|
761
|
+
Path: "Tee",
|
|
762
|
+
Action: "Toiming",
|
|
763
|
+
Attempt: "Katse",
|
|
764
|
+
ID: "ID",
|
|
765
|
+
Request: "Päring",
|
|
766
|
+
Response: "Vastus",
|
|
767
|
+
Headers: "Päised",
|
|
768
|
+
"Request body": "Päringu sisu",
|
|
769
|
+
"Request ID": "Päringu ID",
|
|
770
|
+
"Delivery ID": "Tarnimise ID",
|
|
771
|
+
"No request body data": "Päringu sisu andmed puuduvad",
|
|
772
|
+
"No response body data": "Vastuse sisu andmed puuduvad",
|
|
773
|
+
"No headers data": "Päiste andmed puuduvad",
|
|
774
|
+
"No response data": "Vastuse andmed puuduvad",
|
|
775
|
+
Copy: "Kopeeri",
|
|
776
|
+
success: "Õnnestus",
|
|
777
|
+
failed: "Ebaõnnestus",
|
|
778
|
+
pending: "Ootel",
|
|
779
|
+
} as const;
|
|
780
|
+
|
|
781
|
+
const fi = {
|
|
782
|
+
"Search...": "Search...",
|
|
783
|
+
Search: "Search",
|
|
784
|
+
"Clear search": "Clear search",
|
|
785
|
+
Filters: "Filters",
|
|
786
|
+
"Clear filters": "Clear filters",
|
|
787
|
+
"Date Range": "Date Range",
|
|
788
|
+
From: "From",
|
|
789
|
+
To: "To",
|
|
790
|
+
Status: "Status",
|
|
791
|
+
Paid: "Paid",
|
|
792
|
+
Unpaid: "Unpaid",
|
|
793
|
+
Overdue: "Overdue",
|
|
794
|
+
Voided: "Voided",
|
|
795
|
+
Method: "Method",
|
|
796
|
+
All: "All",
|
|
797
|
+
"2xx Success": "2xx Success",
|
|
798
|
+
"4xx Client Error": "4xx Client Error",
|
|
799
|
+
"5xx Server Error": "5xx Server Error",
|
|
800
|
+
"No results found": "No results found",
|
|
801
|
+
"Try adjusting your search criteria": "Try adjusting your search criteria",
|
|
802
|
+
"Your list is empty": "Your list is empty",
|
|
803
|
+
"Get started by creating your first entry": "Get started by creating your first entry",
|
|
804
|
+
"Create new": "Create new",
|
|
805
|
+
"Clear all": "Clear all",
|
|
806
|
+
selected: "selected",
|
|
807
|
+
"Export PDFs": "Export PDFs",
|
|
808
|
+
"Copy to Invoice": "Copy to Invoice",
|
|
809
|
+
"Retry Fiscalization": "Retry Fiscalization",
|
|
810
|
+
"Deselect all": "Deselect all",
|
|
811
|
+
"Copy to clipboard": "Copy to clipboard",
|
|
812
|
+
"Previous page": "Previous page",
|
|
813
|
+
"Next page": "Next page",
|
|
814
|
+
Date: "Date",
|
|
815
|
+
Event: "Event",
|
|
816
|
+
URL: "URL",
|
|
817
|
+
Entity: "Entity",
|
|
818
|
+
Duration: "Duration",
|
|
819
|
+
Time: "Time",
|
|
820
|
+
Resource: "Resource",
|
|
821
|
+
Path: "Path",
|
|
822
|
+
Action: "Action",
|
|
823
|
+
Attempt: "Attempt",
|
|
824
|
+
ID: "ID",
|
|
825
|
+
Request: "Request",
|
|
826
|
+
Response: "Response",
|
|
827
|
+
Headers: "Headers",
|
|
828
|
+
"Request body": "Request body",
|
|
829
|
+
"Request ID": "Request ID",
|
|
830
|
+
"Delivery ID": "Delivery ID",
|
|
831
|
+
"No request body data": "No request body data",
|
|
832
|
+
"No response body data": "No response body data",
|
|
833
|
+
"No headers data": "No headers data",
|
|
834
|
+
"No response data": "No response data",
|
|
835
|
+
Copy: "Copy",
|
|
836
|
+
success: "Success",
|
|
837
|
+
failed: "Failed",
|
|
838
|
+
pending: "Pending",
|
|
839
|
+
} as const;
|
|
840
|
+
|
|
841
|
+
const is = {
|
|
842
|
+
"Search...": "Leita...",
|
|
843
|
+
Search: "Leita",
|
|
844
|
+
"Clear search": "Hreinsa leit",
|
|
845
|
+
Filters: "Síur",
|
|
846
|
+
"Clear filters": "Hreinsa síur",
|
|
847
|
+
"Date Range": "Dagabil",
|
|
848
|
+
From: "Frá",
|
|
849
|
+
To: "Til",
|
|
850
|
+
Status: "Staða",
|
|
851
|
+
Paid: "Greiddur",
|
|
852
|
+
Unpaid: "Ógreiddur",
|
|
853
|
+
Overdue: "Á gjalddaga",
|
|
854
|
+
Voided: "Ógildur",
|
|
855
|
+
Method: "Aðferð",
|
|
856
|
+
All: "Allt",
|
|
857
|
+
"2xx Success": "2xx Tókst",
|
|
858
|
+
"4xx Client Error": "4xx Villa hjá biðlara",
|
|
859
|
+
"5xx Server Error": "5xx Villa á netþjóni",
|
|
860
|
+
"No results found": "Engar niðurstöður fundust",
|
|
861
|
+
"Try adjusting your search criteria": "Reyndu að breyta leitarskilyrðunum",
|
|
862
|
+
"Your list is empty": "Listinn þinn er tómur",
|
|
863
|
+
"Get started by creating your first entry": "Byrjaðu á að búa til fyrstu færsluna",
|
|
864
|
+
"Create new": "Búa til nýtt",
|
|
865
|
+
"Clear all": "Hreinsa allt",
|
|
866
|
+
selected: "valið",
|
|
867
|
+
"Export PDFs": "Flytja út PDF",
|
|
868
|
+
"Copy to Invoice": "Afrita í reikning",
|
|
869
|
+
"Retry Fiscalization": "Reyna fjárhagsstaðfestingu aftur",
|
|
870
|
+
"Deselect all": "Afvelja allt",
|
|
871
|
+
"Copy to clipboard": "Afrita á klemmuspjald",
|
|
872
|
+
"Previous page": "Fyrri síða",
|
|
873
|
+
"Next page": "Næsta síða",
|
|
874
|
+
Date: "Dagsetning",
|
|
875
|
+
Event: "Atburður",
|
|
876
|
+
URL: "URL",
|
|
877
|
+
Entity: "Eining",
|
|
878
|
+
Duration: "Lengd",
|
|
879
|
+
Time: "Tími",
|
|
880
|
+
Resource: "Auðlind",
|
|
881
|
+
Path: "Slóð",
|
|
882
|
+
Action: "Aðgerð",
|
|
883
|
+
Attempt: "Tilraun",
|
|
884
|
+
ID: "ID",
|
|
885
|
+
Request: "Beiðni",
|
|
886
|
+
Response: "Svar",
|
|
887
|
+
Headers: "Hausar",
|
|
888
|
+
"Request body": "Beiðnigögn",
|
|
889
|
+
"Request ID": "Beiðni-ID",
|
|
890
|
+
"Delivery ID": "Afhendingar-ID",
|
|
891
|
+
"No request body data": "Engin beiðnigögn tiltæk",
|
|
892
|
+
"No response body data": "Engin svargögn tiltæk",
|
|
893
|
+
"No headers data": "Engin hausagögn tiltæk",
|
|
894
|
+
"No response data": "Engin svargögn tiltæk",
|
|
895
|
+
Copy: "Afrita",
|
|
896
|
+
success: "Tókst",
|
|
897
|
+
failed: "Mistókst",
|
|
898
|
+
pending: "Í bið",
|
|
899
|
+
} as const;
|
|
900
|
+
|
|
901
|
+
const nb = {
|
|
902
|
+
"Search...": "Søk...",
|
|
903
|
+
Search: "Søk",
|
|
904
|
+
"Clear search": "Fjern søk",
|
|
905
|
+
Filters: "Filtre",
|
|
906
|
+
"Clear filters": "Fjern filtre",
|
|
907
|
+
"Date Range": "Datoperiode",
|
|
908
|
+
From: "Fra",
|
|
909
|
+
To: "Til",
|
|
910
|
+
Status: "Status",
|
|
911
|
+
Paid: "Betalt",
|
|
912
|
+
Unpaid: "Ubetalt",
|
|
913
|
+
Overdue: "Forfalt",
|
|
914
|
+
Voided: "Annullert",
|
|
915
|
+
Method: "Metode",
|
|
916
|
+
All: "Alle",
|
|
917
|
+
"2xx Success": "2xx Suksess",
|
|
918
|
+
"4xx Client Error": "4xx Klientfeil",
|
|
919
|
+
"5xx Server Error": "5xx Serverfeil",
|
|
920
|
+
"No results found": "Ingen resultater funnet",
|
|
921
|
+
"Try adjusting your search criteria": "Prøv å justere søkekriteriene",
|
|
922
|
+
"Your list is empty": "Listen din er tom",
|
|
923
|
+
"Get started by creating your first entry": "Kom i gang ved å opprette din første oppføring",
|
|
924
|
+
"Create new": "Opprett ny",
|
|
925
|
+
"Clear all": "Fjern alt",
|
|
926
|
+
selected: "valgt",
|
|
927
|
+
"Export PDFs": "Eksporter PDF-er",
|
|
928
|
+
"Copy to Invoice": "Kopier til faktura",
|
|
929
|
+
"Retry Fiscalization": "Prøv fiskalisering på nytt",
|
|
930
|
+
"Deselect all": "Fjern alle valg",
|
|
931
|
+
"Copy to clipboard": "Kopier til utklippstavle",
|
|
932
|
+
"Previous page": "Forrige side",
|
|
933
|
+
"Next page": "Neste side",
|
|
934
|
+
Date: "Dato",
|
|
935
|
+
Event: "Hendelse",
|
|
936
|
+
URL: "URL",
|
|
937
|
+
Entity: "Enhet",
|
|
938
|
+
Duration: "Varighet",
|
|
939
|
+
Time: "Tid",
|
|
940
|
+
Resource: "Ressurs",
|
|
941
|
+
Path: "Sti",
|
|
942
|
+
Action: "Handling",
|
|
943
|
+
Attempt: "Forsøk",
|
|
944
|
+
ID: "ID",
|
|
945
|
+
Request: "Forespørsel",
|
|
946
|
+
Response: "Respons",
|
|
947
|
+
Headers: "Headere",
|
|
948
|
+
"Request body": "Forespørselskropp",
|
|
949
|
+
"Request ID": "Forespørsels-ID",
|
|
950
|
+
"Delivery ID": "Leverings-ID",
|
|
951
|
+
"No request body data": "Ingen data i forespørselskroppen",
|
|
952
|
+
"No response body data": "Ingen data i responskroppen",
|
|
953
|
+
"No headers data": "Ingen headerdata",
|
|
954
|
+
"No response data": "Ingen responsdata",
|
|
955
|
+
Copy: "Kopier",
|
|
956
|
+
success: "Vellykket",
|
|
957
|
+
failed: "Mislykket",
|
|
958
|
+
pending: "Venter",
|
|
959
|
+
} as const;
|
|
960
|
+
|
|
961
|
+
const sk = {
|
|
962
|
+
"Search...": "Hľadať...",
|
|
963
|
+
Search: "Hľadať",
|
|
964
|
+
"Clear search": "Vymazať hľadanie",
|
|
965
|
+
Filters: "Filtre",
|
|
966
|
+
"Clear filters": "Vymazať filtre",
|
|
967
|
+
"Date Range": "Rozsah dátumov",
|
|
968
|
+
From: "Od",
|
|
969
|
+
To: "Do",
|
|
970
|
+
Status: "Stav",
|
|
971
|
+
Paid: "Zaplatené",
|
|
972
|
+
Unpaid: "Nezaplatené",
|
|
973
|
+
Overdue: "Po splatnosti",
|
|
974
|
+
Voided: "Stornované",
|
|
975
|
+
Method: "Metóda",
|
|
976
|
+
All: "Všetko",
|
|
977
|
+
"2xx Success": "2xx Úspech",
|
|
978
|
+
"4xx Client Error": "4xx Chyba klienta",
|
|
979
|
+
"5xx Server Error": "5xx Chyba servera",
|
|
980
|
+
"No results found": "Nenašli sa žiadne výsledky",
|
|
981
|
+
"Try adjusting your search criteria": "Skúste upraviť kritériá vyhľadávania",
|
|
982
|
+
"Your list is empty": "Váš zoznam je prázdny",
|
|
983
|
+
"Get started by creating your first entry": "Začnite vytvorením prvého záznamu",
|
|
984
|
+
"Create new": "Vytvoriť nový",
|
|
985
|
+
"Clear all": "Vymazať všetko",
|
|
986
|
+
selected: "vybraných",
|
|
987
|
+
"Export PDFs": "Exportovať PDF",
|
|
988
|
+
"Copy to Invoice": "Kopírovať do faktúry",
|
|
989
|
+
"Retry Fiscalization": "Skúsiť fiškalizáciu znova",
|
|
990
|
+
"Deselect all": "Zrušiť výber",
|
|
991
|
+
"Copy to clipboard": "Kopírovať do schránky",
|
|
992
|
+
"Previous page": "Predchádzajúca strana",
|
|
993
|
+
"Next page": "Ďalšia strana",
|
|
994
|
+
Date: "Dátum",
|
|
995
|
+
Event: "Udalosť",
|
|
996
|
+
URL: "URL",
|
|
997
|
+
Entity: "Entita",
|
|
998
|
+
Duration: "Trvanie",
|
|
999
|
+
Time: "Čas",
|
|
1000
|
+
Resource: "Zdroj",
|
|
1001
|
+
Path: "Cesta",
|
|
1002
|
+
Action: "Akcia",
|
|
1003
|
+
Attempt: "Pokus",
|
|
1004
|
+
ID: "ID",
|
|
1005
|
+
Request: "Požiadavka",
|
|
1006
|
+
Response: "Odpoveď",
|
|
1007
|
+
Headers: "Hlavičky",
|
|
1008
|
+
"Request body": "Telo požiadavky",
|
|
1009
|
+
"Request ID": "ID požiadavky",
|
|
1010
|
+
"Delivery ID": "ID doručenia",
|
|
1011
|
+
"No request body data": "Žiadne údaje tela požiadavky",
|
|
1012
|
+
"No response body data": "Žiadne údaje tela odpovede",
|
|
1013
|
+
"No headers data": "Žiadne údaje hlavičiek",
|
|
1014
|
+
"No response data": "Žiadne údaje odpovede",
|
|
1015
|
+
Copy: "Kopírovať",
|
|
1016
|
+
success: "Úspech",
|
|
1017
|
+
failed: "Zlyhalo",
|
|
1018
|
+
pending: "Čaká",
|
|
1019
|
+
} as const;
|
|
1020
|
+
|
|
1021
|
+
const sv = {
|
|
1022
|
+
"Search...": "Sök...",
|
|
1023
|
+
Search: "Sök",
|
|
1024
|
+
"Clear search": "Rensa sökning",
|
|
1025
|
+
Filters: "Filter",
|
|
1026
|
+
"Clear filters": "Rensa filter",
|
|
1027
|
+
"Date Range": "Datumintervall",
|
|
1028
|
+
From: "Från",
|
|
1029
|
+
To: "Till",
|
|
1030
|
+
Status: "Status",
|
|
1031
|
+
Paid: "Betald",
|
|
1032
|
+
Unpaid: "Obetald",
|
|
1033
|
+
Overdue: "Förfallen",
|
|
1034
|
+
Voided: "Makulerad",
|
|
1035
|
+
Method: "Metod",
|
|
1036
|
+
All: "Alla",
|
|
1037
|
+
"2xx Success": "2xx Lyckades",
|
|
1038
|
+
"4xx Client Error": "4xx Klientfel",
|
|
1039
|
+
"5xx Server Error": "5xx Serverfel",
|
|
1040
|
+
"No results found": "Inga resultat hittades",
|
|
1041
|
+
"Try adjusting your search criteria": "Försök att justera dina sökkriterier",
|
|
1042
|
+
"Your list is empty": "Din lista är tom",
|
|
1043
|
+
"Get started by creating your first entry": "Kom igång genom att skapa din första post",
|
|
1044
|
+
"Create new": "Skapa ny",
|
|
1045
|
+
"Clear all": "Rensa allt",
|
|
1046
|
+
selected: "valda",
|
|
1047
|
+
"Export PDFs": "Exportera PDF-filer",
|
|
1048
|
+
"Copy to Invoice": "Kopiera till faktura",
|
|
1049
|
+
"Retry Fiscalization": "Försök fiskalisering igen",
|
|
1050
|
+
"Deselect all": "Avmarkera alla",
|
|
1051
|
+
"Copy to clipboard": "Kopiera till urklipp",
|
|
1052
|
+
"Previous page": "Föregående sida",
|
|
1053
|
+
"Next page": "Nästa sida",
|
|
1054
|
+
Date: "Datum",
|
|
1055
|
+
Event: "Händelse",
|
|
1056
|
+
URL: "URL",
|
|
1057
|
+
Entity: "Enhet",
|
|
1058
|
+
Duration: "Varaktighet",
|
|
1059
|
+
Time: "Tid",
|
|
1060
|
+
Resource: "Resurs",
|
|
1061
|
+
Path: "Sökväg",
|
|
1062
|
+
Action: "Åtgärd",
|
|
1063
|
+
Attempt: "Försök",
|
|
1064
|
+
ID: "ID",
|
|
1065
|
+
Request: "Begäran",
|
|
1066
|
+
Response: "Svar",
|
|
1067
|
+
Headers: "Rubriker",
|
|
1068
|
+
"Request body": "Begärans kropp",
|
|
1069
|
+
"Request ID": "Begärans-ID",
|
|
1070
|
+
"Delivery ID": "Leverans-ID",
|
|
1071
|
+
"No request body data": "Inga data i begärans kropp",
|
|
1072
|
+
"No response body data": "Inga data i svarskroppen",
|
|
1073
|
+
"No headers data": "Inga rubrikdata",
|
|
1074
|
+
"No response data": "Inga svarsdata",
|
|
1075
|
+
Copy: "Kopiera",
|
|
1076
|
+
success: "Lyckades",
|
|
1077
|
+
failed: "Misslyckades",
|
|
1078
|
+
pending: "Väntande",
|
|
1079
|
+
} as const;
|
|
1080
|
+
|
|
1081
|
+
const tableTranslations = {
|
|
1082
|
+
en,
|
|
1083
|
+
bg,
|
|
1084
|
+
cs,
|
|
1085
|
+
de,
|
|
1086
|
+
es,
|
|
1087
|
+
et,
|
|
1088
|
+
fi,
|
|
1089
|
+
fr,
|
|
1090
|
+
hr,
|
|
1091
|
+
is,
|
|
1092
|
+
it,
|
|
1093
|
+
nb,
|
|
1094
|
+
nl,
|
|
1095
|
+
pl,
|
|
1096
|
+
pt,
|
|
1097
|
+
sk,
|
|
1098
|
+
sl,
|
|
1099
|
+
sv,
|
|
1100
|
+
} as const;
|
|
1101
|
+
|
|
1102
|
+
export function withTableTranslations<T extends Record<string, Record<string, string>>>(translations: T) {
|
|
1103
|
+
const merged: Record<string, Record<string, string>> = {};
|
|
1104
|
+
const locales = new Set([...Object.keys(tableTranslations), ...Object.keys(translations)]);
|
|
1105
|
+
|
|
1106
|
+
for (const locale of locales) {
|
|
1107
|
+
merged[locale] = {
|
|
1108
|
+
...(tableTranslations[locale as keyof typeof tableTranslations] ?? tableTranslations.en),
|
|
1109
|
+
...(translations[locale] ?? {}),
|
|
1110
|
+
};
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
return merged as T & typeof tableTranslations;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
export default tableTranslations;
|