commit 38caca445297f5d4af968e9e67f6166f19a1c7cc parent 95ae9c316e6fec798caba3756b62f6b259dadd6a Author: Sebastian <sebasjm@taler-systems.com> Date: Wed, 13 May 2026 17:20:02 -0300 update string: removed exchange, backend terminology Diffstat:
55 files changed, 39141 insertions(+), 24908 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/Routing.tsx b/packages/merchant-backoffice-ui/src/Routing.tsx @@ -169,7 +169,7 @@ export enum InstancePaths { reports_update = "/reports/:cid/update", reports_new = "/reports/new", - exchanges_list = "/exchanges" + exchanges_list = "/exchanges", } export enum AdminPaths { @@ -399,9 +399,7 @@ export function Routing(_p: Props): VNode { onBack={() => { route(`/`); }} - onConfirm={() => { - - }} + onConfirm={() => {}} /> {/** * Update instance page @@ -472,10 +470,7 @@ export function Routing(_p: Props): VNode { {/** * Scheduled report pages */} - <Route - path={InstancePaths.exchanges_list} - component={ListExchanges} - /> + <Route path={InstancePaths.exchanges_list} component={ListExchanges} /> {/** * Scheduled report pages */} @@ -943,8 +938,7 @@ function BankAccountBanner(): VNode { <div> <p> <i18n.Translate> - Without this the merchant backend will refuse to create new - orders. + Without this the server will refuse to create new orders. </i18n.Translate> </p> <div class="buttons is-right"> diff --git a/packages/merchant-backoffice-ui/src/components/ChartJS.tsx b/packages/merchant-backoffice-ui/src/components/ChartJS.tsx @@ -1,13 +1,9 @@ import { useTranslationContext } from "@gnu-taler/web-util/browser"; -import { ChartData, ChartOptions } from "chart.js"; -import { h, VNode } from "preact"; -import { useEffect, useRef } from "preact/hooks"; import { BarController, BarElement, CategoryScale, - Chart, - Filler, + Chart, ChartData, ChartOptions, Filler, Legend, LinearScale, LineController, @@ -15,8 +11,12 @@ import { PointElement, TimeScale, Title, - Tooltip, + Tooltip } from "chart.js"; +import { h, VNode } from "preact"; +import { useEffect, useRef } from "preact/hooks"; + +const TALER_SCREEN_ID = 86; Chart.register( CategoryScale, diff --git a/packages/merchant-backoffice-ui/src/components/SolveMFA.tsx b/packages/merchant-backoffice-ui/src/components/SolveMFA.tsx @@ -246,7 +246,7 @@ function SolveChallenge({ case HttpStatusCode.Forbidden: return i18n.str`The request was valid, but the server is refusing action.`; case TalerErrorCode.MERCHANT_TAN_CHALLENGE_UNKNOWN: - return i18n.str`The backend is not aware of the specified MFA challenge.`; + return i18n.str`The server is not aware of the specified MFA challenge.`; case TalerErrorCode.MERCHANT_TAN_MFA_HELPER_EXEC_FAILED: return i18n.str`Code transmission failed.`; case TalerErrorCode.MERCHANT_TAN_CHALLENGE_SOLVED: @@ -474,11 +474,11 @@ export function SolveMFAChallenges({ case HttpStatusCode.Forbidden: return i18n.str`The request was valid, but the server is refusing action.`; case TalerErrorCode.MERCHANT_TAN_CHALLENGE_UNKNOWN: - return i18n.str`The backend is not aware of the specified MFA challenge.`; + return i18n.str`The server is not aware of the specified MFA challenge.`; case TalerErrorCode.MERCHANT_TAN_MFA_HELPER_EXEC_FAILED: - return i18n.str`Code transmission failed.`; + return i18n.str`The code transmission failed.`; case TalerErrorCode.MERCHANT_TAN_CHALLENGE_SOLVED: - return i18n.str`Already solved.`; + return i18n.str`The challenge is already solved.`; case TalerErrorCode.MERCHANT_TAN_TOO_EARLY: return i18n.str`It is too early to request another transmission of the challenge.`; default: diff --git a/packages/merchant-backoffice-ui/src/components/form/InputCode.tsx b/packages/merchant-backoffice-ui/src/components/form/InputCode.tsx @@ -25,6 +25,8 @@ import { Tooltip } from "../Tooltip.js"; import { doAutoFocus } from "./Input.js"; import { InputProps, useField } from "./useField.js"; +const TALER_SCREEN_ID = 90; + interface Props<T> extends InputProps<T> { inputExtra?: any; focus?: boolean; diff --git a/packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx b/packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx @@ -31,7 +31,7 @@ import { Tooltip } from "../Tooltip.js"; import { InternalTextInputSwitch } from "./Input.js"; import { InputProps, useField } from "./useField.js"; -const TALER_SCREEN_ID = 8; +const TALER_SCREEN_ID = 112; export interface Props<T> extends InputProps<T> { expand?: boolean; diff --git a/packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx b/packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx @@ -33,7 +33,7 @@ import { DurationPicker } from "../picker/DurationPicker.js"; import { InputProps, useField } from "./useField.js"; import { Tooltip } from "../Tooltip.js"; -const TALER_SCREEN_ID = 8; +const TALER_SCREEN_ID = 114; export interface Props<T> extends InputProps<T> { expand?: boolean; diff --git a/packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx b/packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx @@ -23,8 +23,10 @@ import { import { Fragment, h, VNode } from "preact"; import { useState } from "preact/hooks"; import { useSessionContext } from "../../context/session.js"; -import { FormProvider } from "./FormProvider.js"; import { Tooltip } from "../Tooltip.js"; +import { FormProvider } from "./FormProvider.js"; + +const TALER_SCREEN_ID = 89; function NotificationFieldFoot({ notification, diff --git a/packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx b/packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx @@ -177,7 +177,7 @@ export function DefaultInstanceFormFields({ <InputDurationDropdown<Entity> name="default_wire_transfer_delay" label={i18n.str`Wire transfer delay`} - tooltip={i18n.str`Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.`} + tooltip={i18n.str`Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.`} useProtocolDuration withoutClear side={ diff --git a/packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx b/packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx @@ -22,6 +22,8 @@ import { h, VNode } from "preact"; import logo from "../../assets/logo-2021.svg"; import question from "../../assets/question.svg"; +import { Tooltip } from "../Tooltip.js"; +import { useTranslationContext } from "@gnu-taler/web-util/browser"; interface Props { onMobileMenu: () => void; @@ -30,7 +32,13 @@ interface Props { noBurger?: boolean; } -export function NavigationBar({ mobileOpen, noBurger, onMobileMenu, title }: Props): VNode { +export function NavigationBar({ + mobileOpen, + noBurger, + onMobileMenu, + title, +}: Props): VNode { + const { i18n } = useTranslationContext(); return ( <nav class="navbar is-fixed-top" @@ -38,42 +46,44 @@ export function NavigationBar({ mobileOpen, noBurger, onMobileMenu, title }: Pro aria-label="main navigation" > <div class="navbar-brand"> - {!noBurger ? - <a - role="button" - class="navbar-burger" - aria-label="menu" - style={{marginLeft: 0, display: mobileOpen ? "none" : undefined}} - aria-expanded="false" - onClick={(e) => { - onMobileMenu(); - e.stopPropagation(); - }} - > - <span aria-hidden="true" /> - <span aria-hidden="true" /> - <span aria-hidden="true" /> - </a> - :undefined} + {!noBurger ? ( + <a + role="button" + class="navbar-burger" + aria-label="menu" + style={{ marginLeft: 0, display: mobileOpen ? "none" : undefined }} + aria-expanded="false" + onClick={(e) => { + onMobileMenu(); + e.stopPropagation(); + }} + > + <span aria-hidden="true" /> + <span aria-hidden="true" /> + <span aria-hidden="true" /> + </a> + ) : undefined} <span class="navbar-item" style={{ fontSize: 24, fontWeight: 900 }}> {title} </span> </div> - <div class="navbar-menu "> - <a - class="navbar-start is-justify-content-center is-flex-grow-1" - href="https://tutorials.taler.net/merchant/merchant-backoffice" - target="_blank" - rel="noreferrer" - > - <img src={logo} style={{ height: 35, margin: 10 }} /> - <img - src={question} - style={{ height: 20, marginTop: "auto", marginBottom: "auto" }} - /> - </a> - </div> + <div class="navbar-menu " > + <a + class="navbar-start is-justify-content-center is-flex-grow-1 has-tooltip-fixed" + href="https://tutorials.taler.net/merchant/merchant-backoffice" + target="_blank" + data-tooltip={i18n.str`Follow this link to find video tutorials on how you can use the GNU Taler components.`} + rel="noreferrer" + style={{"--pos-x": 100}} + > + <img src={logo} style={{ height: 35, margin: 10 }} /> + <img + src={question} + style={{ height: 20, marginTop: "auto", marginBottom: "auto" }} + /> + </a> + </div> </nav> ); } diff --git a/packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx b/packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx @@ -221,9 +221,8 @@ export function Sidebar({ mobile }: Props): VNode { point={UIElement.sidebar_tokenFamilies} > <a href={"#/tokenfamilies"} class="has-icon"> + <i class="icon mdi mdi-clock" /> <span class="menu-item-label"> - <i class="icon mdi mdi-clock" /> - <i18n.Translate>Subscriptions and Discounts</i18n.Translate> </span> </a> @@ -289,7 +288,9 @@ export function Sidebar({ mobile }: Props): VNode { > <i class="icon mdi mdi-account-check" /> - <span class="menu-item-label">KYC Status</span> + <span class="menu-item-label"> + <i18n.Translate>KYC Status</i18n.Translate> + </span> </a> </HtmlPersonaFlag> )} @@ -382,15 +383,12 @@ export function Sidebar({ mobile }: Props): VNode { <span class="menu-item-label">{state.instance}</span> </div> </li> - <HtmlPersonaFlag - htmlElement="li" - point={UIElement.sidebar_exchanges} - > + <HtmlPersonaFlag htmlElement="li" point={UIElement.sidebar_exchanges}> <a href={"#/exchanges"} class="has-icon"> <i class="icon mdi mdi-key" /> <span class="menu-item-label"> - <i18n.Translate>Exchanges</i18n.Translate> + <i18n.Translate>Payment services</i18n.Translate> </span> </a> </HtmlPersonaFlag> @@ -480,7 +478,7 @@ export function getAvailableForPersona(p: MerchantPersona): ElementMap { [UIElement.action_useRevenueApi]: true, [UIElement.option_inventoryTaxes]: true, [UIElement.sidebar_exchanges]: true, - + [UIElement.sidebar_statistics]: false, [UIElement.sidebar_multicurrency]: false, [UIElement.sidebar_discounts]: false, @@ -539,7 +537,7 @@ export function getAvailableForPersona(p: MerchantPersona): ElementMap { [UIElement.sidebar_bankAccounts]: true, [UIElement.sidebar_settings]: true, [UIElement.sidebar_password]: true, - + [UIElement.sidebar_group]: false, [UIElement.sidebar_pots]: false, [UIElement.sidebar_reports]: false, @@ -573,7 +571,7 @@ export function getAvailableForPersona(p: MerchantPersona): ElementMap { [UIElement.sidebar_bankAccounts]: true, [UIElement.sidebar_settings]: true, [UIElement.sidebar_password]: true, - + [UIElement.sidebar_accessTokens]: false, [UIElement.sidebar_statistics]: false, [UIElement.sidebar_exchanges]: false, @@ -611,7 +609,7 @@ export function getAvailableForPersona(p: MerchantPersona): ElementMap { [UIElement.sidebar_bankAccounts]: true, [UIElement.sidebar_settings]: true, [UIElement.sidebar_password]: true, - + [UIElement.sidebar_accessTokens]: false, [UIElement.sidebar_statistics]: false, [UIElement.sidebar_exchanges]: false, diff --git a/packages/merchant-backoffice-ui/src/components/menu/index.tsx b/packages/merchant-backoffice-ui/src/components/menu/index.tsx @@ -30,6 +30,8 @@ import { LangSelector } from "./LangSelector.js"; import { InternationalizationAPI } from "@gnu-taler/taler-util"; import { useSettingsContext } from "../../context/settings.js"; +const TALER_SCREEN_ID = 113; + function getInstanceTitle( path: string, id: string, diff --git a/packages/merchant-backoffice-ui/src/context/session.ts b/packages/merchant-backoffice-ui/src/context/session.ts @@ -36,7 +36,7 @@ import { MerchantLib } from "../../../web-util/lib/context/activity.js"; /** * Has the information to reach and - * authenticate at the bank's backend. + * authenticate at the bank's server. */ export type SessionState = LoggedIn | LoggedOut; diff --git a/packages/merchant-backoffice-ui/src/i18n/de.po b/packages/merchant-backoffice-ui/src/i18n/de.po @@ -29,55 +29,55 @@ msgstr "" "X-Generator: Weblate 5.13.2\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "Abbrechen" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "%1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "Schließen" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "Weiter" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "Ausgangswert" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "Eingeben" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 -#, c-format -msgid "Correct form" +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#, fuzzy, c-format +msgid "Correct the form" msgstr "Korrektur der Angaben" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "Vergleich der Kontodetails" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -88,103 +88,103 @@ msgstr "" "Formular." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "Feld" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "Im Formular" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "Gemeldet" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "Typ" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "IBAN" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "Adresse" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "Host" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, c-format msgid "Account ID" msgstr "Konto-ID" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "Der rechtsgültige Vor- und Zuname des Kontoinhabers" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "Postleitzahl der Adresse des Kontoinhabers" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "Ort" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "Server der Bank (Bank host)" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "Bankkonto" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "BIC" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "OK" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "Prüfung der Gültigkeit der Kontonummer: %1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -196,13 +196,29 @@ msgstr "" "mit dem folgenden Text im Mitteilungsfeld überweisen." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" +"Wenn Ihre Bank-App eine Überweisung mit QR-Codes ermöglicht, versuchen Sie, " +"diesen Code zu scannen:" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, fuzzy, c-format +msgid "Bank app" +msgstr "Bankkonto" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "Schritt 1:" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -213,19 +229,19 @@ msgstr "" "Website ein." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "Begünstigter" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "Schritt 2:" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -236,31 +252,31 @@ msgstr "" "Online-Banking-Webseite." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "Buchungsvermerk" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "Postleitzahl der Adresse des Begünstigten" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "Stadt mit Sitz des Begünstigten" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "Schritt 3:" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -270,13 +286,13 @@ msgstr "" "kleinstmöglichen Betrag für eine Überweisung aus." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 -#, c-format +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 +#, fuzzy, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." +"the PayTo URI below to copy just one value." msgstr "" "Vergewissern Sie sich, dass ALLE Daten und der Buchungsvermerk korrekt sind " "und Sie das richtige Bankkonto gewählt haben. Sie können die Daten durch " @@ -285,33 +301,23 @@ msgstr "" "Angabe alles zu kopieren." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" -msgstr "" -"Wenn Ihre Bank-App eine Überweisung mit QR-Codes ermöglicht, versuchen Sie, " -"diesen Code zu scannen:" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 -#, c-format +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 +#, fuzzy, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" "Falls Ihre Bank den technischen Standard „payto:// URI“ bereits unterstützt, " "können Sie alternativ dazu den Link %1$s verwenden" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "Die Verarbeitung ist im Gange..." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "Der Vorgang wird nach %1$s Sekunden automatisch abgebrochen" @@ -340,74 +346,80 @@ msgstr "Minuten" msgid "seconds" msgstr "Sekunden" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "Unbegrenzt" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "%1$sM" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "%1$sY" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "%1$sd" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "%1$sh" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "%1$smin" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "%1$ssec" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 -#, c-format -msgid "Change value to never" +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 +#, fuzzy, c-format +msgid "Change the value to never" msgstr "Wert auf „nie“ setzen" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 -#, c-format -msgid "Change value to empty" +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 +#, fuzzy, c-format +msgid "Change the value to empty" msgstr "Wert annullieren" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 -#, c-format -msgid "Image must be smaller than 1 MB" +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, fuzzy, c-format +msgid "The file is not an image" +msgstr "Die Challenge ist nicht mehr bekannt." + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 +#, fuzzy, c-format +msgid "The image was normalized to be smaller than 1 MB" msgstr "Die Bilddatei muss kleiner als 1 MB sein" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "Hinzufügen" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "Entfernen" @@ -467,49 +479,49 @@ msgid "Additional address lines" msgstr "Zusätzliche Adresszeilen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "Bestellungen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "Lagerbestand" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "Kategorien" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "Überweisungen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "Vorlagen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, fuzzy, c-format msgid "Product groups" msgstr "Artikel" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, fuzzy, c-format msgid "Reports" msgstr "Berichte" @@ -521,91 +533,133 @@ msgid "Statistics" msgstr "Statistiken" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "Abos und Rabatte" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "Einstellungen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, fuzzy, c-format +msgid "KYC Status" +msgstr "Status" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "OTP-Geräte" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "Webhooks" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "Einstellungen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "Passwort" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "Zugangstoken" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "Verbindung" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "Personalisierung" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, fuzzy, c-format +msgid "Payment services" +msgstr "Unterstützte Währungen" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "Instanzen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "Neu" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "Listen" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "Abmelden" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, fuzzy, c-format +msgid "Select one..." +msgstr "Wählen Sie ein Konto" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, fuzzy, c-format +msgid "Hours" +msgstr "Stunden" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, fuzzy, c-format +msgid "Minutes" +msgstr "Minuten" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, fuzzy, c-format +msgid "Seconds" +msgstr "Sekunden" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "Benutzername" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -615,13 +669,13 @@ msgstr "" "wird." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "Firmenname" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" @@ -629,61 +683,61 @@ msgstr "" "Handelsregister angegeben)." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "E-Mail" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "E-Mail-Adresse für allgemeinen Kontakt" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "Telefonnummer" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "Telefonnummer für allgemeinen Kontakt" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "Webseiten-URL" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "URL." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "Logo (Signet)" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "Abbildung des Firmenlogos." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "Transaktionsgebühren bezahlen" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" @@ -691,45 +745,44 @@ msgstr "" "Zahlenden (aus)." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "Niederlassung (Firmensitz) des Händlers oder Verkäufers." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "Gerichtsstand" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "Gerichtsstand der Firma." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, fuzzy, c-format msgid "Payment delay" msgstr "Zahlungsdetails" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." @@ -738,13 +791,25 @@ msgstr "" "Angebot regulär verfällt." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "Zurücksetzen" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, fuzzy, c-format msgid "Refund delay" msgstr "Zeitliche Verzögerung der automatischen Rückerstattung" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" @@ -752,39 +817,37 @@ msgstr "" "Bestellungen gewähren können." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, fuzzy, c-format msgid "Wire transfer delay" msgstr "Überweisungsfrist" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 -#, c-format +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 +#, fuzzy, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" "Der Zeitraum, in dem alle Kundenzahlungen zu einem Betrag zusammengefasst " "und vom Zahlungsdienst an das Bankkonto des Verkäufers überwiesen werden, um " "Überweisungsgebühren zu reduzieren." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, fuzzy, c-format msgid "Wire transfer rounding" msgstr "Überweisungsfrist" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" -"Dies ist die Rundung des Zeitraums auf ganze Zeiteinheiten, nach deren " -"Ablauf die zusammengefassten Umsätze an das Bankkonto überwiesen werden." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -794,1450 +857,1644 @@ msgstr "" "Überweisungsfrist zu Mitternacht dieses Tages aufgerundet." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "Keine Rundung" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "Rundung auf eine Sekunde" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "Rundung auf eine Minute" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "Rundung auf eine Stunde" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "Rundung auf einen Tag" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "Rundung auf eine Woche" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "Rundung auf einen Monat" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "Rundung auf ein Vierteljahr" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "Rundung auf ein Jahr" +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 +#, c-format +msgid "Can't paste this content. Please copy the 8 digits again." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 +#, c-format +msgid "Resend code possible in %1$s seconds." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 +#, c-format +msgid "Resend code possible in less than one minute." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#, c-format +msgid "Resend code possible in less than 5 minutes." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 +#, fuzzy, c-format +msgid "Resend will be possible after %1$s" +msgstr "Ende der Gültigkeit %1$s" + #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format msgid "Expired" msgstr "Abgelaufen" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format msgid "Required" msgstr "Erforderlich" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#, fuzzy, c-format +msgid "verify code" +msgstr "Bestätigungscode" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format msgid "Unauthorized" msgstr "Unberechtigter Zugriff" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, fuzzy, c-format msgid "The code is not correct." msgstr "Der eingegebene Code ist falsch." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 -#, c-format -msgid "The challenge is not known anymore." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 +#, fuzzy, c-format +msgid "The challenge is no longer valid." msgstr "Die Challenge ist nicht mehr bekannt." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format msgid "Too many attempts trying to solve the challenge." msgstr "Zu viele Versuche die Challenge zu lösen." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 -#, c-format -msgid "Validation code sent." -msgstr "Ein Bestätigungscode wurde gerade zugesendet." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 +#, fuzzy, c-format +msgid "send challenge" +msgstr "Passwort geändert" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" -msgstr "" -"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die mit \"%1$s\" " -"endet" +msgid "Failed to send the verification code." +msgstr "Verifizierungscode konnte nicht gesendet werden." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "The request was valid, but the server is refusing action." +msgstr "Die Anfrage war gültig, aber der Server verweigert die Bearbeitung." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 +#, fuzzy, c-format +msgid "The server is not aware of the specified MFA challenge." msgstr "" -"Ein Bestätigungscode wurde an die E-Mailadresse gesendet, die mit \"%1$s\" " -"beginnt" +"Dieser Anwendung ist die angegebene Multi-Faktor-Überprüfung nicht bekannt." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format -msgid "Verification code" -msgstr "Bestätigungscode" +msgid "Code transmission failed." +msgstr "Die Code-Übertragung ist fehlgeschlagen." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format -msgid "It will expire at %1$s" -msgstr "Ende der Gültigkeit %1$s" +msgid "Already solved." +msgstr "Bereits gelöst." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "It is too early to request another transmission of the challenge." msgstr "" -"Das Prüfverfahren zur gesicherten Anmeldung ist abgelaufen und kann nicht " -"mehr verwendet werden, es ist jedoch möglich, ein neues Prüfverfahren " -"anzufordern (bitte gehen Sie im Browser einen Schritt zurück)." +"Es muss noch gewartet werden, um eine weitere Übertragung des " +"Überprüfungscodes zu verlangen." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Back" -msgstr "Zurück" +msgid "Validation code sent." +msgstr "Ein Bestätigungscode wurde gerade zugesendet." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 -#, c-format -msgid "Verify" -msgstr "Prüfen" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 +#, fuzzy, c-format +msgid "The verification code sent to the phone \" %1$s\"" +msgstr "" +"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die mit \"%1$s\" " +"endet" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "Failed to send the verification code." -msgstr "Verifizierungscode konnte nicht gesendet werden." +msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgstr "" +"Ein Bestätigungscode wurde an die Telefonnummer gesendet, die mit \"%1$s\" " +"endet" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 -#, c-format -msgid "The request was valid, but the server is refusing action." -msgstr "Die Anfrage war gültig, aber der Server verweigert die Bearbeitung." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 +#, fuzzy, c-format +msgid "The verification code sent to the email address \" %1$s\"" +msgstr "" +"Ein Bestätigungscode wurde an die E-Mailadresse gesendet, die mit \"%1$s\" " +"beginnt" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" -"Dieser Anwendung ist die angegebene Multi-Faktor-Überprüfung nicht bekannt." +"Ein Bestätigungscode wurde an die E-Mailadresse gesendet, die mit \"%1$s\" " +"beginnt" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "Code transmission failed." -msgstr "Die Code-Übertragung ist fehlgeschlagen." +msgid "Verification code" +msgstr "Bestätigungscode" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 -#, c-format -msgid "Already solved." -msgstr "Bereits gelöst." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 +#, fuzzy, c-format +msgid "Code expired." +msgstr "Der Zeitraum für die Überprüfung ist abgelaufen" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "It is too early to request another transmission of the challenge." +msgid "Didn't received the code?" msgstr "" -"Es muss noch gewartet werden, um eine weitere Übertragung des " -"Überprüfungscodes zu verlangen." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 +#, fuzzy, c-format +msgid "Resend" +msgstr "Zurücksetzen" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 +#, c-format +msgid "Verify" +msgstr "Prüfen" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 +#, fuzzy, c-format +msgid "The code transmission failed." +msgstr "Die Code-Übertragung ist fehlgeschlagen." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 +#, fuzzy, c-format +msgid "The challenge is already solved." +msgstr "Die Challenge ist nicht mehr bekannt." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format msgid "Multi-factor authentication required." msgstr "Es ist eine Multi-Faktor-Authentifizierung erforderlich." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 -#, c-format -msgid "You need to complete all of this requirements." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 +#, fuzzy, c-format +msgid "You must complete all of these requirements." msgstr "Sie müssen alle dieser Bedingungen erfüllen." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format msgid "You need to complete at least one of this requirements." msgstr "Sie müssen mindestens eine dieser Bedingungen erfüllen." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format msgid "An SMS to the phone number ending with %1$s" msgstr "SMS senden an die Telefonnummer, die mit %1$s endet" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format msgid "An email to the address starting with %1$s" msgstr "Bestätigungscode senden an die E-Mailadresse, die mit %1$s beginnt" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "You have to wait until %1$s to send a new code." -msgstr "" -"Sie müssen bis %1$s warten, damit ein neuer Bestätigungscode gesendet werden " -"kann." +msgid "Complete" +msgstr "Abschliessen" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "I have a code" -msgstr "Ich habe bereits einen gültigen Bestätigungscode" +msgid "This is not a valid Bitcoin address." +msgstr "Dies ist keine gültige Bitcoin-Adresse." -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Send me a message" -msgstr "Bestätigungscode zusenden" +msgid "This is not a valid Ethereum address." +msgstr "Dies ist keine zulässige Ethereum-Adresse." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Logged in" -msgstr "Sie sind angemeldet" +msgid "This is not a valid host." +msgstr "Dies ist kein gültiger Host." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Not found" -msgstr "Nicht gefunden" +msgid "IBANs usually have more than 4 digits." +msgstr "Eine IBAN besteht normalerweise aus mehr als 4 Ziffern." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Login required" -msgstr "Anmeldung erforderlich" +msgid "IBANs usually have fewer than 34 digits." +msgstr "Eine IBAN besteht normalerweise aus weniger als 34 Ziffern." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Instance name." -msgstr "Name zur Anmeldung im Taler-Händlerportal." +msgid "The IBAN's country code could not be retrieved." +msgstr "Der IBAN-Ländercode wurde nicht gefunden." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Instance password." -msgstr "Passwort für den Zugang zum Händlerportal." +msgid "The IBAN is invalid because the checksum is wrong." +msgstr "Die IBAN-Nummer ist ungültig, die Prüfsumme ist falsch." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "Forgot password" -msgstr "Ich habe mein Passwort vergessen" +msgid "This account is not allowed." +msgstr "Dieses Konto ist nicht zulässig." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#, fuzzy, c-format +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" +msgstr "" +"Keine der gängigen Übertragungsmethoden des Servers wird zurzeit von dieser " +"Anwendung unterstützt. Server-Einstellungen: %1$s" + +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Create new account" -msgstr "Neues Benutzerkonto erstellen" +msgid "Wire method" +msgstr "Überweisungsmethode" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Invalid" -msgstr "Ungültig" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." +msgstr "" +"Wählen Sie die Methode, mit der Sie Ihre Einnahmen an Ihr Geschäftskonto " +"überweisen möchten." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Doesn't have the pattern of an email" -msgstr "Dies entspricht keiner gültigen E-Mailadresse" +msgid "Select a wire method..." +msgstr "Wählen Sie eine Überweisungsmethode..." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Should start with +" -msgstr "Die Nummer sollte mit + beginnen" +msgid "Routing" +msgstr "Bankleitzahlensystem" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "A phone number consists of numbers only" -msgstr "Eine Telefonnummer besteht nur aus Ziffern" +msgid "Routing number" +msgstr "Bankleitzahl" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Invalid value" -msgstr "Ungültiger Wert" +msgid "Account" +msgstr "Konto" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, c-format -msgid "Max 7 lines" -msgstr "Höchstens 7 Zeilen" +msgid "Account number" +msgstr "Kontonummer" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "Doesn't match" -msgstr "Dies stimmt nicht überein" +msgid "Code" +msgstr "Code" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "Instance created" -msgstr "Die Instanz wurde angelegt" +msgid "Business Identifier Code" +msgstr "Business Identifier Code (BIC)" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "Unauthorized." -msgstr "Nicht autorisiert." +msgid "International Bank Account Number" +msgstr "IBAN (Internationale Bankkontonummer)" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "Conflict." -msgstr "" -"Es besteht ein Konflikt zwischen erwarteter und gesendeter Information." +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgstr "Ihre IBAN, z.B. CH12 0000 1111 2222 3333 00" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, c-format -msgid "Not found." -msgstr "Die Information wurde nicht gefunden." +msgid "Unified Payment Interface" +msgstr "Unified Payment Interface (UPI)" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "New password" -msgstr "Neues Passwort" +msgid "Bitcoin protocol" +msgstr "Bitcoin-Protokoll" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Next password to be used" -msgstr "Geben Sie hier ein neues Passwort ein" +msgid "Ethereum protocol" +msgstr "Ethereum-Protokoll" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "Repeat password" -msgstr "Passwort wiederholen" +msgid "Interledger protocol" +msgstr "Interledger-Protokoll" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Confirm the same password" -msgstr "Bitte geben Sie das Passwort hier wiederholt ein" +msgid "Enter the data without a scheme. A subpath may be included:" +msgstr "" +"Geben Sie die Daten ohne Schema ein. Ein Pfad kann darin enthalten sein:" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "Cyclos host" msgstr "" -"Sie müssen die gekennzeichneten Felder ausfüllen und eine Methode der " -"Berechtigungsprüfung wählen" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#, fuzzy, c-format +msgid "cyclos account" +msgstr "Alle Konten" + +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "Confirm operation" -msgstr "Vorgang bestätigen" +msgid "Name of the account holder" +msgstr "Name des Kontoinhabers" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "Check the password." -msgstr "Überprüfen Sie das Passwort." +msgid "John Doe" +msgstr "Max Muster" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "Instance not found." -msgstr "Die Instanz wurde nicht gefunden." +msgid "Legal name of the person holding the account." +msgstr "Rechtsgültiger Name des Kontoinhabers." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "Description" -msgstr "Beschreibung" +msgid "The request reached a timeout, check your connection." +msgstr "" +"Die Anfrage hat ihr Zeitlimit erreicht, überprüfen Sie bitte Ihre " +"Internetverbindung." + +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#, c-format +msgid "The request was cancelled." +msgstr "Die Anfrage wurde abgebrochen." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, fuzzy, c-format msgid "" -"Helps you remember where this access token is being used before deleting it." +"Too many requests were made to the server and this action was throttled." msgstr "" -"Dies hilft Ihnen zur Erinnerung, wo dieser Zugangstoken verwendet wird, " -"bevor Sie ihn löschen." +"Es wurden gleichzeitig zu viele Anfragen an denselben Server gestellt, daher " +"ist diese Aktion gedrosselt worden." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 -#, c-format -msgid "Duration" -msgstr "Gültigkeitszeitraum" +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#, fuzzy, c-format +msgid "The server's response was malformed, please report." +msgstr "Die Antwort des Servers auf die Anfrage war fehlerhaft." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "Time the access token will be valid." -msgstr "Der Zeitraum, in dem der Zugangstoken gültig ist." - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 -#, fuzzy, c-format -msgid "Refreshable access tokens can pose a security risk!" -msgstr "Aktualisierbare Token können ein Sicherheitsrisiko darstellen!" +msgid "Could not complete the request due to a network problem." +msgstr "" +"Die Anfrage konnte aufgrund eines Netzwerkproblems nicht abgeschlossen " +"werden." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, fuzzy, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." -msgstr "" -"Aktualisierbare Token können vor Ablauf ihrer Lebensdauer aktualisiert " -"werden, wodurch alle ihre Besitzer effektiv eine zeitlich unbegrenzte " -"Zugangsberechtigung haben würde. Verwenden Sie diese daher nur, wenn Sie " -"wissen, was Sie tun und die damit verbundenen Risiken insbesondere im " -"Hinblick auf den zugewiesenen Einsatzbereich der Berechtigung richtig " -"einschätzen können." +msgid "Unexpected request error, please report." +msgstr "Unerwarteter Fehler bei der Anfrage." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Scope" -msgstr "Einsatzbereich des Zugangstokens" +msgid "Unexpected error." +msgstr "Unerwarteter Fehler." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "login" msgstr "" -"Der Einsatzbereich definiert die Berechtigungen eines Zugangstokens. Bei " -"aktualisierbaren Token können ihre Besitzer die Gültigkeitszeit unbegrenzt " -"verlängern." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "Allows all operations without limit." -msgstr "Dies erlaubt alle Vorgänge ohne jede Einschränkung." +msgid "Logged in" +msgstr "Sie sind angemeldet" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 -#, c-format -msgid "Allows all operations to read information." -msgstr "Dies ermöglicht allen Vorgängen, Informationen zu lesen." - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 -#, c-format -msgid "Allows the creation of orders and checking of payment status." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen sowie die " -"Überprüfung des Zahlungsstatus." +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 +#, fuzzy, c-format +msgid "Wrong password." +msgstr "Ich habe mein Passwort vergessen" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 -#, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " -"Überprüfung des Zahlungsstatus und das Sperren des Lagerbestands." +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 +#, fuzzy, c-format +msgid "The account doesn't exist." +msgstr "Die Bestellung existiert nicht" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " -"Überprüfung des Zahlungsstatus sowie Rückerstattungen." +msgid "Login required" +msgstr "Anmeldung erforderlich" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, das " -"Sperren des Lagerbestands sowie Rückerstattungen." +msgid "Instance name." +msgstr "Name zur Anmeldung im Taler-Händlerportal." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." -msgstr "" -"Dies ermöglicht allen Vorgängen das Einlesen von Informationen mit einer " -"verlängerbaren Verfallszeit." +msgid "Instance password." +msgstr "Passwort für den Zugang zum Händlerportal." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen sowie die " -"Überprüfung des Zahlungsstatus mit verlängerbarer Verfallszeit." +msgid "Forgot password" +msgstr "Ich habe mein Passwort vergessen" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " -"Überprüfung des Zahlungsstatus sowie das Sperren des Lagerbestands mit " -"verlängerbarer Verfallszeit." +msgid "Create new account" +msgstr "Neues Benutzerkonto erstellen" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " -"Überprüfung des Zahlungsstatus sowie Rückerstattungen mit verlängerbarer " -"Verfallszeit." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." -msgstr "" -"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " -"Überprüfung des Zahlungsstatus sowie das Sperren des Lagerbestands und " -"Rückerstattungen mit verlängerbarer Verfallszeit." +msgctxt "title" +msgid "%1$s: Settings" +msgstr "%1$s: Einstellungen" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, c-format -msgid "All (refreshable)" -msgstr "Alle (aktualisierbar)" +msgctxt "title" +msgid "%1$s: New bank account" +msgstr "%1$s: Neues Bankkonto" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, c-format -msgid "Spa" -msgstr "SPA" +msgctxt "title" +msgid "%1$s: Bank accounts" +msgstr "%1$s: Bankkonten" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Spa (refreshable)" -msgstr "SPA (aktualisierbar)" +msgctxt "title" +msgid "%1$s: Update bank Account" +msgstr "%1$s: Bankkonto aktualisieren" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Choose one" -msgstr "Bitte wählen Sie eine Option aus" +msgctxt "title" +msgid "%1$s: Orders" +msgstr "%1$s: Bestellungen" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Read only" -msgstr "Schreibgeschützt" +msgctxt "title" +msgid "%1$s: New order" +msgstr "%1$s: Neue Bestellung" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "All" -msgstr "Alle" +msgctxt "title" +msgid "%1$s: Inventory" +msgstr "%1$s: Lagerbestand" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "Order simple" -msgstr "Einfache Bestellungen" +msgctxt "title" +msgid "%1$s: New product" +msgstr "%1$s: Neuer Artikel" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "Order Point-of-Sale" -msgstr "Bestellungen an der Verkaufsstelle (POS)" +msgctxt "title" +msgid "%1$s: Update product" +msgstr "%1$s: Artikel aktualisieren" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "Order management" -msgstr "Verwaltung der Bestellungen" +msgctxt "title" +msgid "%1$s: Category" +msgstr "%1$s: Kategorie" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "Order full" -msgstr "Komplexe Bestellungen" +msgctxt "title" +msgid "%1$s: New category" +msgstr "%1$s: Neue Kategorie" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "Read only (refreshable)" -msgstr "Schreibgeschützt (aktualisierbar)" +msgctxt "title" +msgid "%1$s: Update category" +msgstr "%1$s: Kategorie aktualisieren" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Order simple (refreshable)" -msgstr "Einfache Bestellungen (aktualisierbar)" +msgctxt "title" +msgid "%1$s: Wire transfers" +msgstr "%1$s: Überweisungen" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Order Point-of-Sale (refreshable)" -msgstr "Bestellungen an der Verkaufsstelle (aktualisierbar)" +msgctxt "title" +msgid "%1$s: Webhooks" +msgstr "%1$s: Webhooks" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Order management (refreshable)" -msgstr "Verwaltung der Bestellungen (aktualisierbar)" +msgctxt "title" +msgid "%1$s: New webhook" +msgstr "%1$s: Neuer Webhook" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Order full (refreshable)" -msgstr "Komplexe Bestellungen (aktualisierbar)" +msgctxt "title" +msgid "%1$s: Update webhook" +msgstr "%1$s: Webhook aktualisieren" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Current password" -msgstr "Aktuelles Passwort dieser Instanz" +msgctxt "title" +msgid "%1$s: OTP devices" +msgstr "%1$s: OTP-Geräte" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Please complete the marked fields" -msgstr "Bitte füllen Sie die Felder mit verpflichtenden Angaben aus" +msgctxt "title" +msgid "%1$s: New OTP device" +msgstr "%1$s: Neues OTP-Gerät" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Access token created" -msgstr "Zugangstoken wurde erzeugt" +msgctxt "title" +msgid "%1$s: Update OTP device" +msgstr "%1$s: OTP-Gerät aktualisieren" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." -msgstr "" -"Kopieren und speichern Sie den Zugangstoken sofort, da Sie ihn nicht erneut " -"abrufen können." +msgctxt "title" +msgid "%1$s: New template" +msgstr "%1$s: Neue Vorlage" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Token" -msgstr "Zugangstoken" +msgctxt "title" +msgid "%1$s: Update template" +msgstr "%1$s: Vorlage aktualisieren" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "This token will never expire" -msgstr "Dieser Zugangstoken wird nie ungültig" +msgctxt "title" +msgid "%1$s: Templates" +msgstr "%1$s: Vorlagen" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "This token will be available until %1$s" -msgstr "Dieser Zugangstoken ist verfügbar bis %1$s" +msgctxt "title" +msgid "%1$s: Use template" +msgstr "%1$s: Vorlage verwenden" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "No 'admin' instance configured yet." -msgstr "Es wurde noch keine Instanz 'admin' konfiguriert." +msgctxt "title" +msgid "%1$s: Personalization" +msgstr "%1$s: Personalisierung" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -"Erstellen Sie eine Instanz 'admin', um Merchant Backoffice erstmalig zu " -"verwenden." -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "Create access token" -msgstr "Zugangstoken erzeugen" +msgctxt "title" +msgid "%1$s: New token family" +msgstr "%1$s: Neue Tokenfamilie" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, c-format -msgid "Load more devices before the first one" -msgstr "Mehr Geräte vor ein erstes Gerät laden" +msgctxt "title" +msgid "%1$s: Update token family" +msgstr "%1$s: Tokenfamilie aktualisieren" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, c-format -msgid "Load first page" -msgstr "Erste Seite laden" +msgctxt "title" +msgid "%1$s: Access tokens" +msgstr "%1$s: Zugangstoken" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, c-format -msgid "Created at" -msgstr "Erstellungsdatum" +msgctxt "title" +msgid "%1$s: New access token" +msgstr "%1$s: Neuer Zugangstoken" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New POS access token" +msgstr "%1$s: Neuer Zugangstoken" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "Expires at" -msgstr "Wird ungültig zum Zeitpunkt" +msgctxt "title" +msgid "New instance" +msgstr "Neue Instanz" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "Never" -msgstr "Nie" +msgctxt "title" +msgid "Instances" +msgstr "Instanzen" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "Remove this access token" -msgstr "Diesen Zugangstoken entfernen" +msgid "Testing environment" +msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 +#, c-format +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 #, c-format msgid "Delete" msgstr "Löschen" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 #, c-format -msgid "Load more devices after the last one" -msgstr "Mehr Geräte nach dem letzten Gerät laden" +msgid "Add new instance" +msgstr "Neue Instanz hinzufügen" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 #, c-format -msgid "Load next page" -msgstr "Nächste Seite laden" +msgid "ID" +msgstr "ID" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" -msgstr "" -"Es bestehen noch keine aktiven Sitzungen, Sie können diese mit dem +-Zeichen " -"hinzufügen" +msgid "Name" +msgstr "Name" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 #, c-format -msgid "Forbidden." -msgstr "Unzulässig." +msgid "Edit" +msgstr "Bearbeiten" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 #, c-format -msgid "Delete access token" -msgstr "Zugangstoken löschen" +msgid "Change password" +msgstr "Passwort ändern" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 #, c-format -msgid "Deleting an access token cannot be undone." -msgstr "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." +msgid "Purge" +msgstr "Vollständig verwerfen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 #, c-format -msgid "This is not a valid Bitcoin address." -msgstr "Dies ist keine gültige Bitcoin-Adresse." +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" +"Es gibt noch keine Instanzen. Sie können diese mit dem +-Zeichen hinzufügen." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, fuzzy, c-format +msgid "delete instance" +msgstr "Instanz löschen" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 #, c-format -msgid "This is not a valid Ethereum address." -msgstr "Dies ist keine zulässige Ethereum-Adresse." +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "Instanz \"%1$s\" (ID: %2$s) wurde gelöscht." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 #, c-format -msgid "This is not a valid host." -msgstr "Dies ist kein gültiger Host." +msgid "Unauthorized." +msgstr "Nicht autorisiert." -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 #, c-format -msgid "IBANs usually have more than 4 digits." -msgstr "Eine IBAN besteht normalerweise aus mehr als 4 Ziffern." +msgid "Not found." +msgstr "Die Information wurde nicht gefunden." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 #, c-format -msgid "IBANs usually have fewer than 34 digits." -msgstr "Eine IBAN besteht normalerweise aus weniger als 34 Ziffern." +msgid "Conflict." +msgstr "" +"Es besteht ein Konflikt zwischen erwarteter und gesendeter Information." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 #, c-format -msgid "The IBAN's country code could not be retrieved." -msgstr "Der IBAN-Ländercode wurde nicht gefunden." +msgid "Only show active instances" +msgstr "Zeige nur aktive Instanzen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." -msgstr "Die IBAN-Nummer ist ungültig, die Prüfsumme ist falsch." +msgid "Active" +msgstr "Aktiv" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 #, c-format -msgid "This account is not allowed." -msgstr "Dieses Konto ist nicht zulässig." +msgid "Only show deleted instances" +msgstr "Zeige nur gelöschte Instanzen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 #, c-format -msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" -msgstr "" -"Keine der gängigen Übertragungsmethoden des Servers wird zurzeit von dieser " -"Anwendung unterstützt. Server-Einstellungen: %1$s" +msgid "Deleted" +msgstr "Gelöscht" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 #, c-format -msgid "Wire method" -msgstr "Überweisungsmethode" +msgid "Show all instances" +msgstr "Zeige alle Instanzen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 #, c-format -msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." -msgstr "" -"Wählen Sie die Methode, mit der Sie Ihre Einnahmen an Ihr Geschäftskonto " -"überweisen möchten." +msgid "All" +msgstr "Alle" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 #, c-format -msgid "Select a wire method..." -msgstr "Wählen Sie eine Überweisungsmethode..." +msgid "Delete instance" +msgstr "Instanz löschen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 #, c-format -msgid "Routing" -msgstr "Bankleitzahlensystem" +msgid "Delete the instance \"%1$s\"" +msgstr "Instanz \"%1$s\" löschen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format -msgid "Routing number" -msgstr "Bankleitzahl" +msgid "" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" +msgstr "" +"Wenn Sie die Instanz mit der Bezeichnung %1$s (ID: %2$s) löschen, wird sie " +"keine weiteren Bestellungen oder Rückerstattungen bearbeiten können" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Account" -msgstr "Konto" +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." +msgstr "" +"Dieser Vorgang löscht den privaten Schlüssel der Instanz, lässt jedoch alle " +"Transaktionsdaten unberührt. Sie können daher auch weiterhin nach der " +"Löschung der Instanz auf diese Daten zugreifen." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 #, c-format -msgid "Account number" -msgstr "Kontonummer" +msgid "Deleting an instance %1$s" +msgstr "Löschung der Instanz %1$s" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 #, c-format -msgid "Code" -msgstr "Code" +msgid "This cannot be undone!" +msgstr "Das kann nicht rückgängig gemacht werden!" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 #, c-format -msgid "Business Identifier Code" -msgstr "Business Identifier Code (BIC)" +msgid "Purge the instance" +msgstr "Instanz löschen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 #, c-format -msgid "International Bank Account Number" -msgstr "IBAN (Internationale Bankkontonummer)" +msgid "Purge the instance \"%1$s\"" +msgstr "Instanz \"%1$s\" wird endgültig verworfen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" -msgstr "Ihre IBAN, z.B. CH12 0000 1111 2222 3333 00" +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" +msgstr "" +"Falls Sie die Instanz %1$s (ID: %2$s) vollständig verwerfen, löschen Sie " +"damit auch unwiderruflich alle Transaktionsdaten!" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "Unified Payment Interface" -msgstr "Unified Payment Interface (UPI)" +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." +msgstr "" +"Die Instanz wird von Ihrer Liste gestrichen und alle ihre Daten werden nicht " +"mehr zugänglich sein." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, c-format -msgid "Bitcoin protocol" -msgstr "Bitcoin-Protokoll" +msgid "Purging an instance %1$s" +msgstr "Die Instanz %1$s wird endgültig verworfen" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 +#, fuzzy, c-format +msgid "create access token" +msgstr "Zugangstoken erzeugen" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "Ethereum protocol" -msgstr "Ethereum-Protokoll" +msgid "Check the password." +msgstr "Überprüfen Sie das Passwort." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "Interledger protocol" -msgstr "Interledger-Protokoll" +msgid "Instance not found." +msgstr "Die Instanz wurde nicht gefunden." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "Description" +msgstr "Beschreibung" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 +#, fuzzy, c-format +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -"Geben Sie die Daten ohne Schema ein. Ein Pfad kann darin enthalten sein:" +"Dies hilft Ihnen zur Erinnerung, wo dieser Zugangstoken verwendet wird, " +"bevor Sie ihn löschen." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "Cyclos host" -msgstr "" +msgid "Duration" +msgstr "Gültigkeitszeitraum" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 +#, c-format +msgid "Time the access token will be valid." +msgstr "Der Zeitraum, in dem der Zugangstoken gültig ist." + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, fuzzy, c-format -msgid "cyclos account" -msgstr "Alle Konten" +msgid "Refreshable access tokens can pose a security risk!" +msgstr "Aktualisierbare Token können ein Sicherheitsrisiko darstellen!" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 +#, fuzzy, c-format +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." +msgstr "" +"Aktualisierbare Token können vor Ablauf ihrer Lebensdauer aktualisiert " +"werden, wodurch alle ihre Besitzer effektiv eine zeitlich unbegrenzte " +"Zugangsberechtigung haben würde. Verwenden Sie diese daher nur, wenn Sie " +"wissen, was Sie tun und die damit verbundenen Risiken insbesondere im " +"Hinblick auf den zugewiesenen Einsatzbereich der Berechtigung richtig " +"einschätzen können." + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Name of the account holder" -msgstr "Name des Kontoinhabers" +msgid "Scope" +msgstr "Einsatzbereich des Zugangstokens" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "John Doe" -msgstr "Max Muster" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." +msgstr "" +"Der Einsatzbereich definiert die Berechtigungen eines Zugangstokens. Bei " +"aktualisierbaren Token können ihre Besitzer die Gültigkeitszeit unbegrenzt " +"verlängern." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "Legal name of the person holding the account." -msgstr "Rechtsgültiger Name des Kontoinhabers." +msgid "Allows all operations without limit." +msgstr "Dies erlaubt alle Vorgänge ohne jede Einschränkung." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "Invalid url" -msgstr "ungültige URL" +msgid "Allows all operations to read information." +msgstr "Dies ermöglicht allen Vorgängen, Informationen zu lesen." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "URL must end with a '/'" -msgstr "Die URL muss mit '/' enden" +msgid "Allows the creation of orders and checking of payment status." +msgstr "" +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen sowie die " +"Überprüfung des Zahlungsstatus." + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." +msgstr "" +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " +"Überprüfung des Zahlungsstatus und das Sperren des Lagerbestands." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "URL must not contain params" -msgstr "Die URL darf keine Parameter enthalten" +msgid "Allows the creation of orders, checking of payment status and refunds." +msgstr "" +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " +"Überprüfung des Zahlungsstatus sowie Rückerstattungen." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format -msgid "URL must not hash param" -msgstr "Die URL darf keinen Hash-Parameter enthalten" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." +msgstr "" +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, das " +"Sperren des Lagerbestands sowie Rückerstattungen." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Conflict" -msgstr "Konflikt" +msgid "" +"Allows all operations to read information with extendable expiration time." +msgstr "" +"Dies ermöglicht allen Vorgängen das Einlesen von Informationen mit einer " +"verlängerbaren Verfallszeit." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "Server replied with \"bad request\"." -msgstr "Der Server antwortete mit \"bad request\"." +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." +msgstr "" +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen sowie die " +"Überprüfung des Zahlungsstatus mit verlängerbarer Verfallszeit." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format -msgid "Unauthorized, check credentials." +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." msgstr "" -"Unzulässiger Vorgang, bitte die Zugangsdaten (Token, Anmeldename, Passwort) " -"überprüfen." +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " +"Überprüfung des Zahlungsstatus sowie das Sperren des Lagerbestands mit " +"verlängerbarer Verfallszeit." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." msgstr "" -"Die Gegenstelle scheint keine Taler-Einzahlungsschnittstelle (Taler Revenue " -"API) zu sein." +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " +"Überprüfung des Zahlungsstatus sowie Rückerstattungen mit verlängerbarer " +"Verfallszeit." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." msgstr "" -"Die Anfrage war richtig gestellt, doch der Server der Bank antwortete nicht " -"mit dem passenden Wert (für 'credit_account'), so dass wir nicht bestätigen " -"können, dass es sich um dasselbe Bankkonto handelt." +"Dies ermöglicht die Erstellung von Bestellungen und Barrechnungen, die " +"Überprüfung des Zahlungsstatus sowie das Sperren des Lagerbestands und " +"Rückerstattungen mit verlängerbarer Verfallszeit." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 #, c-format -msgid "Unsupported type of account" -msgstr "Nicht unterstützter Kontotyp" +msgid "All (refreshable)" +msgstr "Alle (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "Account:" -msgstr "Konto:" +msgid "Spa" +msgstr "SPA" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." -msgstr "" -"Wenn die kontoführende Bank die Schnittstelle Taler Revenue API unterstützt, " -"können Sie die untenstehende Gegenstelle (endpoint URL) hinzufügen, um die " -"Umsatzinformationen zwischen dem Backend und dem Bankkonto zu " -"synchronisieren." +msgid "Spa (refreshable)" +msgstr "SPA (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "Endpoint URL" -msgstr "Gegenstelle (endpoint URL)" +msgid "Choose one" +msgstr "Bitte wählen Sie eine Option aus" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" -msgstr "Informationsquelle zu eingehenden Überweisungen auf dieses Bankkonto" +msgid "Read only" +msgstr "Schreibgeschützt" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "Auth type" -msgstr "Authentifizierungsmethode" +msgid "Order simple" +msgstr "Einfache Bestellungen" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "Choose the authentication type for the account info URL" -msgstr "" -"Wählen Sie die Authentifizierungsmethode zum Zugriff auf das Bankkonto, um " -"die eingegangenen Überweisungen abzufragen" +msgid "Order Point-of-Sale" +msgstr "Bestellungen an der Verkaufsstelle (POS)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "Without authentication" -msgstr "Ohne Authentifizierung" +msgid "Order management" +msgstr "Verwaltung der Bestellungen" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "With username and password" -msgstr "Mit Benutzername und Passwort" +msgid "Order full" +msgstr "Komplexe Bestellungen" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "With token" -msgstr "Mit Zugangstoken" +msgid "Read only (refreshable)" +msgstr "Schreibgeschützt (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Do not change" -msgstr "Lassen Sie dies unverändert" +msgid "Order simple (refreshable)" +msgstr "Einfache Bestellungen (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Username to access the account information." -msgstr "Benutzername für den Zugriff auf die Kontoinformationen." +msgid "Order Point-of-Sale (refreshable)" +msgstr "Bestellungen an der Verkaufsstelle (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "Password to access the account information." -msgstr "Passwort für den Zugriff auf die Kontoinformationen." +msgid "Order management (refreshable)" +msgstr "Verwaltung der Bestellungen (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "Access token to access the account information." -msgstr "Zugangstoken für den Zugriff auf die Kontoinformationen." +msgid "Order full (refreshable)" +msgstr "Komplexe Bestellungen (aktualisierbar)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Match" -msgstr "Übereinstimmung" +msgid "Current password" +msgstr "Aktuelles Passwort dieser Instanz" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Check where the information match against the server info." -msgstr "" -"Prüfung der Übereinstimmung dieser Information und der Daten auf dem Server." +msgid "Please complete the marked fields" +msgstr "Bitte füllen Sie die Felder mit verpflichtenden Angaben aus" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Compare info from server with account form" -msgstr "Vergleich der Information des Servers mit den Bankkonto-Formulardaten" +msgid "Confirm operation" +msgstr "Vorgang bestätigen" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Test" -msgstr "Test" +msgid "Access token created" +msgstr "Zugangstoken wurde erzeugt" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Server didn't like the request we made." -msgstr "Der Server war mit unserer Anfrage nicht einverstanden." +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." +msgstr "" +"Kopieren und speichern Sie den Zugangstoken sofort, da Sie ihn nicht erneut " +"abrufen können." -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Account details" -msgstr "Kontodetails" +msgid "Token" +msgstr "Zugangstoken" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Check if the information matches the server info." -msgstr "" -"Bitte prüfen Sie, ob die Information und die Daten auf dem Server " -"übereinstimmen." +msgid "This token will never expire" +msgstr "Dieser Zugangstoken wird nie ungültig" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "The bank account has been deleted." -msgstr "Die Verknüpfung mit dem Bankkonto wurde erfolgreich gelöscht." +msgid "This token will be available until %1$s" +msgstr "Dieser Zugangstoken ist verfügbar bis %1$s" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 -#, fuzzy, c-format -msgid "Delete account" -msgstr "Wählen Sie ein Konto" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 +#, c-format +msgid "Create access token" +msgstr "Zugangstoken erzeugen" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 -#, fuzzy, c-format -msgid "Delete the account \"%1$s\"" -msgstr "Artikel \"%1$s\" löschen" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 +#, c-format +msgid "Load more devices before the first one" +msgstr "Mehr Geräte vor ein erstes Gerät laden" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "Invalid payto: \"%1$s\"" -msgstr "" +msgid "Load first page" +msgstr "Erste Seite laden" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" -msgstr "" -"Wenn Sie das Konto mit der Bezeichnung %1$s löschen, gehen alle zugehörigen " -"Informationen verloren" +msgid "Created at" +msgstr "Erstellungsdatum" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 -#, fuzzy, c-format -msgid "Deleting an account can't be undone." -msgstr "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 +#, c-format +msgid "Expires at" +msgstr "Wird ungültig zum Zeitpunkt" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Bank accounts" -msgstr "Bankkonten" +msgid "Never" +msgstr "Nie" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "Add new account" -msgstr "Neues Konto hinzufügen" +msgid "Remove this access token" +msgstr "Diesen Zugangstoken entfernen" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "Owner's name" -msgstr "Name des Kontoinhabers" +msgid "Load more devices after the last one" +msgstr "Mehr Geräte nach dem letzten Gerät laden" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Delete selected accounts from the database" -msgstr "Löschen ausgewählter Konten von der Datenbank" +msgid "Load next page" +msgstr "Nächste Seite laden" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -"Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen " +"Es bestehen noch keine aktiven Sitzungen, Sie können diese mit dem +-Zeichen " "hinzufügen" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 +#, fuzzy, c-format +msgid "delete access token" +msgstr "Zugangstoken löschen" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "You must provide a bank account to receive payments." -msgstr "" -"Sie müssen ein Bankkonto verknüpfen, um Einnahmen an dieses Konto zu " -"überweisen." +msgid "Forbidden." +msgstr "Unzulässig." -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 +#, fuzzy, c-format +msgid "New point-of-sale access" +msgstr "Bestellungen an der Verkaufsstelle (POS)" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." -msgstr "" -"Ohne diese Informationen können Sie keine neuen Zahlungsabwicklungen " -"erstellen, die an ein Bankkonto überwiesen werden." +msgid "Delete access token" +msgstr "Zugangstoken löschen" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 +#, c-format +msgid "Deleting an access token cannot be undone." +msgstr "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format msgid "Invalid. Please use only letters and numbers." msgstr "Ungültig. Bitte geben Sie nur Buchstaben und Zahlen ein." -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 +#, fuzzy, c-format +msgid "add category" +msgstr "Die Kategorie konnte nicht hinzugefügt werden" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" -msgstr "Name" +msgid "Not found" +msgstr "Nicht gefunden" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "Kategoriename" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete category" +msgstr "Benennung der Kategorie (Warengruppe)" + +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format msgid "Category deleted" msgstr "Die Kategorie wurde gelöscht" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format msgid "Add new devices" msgstr "Neue Geräte hinzufügen" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 -#, c-format -msgid "ID" -msgstr "ID" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "Gesamte Artikelmenge" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "Ausgewählte Kategorie aus der Datenbank löschen" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" "Es gibt noch keine Kategorien. Sie können diese mit dem +-Zeichen hinzufügen" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, fuzzy, c-format +msgid "update category" +msgstr "%1$s: Kategorie aktualisieren" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "ID:" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "Benennung der Kategorie (Warengruppe)" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "Artikel" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "Bild" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "Weitere Artikel nach dem letzten laden" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "Es befinden sich keine Artikel in dieser Kategorie." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 +#, fuzzy, c-format +msgid "create product group" +msgstr "Artikel" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete product group" +msgstr "Artikel löschen" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Product group deleted" +msgstr "Artikelliste" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new group" +msgstr "Neues Konto hinzufügen" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, fuzzy, c-format +msgid "Load more groups before the first one" +msgstr "Mehr Webhooks vor dem ersten laden" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 +#, fuzzy, c-format +msgid "Delete selected group from the database" +msgstr "Löschen ausgewählter Konten von der Datenbank" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 +#, fuzzy, c-format +msgid "Load more groups after the last one" +msgstr "Weitere Artikel nach dem letzten laden" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#, fuzzy, c-format +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "" +"Es gibt noch keine Artikel. Sie können diese mit dem +-Zeichen hinzufügen" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 #, c-format msgid "Account's KYC status" msgstr "KYC-Status des Bankkontos" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 #, c-format msgid "Exchange" msgstr "Zahlungsdienstleister" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 #, c-format msgid "Status" msgstr "Status" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 -#, c-format -msgid "Ok" -msgstr "OK" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 -#, c-format -msgid "Action required" -msgstr "" -"Sie müssen noch eine Aktion ausführen (eine Überweisung oder eine KYC-" -"Prüfung ist erforderlich)" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 -#, c-format -msgid "Warning" -msgstr "Warnung" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 -#, c-format -msgid "Error" -msgstr "Fehler" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "Eine Bankkonto-Verifizierung ist erforderlich." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "Weitere Informationen sind erforderlich." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 -#, c-format -msgid "Awaiting for account review." +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 +#, fuzzy, c-format +msgid "Awaiting account review." msgstr "Es wird auf die Überprüfung des Kontos gewartet." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "Bereit zum Einsatz" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "Die Daten werden eingelesen..." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." @@ -2245,25 +2502,26 @@ msgstr "" "Interner Fehler des Zahlungsdiensts. Wenden Sie sich an den Administrator " "oder prüfen Sie später erneut." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, fuzzy, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" "Interner Fehler im Backend. Wenden Sie sich an den Administrator oder prüfen " "Sie später erneut." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" "Zeitüberschreitung der Antwort des Zahlungsdiensts. Wenden Sie sich an den " "Administrator oder prüfen Sie später erneut." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." @@ -2271,22 +2529,22 @@ msgstr "" "Der Zahlungsdienst ist nicht erreichbar. Wenden Sie sich an den " "Administrator oder prüfen Sie später erneut." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "Inkompatibles Kernbankensystem." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 -#, c-format -msgid "Backend internal error. Contact administrator or check again later." +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 +#, fuzzy, c-format +msgid "Server internal error. Contact administrator or check again later." msgstr "" "Interner Fehler im Backend. Wenden Sie sich an den Administrator oder prüfen " "Sie später erneut." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " @@ -2295,97 +2553,106 @@ msgstr "" "Die Antwort des Zahlungsdiensts ist ungültig. Wenden Sie sich an den " "Administrator oder prüfen Sie später erneut." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "Eine KYC-Prüfung ist nicht (mehr) ausstehend!" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "Ok" +msgstr "OK" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 +#, fuzzy, c-format +msgid "The account for wire transfers is invalid." msgstr "Das Konto für Überweisungen scheint nicht gültig zu sein" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 -#, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 +#, fuzzy, c-format +msgid "The server responded with \"%1$s\" which is invalid." msgstr "Das Backend hat mit \"%1$s\" geantwortet, was ungültig ist." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" -msgstr "Es sind keine Schlüssel des Exchange vorhanden" +msgid "No contact with the payment service yet." +msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 -#, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 +#, fuzzy, c-format +msgid "The server is still synchronizing with the payment service provider." msgstr "Das Backend synchronisiert zurzeit noch mit dem Zahlungsdienst." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, fuzzy, c-format msgid "No transfers can be made from this account" msgstr "Von diesem Bankkonto kann keine Überweisung erfolgen" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, fuzzy, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" "Das Kernbankensystem kann keine Überweisungen zwischen dem Bankkonto des " "Zahlungsdiensts und Ihren Bankkonten durchführen. Daher können Sie diesen " "Zahlungsdienst nicht nutzen. Der Taler Exchange." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "Test" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, fuzzy, c-format msgid "The payment service provider requires more information." msgstr "Der Zahlungsdienst verlangt mehr Informationen." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "Klicken Sie hier, um diesen Schritt abzuschließen." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" "Bitte warten Sie auf die Erzeugung des Zugangstokens und prüfen diese zu " "einem späteren Zeitpunkt erneut." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "Eine AML-Überprüfung steht noch aus" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, fuzzy, c-format msgid "" "This account cannot be used. The payment service provider must verify the " @@ -2394,38 +2661,38 @@ msgstr "" "Dieses Konto kann nicht verwendet werden. Der Zahlungsdienst führt eine " "manuelle Überprüfung der Kontoinformationen durch." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, fuzzy, c-format msgid "" "This account has been successfully configured for use with the payment " "service provider." msgstr "Dieses Konto ist bereit für die Nutzung mit diesem Zahlungsdienst." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "Logischer Fehler" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 -#, c-format +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 +#, fuzzy, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" "Das Backend hat einen internen Fehler festgestellt. Wenden Sie sich an den " "Systemadministrator oder prüfen Sie später erneut." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "Interner Systemfehler" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " @@ -2434,8 +2701,8 @@ msgstr "" "Interner Fehler des Zahlungsdiensts. Wenden Sie sich an den Administrator " "oder prüfen Sie später erneut." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, fuzzy, c-format msgid "" "The merchant service provider detected an internal error, contact the system " @@ -2444,19 +2711,19 @@ msgstr "" "Interner Fehler des Zahlungsdiensts. Wenden Sie sich an den Administrator " "oder prüfen Sie später erneut." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, fuzzy, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" "Das Backend konnte den Zahlungsdienst aufgrund einer Zeitüberschreitung " "nicht kontaktieren. Wenden Sie sich an den Systemadministrator oder prüfen " "Sie später erneut." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " @@ -2465,20 +2732,20 @@ msgstr "" "Der Zahlungsdienst ist zurzeit nicht erreichbar. Wenden Sie sich an den " "Administrator oder prüfen Sie später erneut." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, fuzzy, c-format msgid "Unsupported account" msgstr "Nicht unterstützter Kontotyp" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, fuzzy, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2488,10 +2755,16 @@ msgstr "" "sich an den Systemadministrator oder prüfen Sie später erneut." #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "Wert annullieren" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" -msgstr "Wert auf unbekanntes Datum ändern" +msgid "Change value to never" +msgstr "Wert auf „nie“ setzen" #. screenid: 12 #: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:109 @@ -2500,7 +2773,7 @@ msgid "Enter description or id" msgstr "Geben Sie die Beschreibung oder eine ID ein" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "Für diese Beschreibung oder ID wurde keine Übereinstimmung gefunden." @@ -2513,12 +2786,12 @@ msgstr "Sie müssen eine gültige Artikelkennung eingeben." #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 -#, c-format -msgid "Quantity must be greater than 0!" +#, fuzzy, c-format +msgid "Quantity must be greater than zero." msgstr "Die Menge muss größer als 0 sein!" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2528,49 +2801,55 @@ msgstr "" "Inventar ohne Vorbestellung." #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "Artikel suchen" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "Menge" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "Wie viele Artikel hinzugefügt werden" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, fuzzy, c-format +msgid "Add it to the order" +msgstr "Summe der Bestellung" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" -msgstr "Vom Bestand hinzufügen" +msgid "Invalid" +msgstr "Ungültig" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "Für diesen Artikel ist ein Steuersatz von %1$s angelegt." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "Für diesen Artikel sind keine Steuern angelegt." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "Betrag" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2580,7 +2859,7 @@ msgstr "" "für Verkäufe normalerweise verwendet wird." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2590,116 +2869,116 @@ msgstr "" ""CH:2.3" oder "EUR:2,3"." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" "Offizielle Bezeichnung der Steuer, z.B. Mehrwertsteuer oder Einfuhrsteuer." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "Steuersatz zur Liste der Steuern hinzufügen" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "Bisher nicht inventarisierte Artikel beschreiben und hinzufügen" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "Individuellen Artikel hinzufügen" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "Informationen zum Artikel vervollständigen" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "Dieser Wert muss eine Nummer sein." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "Dieser Wert muss größer als Null sein." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "Abbildung des Artikels." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "Vollständige Artikelbeschreibung." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "Art der Mengeneinheit" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "Bezeichnung der Einheit des Artikels." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "Preis pro Mengeneinheit" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "Betrag in der aktuellen Währung." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "Wie viele Artikel hinzugefügt werden." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "Steuern" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "Gesamtpreis" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "Dieser Wert muss größer als Null sein" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "Es sollte eine Rückerstattungsfrist geben" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" @@ -2707,156 +2986,168 @@ msgstr "" "erfolgen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "Dieser Wert sollte in der Zukunft liegen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" "Es müssen entweder fulfillment-URL oder fulfillment message angegeben werden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 -#, c-format -msgid "is not a valid URL" -msgstr "ist keine gültige URL" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, fuzzy, c-format +msgid "Invalid URL" +msgstr "Ungültig" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 +#, fuzzy, c-format +msgid "create order" +msgstr "Bestellung erzeugen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, c-format +msgid "Conflict" +msgstr "Konflikt" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "Der Artikel mit der ID \"%1$s\" ist nicht auf Lager." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 -#, c-format -msgid "No exchange would accept a payment because of KYC requirements." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 +#, fuzzy, c-format +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" "Aufgrund von KYC-Bedingungen, die nicht erfüllt werden, könnte kein " "Zahlungsdienst Buchungen annehmen." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "Artikel in der Bestellung verwalten" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 -#, c-format -msgid "%1$s products with a total price of %2$s." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 +#, fuzzy, c-format +msgid "%1$s products with a total price of %2$s ." msgstr "%1$s Artikel zu einer Gesamtsumme von %2$s." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "Liste der Artikel in der Bestellung verwalten." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "Diesen Artikel aus der Bestellung entfernen." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "Summe der Preise der Artikel" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "Gesamtpreis des Artikels hinzugerechnet" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "Preis eines Artikels" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "Vom Kunden zu zahlender Betrag" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "Endgültiger Bestellwert" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "Zusammenfassung" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "Bezeichnung der Bestellung, die den Kunden angezeigt wird" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "Versand und Lieferung" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "Lieferdatum" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "Vom Händler zugesicherte Zustellfrist." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "Lieferadresse" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "Zustelladresse der Artikel" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "Adresse digitaler Dienstleistung (Fulfillment-URL)" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "URL der von Kunden zu besuchenden Adresse nach erfolgter Bezahlung." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" @@ -2864,7 +3155,7 @@ msgstr "" "Gut)" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" @@ -2872,13 +3163,13 @@ msgstr "" "wird." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "Taler-Zahlungsoptionen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" @@ -2886,13 +3177,13 @@ msgstr "" "diese Bestellung" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "Zahlungsdatum" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2905,19 +3196,19 @@ msgstr "" "Erstellzeit der Bestellung." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "Standardeinstellung" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "Rückerstattungsdatum" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2927,29 +3218,29 @@ msgstr "" "Zeitdauer beginnt mit der Erstellzeit der Bestellungen." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "Zeitpunkt der Überweisung" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 -#, c-format +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 +#, fuzzy, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" "Der Zeitraum, nach dessen Ablauf der Zahlungsdienst die Einnahmen überweist. " "Die Zeitdauer beginnt mit der Erstellzeit der Bestellung." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "Zeitdauer für automatische Rückerstattungen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2959,13 +3250,13 @@ msgstr "" "Rückerstattungen prüft." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "Maximale Gebührenhöhe" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2976,13 +3267,13 @@ msgstr "" "komplett von den Käufern zu übernehmen." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "Token erzeugen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2992,13 +3283,13 @@ msgstr "" "Token, dass die Bestellung von Unberechtigten übernommen werden könnte." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "Mindestalter erforderlich" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -3009,13 +3300,13 @@ msgstr "" "Altersbeschränkungen durch die Artikel selbst festgelegt" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "Das Mindestalter für den Erwerb dieses Artikels ist %1$s" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" @@ -3023,13 +3314,13 @@ msgstr "" "Bestellung" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "Zusätzliche Informationen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" @@ -3037,94 +3328,99 @@ msgstr "" "aufgenommen werden sollen." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" "Sie müssen einen Wert im Format JavaScript Object Notation (JSON) eingeben." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "Entfernen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "Benutzerdefinierter Feldname" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "Deaktiviert" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "Keine Zahlungsfrist" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "Frist bis %1$s" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 -#, c-format -msgid "Select date to show nearby orders" -msgstr "" -"Bitte wählen Sie ein Datum, um die Bestellungen dieses Zeitraums anzuzeigen" +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 +#, fuzzy, c-format +msgid "get product details" +msgstr "Kontodetails" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "Nur unbezahlte Bestellungen anzeigen" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "Nur bezahlte Bestellungen anzeigen" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "Bezahlt" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "Nur Bestellungen mit erfolgter Rückerstattung anzeigen" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "Rückerstattet" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" "Nur bezahlte Bestellungen anzeigen, für welche die Überweisung noch aussteht." #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "Nicht überwiesen" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -3134,215 +3430,258 @@ msgstr "" "Händlerbankkonto überwiesen wurden" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "Überwiesen" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "Alle Filter aufheben" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "Datumsfilter aufheben" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 -#, c-format -msgid "Jump to date (%1$s)" -msgstr "Springe zum Datum (%1$s)" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 +#, fuzzy, c-format +msgid "authorize refund" +msgstr "Unberechtigter Zugriff" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "Nicht mehr vorhanden." #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "Aus rechtlichen Gründen nicht verfügbar." #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "Zur Bestellung mit angegebener Artikel-ID gehen" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "Bestellnummer" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "Datumsfilter aufheben" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "" +"Bitte wählen Sie ein Datum, um die Bestellungen dieses Zeitraums anzuzeigen" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "Springe zum Datum (%1$s)" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "Unbekannte Instanz" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "Unbekannte Bestellung" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, fuzzy, c-format +msgid "This order is not refundable" +msgstr "Grund für die Erstattung dieser Bestellung" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "Bestellung erzeugen" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "Die Instanz existiert nicht" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "Die Bestellung existiert nicht" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "Datum" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "Rückerstattung" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "URL kopieren" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "Nach der letzten Bestellung weitere laden" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "Es wurden keine Bestellungen gefunden, die zu Ihrer Abfrage passen!" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "Dupliziert" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "Dieser Wert übersteigt den erstattungsfähigen Betrag." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "Verboten" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "Nicht mehr vorhanden" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 -#, c-format -msgid "There are pending KYC requirements." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 +#, fuzzy, c-format +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" "Es sind noch KYC-Bedingungen zu erfüllen (Prüfung der wirtschaftlich " "Berechtigten von Konten)." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "Rückerstattung" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "Buchungsvermerk" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "Zu erstattender Betrag" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "Maximale Rückerstattung:" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "Bitte wählen Sie eine Option aus..." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "Vom Käufer angefordert" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "Sonstiges" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "Grund für die Erstattung dieser Bestellung" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "Weitere Informationen für eine genauere Beschreibung" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "jetzt" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 -#, c-format -msgid "This is when the time for making refund has been expired." +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 +#, fuzzy, c-format +msgid "This is when the refund period has expired." msgstr "Zu diesem Zeitpunkt ist die Rückerstattungsfrist abgelaufen." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "Zu diesem Zeitpunkt ist die Zahlungsfrist abgelaufen." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " @@ -3351,66 +3690,77 @@ msgstr "" "Zu diesem Zeitpunkt ist der Aufschub für die Überweisung durch den " "Zahlungsdienst abgelaufen." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "Diese Überweisung wurde vom Zahlungsdienst gemeldet." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, fuzzy, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "Diese Überweisung wurde vom Zahlungsdienst gemeldet." + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "Diese Rückerstattung kann vom Käufer beantragt werden." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "Diese Rückerstattung wurde vom Käufer verlangt." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "Der jetzige Zeitpunkt." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 -#, c-format +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 +#, fuzzy, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" "Diese Rückerstattung kann nicht mehr beantragt werden, da die Zahlung des " "Käufers bereits überwiesen wurde." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "Vertragsbedingungen" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "Für Menschen lesbare Information über den gesamten Kaufvorgang" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "Gesamtpreis der Transaktion" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "URL für diesen Kauf" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "Höchster Gebührenbetrag" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" @@ -3418,19 +3768,19 @@ msgstr "" "tragen will" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "Zeitpunkt, zu dem der Kaufvertrag erstellt wurde" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "Zahlungsfrist" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" @@ -3439,50 +3789,38 @@ msgstr "" "Rechnungsausgleich (Bezahlung durch Käufer)" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "Rückerstattungsfrist" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" "Nach Ablauf dieser Frist werden keine Rückerstattungen mehr akzeptiert." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "Überweisungsfrist" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 -#, c-format -msgid "Transfer deadline for the exchange" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 +#, fuzzy, c-format +msgid "Transfer deadline for the payment service" msgstr "Frist der Überweisung vom Zahlungsdienstleister an das Bankkonto" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 -#, c-format -msgid "Time indicating when the order should be delivered" -msgstr "Zeitangabe, wann die Bestellung geliefert werden soll" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 -#, c-format -msgid "Where the order will be delivered" -msgstr "Zustelladresse der Bestellung" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format msgid "Auto-refund delay" msgstr "Zeitliche Verzögerung der automatischen Rückerstattung" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format msgid "" "How long the wallet should try to get an automatic refund for the purchase" @@ -3491,185 +3829,221 @@ msgstr "" "den Kaufvertrag zu erhalten" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 +#, c-format +msgid "Time indicating when the order should be delivered" +msgstr "Zeitangabe, wann die Bestellung geliefert werden soll" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 +#, c-format +msgid "Where the order will be delivered" +msgstr "Zustelladresse der Bestellung" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "Weitere Informationen" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "Zusätzliche Daten, die nur im Verkäufer-Frontend verarbeitet werden" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "Die Bestellung wurde angelegt" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "Zahlungsfrist" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "Rückerstattungsfrist" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "Lieferung" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "Bestellung" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "Schon für jemanden reserviert" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "Reserviert für" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "Zeitleiste" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "Zahlungsdetails" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "Bestellstatus" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "Noch nicht bezahlt" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "Artikelliste" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 +#, fuzzy, c-format +msgid "The contract terms have a v1 order without choices_index." +msgstr "" +"Die Vertragsbedingungen haben eine Bestellung der Version v1 (ohne " +"choices_index)." + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, fuzzy, c-format +msgid "The contract terms have a v1 order with a bad choices_index." +msgstr "" +"Die Vertragsbedingungen haben eine Bestellung der Version v1 (mit einem " +"schlechten choices_index)." + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format msgid "refund missed: %1$s" msgstr "Nicht verlangte Rückerstattung: %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 -#, c-format -msgid "refund missed: %1$s: %2$s" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 +#, fuzzy, c-format +msgid "refund missed: %1$s : %2$s" msgstr "Nicht verlangte Rückerstattung: %1$s: %2$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format msgid "refund created: %1$s" msgstr "Rückerstattung gewährt: %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 -#, c-format -msgid "refund created: %1$s: %2$s" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 +#, fuzzy, c-format +msgid "refund created: %1$s : %2$s" msgstr "Rückerstattung gewährt: %1$s: %2$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format msgid "refund taken: %1$s" msgstr "Dem Käufer zugegangene Rückerstattung: %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 -#, c-format -msgid "refund taken: %1$s: %2$s" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 +#, fuzzy, c-format +msgid "refund taken: %1$s : %2$s" msgstr "Dem Käufer zugegangene Rückerstattung: %1$s: %2$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 -#, c-format -msgid "The contract terms has a v1 order without choices_index." -msgstr "" -"Die Vertragsbedingungen haben eine Bestellung der Version v1 (ohne " -"choices_index)." - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 -#, c-format -msgid "The contract terms has a v1 order with a bad choices_index." -msgstr "" -"Die Vertragsbedingungen haben eine Bestellung der Version v1 (mit einem " -"schlechten choices_index)." - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format msgid "wired %1$s" msgstr "überwiesen %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format msgid "wire deadline" msgstr "Überweisungszeitpunkt" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 +#, fuzzy, c-format +msgid "Related wire transfers" +msgstr "Überprüfte und bestätigte Überweisungen" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 +#, fuzzy, c-format +msgid "Unconfirmed" +msgstr "Bestätigt" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" -msgstr "Überwiesen" +msgid "Confirmed" +msgstr "Bestätigt" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "Zahlbetrag der Bestellung zurückerstatten" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "Nicht erstattungsfähig" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, fuzzy, c-format +msgid "No wire transfer reported" +msgstr "Zeitpunkt der Überweisung" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, fuzzy, c-format +msgid "Check wire transfers" +msgstr "Überweisungen" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "Nächster Event in" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "Die Zahlung wurde überwiesen." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" @@ -3677,49 +4051,49 @@ msgstr "" "Bankarbeitstage dauern." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "Rückerstattungsbetrag" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "Erhaltener Rückerstattungsbetrag" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "Status-URL" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "Rückerstattungs-URI" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 -#, c-format -msgid "Pay at" -msgstr "Zahlungs-URL" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 +#, fuzzy, c-format +msgid "Payment link" +msgstr "Zahlungsfrist" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "Bestellstatus-URL" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "Zahlungs-URI" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." @@ -3727,56 +4101,98 @@ msgstr "" "Unbekannter Bestellstatus. Dies ist ein Fehler, bitte kontaktieren Sie den " "Administrator." +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "Zurück" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "nie" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "unbekannt" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Bestätigt" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Bestätigt" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "Ungültig. Bitte geben Sie nur Buchstaben und Zahlen ein." #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" -msgstr "Nur Buchstaben und Zahlen von 2 bis 7" +msgid "Use only letters and digits (2–7)." +msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "Die Schlüssellänge muss 32 Zeichen betragen" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, fuzzy, c-format +msgid "add otp device" +msgstr "Kein Gerät" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "Interne ID auf dem System" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "Dies ist nützlich, um das Gerät physisch zu identifizieren" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "Überprüfungsalgorithmus" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "Algorithmus zum Überprüfen von Transaktionen im Offline-Modus" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "Geräteschlüssel (Device key)" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3786,19 +4202,19 @@ msgstr "" "Zufallszahlengenerator." #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "Ihr Gerät muss genau das gleiche Ergebnis anzeigen" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "Zufälligen privaten Schlüssel erzeugen" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "Zufallsbasiert" @@ -3810,7 +4226,7 @@ msgid "Create another" msgstr "Weitere erzeugen" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3820,13 +4236,19 @@ msgstr "" "speichern, bevor Sie fortfahren." #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete otp device" +msgstr "Das Gerät konnte nicht gelöscht werden" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "OTP-Geräte" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "Ausgewählte Geräte aus der Datenbank entfernen" @@ -3839,13 +4261,19 @@ msgstr "" "Es gibt noch keine Geräte. Sie können diese mit dem +-Zeichen hinzufügen" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 +#, fuzzy, c-format +msgid "update otp device" +msgstr "%1$s: OTP-Gerät aktualisieren" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format msgid "Template id is unknown" msgstr "Die Vorlagen-ID ist unbekannt" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 #, c-format msgid "" "The provided information is inconsistent with the current state of the " @@ -3855,25 +4283,25 @@ msgstr "" "Vorlage überein" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "Gerät:" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "Algorithmus zum Überprüfen von Transaktionen im Offline-Modus" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "Unverändert" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" @@ -3881,82 +4309,234 @@ msgstr "" "Zufallszahlengenerator stammen" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "Ihr Gerät muss genau das gleiche Ergebnis anzeigen" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "Schlüssel ändern" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "ungleich" -#. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 +#, c-format +msgid "You are updating the password for the instance with ID \"%1$s\"" +msgstr "Sie erneuern nun das Passwort für die Instanz mit der ID \"%1$s\"" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 +#, c-format +msgid "In order to verify that you have access." +msgstr "Um zu überprüfen, ob der Zugang gewährt wird." + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "Neues Passwort" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "Geben Sie hier ein neues Passwort ein" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "Passwort wiederholen" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "Bitte geben Sie das Passwort hier wiederholt ein" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 +#, c-format +msgid "Confirm change" +msgstr "Änderung bestätigen" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, fuzzy, c-format +msgid "change password" +msgstr "Passwort ändern" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 +#, c-format +msgid "Testing password change" +msgstr "Die Passwortänderung wird überprüft" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 +#, c-format +msgid "Password changed" +msgstr "Passwort geändert" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 +#, c-format +msgid "The current password is wrong." +msgstr "Das aktuelle Passwort ist falsch." + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, fuzzy, c-format +msgid "change instance password" +msgstr "Passwort für den Zugang zum Händlerportal." + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 +#, c-format +msgid "No enough rights to change the password." +msgstr "Es bestehen keine ausreichenden Rechte, um das Passwort zu ändern." + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 +#, c-format +msgid "Account not found." +msgstr "Das Bankkonto wurde nicht gefunden." + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, fuzzy, c-format +msgid "create money pot" +msgstr "Neues Benutzerkonto erstellen" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, fuzzy, c-format +msgid "There is already a money pot with the same id." +msgstr "Es besteht bereits eine andere Instanz mit diesem Benutzernamen." + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete money pot" +msgstr "Wählen Sie ein Konto" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Money pot deleted" +msgstr "Bestand gelöscht" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new pots" +msgstr "Neue Vorlagen hinzufügen" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, fuzzy, c-format +msgid "Load more pots before the first one" +msgstr "Mehrere Vorlagen vor der ersten laden" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, fuzzy, c-format +msgid "Total" +msgstr "Gesamtpreis" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, fuzzy, c-format +msgid "Delete selected pots from the database" +msgstr "Löschen ausgewählter Konten von der Datenbank" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, fuzzy, c-format +msgid "Load more pots after the last one" +msgstr "Weitere Artikel nach dem letzten laden" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, fuzzy, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" +"Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen " +"hinzufügen" + +#. screenid: 6 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format -msgid "You are updating the password for the instance with ID \"%1$s\"" -msgstr "Sie erneuern nun das Passwort für die Instanz mit der ID \"%1$s\"" +msgid "Add element to the list" +msgstr "Ein Element zur Liste hinzufügen" -#. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 #, c-format -msgid "In order to verify that you have access." -msgstr "Um zu überprüfen, ob der Zugang gewährt wird." +msgid "Missing currency name" +msgstr "" -#. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 #, c-format -msgid "Confirm change" -msgstr "Änderung bestätigen" +msgid "Currency name must be only letters" +msgstr "" -#. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 #, c-format -msgid "Testing password change" -msgstr "Die Passwortänderung wird überprüft" +msgid "Value can only by number" +msgstr "" -#. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 #, c-format -msgid "Password changed" -msgstr "Passwort geändert" +msgid "The value is too high" +msgstr "" -#. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 -#, c-format -msgid "The current password is wrong." -msgstr "Das aktuelle Passwort ist falsch." +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, fuzzy, c-format +msgid "The value is too precise" +msgstr "Wert auf „nie“ setzen" -#. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 #, c-format -msgid "No enough rights to change the password." -msgstr "Es bestehen keine ausreichenden Rechte, um das Passwort zu ändern." +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "Ungültiger Betrag \"%1$s\": %2$s" -#. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 #, c-format -msgid "Account not found." -msgstr "Das Bankkonto wurde nicht gefunden." +msgid "update money pot" +msgstr "" -#. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 -#, c-format -msgid "Add element to the list" -msgstr "Ein Element zur Liste hinzufügen" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, fuzzy, c-format +msgid "Descripton" +msgstr "Beschreibung" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, fuzzy, c-format +msgid "Totals" +msgstr "Gesamte Artikelmenge" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 -#, c-format +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 +#, fuzzy, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" "Klicken Sie hier, um den Lagerbestand des Artikels zu konfigurieren. Falls " @@ -3964,25 +4544,25 @@ msgstr "" "Grundeinstellung unverändert." #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "Bestand verwalten" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "Dieser Artikel wurde ohne Bestandskontrolle angelegt" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "Unbegrenzt" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3992,86 +4572,86 @@ msgstr "" "übersteigen (maximal %1$s)" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 +#, c-format +msgid "Current" +msgstr "Aktuell" + +#. screenid: 14 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format msgid "Incoming" msgstr "Neu zugehend" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format msgid "Lost" msgstr "Abgehend (z.B. Schwund)" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 -#, c-format -msgid "Current" -msgstr "Aktuell" - -#. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "Bestandskontrolle für diesen Artikel entfernen" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "ohne Bestand" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "Nächste Anlieferung" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "Adresse des Lagers" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "Kein gültiger Betrag" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" "Produktidentifikation zur Nutzung in URLs (nur für den internen Gebrauch)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "Abbildung des Artikels für Kunden." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "Artikelbezeichnung." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "Artikelbeschreibung, die Kunden zu sehen bekommen." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "Altersbeschränkung" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" @@ -4079,13 +4659,13 @@ msgstr "" "bestimmten Alters?" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "Mindestalter von Käufern" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -4095,13 +4675,13 @@ msgstr "" "Kilogramm, 5 Liter, 3 Stück, 5 Meter)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "Beispiel: kg, Stück oder Liter" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." @@ -4110,13 +4690,13 @@ msgstr "" "Mengeneinheit des Artikels." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "Bestand" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" @@ -4124,79 +4704,89 @@ msgstr "" "Gebrauch)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "Im Artikelpreis enthaltene Steuern, die den Käufern angezeigt werden." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "Nach Kategoriebeschreibung oder -ID suchen" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "Kategorien, in denen dieser Artikel aufgeführt sein wird." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, fuzzy, c-format msgid "Search by money pot description or id" msgstr "Nach Artikelbeschreibung oder Artikel-ID suchen" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, fuzzy, c-format msgid "Money pots where this product will be listed on." msgstr "Kategorien, in denen dieser Artikel aufgeführt sein wird." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, fuzzy, c-format msgid "Select one" msgstr "Wählen Sie ein Konto" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, fuzzy, c-format msgid "Search by group name or id" msgstr "Nach Artikelbeschreibung oder Artikel-ID suchen" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, fuzzy, c-format +msgid "add product" +msgstr "Gesamte Artikelmenge" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -4209,73 +4799,91 @@ msgid "Add product to inventory" msgstr "Artikel zum Lagerbestand hinzufügen" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, fuzzy, c-format +msgid "update product" +msgstr "%1$s: Artikel aktualisieren" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "Der Artikel wurde nicht gefunden." #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "Diese Änderung wurde ohne bisher bekannte Daten durchgeführt." #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "Sales" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "Verkauft" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, fuzzy, c-format +msgid "infinite" +msgstr "Unbegrenzt" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "Kostenlos" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "Zur Seite der Artikelaktualisierung gehen" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "Aktualisieren" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "Diesen Artikel aus der Datenbank entfernen" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "Artikel mit neuem Preis aktualisieren" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "Artikel mit neuem Verkaufspreis aktualisieren" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "Aktualisierung bestätigen" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" @@ -4283,74 +4891,80 @@ msgstr "" "der Zulieferung (max %1$s)" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "Mehr Elemente zum Lagerbestand hinzufügen" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "Aus dem Lagerbestand verlorene Elemente melden" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "Neuer Preis für den Artikel" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "Einige Werte sind fehlerhaft." #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "Artikel mit neuem Bestand und Preis aktualisieren" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "" "Es gibt noch keine Artikel. Sie können diese mit dem +-Zeichen hinzufügen" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, fuzzy, c-format +msgid "delete product" +msgstr "Artikel löschen" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "Der Artikel (ID: %1$s) wurde gelöscht" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "Zum Artikel mit der angegebenen Artikel-ID springen" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "Artikel-ID" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "Artikel löschen" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "Artikel \"%1$s\" löschen" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4360,41 +4974,171 @@ msgstr "" "seine Bestandsdaten und alle zugehörigen Informationen verloren" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "Das Löschen eines Artikels kann nicht rückgängig gemacht werden." #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "Artikel-ID:" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, fuzzy, c-format +msgid "It should start with /" +msgstr "Die Nummer sollte mit + beginnen" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "Auf dem Server ist kein Berichtsgenerator eingerichtet." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, fuzzy, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" +"Bitte wenden Sie sich an die Systemadministration, um einen " +"Berichtsgenerator einzurichten, bevor Sie einen Bericht planen." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" +"Beschreibung des Berichts. Wird möglicherweise in der Berichtsnachricht " +"angezeigt." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "Wohin das Berichtssystem den Bericht senden soll." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "Quelle" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "Basis‑URL, von der die Daten abgerufen werden." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, fuzzy, c-format +msgid "Type of the data source" +msgstr "Art der Datenquelle" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "Programm" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "Berichtshäufigkeit" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, fuzzy, c-format +msgid "Report frequency shift" +msgstr "Berichtshäufigkeit" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, fuzzy, c-format +msgid "delete scheduled report" +msgstr "Ausgewählte Kategorie aus der Datenbank löschen" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, fuzzy, c-format +msgid "Add new reports" +msgstr "Neue Vorlagen hinzufügen" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, fuzzy, c-format +msgid "Delete selected scheduled report from the database" +msgstr "Ausgewählte Kategorie aus der Datenbank löschen" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, fuzzy, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" +"Es gibt noch keine Kategorien. Sie können diese mit dem +-Zeichen hinzufügen" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "Ihr Browser unterstützt nicht das Canvas-Element." #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "502 Bad gateway" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "Der Dienst ist nicht verfügbar" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "Bitte wählen Sie das Datum, ab dem die Statistik angezeigt werden soll" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4419,121 +5163,127 @@ msgid "Orders table" msgstr "Tabellarische Übersicht der Bestellungen" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "Bitte wählen Sie das Datum, ab dem die Statistik angezeigt werden soll" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "Start von (%1$s)" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "Statistik der Bestellungen" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "Seit" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "Es wurde noch keine Bestellstatistik erstellt." #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "Anzahl der Bestellungen seit" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "Stunde" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "Tag" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "Woche" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "Wochen" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "Monat" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "Monate" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "Quartal" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "Quartale" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "Jahre" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "Umsatzdiagramm" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "Tabellarische Übersicht der Umsätze" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "Umsatzstatistik-Filter" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "Zeitraum" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "Wählen Sie den Zeitraum für die Darstellung der Daten" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" @@ -4541,62 +5291,68 @@ msgstr "" "sollen" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "Währung" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" "Bitte wählen Sie die Währung, für die Statistiken angezeigt werden sollen" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "Umsatzstatistik der letzten %1$s %2$s für Währung '%3$s'" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "Beginn" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "Es wurde noch keine Umsatzstatistik erstellt." #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "Umsätze (Einnahmen)" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "Dieser Wert muss größer als Null sein" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "Zu kurz" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, fuzzy, c-format +msgid "add template" +msgstr "Neue Vorlagen hinzufügen" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "Sie haben keine ausreichende Berechtigung." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" @@ -4604,37 +5360,37 @@ msgstr "" "andere." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "Eindeutige Kennung" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "Name der Vorlage in URLs." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "Name der Vorlage" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "Beschreiben Sie, wofür diese Vorlage stehen soll" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "Zusammenfassung der Bestellung" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" @@ -4643,79 +5399,79 @@ msgstr "" "Zusammenfassung erzeugen" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "Die Zusammenfassung kann umgeschrieben werden" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "Den Nutzern die Bearbeitung der Zusammenfassung erlauben." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "Diese Vorlage wird Bestellungen zum stets gleichen Preis erzeugen" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "Der Betrag lässt sich verändern" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "Den Nutzern die Auswahl des Zahlbetrags erlauben." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "Die Währung ist veränderbar" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "Den Nutzern die Änderung der Währung erlauben." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "Unterstützte Währungen" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "Unterstützte Währungen: %1$s" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "Mindestalter" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "Verlangt dieser Kaufvertrag ein bestimmtes Mindestalter?" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "Die Zahlungsfrist ist verstrichen nach" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4725,136 +5481,148 @@ msgstr "" "angelegt wurde." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "OTP-Gerät" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "Verwenden zum Überprüfen von Transaktionen im Offline-Modus." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "Kein OTP-Gerät." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "Fügen Sie zuerst ein erstes hinzu" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "Kein Gerät" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "Neue Vorlagen hinzufügen" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "Mehrere Vorlagen vor der ersten laden" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "Ausgewählte Vorlagen aus der Datenbank löschen" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "Vorlage verwenden, um eine neue Bestellung anzulegen" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "QR-Code für die Vorlage erstellen." #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "QR-Code anzeigen" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "Weitere Vorlagen nach der letzten laden" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" "Es gibt noch keine Vorlagen. Sie können diese mit dem +-Zeichen hinzufügen" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, fuzzy, c-format +msgid "delete template" +msgstr "Vorlage löschen" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "Zur Vorlage mit der angegebenen Vorlagen-ID springen" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "Vorlagenidentifikation" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "Vorlage löschen" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "Vorlage \"%1$s\" löschen" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 -#, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 +#, fuzzy, c-format +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" "Wenn Sie die Vorlage %1$s (ID: %2$s) löschen, können Information " "verlorengehen" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "Das Löschen einer Vorlage kann nicht rückgängig gemacht werden." #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "Drucken" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, fuzzy, c-format +msgid "update template" +msgstr "%1$s: Vorlage aktualisieren" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "Die Detaileinstellung der Vorlage muss korrigiert werden." #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4864,7 +5632,7 @@ msgstr "" "unterstützten Währungen." #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" @@ -4872,13 +5640,13 @@ msgstr "" "Zusammenfassung erzeugen" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "Diese Vorlage wird Bestellungen zum stets gleichen Preis erzeugen" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4887,104 +5655,156 @@ msgstr "" "Dies bestimmt die Zeitdauer zur Bezahlung nach einer erfolgten Bestellung." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "Ein Betrag ist erforderlich" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 +#, c-format +msgid "An order summary is required" +msgstr "Eine Zusammenfassung der Bestellung ist erforderlich" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, fuzzy, c-format +msgid "create order from template" +msgstr "Neue Bestellung aus einer Vorlage erzeugen" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 #, c-format -msgid "An order summary is required" -msgstr "Eine Zusammenfassung der Bestellung ist erforderlich" +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "Es gibt keinen Bestand für den Artikel mit der ID \"%1$s\"." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "Neue Bestellung aus einer Vorlage erzeugen" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "Summe der Bestellung" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, fuzzy, c-format +msgid "Granularity can't be greater than duration." +msgstr "Die Menge muss größer als 0 sein!" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, fuzzy, c-format +msgid "create token family" +msgstr "Tokenfamilie löschen" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, fuzzy, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" +"Es gibt bereits eine Vorlage mit dieser Kennung, bitte wählen Sie eine " +"andere." + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" "Slug (benutzer- und suchmaschinenfreundlicher Text als Bestandteil einer URL)" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "Slug der Token-Familie zur Benutzung in URLs (nur für interne Zwecke)" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "Benutzerfreundliche Bezeichnung der Tokenfamilie" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "Tokenfamilien-Beschreibung für Kunden" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "Art" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "Ende" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, fuzzy, c-format msgid "Expiration Date" msgstr "Wird ungültig zum Zeitpunkt" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4992,58 +5812,85 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "Rundungsgenauigkeit des Gültigkeitszeitraums" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 -#, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 +#, fuzzy, c-format +msgid "1 minute" +msgstr "Rundung auf eine Minute" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, fuzzy, c-format +msgid "1 hour" +msgstr "Stunde" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, fuzzy, c-format +msgid "1 day" +msgstr "Rundung auf einen Tag" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, fuzzy, c-format +msgid "30 days" +msgstr "Tage" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, fuzzy, c-format +msgid "90 days" +msgstr "Tage" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, fuzzy, c-format +msgid "365 days" +msgstr "Tage" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "Tokenfamilien" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "Tokenfamilie hinzufügen" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "Gültig vor" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "Zur Aktualisierungsseite für Tokenfamilien gehen" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "Diese Token aus der Datenbank entfernen" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." @@ -5052,25 +5899,31 @@ msgstr "" "Zeichen hinzufügen." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, fuzzy, c-format +msgid "delete token family" +msgstr "Tokenfamilie löschen" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "Die Tokenfamilie wurde gelöscht." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "Tokenfamilie löschen" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "Tokenfamilie \"%1$s\" löschen" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -5080,206 +5933,219 @@ msgstr "" "ausgestellten Token ungültig." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "Tokenfamilie %1$s wird gelöscht." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "Das kann nicht rückgängig gemacht werden" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, fuzzy, c-format +msgid "update token family" +msgstr "%1$s: Tokenfamilie aktualisieren" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format msgid "Token Family: %1$s" msgstr "Tokenfamilie: %1$s" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 -#, c-format -msgid "User-readable token family name" -msgstr "Benutzerfreundliche Bezeichnung der Tokenfamilie" +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, fuzzy, c-format +msgid "inform wire transfer" +msgstr "Bestätigen der Überweisung" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 #, c-format -msgid "Token family description for customers" -msgstr "Tokenfamilien-Beschreibung für Kunden" +msgid "Wire transfer already confirmed." +msgstr "Die Überweisung ist bereits bestätigt." -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 -#, c-format -msgid "Incoming wire transfers" -msgstr "Erwartete Überweisungen" +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, fuzzy, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" +"Die Überweisung wurde ausgeführt und sollte in Kürze auf Ihrem Bankkonto " +"eingehen. Mithilfe der unten stehenden Informationen können Sie die " +"Gutschrift manuell überprüfen und bestätigen." -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 -#, c-format -msgid "Load more wire transfers preceding the first one" -msgstr "Weitere Überweisungen vor der ersten laden" +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, fuzzy, c-format +msgid "The wire transfer has been confirmed." +msgstr "Die Überweisung ist bereits bestätigt." -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, fuzzy, c-format +msgid "Transaction details" +msgstr "Kontodetails" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 #, c-format -msgid "Expected credit" -msgstr "Erwartete Gutschrift" +msgid "Transfer ID" +msgstr "Transfer-ID" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 #, c-format -msgid "Confirmed" -msgstr "Bestätigt" +msgid "I have received the wire transfer" +msgstr "Ich habe die Überweisung erhalten" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 +#, fuzzy, c-format +msgid "Orders in this wire transfer" +msgstr "Überprüfte und bestätigte Überweisungen" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 +#, fuzzy, c-format +msgid "Fee" +msgstr "Kostenlos" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 +#, fuzzy, c-format +msgid "Subtotals" +msgstr "Gesamte Artikelmenge" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Validated" -msgstr "Überprüft (validiert)" +msgid "Deposit fee" +msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 +#, fuzzy, c-format +msgid "Wire fee" +msgstr "Überweisungen" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Executed on" -msgstr "Ausführungsdatum" +msgid "not ready" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 +#, fuzzy, c-format +msgid "loading..." +msgstr "Die Daten werden eingelesen..." #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 -#, c-format -msgid "yes" -msgstr "ja" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 +#, fuzzy, c-format +msgid "New wire transfers" +msgstr "Überweisungen" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "no" -msgstr "nein" +msgid "Load more wire transfers preceding the first one" +msgstr "Weitere Überweisungen vor der ersten laden" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "never" -msgstr "nie" +msgid "To be determined." +msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "unknown" -msgstr "unbekannt" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." +msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format msgid "Load more transfers after the last one" msgstr "Mehr Überweisungen nach der letzten laden" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 -#, c-format -msgid "Verified wire transfers" -msgstr "Überprüfte und bestätigte Überweisungen" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 +#, fuzzy, c-format +msgid "Confirmed wire transfers into bank account" +msgstr "Bestätigen der Überweisung" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 -#, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" -msgstr "" -"Es gibt noch keine Überweisungen anzuzeigen. Sie können diese mit dem +-" -"Zeichen hinzufügen" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 +#, fuzzy, c-format +msgid "Show details about the incoming wire transfer." +msgstr "Erwartete Überweisungen" + +#. screenid: 72 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 +#, fuzzy, c-format +msgid "There are no transfers to list yet" +msgstr "Es gibt noch keine Statistiken anzuzeigen" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "Alle Konten" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "Filtern nach Kontoadressen" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 -#, c-format -msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." -msgstr "" -"Nur Überweisungen anzeigen, die vom Zahlungsdienst bereits an Ihr Bankkonto " -"überwiesen wurden." - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 -#, c-format -msgid "Only show wire transfers confirmed by the merchant" -msgstr "" -"Nur Überweisungen anzeigen, die vom Verkäufer als auf dem Bankkonto " -"eingegangen bestätigt sind" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 #, c-format msgid "Verified" msgstr "Verifizierte (bestätigte) Überweisungen" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 -#, c-format -msgid "Wire transfer already confirmed." -msgstr "Die Überweisung ist bereits bestätigt." - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format -msgid "I have received the wire transfer" -msgstr "Ich habe die Überweisung erhalten" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 -#, c-format -msgid "Confirm the wire transfer" -msgstr "Bestätigen der Überweisung" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 -#, fuzzy, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -"Die Überweisung wurde ausgeführt und sollte in Kürze auf Ihrem Bankkonto " -"eingehen. Mithilfe der unten stehenden Informationen können Sie die " -"Gutschrift manuell überprüfen und bestätigen." - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 -#, c-format -msgid "Time" -msgstr "Zeit" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 -#, c-format -msgid "Transfer ID" -msgstr "Transfer-ID" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format msgid "It's not the same." msgstr "Dies stimmt nicht überein." #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format msgid "You are deleting the instance with ID \"%1$s\"" msgstr "Sie löschen nun die Instanz mit der ID \"%1$s\"" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 +#, fuzzy, c-format +msgid "delete current instance" +msgstr "Löschung dieser Instanz" + +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format msgid "Instance" msgstr "Instanz" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format msgid "Write the instance name to confirm the deletion" msgstr "" @@ -5287,13 +6153,7 @@ msgstr "" "bestätigen" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 -#, c-format -msgid "Purge" -msgstr "Vollständig verwerfen" - -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" "All the data will be fully deleted, otherwise only the access will be " @@ -5303,17 +6163,71 @@ msgstr "" "entfernt." #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format msgid "DELETE" msgstr "LÖSCHEN" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 +#, c-format +msgid "Doesn't have the pattern of an email" +msgstr "Dies entspricht keiner gültigen E-Mailadresse" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 +#, c-format +msgid "Should start with +" +msgstr "Die Nummer sollte mit + beginnen" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 +#, c-format +msgid "A phone number consists of numbers only" +msgstr "Eine Telefonnummer besteht nur aus Ziffern" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 +#, fuzzy, c-format +msgid "Invalid phone number" +msgstr "Telefonnummer für allgemeinen Kontakt" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 +#, c-format +msgid "Invalid value" +msgstr "Ungültiger Wert" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 +#, c-format +msgid "Max 7 lines" +msgstr "Höchstens 7 Zeilen" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 +#, fuzzy, c-format +msgid "update instance settings" +msgstr "Anzeige der Einstellungen zu Instanzen ausweiten" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format msgid "Instance id" msgstr "Instanz-ID" +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 +#, c-format +msgid "URL" +msgstr "URL" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, fuzzy, c-format +msgid "Cancel operation" +msgstr "Vorgang bestätigen" + #. screenid: 74 #: packages/merchant-backoffice-ui/src/paths/instance/update/index.tsx:113 #, c-format @@ -5321,73 +6235,79 @@ msgid "Delete this instance" msgstr "Löschung dieser Instanz" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "Muss eines von '%1$s' sein" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "URL ist ungültig" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, fuzzy, c-format +msgid "add webhook" +msgstr "Neue Webhooks hinzufügen" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "zu verwendende Webhook-ID" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "Event" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "Zahlung" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "Die Bestellung wurde bezahlt und dem Konto gutgeschrieben" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "Kategorie hinzugefügt" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "Die Kategorie wurde aktualisiert" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "Der Bestand wurde hinzugefügt" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "Der Bestand wurde aktualisiert" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "Bestand gelöscht" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" @@ -5395,62 +6315,56 @@ msgstr "" "Prozesse auszulösen" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "Methode" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "GET" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "POST" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "PUT" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "PATCH" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "HEAD" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "Methode, die der Webhook verwendet" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "URL" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" "URL des Webhooks, zu der die Käufer nach der Bezahlung weitergeleitet werden" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5461,43 +6375,43 @@ msgstr "" "ersetzt." #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "Beispielsweise wird %1$s durch den Bestellwert ersetzt." #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "Einige der Variablen sind:" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "Beschreibung der Bestellung" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "Gesamtpreis der Bestellung" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "Laufende Nummer der Bestellung" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "Der erstattete Betrag" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" @@ -5505,146 +6419,170 @@ msgstr "" "Erstattung" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "Zeitpunkt der Erstattung in Nanosekunden seit 1970" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "HTTP-Header" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "Vorlage für den Webhook-Header" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "HTTP-Body" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "Vorlage für den Webhook-Body." #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, fuzzy, c-format +msgid "delete webhook" +msgstr "Webhook konnte nicht gelöscht werden" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "Webhook wurde erfolgreich gelöscht" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "Neue Webhooks hinzufügen" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "Mehr Webhooks vor dem ersten laden" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "Event-Typ" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "Ausgewählten Webhook aus der Datenbank löschen" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "Mehr Webhooks nach dem letzten laden" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" "Es gibt noch keine Webhooks. Sie können diese mit dem +-Zeichen hinzufügen" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, fuzzy, c-format +msgid "update webhook" +msgstr "%1$s: Webhook aktualisieren" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "Webhook aktualisiert" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "Header" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "Body" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "Vorlage, die für den Webhook-Body verwendet wird" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "Dies stimmt nicht überein" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, fuzzy, c-format +msgid "self provision instance" +msgstr "Erstellen Sie Ihr eigenes Konto im Taler-Händlerportal" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "Es besteht bereits eine andere Instanz mit diesem Benutzernamen." #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "Erstellen Sie Ihr eigenes Konto im Taler-Händlerportal" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "Telefon" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "Telefonnummer für allgemeinen Kontakt" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "Allgemeine Geschäftsbedingungen" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "Ich verstehe und akzeptiere die %1$s" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, fuzzy, c-format msgid "Terms of service" msgstr "Allgemeine Geschäftsbedingungen" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" @@ -5652,81 +6590,87 @@ msgstr "" "dieser Verwaltungssoftware akzeptieren." #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "Anlegen" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "Die Instanz \"%1$s\" wurde nicht gefunden." #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "Zurücksetzen des Zugangs zur Instanz \"%1$s\"" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 -#, c-format -msgid "Reset" -msgstr "Zurücksetzen" - #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format msgid "Language" msgstr "Sprache" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 +#, c-format +msgid "Force the language settings instead of using the browser" +msgstr "" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "Datumsformat" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "Wie das Datum angezeigt wird" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "Merchant-Typus" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 -#, c-format -msgid "Simplify UI based on the user usage." +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 +#, fuzzy, c-format +msgid "Simplify the UI based on use case." msgstr "" "Passen Sie hier den Komplexitätsgrad der Benutzeroberfläche für verschiedene " "Benutzer an." #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" -msgstr "Erfahrener Benutzer (expert user)" +msgid "Beta tester" +msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" -msgstr "Entwickler (Taler developer)" +msgid "Expert user" +msgstr "Erfahrener Benutzer (expert user)" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" @@ -5734,7 +6678,7 @@ msgstr "" "person offline vending)" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" @@ -5742,751 +6686,812 @@ msgstr "" "point-of-sale with inventory)" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "Vertrieb digitaler Güter (Digital publishing)" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "Onlineshops (E-commerce site)" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 -#, c-format -msgid "Developer mode" +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 +#, fuzzy, c-format +msgid "Developer tools" msgstr "Entwicklermodus" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 +#, c-format +msgid "Enable UI tools for troubleshooting." +msgstr "" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format +msgid "Testing features" +msgstr "" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 +#, fuzzy, c-format msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" "Verwenden Sie den Entwicklermodus nur, wenn Sie wissen, wie die Anwendung " "funktioniert. Einige der in diesem Modus aktivierten Funktionen befinden " "sich noch in der Testphase." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 +#, c-format +msgid "Developer mode" +msgstr "Entwicklermodus" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 +#, c-format +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." +msgstr "" + +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, fuzzy, c-format -msgid "Money pot deleted" -msgstr "Bestand gelöscht" +msgid "create pos access token" +msgstr "Zugangstoken erzeugen" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, fuzzy, c-format -msgid "Add new pots" -msgstr "Neue Vorlagen hinzufügen" +msgid "Device name" +msgstr "Geräteschlüssel (Device key)" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 +#, c-format +msgid "Scan this QR with the Taler POS app." +msgstr "" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, fuzzy, c-format -msgid "Load more pots before the first one" -msgstr "Mehrere Vorlagen vor der ersten laden" +msgid "Payment services status" +msgstr "Unterstützte Währungen" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, fuzzy, c-format -msgid "Total" -msgstr "Gesamtpreis" +msgid "Base URL" +msgstr "Status-URL" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, fuzzy, c-format -msgid "Delete selected pots from the database" -msgstr "Löschen ausgewählter Konten von der Datenbank" +msgid "Next update" +msgstr "Der Bestand wurde aktualisiert" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, fuzzy, c-format -msgid "Load more pots after the last one" -msgstr "Weitere Artikel nach dem letzten laden" +msgid "This payment service is ready to be used." +msgstr "Diese Änderung wurde ohne bisher bekannte Daten durchgeführt." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, fuzzy, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" -"Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen " -"hinzufügen" +msgid "" +"This payment service can't be used due to an error. Contact the service " +"provider." +msgstr "Diese Überweisung wurde vom Zahlungsdienst gemeldet." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Missing currency name" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 +#, fuzzy, c-format +msgid "No payment services supported" +msgstr "Es sind keine Schlüssel des Exchange vorhanden" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Value can only by number" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 +#, fuzzy, c-format +msgid "Ready until %1$s" +msgstr "Frist bis %1$s" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, fuzzy, c-format -msgid "The value is too precise" -msgstr "Wert auf „nie“ setzen" +msgid "Next update will be at %1$s" +msgstr "Ende der Gültigkeit %1$s" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "Ungültiger Betrag \"%1$s\": %2$s" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 -#, fuzzy, c-format -msgid "Descripton" -msgstr "Beschreibung" +msgid "Error" +msgstr "Fehler" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, fuzzy, c-format -msgid "Totals" -msgstr "Gesamte Artikelmenge" +msgid "This payment service is unavailable." +msgstr "Der Dienst ist nicht verfügbar" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, fuzzy, c-format -msgid "There is already a money pot with the same id." -msgstr "Es besteht bereits eine andere Instanz mit diesem Benutzernamen." +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 +#, c-format +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" +msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, fuzzy, c-format -msgid "Product group deleted" -msgstr "Artikelliste" +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 +#, c-format +msgid "Welcome!" +msgstr "Willkommen!" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, fuzzy, c-format -msgid "Add new group" -msgstr "Neues Konto hinzufügen" +msgid "" +"The application is in an unexpected state and can't recover from here. You " +"can report the problem to the developers at %1$s" +msgstr "" +"Die Anwendung befindet sich in einem unerwarteten Betriebszustand. Bitte " +"seien Sie so nett und melden das Problem den Entwicklern unter %1$s" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 -#, fuzzy, c-format -msgid "Load more groups before the first one" -msgstr "Mehr Webhooks vor dem ersten laden" +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 +#, c-format +msgid "You need to associate a bank account to receive revenue." +msgstr "" +"Sie müssen ein Bankkonto verknüpfen, um Einnahmen aus Überweisungen auf " +"dieses Konto zu erhalten." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, fuzzy, c-format -msgid "Delete selected group from the database" -msgstr "Löschen ausgewählter Konten von der Datenbank" +msgid "Without this the server will refuse to create new orders." +msgstr "" +"Ohne dies wird Taler Merchant Backend keine neuen Bestellungen erzeugen." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 -#, fuzzy, c-format -msgid "Load more groups after the last one" -msgstr "Weitere Artikel nach dem letzten laden" +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 +#, c-format +msgid "Hide for today" +msgstr "Für heute nicht anzeigen" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 -#, fuzzy, c-format -msgid "There are no product groups yet, add more pressing the + sign" -msgstr "" -"Es gibt noch keine Artikel. Sie können diese mit dem +-Zeichen hinzufügen" +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 +#, c-format +msgid "KYC verification needed" +msgstr "Eine KYC-Überprüfung ist notwendig (Know-Your-Customer)" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 #, c-format -msgid "Scheduled report deleted" +msgid "" +"Some transfers are on hold until the KYC process is completed. Visit the KYC " +"section in the left-hand menu for more information." msgstr "" +"Einige Überweisungen werden bis zum Abschluss des KYC-Prozesses " +"zurückgehalten. Bitte gehen Sie zum KYC-Status im Hauptmenü links für " +"weitere Informationen." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 #, c-format -msgid "Scheduled reports" +msgid "No 'admin' instance configured yet." +msgstr "Es wurde noch keine Instanz 'admin' konfiguriert." + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#, fuzzy, c-format +msgid "Create an 'admin' instance to begin using the merchant portal." msgstr "" +"Erstellen Sie eine Instanz 'admin', um Merchant Backoffice erstmalig zu " +"verwenden." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, fuzzy, c-format -msgid "Add new reports" -msgstr "Neue Vorlagen hinzufügen" +msgid "delete bank account" +msgstr "Wählen Sie ein Konto" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, c-format -msgid "Frequency" -msgstr "" +msgid "The bank account has been deleted." +msgstr "Die Verknüpfung mit dem Bankkonto wurde erfolgreich gelöscht." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, fuzzy, c-format -msgid "Delete selected scheduled report from the database" -msgstr "Ausgewählte Kategorie aus der Datenbank löschen" +msgid "Delete account" +msgstr "Wählen Sie ein Konto" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, fuzzy, c-format -msgid "There are no reports yet, add more pressing the + sign" -msgstr "" -"Es gibt noch keine Kategorien. Sie können diese mit dem +-Zeichen hinzufügen" +msgid "Delete the account \"%1$s\"" +msgstr "Artikel \"%1$s\" löschen" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgid "No report generator configured in the server" -msgstr "Auf dem Server ist kein Berichtsgenerator eingerichtet." - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 -#, fuzzy, c-format -msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +msgid "Invalid payto: \"%1$s\"" msgstr "" -"Bitte wenden Sie sich an die Systemadministration, um einen " -"Berichtsgenerator einzurichten, bevor Sie einen Bericht planen." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -"Beschreibung des Berichts. Wird möglicherweise in der Berichtsnachricht " -"angezeigt." - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 -#, c-format -msgid "Where the report program should send the report" -msgstr "Wohin das Berichtssystem den Bericht senden soll." - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 -#, c-format -msgid "Source" -msgstr "Quelle" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 -#, c-format -msgid "Base URL to request the data from." -msgstr "Basis‑URL, von der die Daten abgerufen werden." +"Wenn Sie das Konto mit der Bezeichnung %1$s löschen, gehen alle zugehörigen " +"Informationen verloren" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, fuzzy, c-format -msgid "Type of the data source" -msgstr "Art der Datenquelle" +msgid "Deleting an account can't be undone." +msgstr "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgid "Program" -msgstr "Programm" +msgid "Bank accounts" +msgstr "Bankkonten" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" -msgstr "" -"Konfiguration im Merchant‑Backend, die festlegt, welches Programm zum " -"Versenden des Berichts verwendet wird." +msgid "Add new account" +msgstr "Neues Konto hinzufügen" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgid "Report frequency" -msgstr "Berichtshäufigkeit" +msgid "Owner's name" +msgstr "Name des Kontoinhabers" -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgid "Welcome!" -msgstr "Willkommen!" +msgid "Delete selected accounts from the database" +msgstr "Löschen ausgewählter Konten von der Datenbank" -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgid "" -"The application is in a unexpected state and can't recover from here. You " -"can report the problem to the developers at %1$s" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -"Die Anwendung befindet sich in einem unerwarteten Betriebszustand. Bitte " -"seien Sie so nett und melden das Problem den Entwicklern unter %1$s" +"Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen " +"hinzufügen" -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 -#, c-format -msgid "You need to associate a bank account to receive revenue." -msgstr "" -"Sie müssen ein Bankkonto verknüpfen, um Einnahmen aus Überweisungen auf " -"dieses Konto zu erhalten." +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 +#, fuzzy, c-format +msgid "No bank account configured yet." +msgstr "Es wurde noch keine Instanz 'admin' konfiguriert." -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 -#, c-format -msgid "Without this the merchant backend will refuse to create new orders." +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 +#, fuzzy, c-format +msgid "Without this information you cannot create new payment orders." msgstr "" -"Ohne dies wird Taler Merchant Backend keine neuen Bestellungen erzeugen." +"Ohne diese Informationen können Sie keine neuen Zahlungsabwicklungen " +"erstellen, die an ein Bankkonto überwiesen werden." -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 -#, c-format -msgid "Hide for today" -msgstr "Für heute nicht anzeigen" +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 +#, fuzzy, c-format +msgid "This account is not ready to be used." +msgstr "Dieses Konto ist nicht zulässig." -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 -#, c-format -msgid "KYC verification needed" -msgstr "Eine KYC-Überprüfung ist notwendig (Know-Your-Customer)" +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 +#, fuzzy, c-format +msgid "There are pending actions related to KYC." +msgstr "Es befinden sich keine Artikel in dieser Kategorie." -#. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 +#, fuzzy, c-format +msgid "More details." +msgstr "Zahlungsdetails" + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 +#, fuzzy, c-format +msgid "You must complete kyc requirements to receive payments." +msgstr "" +"Sie müssen ein Bankkonto verknüpfen, um Einnahmen an dieses Konto zu " +"überweisen." + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format msgid "" -"Some transfers are on hold until the KYC process is completed. Visit the KYC " -"section in the left-hand menu for more information." +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -"Einige Überweisungen werden bis zum Abschluss des KYC-Prozesses " -"zurückgehalten. Bitte gehen Sie zum KYC-Status im Hauptmenü links für " -"weitere Informationen." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgctxt "title" -msgid "%1$s: Settings" -msgstr "%1$s: Einstellungen" +msgid "Invalid url" +msgstr "ungültige URL" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: New bank account" -msgstr "%1$s: Neues Bankkonto" +msgid "URL must end with a '/'" +msgstr "Die URL muss mit '/' enden" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" -msgstr "%1$s: Bankkonten" +msgid "URL must not contain params" +msgstr "Die URL darf keine Parameter enthalten" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" -msgstr "%1$s: Bankkonto aktualisieren" +msgid "URL must not hash param" +msgstr "Die URL darf keinen Hash-Parameter enthalten" + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 +#, fuzzy, c-format +msgid "change bank account" +msgstr "Bankkonto" + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#, fuzzy, c-format +msgid "test revenue api" +msgstr "Nächster Event in" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: Orders" -msgstr "%1$s: Bestellungen" +msgid "Server replied with \"bad request\"." +msgstr "Der Server antwortete mit \"bad request\"." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: New order" -msgstr "%1$s: Neue Bestellung" +msgid "Unauthorized, check credentials." +msgstr "" +"Unzulässiger Vorgang, bitte die Zugangsdaten (Token, Anmeldename, Passwort) " +"überprüfen." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" -msgstr "%1$s: Lagerbestand" +msgid "The endpoint does not seem to be a Taler Revenue API." +msgstr "" +"Die Gegenstelle scheint keine Taler-Einzahlungsschnittstelle (Taler Revenue " +"API) zu sein." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "%1$s: New product" -msgstr "%1$s: Neuer Artikel" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." +msgstr "" +"Die Anfrage war richtig gestellt, doch der Server der Bank antwortete nicht " +"mit dem passenden Wert (für 'credit_account'), so dass wir nicht bestätigen " +"können, dass es sich um dasselbe Bankkonto handelt." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "%1$s: Update product" -msgstr "%1$s: Artikel aktualisieren" +msgid "Unsupported type of account" +msgstr "Nicht unterstützter Kontotyp" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgctxt "title" -msgid "%1$s: Category" -msgstr "%1$s: Kategorie" +msgid "Account:" +msgstr "Konto:" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgctxt "title" -msgid "%1$s: New category" -msgstr "%1$s: Neue Kategorie" +msgid "Account details" +msgstr "Kontodetails" + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#, fuzzy, c-format +msgid "Extra subject" +msgstr "Buchungsvermerk" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format -msgctxt "title" -msgid "%1$s: Update category" -msgstr "%1$s: Kategorie aktualisieren" +msgid "" +"Additional text to include in the wire transfer subject when settling the " +"payment" +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" -msgstr "%1$s: Überweisungen" +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." +msgstr "" +"Wenn die kontoführende Bank die Schnittstelle Taler Revenue API unterstützt, " +"können Sie die untenstehende Gegenstelle (endpoint URL) hinzufügen, um die " +"Umsatzinformationen zwischen dem Backend und dem Bankkonto zu " +"synchronisieren." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" -msgstr "%1$s: Webhooks" +msgid "Endpoint URL" +msgstr "Gegenstelle (endpoint URL)" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" -msgstr "%1$s: Neuer Webhook" +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" +msgstr "Informationsquelle zu eingehenden Überweisungen auf dieses Bankkonto" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgctxt "title" -msgid "%1$s: Update webhook" -msgstr "%1$s: Webhook aktualisieren" +msgid "Auth type" +msgstr "Authentifizierungsmethode" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" -msgstr "%1$s: OTP-Geräte" +msgid "Choose the authentication type for the account info URL" +msgstr "" +"Wählen Sie die Authentifizierungsmethode zum Zugriff auf das Bankkonto, um " +"die eingegangenen Überweisungen abzufragen" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" -msgstr "%1$s: Neues OTP-Gerät" +msgid "Without authentication" +msgstr "Ohne Authentifizierung" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" -msgstr "%1$s: OTP-Gerät aktualisieren" +msgid "With username and password" +msgstr "Mit Benutzername und Passwort" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgctxt "title" -msgid "%1$s: New template" -msgstr "%1$s: Neue Vorlage" +msgid "With token" +msgstr "Mit Zugangstoken" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgctxt "title" -msgid "%1$s: Update template" -msgstr "%1$s: Vorlage aktualisieren" +msgid "Do not change" +msgstr "Lassen Sie dies unverändert" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgctxt "title" -msgid "%1$s: Templates" -msgstr "%1$s: Vorlagen" +msgid "Username to access the account information." +msgstr "Benutzername für den Zugriff auf die Kontoinformationen." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgctxt "title" -msgid "%1$s: Use template" -msgstr "%1$s: Vorlage verwenden" +msgid "Password to access the account information." +msgstr "Passwort für den Zugriff auf die Kontoinformationen." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" -msgstr "%1$s: Personalisierung" +msgid "Access token to access the account information." +msgstr "Zugangstoken für den Zugriff auf die Kontoinformationen." + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 +#, c-format +msgid "Match" +msgstr "Übereinstimmung" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "Check where the information match against the server info." msgstr "" +"Prüfung der Übereinstimmung dieser Information und der Daten auf dem Server." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgctxt "title" -msgid "%1$s: New token family" -msgstr "%1$s: Neue Tokenfamilie" +msgid "Compare info from server with account form" +msgstr "Vergleich der Information des Servers mit den Bankkonto-Formulardaten" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" -msgstr "%1$s: Tokenfamilie aktualisieren" +msgid "parse revenue payto" +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 -#, c-format -msgctxt "title" -msgid "%1$s: Access tokens" -msgstr "%1$s: Zugangstoken" +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 +#, fuzzy, c-format +msgid "add bank account" +msgstr "Bankkonto" + +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 +#, fuzzy, c-format +msgid "The instance does not exist." +msgstr "Die Instanz existiert nicht" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgctxt "title" -msgid "%1$s: New access token" -msgstr "%1$s: Neuer Zugangstoken" +msgid "" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgctxt "title" -msgid "New instance" -msgstr "Neue Instanz" +msgid "Server didn't like the request we made." +msgstr "Der Server war mit unserer Anfrage nicht einverstanden." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgctxt "title" -msgid "Instances" -msgstr "Instanzen" +msgid "Check if the information matches the server info." +msgstr "" +"Bitte prüfen Sie, ob die Information und die Daten auf dem Server " +"übereinstimmen." -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "Verify details with server" msgstr "" -"Die Anfrage hat ihr Zeitlimit erreicht, überprüfen Sie bitte Ihre " -"Internetverbindung." -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 +#, fuzzy, c-format +msgid "create instance and login" +msgstr "Instanz löschen" + +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "The request was cancelled." -msgstr "Die Anfrage wurde abgebrochen." +msgid "Instance created" +msgstr "Die Instanz wurde angelegt" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "" -"Too many requests were made to the server, and this action was throttled." +msgid "Please complete the marked fields and choose authorization method" msgstr "" -"Es wurden gleichzeitig zu viele Anfragen an denselben Server gestellt, daher " -"ist diese Aktion gedrosselt worden." +"Sie müssen die gekennzeichneten Felder ausfüllen und eine Methode der " +"Berechtigungsprüfung wählen" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format -msgid "The server's response was malformed." -msgstr "Die Antwort des Servers auf die Anfrage war fehlerhaft." +msgid "checking compatibility with server..." +msgstr "Prüfe Kompatibilität mit dem Server..." -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format -msgid "Could not complete the request due to a network problem." -msgstr "" -"Die Anfrage konnte aufgrund eines Netzwerkproblems nicht abgeschlossen " -"werden." +msgid "Contacting the server failed" +msgstr "Der Kontaktversuch mit dem Server ist fehlgeschlagen" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format -msgid "Unexpected request error." -msgstr "Unerwarteter Fehler bei der Anfrage." +msgid "The server version is not supported" +msgstr "Die Serverversion wird nicht unterstützt" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format -msgid "Unexpected error." -msgstr "Unerwarteter Fehler." +msgid "Supported version \"%1$s\", server version \"%2$s\"." +msgstr "Unterstützte Version \"%1$s\", Serverversion \"%2$s\"." -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 26 +#: packages/merchant-backoffice-ui/src/paths/admin/create/InstanceCreatedSuccessfully.tsx:54 #, c-format -msgid "Add new instance" -msgstr "Neue Instanz hinzufügen" +msgid "Business Name" +msgstr "Firmenname" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, fuzzy, c-format +msgid "update product group" +msgstr "Artikel" + +#. screenid: 60 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format -msgid "Edit" -msgstr "Bearbeiten" +msgid "Available statistics" +msgstr "Verfügbare Statistiken" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 60 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format -msgid "Change password" -msgstr "Passwort ändern" +msgid "There are no statistics to list" +msgstr "Es gibt noch keine Statistiken anzuzeigen" + +#, fuzzy, c-format +#~ msgid "Exchanges" +#~ msgstr "Zahlungsdienstleister" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." -msgstr "" -"Es gibt noch keine Instanzen. Sie können diese mit dem +-Zeichen hinzufügen." +#~ msgid "" +#~ "Merchant backend configuration section specifying the program to use to " +#~ "transmit the report" +#~ msgstr "" +#~ "Konfiguration im Merchant‑Backend, die festlegt, welches Programm zum " +#~ "Versenden des Berichts verwendet wird." + +#, fuzzy, c-format +#~ msgid "" +#~ "Server configuration section specifying the program to use to transmit " +#~ "the report" +#~ msgstr "" +#~ "Konfiguration im Merchant‑Backend, die festlegt, welches Programm zum " +#~ "Versenden des Berichts verwendet wird." + +#, fuzzy, c-format +#~ msgid "" +#~ "Merchant backend internal error. Contact administrator or check again " +#~ "later." +#~ msgstr "" +#~ "Interner Fehler im Backend. Wenden Sie sich an den Administrator oder " +#~ "prüfen Sie später erneut." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." -msgstr "Instanz \"%1$s\" (ID: %2$s) wurde gelöscht." +#~ msgid "There are no transfers to list yet, add more by pressing the + sign" +#~ msgstr "" +#~ "Es gibt noch keine Überweisungen anzuzeigen. Sie können diese mit dem +-" +#~ "Zeichen hinzufügen" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 #, c-format -msgid "Only show active instances" -msgstr "Zeige nur aktive Instanzen" +#~ msgid "No exchange keys" +#~ msgstr "Es sind keine Schlüssel des Exchange vorhanden" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 #, c-format -msgid "Active" -msgstr "Aktiv" +#~ msgid "Interval to which wire deadlines should be rounded up to." +#~ msgstr "" +#~ "Dies ist die Rundung des Zeitraums auf ganze Zeiteinheiten, nach deren " +#~ "Ablauf die zusammengefassten Umsätze an das Bankkonto überwiesen werden." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 #, c-format -msgid "Only show deleted instances" -msgstr "Zeige nur gelöschte Instanzen" +#~ msgid "" +#~ "The challenge is expired and can't be solved but you can go back and " +#~ "create a new challenge." +#~ msgstr "" +#~ "Das Prüfverfahren zur gesicherten Anmeldung ist abgelaufen und kann nicht " +#~ "mehr verwendet werden, es ist jedoch möglich, ein neues Prüfverfahren " +#~ "anzufordern (bitte gehen Sie im Browser einen Schritt zurück)." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 #, c-format -msgid "Deleted" -msgstr "Gelöscht" +#~ msgid "You have to wait until %1$s to send a new code." +#~ msgstr "" +#~ "Sie müssen bis %1$s warten, damit ein neuer Bestätigungscode gesendet " +#~ "werden kann." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 #, c-format -msgid "Show all instances" -msgstr "Zeige alle Instanzen" +#~ msgid "I have a code" +#~ msgstr "Ich habe bereits einen gültigen Bestätigungscode" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 #, c-format -msgid "Delete instance" -msgstr "Instanz löschen" +#~ msgid "Send me a message" +#~ msgstr "Bestätigungscode zusenden" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 #, c-format -msgid "Delete the instance \"%1$s\"" -msgstr "Instanz \"%1$s\" löschen" +#~ msgid "Action required" +#~ msgstr "" +#~ "Sie müssen noch eine Aktion ausführen (eine Überweisung oder eine KYC-" +#~ "Prüfung ist erforderlich)" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" -msgstr "" -"Wenn Sie die Instanz mit der Bezeichnung %1$s (ID: %2$s) löschen, wird sie " -"keine weiteren Bestellungen oder Rückerstattungen bearbeiten können" +#~ msgid "Warning" +#~ msgstr "Warnung" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." -msgstr "" -"Dieser Vorgang löscht den privaten Schlüssel der Instanz, lässt jedoch alle " -"Transaktionsdaten unberührt. Sie können daher auch weiterhin nach der " -"Löschung der Instanz auf diese Daten zugreifen." +#~ msgid "Change value to unknown date" +#~ msgstr "Wert auf unbekanntes Datum ändern" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 #, c-format -msgid "Deleting an instance %1$s" -msgstr "Löschung der Instanz %1$s" +#~ msgid "Add from inventory" +#~ msgstr "Vom Bestand hinzufügen" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 #, c-format -msgid "This cannot be undone!" -msgstr "Das kann nicht rückgängig gemacht werden!" +#~ msgid "is not a valid URL" +#~ msgstr "ist keine gültige URL" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 #, c-format -msgid "Purge the instance" -msgstr "Instanz löschen" +#~ msgid "Wired" +#~ msgstr "Überwiesen" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 #, c-format -msgid "Purge the instance \"%1$s\"" -msgstr "Instanz \"%1$s\" wird endgültig verworfen" +#~ msgid "Pay at" +#~ msgstr "Zahlungs-URL" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" -msgstr "" -"Falls Sie die Instanz %1$s (ID: %2$s) vollständig verwerfen, löschen Sie " -"damit auch unwiderruflich alle Transaktionsdaten!" +#~ msgid "Just letters and numbers from 2 to 7" +#~ msgstr "Nur Buchstaben und Zahlen von 2 bis 7" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." -msgstr "" -"Die Instanz wird von Ihrer Liste gestrichen und alle ihre Daten werden nicht " -"mehr zugänglich sein." +#~ msgid "Expected credit" +#~ msgstr "Erwartete Gutschrift" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 #, c-format -msgid "Purging an instance %1$s" -msgstr "Die Instanz %1$s wird endgültig verworfen" +#~ msgid "Validated" +#~ msgstr "Überprüft (validiert)" -#. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 #, c-format -msgid "checking compatibility with server..." -msgstr "Prüfe Kompatibilität mit dem Server..." +#~ msgid "Executed on" +#~ msgstr "Ausführungsdatum" -#. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 #, c-format -msgid "Contacting the server failed" -msgstr "Der Kontaktversuch mit dem Server ist fehlgeschlagen" +#~ msgid "yes" +#~ msgstr "ja" -#. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 #, c-format -msgid "The server version is not supported" -msgstr "Die Serverversion wird nicht unterstützt" +#~ msgid "no" +#~ msgstr "nein" -#. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 #, c-format -msgid "Supported version \"%1$s\", server version \"%2$s\"." -msgstr "Unterstützte Version \"%1$s\", Serverversion \"%2$s\"." +#~ msgid "" +#~ "Only display transfers that have already been transferred to your bank " +#~ "account by the payment service provider." +#~ msgstr "" +#~ "Nur Überweisungen anzeigen, die vom Zahlungsdienst bereits an Ihr " +#~ "Bankkonto überwiesen wurden." -#. screenid: 26 -#: packages/merchant-backoffice-ui/src/paths/admin/create/InstanceCreatedSuccessfully.tsx:54 #, c-format -msgid "Business Name" -msgstr "Firmenname" +#~ msgid "Only show wire transfers confirmed by the merchant" +#~ msgstr "" +#~ "Nur Überweisungen anzeigen, die vom Verkäufer als auf dem Bankkonto " +#~ "eingegangen bestätigt sind" -#. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 #, c-format -msgid "Available statistics" -msgstr "Verfügbare Statistiken" +#~ msgid "Time" +#~ msgstr "Zeit" -#. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 #, c-format -msgid "There are no statistics to list" -msgstr "Es gibt noch keine Statistiken anzuzeigen" +#~ msgid "Taler developer" +#~ msgstr "Entwickler (Taler developer)" #, c-format #~ msgid "Default payment delay" @@ -6509,10 +7514,6 @@ msgstr "Es gibt noch keine Statistiken anzuzeigen" #~ msgstr "Die Übermittlung des Bestätigungscodes ist fehlgeschlagen" #, c-format -#~ msgid "Challenge expired" -#~ msgstr "Der Zeitraum für die Überprüfung ist abgelaufen" - -#, c-format #~ msgid "Too many attempts" #~ msgstr "Es gab zu viele fehlgeschlagene Versuche" @@ -6602,10 +7603,6 @@ msgstr "Es gibt noch keine Statistiken anzuzeigen" #~ "bereits getätigt wurden" #, c-format -#~ msgid "Complete" -#~ msgstr "Abschliessen" - -#, c-format #~ msgid "Second factor authorization required." #~ msgstr "" #~ "Es ist die Eingabe einer weiteren Information erforderlich (zweiter " @@ -6907,10 +7904,6 @@ msgstr "Es gibt noch keine Statistiken anzuzeigen" #~ msgstr "Das Gerät wurde erfolgreich gelöscht" #, c-format -#~ msgid "Could not delete the device" -#~ msgstr "Das Gerät konnte nicht gelöscht werden" - -#, c-format #~ msgid "Could not update template" #~ msgstr "Die Vorlage konnte nicht aktualisiert werden" @@ -7128,10 +8121,6 @@ msgstr "Es gibt noch keine Statistiken anzuzeigen" #~ msgstr "Webhook konnte nicht angelegt werden" #, c-format -#~ msgid "Could not delete the webhook" -#~ msgstr "Webhook konnte nicht gelöscht werden" - -#, c-format #~ msgid "Advance order creation" #~ msgstr "Bestellformular ausweiten" @@ -7140,10 +8129,6 @@ msgstr "Es gibt noch keine Statistiken anzuzeigen" #~ msgstr "Zeigt mehr Optionen im Formular zur Erfassung von Bestellungen" #, c-format -#~ msgid "Advance instance settings" -#~ msgstr "Anzeige der Einstellungen zu Instanzen ausweiten" - -#, c-format #~ msgid "" #~ "Shows more options and tools which are not intended for general audience." #~ msgstr "" @@ -7163,10 +8148,6 @@ msgstr "Es gibt noch keine Statistiken anzuzeigen" #~ msgstr "Die Kategorie wurde erfolgreich hinzugefügt" #, c-format -#~ msgid "Could not add category" -#~ msgstr "Die Kategorie konnte nicht hinzugefügt werden" - -#, c-format #~ msgid "Products that this category will list." #~ msgstr "Artikel, die in dieser Kategorie gelistet sind." diff --git a/packages/merchant-backoffice-ui/src/i18n/en.po b/packages/merchant-backoffice-ui/src/i18n/en.po @@ -28,55 +28,55 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 #, c-format -msgid "Correct form" +msgid "Correct the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -84,103 +84,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, c-format msgid "Account ID" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -189,13 +189,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, c-format +msgid "Bank app" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -203,19 +217,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -223,31 +237,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -255,39 +269,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" +"the PayTo URI below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "" @@ -316,74 +322,80 @@ msgstr "" msgid "seconds" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, c-format -msgid "Change value to empty" +msgid "Change the value to empty" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "" @@ -443,49 +455,49 @@ msgid "Additional address lines" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, c-format msgid "Product groups" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -497,91 +509,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, c-format +msgid "KYC Status" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, c-format +msgid "Payment services" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, c-format +msgid "Select one..." +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, c-format +msgid "Hours" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, c-format +msgid "Minutes" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, c-format +msgid "Seconds" +msgstr "" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -589,163 +643,174 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, c-format msgid "Payment delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, c-format msgid "Refund delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 #, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -753,1576 +818,1794 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 #, c-format -msgid "Expired" +msgid "Can't paste this content. Please copy the 8 digits again." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 #, c-format -msgid "Required" +msgid "Resend code possible in %1$s seconds." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 #, c-format -msgid "Unauthorized" +msgid "Resend code possible in less than one minute." msgstr "" #. screenid: 5 #: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 #, c-format -msgid "The code is not correct." -msgstr "" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 -#, c-format -msgid "The challenge is not known anymore." +msgid "Resend code possible in less than 5 minutes." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 #, c-format -msgid "Too many attempts trying to solve the challenge." +msgid "Resend will be possible after %1$s" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format -msgid "Validation code sent." +msgid "Expired" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgid "Required" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "verify code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format -msgid "Verification code" +msgid "Unauthorized" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format -msgid "It will expire at %1$s" +msgid "The code is not correct." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format -msgid "Back" +msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 #, c-format -msgid "Verify" +msgid "send challenge" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format msgid "Failed to send the verification code." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The server is not aware of the specified MFA challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format msgid "It is too early to request another transmission of the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Multi-factor authentication required." +msgid "Validation code sent." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, c-format -msgid "You need to complete all of this requirements." +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "An email to the address starting with %1$s" +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "Verification code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, c-format -msgid "I have a code" +msgid "Code expired." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Send me a message" +msgid "Didn't received the code?" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "Logged in" +msgid "Resend" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "Not found" +msgid "Verify" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "Login required" +msgid "The code transmission failed." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "Instance name." +msgid "The challenge is already solved." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "Instance password." +msgid "Multi-factor authentication required." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "Forgot password" +msgid "You must complete all of these requirements." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "Create new account" +msgid "You need to complete at least one of this requirements." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Invalid" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Doesn't have the pattern of an email" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "Should start with +" +msgid "Complete" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "A phone number consists of numbers only" +msgid "This is not a valid Bitcoin address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Invalid value" +msgid "This is not a valid Ethereum address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Max 7 lines" +msgid "This is not a valid host." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Doesn't match" +msgid "IBANs usually have more than 4 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Instance created" +msgid "IBANs usually have fewer than 34 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Unauthorized." +msgid "The IBAN's country code could not be retrieved." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Conflict." +msgid "The IBAN is invalid because the checksum is wrong." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "Not found." +msgid "This account is not allowed." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "New password" +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Next password to be used" +msgid "Wire method" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Repeat password" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Confirm the same password" +msgid "Select a wire method..." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "Routing" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "Confirm operation" +msgid "Routing number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Check the password." +msgid "Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, c-format -msgid "Instance not found." +msgid "Account number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "Description" +msgid "Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." +msgid "Business Identifier Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "Duration" +msgid "International Bank Account Number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "Time the access token will be valid." +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 -#, c-format -msgid "Refreshable access tokens can pose a security risk!" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#, c-format +msgid "Unified Payment Interface" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." +msgid "Bitcoin protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Scope" +msgid "Ethereum protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "Interledger protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Allows all operations without limit." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Allows all operations to read information." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "cyclos account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." +msgid "Name of the account holder" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." +msgid "Legal name of the person holding the account." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." +"Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "All (refreshable)" +msgid "Unexpected request error, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Spa" +msgid "Unexpected error." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Spa (refreshable)" +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "Choose one" +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 #, c-format -msgid "Read only" +msgid "Wrong password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 #, c-format -msgid "All" +msgid "The account doesn't exist." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Order simple" +msgid "Login required" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "Order Point-of-Sale" +msgid "Instance name." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "Order management" +msgid "Instance password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Order full" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "Read only (refreshable)" +msgid "Create new account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Order simple (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgctxt "title" +msgid "%1$s: Settings" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: New bank account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: Bank accounts" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Current password" +msgctxt "title" +msgid "%1$s: Update bank Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Please complete the marked fields" +msgctxt "title" +msgid "%1$s: Orders" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Access token created" +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: Update product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "No 'admin' instance configured yet." +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: Update category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Create access token" +msgctxt "title" +msgid "%1$s: Wire transfers" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Load more devices before the first one" +msgctxt "title" +msgid "%1$s: Webhooks" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Load first page" +msgctxt "title" +msgid "%1$s: New webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Created at" +msgctxt "title" +msgid "%1$s: Update webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Expires at" +msgctxt "title" +msgid "%1$s: OTP devices" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Never" +msgctxt "title" +msgid "%1$s: New OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Remove this access token" +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "Delete" +msgctxt "title" +msgid "%1$s: New template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Load more devices after the last one" +msgctxt "title" +msgid "%1$s: Update template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "Load next page" +msgctxt "title" +msgid "%1$s: Templates" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "%1$s: Use template" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Forbidden." +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Delete access token" +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "Deleting an access token cannot be undone." +msgctxt "title" +msgid "%1$s: New token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, c-format -msgid "This is not a valid Bitcoin address." +msgctxt "title" +msgid "%1$s: Update token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, c-format -msgid "This is not a valid Ethereum address." +msgctxt "title" +msgid "%1$s: Access tokens" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, c-format -msgid "This is not a valid host." +msgctxt "title" +msgid "%1$s: New access token" msgstr "" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 #, c-format -msgid "IBANs usually have more than 4 digits." +msgctxt "title" +msgid "%1$s: New POS access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "IBANs usually have fewer than 34 digits." +msgctxt "title" +msgid "New instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "The IBAN's country code could not be retrieved." +msgctxt "title" +msgid "Instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." +msgid "Testing environment" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format -msgid "This account is not allowed." +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 +#, c-format +msgid "Delete" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, c-format +msgid "Add new instance" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 +#, c-format +msgid "ID" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 +#, c-format +msgid "Name" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 +#, c-format +msgid "Edit" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 +#, c-format +msgid "Change password" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 +#, c-format +msgid "Purge" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 +#, c-format +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, c-format +msgid "delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 +#, c-format +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 +#, c-format +msgid "Unauthorized." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 +#, c-format +msgid "Not found." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 +#, c-format +msgid "Conflict." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 +#, c-format +msgid "Only show active instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#, c-format +msgid "Active" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, c-format +msgid "Only show deleted instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, c-format +msgid "Deleted" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 +#, c-format +msgid "Show all instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 +#, c-format +msgid "All" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 +#, c-format +msgid "Delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 +#, c-format +msgid "Delete the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Wire method" +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 +#, c-format +msgid "Deleting an instance %1$s" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 +#, c-format +msgid "This cannot be undone!" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 +#, c-format +msgid "Purge the instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 +#, c-format +msgid "Purge the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "Select a wire method..." +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, c-format -msgid "Routing" +msgid "Purging an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, c-format -msgid "Routing number" +msgid "create access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "Account" +msgid "Check the password." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "Account number" +msgid "Instance not found." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Code" +msgid "Description" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Business Identifier Code" +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "International Bank Account Number" +msgid "Duration" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "Time the access token will be valid." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "Unified Payment Interface" +msgid "Refreshable access tokens can pose a security risk!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format -msgid "Bitcoin protocol" +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Ethereum protocol" +msgid "Scope" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "Interledger protocol" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "Allows all operations without limit." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "Cyclos host" +msgid "Allows all operations to read information." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "cyclos account" +msgid "Allows the creation of orders and checking of payment status." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "Name of the account holder" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "John Doe" +msgid "Allows the creation of orders, checking of payment status and refunds." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format -msgid "Legal name of the person holding the account." +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Invalid url" +msgid "" +"Allows all operations to read information with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "URL must end with a '/'" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format -msgid "URL must not contain params" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "URL must not hash param" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format -msgid "Conflict" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 #, c-format -msgid "Server replied with \"bad request\"." +msgid "All (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "Unauthorized, check credentials." +msgid "Spa" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "Spa (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +msgid "Choose one" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "Unsupported type of account" +msgid "Read only" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "Account:" +msgid "Order simple" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +msgid "Order Point-of-Sale" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "Endpoint URL" +msgid "Order management" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +msgid "Order full" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Auth type" +msgid "Read only (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "Order simple (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Without authentication" +msgid "Order Point-of-Sale (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "With username and password" +msgid "Order management (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "With token" +msgid "Order full (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Do not change" +msgid "Current password" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Username to access the account information." +msgid "Please complete the marked fields" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Password to access the account information." +msgid "Confirm operation" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Access token to access the account information." +msgid "Access token created" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Match" +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Check where the information match against the server info." +msgid "Token" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Compare info from server with account form" +msgid "This token will never expire" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Test" +msgid "This token will be available until %1$s" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, c-format -msgid "Server didn't like the request we made." +msgid "Create access token" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Account details" +msgid "Load more devices before the first one" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "Check if the information matches the server info." +msgid "Load first page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "The bank account has been deleted." +msgid "Created at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 #, c-format -msgid "Delete account" +msgid "Expires at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Delete the account \"%1$s\"" +msgid "Never" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Remove this access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "Load more devices after the last one" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Deleting an account can't be undone." +msgid "Load next page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Bank accounts" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, c-format -msgid "Add new account" +msgid "delete access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Owner's name" +msgid "Forbidden." msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "Delete selected accounts from the database" +msgid "New point-of-sale access" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "Delete access token" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "You must provide a bank account to receive payments." +msgid "Deleting an access token cannot be undone." msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 #, c-format -msgid "Invalid. Please use only letters and numbers." +msgid "add category" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" +msgid "Not found" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 #, c-format -msgid "Category deleted" +msgid "delete category" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format -msgid "Add new devices" +msgid "Category deleted" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format -msgid "ID" +msgid "Add new devices" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, c-format +msgid "update category" +msgstr "" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 #, c-format -msgid "Account's KYC status" +msgid "create product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 #, c-format -msgid "Exchange" +msgid "delete product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 #, c-format -msgid "Status" +msgid "Product group deleted" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 #, c-format -msgid "Ok" +msgid "Add new group" +msgstr "" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, c-format +msgid "Load more groups before the first one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Action required" +msgid "Delete selected group from the database" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 #, c-format -msgid "Warning" +msgid "Load more groups after the last one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 #, c-format -msgid "Error" +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 +#, c-format +msgid "Account's KYC status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 +#, c-format +msgid "Exchange" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 +#, c-format +msgid "Status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 +#, c-format +msgid "Ok" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "The account for wire transfers is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" +msgid "No contact with the payment service yet." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 #, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +msgid "The server is still synchronizing with the payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment " "service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2330,9 +2613,15 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 #, c-format -msgid "Change value to unknown date" +msgid "Change value to empty" +msgstr "" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 +#, c-format +msgid "Change value to never" msgstr "" #. screenid: 12 @@ -2342,7 +2631,7 @@ msgid "Enter description or id" msgstr "" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "" @@ -2356,11 +2645,11 @@ msgstr "" #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 #, c-format -msgid "Quantity must be greater than 0!" +msgid "Quantity must be greater than zero." msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2368,49 +2657,55 @@ msgid "" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 #, c-format -msgid "Add from inventory" +msgid "Add it to the order" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 +#, c-format +msgid "Invalid" +msgstr "" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2418,7 +2713,7 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2426,297 +2721,309 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, c-format +msgid "Invalid URL" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 #, c-format -msgid "is not a valid URL" +msgid "create order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, c-format +msgid "Conflict" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 #, c-format -msgid "%1$s products with a total price of %2$s." +msgid "%1$s products with a total price of %2$s ." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2725,19 +3032,19 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2745,27 +3052,27 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2773,13 +3080,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2787,13 +3094,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2801,13 +3108,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2815,115 +3122,121 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 #, c-format -msgid "Select date to show nearby orders" +msgid "get product details" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -2931,628 +3244,747 @@ msgid "" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 #, c-format -msgid "Jump to date (%1$s)" +msgid "authorize refund" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, c-format +msgid "This order is not refundable" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " "service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, c-format -msgid "Transfer deadline for the exchange" +msgid "Transfer deadline for the payment service" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format -msgid "Time indicating when the order should be delivered" +msgid "Auto-refund delay" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format -msgid "Where the order will be delivered" +msgid "" +"How long the wallet should try to get an automatic refund for the purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 #, c-format -msgid "Auto-refund delay" +msgid "Time indicating when the order should be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 #, c-format -msgid "" -"How long the wallet should try to get an automatic refund for the purchase" +msgid "Where the order will be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 +#, c-format +msgid "The contract terms have a v1 order without choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, c-format +msgid "The contract terms have a v1 order with a bad choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "refund missed: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format msgid "refund created: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format msgid "refund taken: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund taken: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format -msgid "The contract terms has a v1 order with a bad choices_index." +msgid "wire deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 #, c-format -msgid "wired %1$s" +msgid "Related wire transfers" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 #, c-format -msgid "wire deadline" +msgid "Unconfirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" +msgid "Confirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, c-format +msgid "No wire transfer reported" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, c-format +msgid "Check wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 #, c-format -msgid "Pay at" +msgid "Payment link" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." msgstr "" +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, c-format +msgid "confirmed" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, c-format +msgid "unconfirmed" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" +msgid "Use only letters and digits (2–7)." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, c-format +msgid "add otp device" +msgstr "" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3560,19 +3992,19 @@ msgid "" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "" @@ -3584,7 +4016,7 @@ msgid "Create another" msgstr "" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3592,13 +4024,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, c-format +msgid "delete otp device" +msgstr "" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "" @@ -3610,143 +4048,299 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 #, c-format -msgid "Template id is unknown" +msgid "update otp device" msgstr "" #. screenid: 52 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format +msgid "Template id is unknown" +msgstr "" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 +#, c-format msgid "" "The provided information is inconsistent with the current state of the " "template" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, c-format +msgid "change password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, c-format +msgid "change instance password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, c-format msgid "Account not found." msgstr "" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, c-format +msgid "create money pot" +msgstr "" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, c-format +msgid "delete money pot" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, c-format +msgid "Add new pots" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, c-format +msgid "Total" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, c-format +msgid "Totals" +msgstr "" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3754,97 +4348,97 @@ msgid "" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 #, c-format -msgid "Incoming" +msgid "Current" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format -msgid "Lost" +msgid "Incoming" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format -msgid "Current" +msgid "Lost" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -3852,104 +4446,114 @@ msgid "" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" -#. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#. screenid: 23 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 +#, c-format +msgid "Search by group name or id" +msgstr "" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 #, c-format -msgid "Search by group name or id" +msgid "add product" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -3962,145 +4566,169 @@ msgid "Add product to inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, c-format +msgid "update product" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, c-format +msgid "infinite" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, c-format +msgid "delete product" +msgstr "" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4108,41 +4736,166 @@ msgid "" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "" #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, c-format +msgid "It should start with /" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, c-format +msgid "Type of the data source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, c-format +msgid "delete scheduled report" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, c-format +msgid "Add new reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, c-format +msgid "Delete selected scheduled report from the database" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4167,296 +4920,308 @@ msgid "Orders table" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, c-format +msgid "add template" +msgstr "" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4464,133 +5229,145 @@ msgid "" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, c-format +msgid "delete template" +msgstr "" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, c-format +msgid "update template" +msgstr "" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4598,19 +5375,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4618,103 +5395,153 @@ msgid "" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, c-format +msgid "create order from template" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, c-format +msgid "Granularity can't be greater than duration." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, c-format +msgid "create token family" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4722,83 +5549,116 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." +msgid "1 minute" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, c-format +msgid "1 hour" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, c-format +msgid "1 day" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, c-format +msgid "30 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, c-format +msgid "90 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, c-format +msgid "365 days" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, c-format +msgid "delete token family" +msgstr "" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4806,225 +5666,292 @@ msgid "" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 #, c-format -msgid "Token Family: %1$s" +msgid "update token family" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format -msgid "User-readable token family name" +msgid "Token Family: %1$s" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, c-format +msgid "inform wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 +#, c-format +msgid "Wire transfer already confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, c-format +msgid "The wire transfer has been confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, c-format +msgid "Transaction details" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, c-format +msgid "Transfer ID" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 +#, c-format +msgid "Orders in this wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 #, c-format -msgid "Token family description for customers" +msgid "Fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, c-format -msgid "Incoming wire transfers" +msgid "Subtotals" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Load more wire transfers preceding the first one" +msgid "Deposit fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, c-format -msgid "Expected credit" +msgid "Wire fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Confirmed" +msgid "not ready" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 #, c-format -msgid "Validated" +msgid "loading..." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, c-format -msgid "Executed on" +msgid "New wire transfers" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "yes" +msgid "Load more wire transfers preceding the first one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "no" +msgid "To be determined." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "never" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format -msgid "unknown" +msgid "Load more transfers after the last one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 #, c-format -msgid "Load more transfers after the last one" +msgid "Confirmed wire transfers into bank account" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 +#, c-format +msgid "Verified" +msgstr "" + +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format -msgid "Only show wire transfers confirmed by the merchant" +msgid "It's not the same." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format -msgid "Verified" +msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 #, c-format -msgid "Wire transfer already confirmed." +msgid "delete current instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format -msgid "I have received the wire transfer" +msgid "Instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format -msgid "Confirm the wire transfer" +msgid "Write the instance name to confirm the deletion" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"All the data will be fully deleted, otherwise only the access will be " +"removed." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format -msgid "Time" +msgid "DELETE" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 #, c-format -msgid "Transfer ID" +msgid "Doesn't have the pattern of an email" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 #, c-format -msgid "It's not the same." +msgid "Should start with +" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 #, c-format -msgid "You are deleting the instance with ID \"%1$s\"" +msgid "A phone number consists of numbers only" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 #, c-format -msgid "Instance" +msgid "Invalid phone number" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 #, c-format -msgid "Write the instance name to confirm the deletion" +msgid "Invalid value" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 #, c-format -msgid "Purge" +msgid "Max 7 lines" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 #, c-format -msgid "" -"All the data will be fully deleted, otherwise only the access will be " -"removed." +msgid "update instance settings" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format -msgid "DELETE" +msgid "Instance id" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 #, c-format -msgid "Instance id" +msgid "URL" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, c-format +msgid "Cancel operation" msgstr "" #. screenid: 74 @@ -5034,133 +5961,133 @@ msgid "Delete this instance" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, c-format +msgid "add webhook" +msgstr "" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5168,963 +6095,903 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, c-format +msgid "delete webhook" +msgstr "" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, c-format +msgid "update webhook" +msgstr "" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, c-format +msgid "self provision instance" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "Developer mode" +msgid "Developer tools" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, c-format -msgid "Money pot deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, c-format -msgid "Add new pots" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, c-format -msgid "Load more pots before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, c-format -msgid "Total" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, c-format -msgid "Delete selected pots from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, c-format -msgid "Load more pots after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 -#, c-format -msgid "Value can only by number" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, c-format -msgid "The value is too precise" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "Descripton" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, c-format -msgid "Totals" -msgstr "" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, c-format -msgid "There is already a money pot with the same id." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, c-format -msgid "Product group deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 -#, c-format -msgid "Add new group" +msgid "Enable UI tools for troubleshooting." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Load more groups before the first one" +msgid "Testing features" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Delete selected group from the database" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Load more groups after the last one" +msgid "Developer mode" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "There are no product groups yet, add more pressing the + sign" +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, c-format -msgid "Scheduled report deleted" +msgid "create pos access token" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, c-format -msgid "Scheduled reports" +msgid "Device name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Add new reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, c-format -msgid "Frequency" +msgid "Payment services status" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, c-format -msgid "Delete selected scheduled report from the database" +msgid "Base URL" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, c-format -msgid "There are no reports yet, add more pressing the + sign" +msgid "Next update" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, c-format -msgid "No report generator configured in the server" +msgid "This payment service is ready to be used." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, c-format -msgid "Type of the data source" +msgid "Next update will be at %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, c-format -msgid "Without this the merchant backend will refuse to create new orders." +msgid "Without this the server will refuse to create new orders." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 +#, c-format +msgid "" +"Some transfers are on hold until the KYC process is completed. Visit the KYC " +"section in the left-hand menu for more information." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#, c-format +msgid "No 'admin' instance configured yet." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 #, c-format -msgid "" -"Some transfers are on hold until the KYC process is completed. Visit the KYC " -"section in the left-hand menu for more information." +msgid "Create an 'admin' instance to begin using the merchant portal." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, c-format -msgctxt "title" -msgid "%1$s: Settings" +msgid "delete bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, c-format -msgctxt "title" -msgid "%1$s: New bank account" +msgid "The bank account has been deleted." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" +msgid "Delete account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" +msgid "Delete the account \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: Orders" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "Deleting an account can't be undone." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "Bank accounts" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 #, c-format -msgctxt "title" -msgid "%1$s: Update product" +msgid "Add new account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: Category" +msgid "Owner's name" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "Delete selected accounts from the database" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: Update category" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" +msgid "No bank account configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" +msgid "Without this information you cannot create new payment orders." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" +msgid "This account is not ready to be used." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, c-format -msgctxt "title" -msgid "%1$s: Update webhook" +msgid "There are pending actions related to KYC." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" +msgid "More details." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" +msgid "You must complete kyc requirements to receive payments." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgctxt "title" -msgid "%1$s: New template" +msgid "Invalid url" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: Update template" +msgid "URL must end with a '/'" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: Templates" +msgid "URL must not contain params" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Use template" +msgid "URL must not hash param" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "change bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "Server replied with \"bad request\"." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: Access tokens" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "%1$s: New access token" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "New instance" +msgid "Unsupported type of account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgctxt "title" -msgid "Instances" +msgid "Account:" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "Account details" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, c-format -msgid "The request was cancelled." +msgid "Extra subject" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The server's response was malformed." +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Unexpected request error." +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Unexpected error." +msgid "Auth type" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Add new instance" +msgid "Choose the authentication type for the account info URL" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" +msgid "Without authentication" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Change password" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." +msgid "With token" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgid "Do not change" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" +msgid "Username to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" +msgid "Password to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" +msgid "Access token to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" +msgid "Match" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" +msgid "Check where the information match against the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Delete instance" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "Delete the instance \"%1$s\"" +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" +msgid "add bank account" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." +msgid "The instance does not exist." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgid "Deleting an instance %1$s" +msgid "" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "This cannot be undone!" +msgid "Server didn't like the request we made." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Purge the instance" +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purge the instance \"%1$s\"" +msgid "Verify details with server" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" +msgid "create instance and login" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Instance created" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Purging an instance %1$s" +msgid "Please complete the marked fields and choose authorization method" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6135,14 +7002,20 @@ msgstr "" msgid "Business Name" msgstr "" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, c-format +msgid "update product group" +msgstr "" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" diff --git a/packages/merchant-backoffice-ui/src/i18n/es.po b/packages/merchant-backoffice-ui/src/i18n/es.po @@ -29,55 +29,55 @@ msgstr "" "X-Generator: Weblate 5.13.2\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "Cancelar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "%1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "Cerrar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "Continuar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "Limpiar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "Confirmar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 -#, c-format -msgid "Correct form" +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#, fuzzy, c-format +msgid "Correct the form" msgstr "Formulario correcto" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "Comparando detalles de cuenta" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -87,103 +87,103 @@ msgstr "" "información de cuenta reportada no coincide con los detalles del formulario." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "Campo" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "En el formulario" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" -msgstr "Reportado" +msgstr "Informado" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "Tipo" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "IBAN" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "Dirección" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "Host" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, c-format msgid "Account ID" msgstr "ID de cuenta" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "El nombre legal del titular de la cuenta" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "El código postal del domicilio del titular de la cuenta" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "Ciudad" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "Host del banco" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "Cuenta bancaria" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "BIC" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "Aceptar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "Validar cuenta bancaria: %1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -195,69 +195,86 @@ msgstr "" "asunto que figura a continuación." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" +"Si tu aplicación bancaria permite realizar transferencias mediante códigos " +"QR estándar, intentá escanear el siguiente:" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, fuzzy, c-format +msgid "Bank app" +msgstr "Cuenta bancaria" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "Paso 1:" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " "respective fields in your preferred banking app or online banking website." msgstr "" "Copiá y pegá este IBAN y el nombre legal del titular beneficiario en los " -"campos correspondientes de tu aplicación bancaria o sitio web de banca en línea." +"campos correspondientes de tu aplicación bancaria o sitio web de banca en " +"línea." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "Beneficiario" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "Paso 2:" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " "preferred banking app or online banking website." msgstr "" -"Copiá este texto y pegalo en el campo 'Asunto' o 'Concepto' de tu " -"aplicación bancaria o sitio web de banca en línea." +"Copiá este texto y pegalo en el campo 'Asunto' o 'Concepto' de tu aplicación " +"bancaria o sitio web de banca en línea." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "Asunto" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "Código postal del destinatario" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "Ciudad del destinatario" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "Paso 3:" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -267,47 +284,38 @@ msgstr "" "aplicación bancaria o sitio web de banca en línea." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 -#, c-format +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 +#, fuzzy, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." +"the PayTo URI below to copy just one value." msgstr "" "Asegurate de que TODOS los datos sean correctos, especialmente el asunto, y " -"que estés eligiendo la cuenta bancaria desde la que realmente querés realizar " -"la transferencia. Podés usar los botones de copiar (%1$s) para evitar errores " -"de tipeo, o usar el URI \"payto://\" de más abajo para copiar un único valor." - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" -msgstr "" -"Si tu aplicación bancaria permite realizar transferencias mediante códigos QR " -"estándar, intentá escanear el siguiente:" +"que estés eligiendo la cuenta bancaria desde la que realmente querés " +"realizar la transferencia. Podés usar los botones de copiar (%1$s) para " +"evitar errores de tipeo, o usar el URI \"payto://\" de más abajo para copiar " +"un único valor." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 -#, c-format +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 +#, fuzzy, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" -"Como alternativa, si tu banco ya soporta el estándar 'PayTo URI', " -"podés usar este enlace %1$s en su lugar" +"Como alternativa, si tu banco ya soporta el estándar 'PayTo URI', podés usar " +"este enlace %1$s en su lugar" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "Operación en progreso..." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "La operación se cancelará automáticamente después de %1$s segundos" @@ -336,74 +344,80 @@ msgstr "minutos" msgid "seconds" msgstr "segundos" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "Siempre" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "%1$sM" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "%1$sA" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "%1$sd" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "%1$sh" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "%1$smin" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "%1$sseg" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 -#, c-format -msgid "Change value to never" +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 +#, fuzzy, c-format +msgid "Change the value to never" msgstr "Cambiar valor a nunca" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 -#, c-format -msgid "Change value to empty" +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 +#, fuzzy, c-format +msgid "Change the value to empty" msgstr "Cambiar valor a vacío" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 -#, c-format -msgid "Image must be smaller than 1 MB" +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, fuzzy, c-format +msgid "The file is not an image" +msgstr "El valor es demasiado alto" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 +#, fuzzy, c-format +msgid "The image was normalized to be smaller than 1 MB" msgstr "La imagen debe ser menor a 1 MB" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "Agregar" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "Eliminar" @@ -463,49 +477,49 @@ msgid "Additional address lines" msgstr "Líneas de dirección adicionales" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "Órdenes" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "Inventario" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "Categorías" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "Transferencias bancarias" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "Plantillas" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, c-format msgid "Product groups" msgstr "Grupos de productos" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "Fondos" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "Informes" @@ -517,91 +531,133 @@ msgid "Statistics" msgstr "Estadísticas" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "Suscripciones y descuentos" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "Configuración" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, fuzzy, c-format +msgid "KYC Status" +msgstr "Estado KYC" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "Dispositivos OTP" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "Webhooks" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "Configuración" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "Contraseña" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "Tokens de acceso" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "Conexión" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "Personalización" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, fuzzy, c-format +msgid "Payment services" +msgstr "Servicios de pago" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "Instancias" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "Nueva" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "Lista" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "Cerrar sesión" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, fuzzy, c-format +msgid "Select one..." +msgstr "Seleccioná uno" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "Días" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, fuzzy, c-format +msgid "Hours" +msgstr "horas" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, fuzzy, c-format +msgid "Minutes" +msgstr "minutos" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, fuzzy, c-format +msgid "Seconds" +msgstr "segundos" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "Usuario" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -611,118 +667,116 @@ msgstr "" "se utiliza para administrar otras instancias." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "Nombre del negocio" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "Nombre legal del negocio representado por esta instancia." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "Correo electrónico" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "Correo electrónico de contacto" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "Número de teléfono" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "Teléfono de contacto" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "URL del sitio web" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "URL." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "Logotipo" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "Imagen del logotipo." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "Pagar comisión de transacción" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "Absorber el costo de transacción o trasladárselo al usuario." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "Ubicación física del comerciante." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "Jurisdicción" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "Jurisdicción para disputas legales con el comerciante." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "Plazos predeterminados" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 -#, c-format +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#, fuzzy, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." -msgstr "" -"Estos valores se usarán si no se sobreescriben al crear una orden." +"These values will be used if they are not overridden during order creation." +msgstr "Estos valores se usarán si no se sobreescriben al crear una orden." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, c-format msgid "Payment delay" msgstr "Plazo de pago" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." @@ -731,1603 +785,1855 @@ msgstr "" "expire de forma predeterminada." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "Cambiar el valor por omisión indicado por el servidor." + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "Restablecer" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, c-format msgid "Refund delay" msgstr "Plazo de reembolso" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "Tiempo que tiene el comerciante para reembolsar una orden." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "Plazo de transferencia bancaria" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 -#, c-format +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 +#, fuzzy, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" "Tiempo máximo que un proveedor puede demorar en transferir fondos al " "comerciante, lo que le permite agrupar pagos menores en transferencias más " "grandes y reducir las comisiones." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "Redondeo de transferencia bancaria" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." -msgstr "Intervalo al que deben redondearse los plazos de transferencia." +msgid "Rounding interval for wire deadlines." +msgstr "Invervalo de redondeo para las transferencias bancarias." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " "be rounded to midnight." msgstr "" -"Por ejemplo, si establecés el intervalo en día, el plazo de transferencia " -"se redondeará a medianoche." +"Por ejemplo, si establecés el intervalo en día, el plazo de transferencia se " +"redondeará a medianoche." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "Sin redondeo" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "Al segundo" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "Al minuto" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "A la hora" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "Al día" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "A la semana" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "Al mes" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "Al trimestre" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "Al año" +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 +#, c-format +msgid "Can't paste this content. Please copy the 8 digits again." +msgstr "" +"No se puede pegar este contenido. Por favor copiá los 8 dígitos otra vez." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 +#, c-format +msgid "Resend code possible in %1$s seconds." +msgstr "Reenviar el código será posible en %1$s segundos." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 +#, c-format +msgid "Resend code possible in less than one minute." +msgstr "Reenviar el código sera posible en menos de un minuto." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#, c-format +msgid "Resend code possible in less than 5 minutes." +msgstr "Reenviar el código sera posible en menos de 5 minutos." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 +#, fuzzy, c-format +msgid "Resend will be possible after %1$s" +msgstr "Vencerá el %1$s" + #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format msgid "Expired" msgstr "Vencido" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format msgid "Required" msgstr "Requerido" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#, fuzzy, c-format +msgid "verify code" +msgstr "Código de verificación" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format msgid "Unauthorized" msgstr "No autorizado" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format msgid "The code is not correct." msgstr "El código no es correcto." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 -#, c-format -msgid "The challenge is not known anymore." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 +#, fuzzy, c-format +msgid "The challenge is no longer valid." msgstr "El desafío ya no es reconocido." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format msgid "Too many attempts trying to solve the challenge." msgstr "Demasiados intentos para resolver el desafío." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 +#, fuzzy, c-format +msgid "send challenge" +msgstr "Contraseña cambiada" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format -msgid "Validation code sent." -msgstr "Código de validación enviado." +msgid "Failed to send the verification code." +msgstr "No se pudo enviar el código de verificación." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" -msgstr "El código de verificación enviado al número de teléfono que termina en \"%1$s\"" +msgid "The request was valid, but the server is refusing action." +msgstr "La solicitud fue válida, pero el servidor rechazó la acción." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 +#, fuzzy, c-format +msgid "The server is not aware of the specified MFA challenge." +msgstr "El server no reconoce el desafío MFA especificado." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" -msgstr "El código de verificación enviado a la dirección de correo que comienza con \"%1$s\"" +msgid "Code transmission failed." +msgstr "Falló la transmisión del código." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format -msgid "Verification code" -msgstr "Código de verificación" +msgid "Already solved." +msgstr "Ya fue resuelto." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format -msgid "It will expire at %1$s" -msgstr "Vencerá el %1$s" +msgid "It is too early to request another transmission of the challenge." +msgstr "Es demasiado pronto para solicitar otro envío del desafío." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "Validation code sent." +msgstr "Código de validación enviado." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 +#, fuzzy, c-format +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" -"El desafío venció y no puede resolverse, pero podés volver atrás y crear " -"uno nuevo." +"El código de verificación enviado al número de teléfono que termina en " +"\"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "Back" -msgstr "Volver" +msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgstr "" +"El código de verificación enviado al número de teléfono que termina en " +"\"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 -#, c-format -msgid "Verify" -msgstr "Verificar" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 +#, fuzzy, c-format +msgid "The verification code sent to the email address \" %1$s\"" +msgstr "" +"El código de verificación enviado a la dirección de correo que comienza con " +"\"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "Failed to send the verification code." -msgstr "No se pudo enviar el código de verificación." +msgid "The verification code sent to the email address starting with \"%1$s\"" +msgstr "" +"El código de verificación enviado a la dirección de correo que comienza con " +"\"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "The request was valid, but the server is refusing action." -msgstr "La solicitud fue válida, pero el servidor rechazó la acción." +msgid "Verification code" +msgstr "Código de verificación" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 -#, c-format -msgid "The backend is not aware of the specified MFA challenge." -msgstr "El backend no reconoce el desafío MFA especificado." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 +#, fuzzy, c-format +msgid "Code expired." +msgstr "Vencido" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Code transmission failed." -msgstr "Falló la transmisión del código." +msgid "Didn't received the code?" +msgstr "No recibiste el código?" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 -#, c-format -msgid "Already solved." -msgstr "Ya fue resuelto." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 +#, fuzzy, c-format +msgid "Resend" +msgstr "Restablecer" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "It is too early to request another transmission of the challenge." -msgstr "Es demasiado pronto para solicitar otro envío del desafío." +msgid "Verify" +msgstr "Verificar" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 +#, fuzzy, c-format +msgid "The code transmission failed." +msgstr "Falló la transmisión del código." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 +#, fuzzy, c-format +msgid "The challenge is already solved." +msgstr "El desafío ya no es reconocido." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format msgid "Multi-factor authentication required." msgstr "Se requiere autenticación multifactor." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 -#, c-format -msgid "You need to complete all of this requirements." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 +#, fuzzy, c-format +msgid "You must complete all of these requirements." msgstr "Tenés que completar todos estos requisitos." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format msgid "You need to complete at least one of this requirements." msgstr "Tenés que completar al menos uno de estos requisitos." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format msgid "An SMS to the phone number ending with %1$s" msgstr "Un SMS al número de teléfono que termina en %1$s" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format msgid "An email to the address starting with %1$s" msgstr "Un correo electrónico a la dirección que comienza con %1$s" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 -#, c-format -msgid "You have to wait until %1$s to send a new code." -msgstr "Tenés que esperar hasta %1$s para enviar un nuevo código." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 +#, fuzzy, c-format +msgid "Complete" +msgstr "Completado" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "I have a code" -msgstr "Tengo un código" +msgid "This is not a valid Bitcoin address." +msgstr "Esta no es una dirección de Bitcoin válida." -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Send me a message" -msgstr "Enviarme un mensaje" +msgid "This is not a valid Ethereum address." +msgstr "Esta no es una dirección de Ethereum válida." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Logged in" -msgstr "Sesión iniciada" +msgid "This is not a valid host." +msgstr "Este no es un host válido." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Not found" -msgstr "No encontrado" +msgid "IBANs usually have more than 4 digits." +msgstr "Los IBAN generalmente tienen más de 4 dígitos." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Login required" -msgstr "Se requiere iniciar sesión" +msgid "IBANs usually have fewer than 34 digits." +msgstr "Los IBAN generalmente tienen menos de 34 dígitos." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Instance name." -msgstr "Nombre de la instancia." +msgid "The IBAN's country code could not be retrieved." +msgstr "No se pudo obtener el código de país del IBAN." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Instance password." -msgstr "Contraseña de la instancia." +msgid "The IBAN is invalid because the checksum is wrong." +msgstr "El IBAN no es válido porque el dígito verificador es incorrecto." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "Forgot password" -msgstr "Olvidé mi contraseña" +msgid "This account is not allowed." +msgstr "Esta cuenta no está permitida." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 -#, c-format -msgid "Create new account" -msgstr "Crear nueva cuenta" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#, fuzzy, c-format +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" +msgstr "" +"Ninguno de los métodos de transferencia soportados por el servidor es " +"compatible con esta aplicación. Configuración del servidor: %1$s" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Invalid" -msgstr "No válido" +msgid "Wire method" +msgstr "Método de transferencia" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Doesn't have the pattern of an email" -msgstr "No tiene el formato de un correo electrónico" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." +msgstr "" +"Seleccioná el método que querés usar para transferir tus ganancias a tu " +"cuenta comercial." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 -#, c-format -msgid "Should start with +" -msgstr "Debe comenzar con +" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "A phone number consists of numbers only" -msgstr "Un número de teléfono contiene únicamente dígitos" +msgid "Select a wire method..." +msgstr "Seleccioná un método de transferencia..." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Invalid value" -msgstr "Valor no válido" +msgid "Routing" +msgstr "Enrutamiento" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "Max 7 lines" -msgstr "Máximo 7 líneas" +msgid "Routing number" +msgstr "Número de enrutamiento" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Doesn't match" -msgstr "No coincide" +msgid "Account" +msgstr "Cuenta" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, c-format -msgid "Instance created" -msgstr "Instancia creada" +msgid "Account number" +msgstr "Número de cuenta" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "Unauthorized." -msgstr "No autorizado." +msgid "Code" +msgstr "Código" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "Conflict." -msgstr "Conflicto." +msgid "Business Identifier Code" +msgstr "Código de identificación de empresa" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "Not found." -msgstr "No encontrado." +msgid "International Bank Account Number" +msgstr "Número de cuenta bancaria internacional" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "New password" -msgstr "Nueva contraseña" +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgstr "tu número de cuenta bancaria, p. ej. DE12 0000 1111 2222 3333 00" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, c-format -msgid "Next password to be used" -msgstr "Próxima contraseña a utilizar" +msgid "Unified Payment Interface" +msgstr "Interfaz de pago unificada" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "Repeat password" -msgstr "Repetir contraseña" +msgid "Bitcoin protocol" +msgstr "Protocolo Bitcoin" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Confirm the same password" -msgstr "Confirmá la misma contraseña" +msgid "Ethereum protocol" +msgstr "Protocolo Ethereum" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "Please complete the marked fields and choose authorization method" -msgstr "Por favor completá los campos marcados y elegí un método de autorización" +msgid "Interledger protocol" +msgstr "Protocolo Interledger" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Confirm operation" -msgstr "Confirmar operación" +msgid "Enter the data without a scheme. A subpath may be included:" +msgstr "Ingresá los datos sin esquema. Se puede incluir una subruta:" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Check the password." -msgstr "Verificá la contraseña." +msgid "Cyclos host" +msgstr "Host de Cyclos" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, c-format -msgid "Instance not found." -msgstr "Instancia no encontrada." +msgid "cyclos account" +msgstr "Cuenta Cyclos" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "Description" -msgstr "Descripción" +msgid "Name of the account holder" +msgstr "Nombre del titular de la cuenta" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." -msgstr "" -"Te ayuda a recordar dónde se está usando este token de acceso antes de eliminarlo." +msgid "John Doe" +msgstr "Juan Pérez" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "Duration" -msgstr "Duración" +msgid "Legal name of the person holding the account." +msgstr "Nombre legal de la persona titular de la cuenta." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "Time the access token will be valid." -msgstr "Tiempo durante el cual el token de acceso será válido." +msgid "The request reached a timeout, check your connection." +msgstr "El pedido alcanzó un tiempo máximo, verificá tu conexión." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 -#, c-format -msgid "Refreshable access tokens can pose a security risk!" -msgstr "¡Los tokens de acceso renovables pueden representar un riesgo de seguridad!" +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#, fuzzy, c-format +msgid "The request was cancelled." +msgstr "La orden fue transferida." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." +"Too many requests were made to the server and this action was throttled." msgstr "" -"Los tokens de acceso renovables pueden actualizarse antes de que venza su " -"tiempo de vida, otorgando acceso ilimitado a quien los posea. Usá esta opción " -"solo si sabés lo que estás haciendo y evaluaste los riesgos asociados, " -"especialmente respecto a los permisos otorgados por el alcance." +"Demasiados pedidos foeron hechos al servidor y esta acción sera limitada." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "Scope" -msgstr "Alcance" +msgid "The server's response was malformed, please report." +msgstr "La respuesta del servidor esta mal formada, por favor reportalo." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." -msgstr "" -"El alcance define el conjunto de permisos del token de acceso. Los tokens " -"renovables tienen permiso para extender el tiempo de vencimiento." +msgid "Could not complete the request due to a network problem." +msgstr "No sep uede completar el pedido debido a un problema de red." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "Allows all operations without limit." -msgstr "Permite todas las operaciones sin restricción." +msgid "Unexpected request error, please report." +msgstr "Error inesperado en el pedido, por favor reportalo." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Allows all operations to read information." -msgstr "Permite todas las operaciones de lectura de información." +msgid "Unexpected error." +msgstr "Error inesperado." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Allows the creation of orders and checking of payment status." -msgstr "Permite crear órdenes y consultar el estado de pago." +msgid "login" +msgstr "iniciar sesión" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." -msgstr "" -"Permite crear órdenes, consultar el estado de pago y bloquear inventario." +msgid "Logged in" +msgstr "Sesión iniciada" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 -#, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." -msgstr "Permite crear órdenes, consultar el estado de pago y gestionar reembolsos." +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 +#, fuzzy, c-format +msgid "Wrong password." +msgstr "Olvidé mi contraseña" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 +#, fuzzy, c-format +msgid "The account doesn't exist." +msgstr "La orden no existe" + +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." -msgstr "" -"Permite crear órdenes, consultar el estado de pago, bloquear inventario y " -"gestionar reembolsos." +msgid "Login required" +msgstr "Se requiere iniciar sesión" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." -msgstr "" -"Permite todas las operaciones de lectura con tiempo de vencimiento extendible." +msgid "Instance name." +msgstr "Nombre de la instancia." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." -msgstr "" -"Permite crear órdenes y consultar el estado de pago con tiempo de vencimiento extendible." +msgid "Instance password." +msgstr "Contraseña de la instancia." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." -msgstr "" -"Permite crear órdenes, consultar el estado de pago y bloquear inventario " -"con tiempo de vencimiento extendible." +msgid "Forgot password" +msgstr "Olvidé mi contraseña" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." -msgstr "" -"Permite crear órdenes, consultar el estado de pago y gestionar reembolsos " -"con tiempo de vencimiento extendible." +msgid "Create new account" +msgstr "Crear nueva cuenta" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -"Permite crear órdenes, consultar el estado de pago, bloquear inventario y " -"gestionar reembolsos con tiempo de vencimiento extendible." +"Sigue este link para encontrar videos tutoriales sobre como puedes usar los " +"components GNU Taler." + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Settings" +msgstr "Configuración" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 -#, c-format -msgid "All (refreshable)" -msgstr "Todo (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New bank account" +msgstr "Cuenta bancaria" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 -#, c-format -msgid "Spa" -msgstr "Spa" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Bank accounts" +msgstr "Cuentas bancarias" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 -#, c-format -msgid "Spa (refreshable)" -msgstr "Spa (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update bank Account" +msgstr "Validar cuenta bancaria: %1$s" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 -#, c-format -msgid "Choose one" -msgstr "Elegir uno" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Orders" +msgstr "Órdenes" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Read only" -msgstr "Solo lectura" +msgctxt "title" +msgid "%1$s: New order" +msgstr "%1$s: Nueva orden" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 -#, c-format -msgid "All" -msgstr "Todo" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Inventory" +msgstr "Inventario" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 -#, c-format -msgid "Order simple" -msgstr "Orden simple" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 +#, c-format +msgctxt "title" +msgid "%1$s: New product" +msgstr "%1$s: Nuevo producto" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 +#, c-format +msgctxt "title" +msgid "%1$s: Update product" +msgstr "%1$s: Actualizar producto" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 +#, c-format +msgctxt "title" +msgid "%1$s: Category" +msgstr "%1$s: Categoría" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 +#, c-format +msgctxt "title" +msgid "%1$s: New category" +msgstr "%1$s: Nueva categoría" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 +#, c-format +msgctxt "title" +msgid "%1$s: Update category" +msgstr "%1$s: Actualizar categoría" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Wire transfers" +msgstr "%1$s: Transferencias bancarias" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Webhooks" +msgstr "%1$s: Webhooks" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New webhook" +msgstr "%1$s: Nuevo webhooks" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 +#, c-format +msgctxt "title" +msgid "%1$s: Update webhook" +msgstr "%1$s: Actualizar webhook" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: OTP devices" +msgstr "%1$s: Dispositivos OTP" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New OTP device" +msgstr "%1$s: Nuevo dispositivo OTP" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update OTP device" +msgstr "%1$s: Actualizar dispositivo OTP" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New template" +msgstr "%1$s: Nueva plantilla" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update template" +msgstr "Eliminar plantilla" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 -#, c-format -msgid "Order Point-of-Sale" -msgstr "Orden punto de venta" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 -#, c-format -msgid "Order management" -msgstr "Gestión de órdenes" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 -#, c-format -msgid "Order full" -msgstr "Orden completa" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Templates" +msgstr "Plantillas" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 -#, c-format -msgid "Read only (refreshable)" -msgstr "Solo lectura (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Use template" +msgstr "Agregar nuevas plantillas" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 -#, c-format -msgid "Order simple (refreshable)" -msgstr "Orden simple (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Personalization" +msgstr "Personalización" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 -#, c-format -msgid "Order Point-of-Sale (refreshable)" -msgstr "Orden punto de venta (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 +#, c-format +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" +msgstr "%1$s: Descuento y suscripciones" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New token family" +msgstr "%1$s: Nueva familia de tokens" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update token family" +msgstr "%1$s: Actualizar familia de tokens" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Access tokens" +msgstr "Tokens de acceso" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 -#, c-format -msgid "Order management (refreshable)" -msgstr "Gestión de órdenes (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New access token" +msgstr "Crear token de acceso" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 -#, c-format -msgid "Order full (refreshable)" -msgstr "Orden completa (renovable)" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New POS access token" +msgstr "Crear token de acceso" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 -#, c-format -msgid "Current password" -msgstr "Contraseña actual" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 +#, fuzzy, c-format +msgctxt "title" +msgid "New instance" +msgstr "Instancia" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 -#, c-format -msgid "Please complete the marked fields" -msgstr "Por favor completá los campos marcados" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 +#, fuzzy, c-format +msgctxt "title" +msgid "Instances" +msgstr "Instancias" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "Access token created" -msgstr "Token de acceso creado" +msgid "Testing environment" +msgstr "Ambiente de pruebas" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -"Copiá el valor del token de acceso y guardalo, ya que no podrás recuperarlo " -"más adelante." +"Este servidor esta pensado para probar caracteristicas y configuraciones. No " +"lo uses con tu información personal." -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 #, c-format -msgid "Token" -msgstr "Token" +msgid "Delete" +msgstr "Borrar" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 -#, c-format -msgid "This token will never expire" -msgstr "Este token nunca vencerá" +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, fuzzy, c-format +msgid "Add new instance" +msgstr "Agregar nuevo instancia" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 #, c-format -msgid "This token will be available until %1$s" -msgstr "Este token estará disponible hasta el %1$s" +msgid "ID" +msgstr "ID" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 #, c-format -msgid "No 'admin' instance configured yet." -msgstr "Aún no se configuró ninguna instancia 'admin'." +msgid "Name" +msgstr "Nombre" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." -msgstr "Creá una instancia 'admin' para comenzar a usar el backoffice del comerciante." +msgid "Edit" +msgstr "Editar" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 -#, c-format -msgid "Create access token" -msgstr "Crear token de acceso" +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 +#, fuzzy, c-format +msgid "Change password" +msgstr "Nueva contraseña" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 #, c-format -msgid "Load more devices before the first one" -msgstr "Cargar más dispositivos antes del primero" +msgid "Purge" +msgstr "Purgar" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 -#, c-format -msgid "Load first page" -msgstr "Cargar primera página" +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 +#, fuzzy, c-format +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "Aún no hay sesiones activas, agregá una presionando el signo +" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 -#, c-format -msgid "Created at" -msgstr "Creado el" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, fuzzy, c-format +msgid "delete instance" +msgstr "Eliminar esta instancia" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 +#, fuzzy, c-format +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "El producto (ID: %1$s) fue eliminado" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 #, c-format -msgid "Expires at" -msgstr "Vence el" +msgid "Unauthorized." +msgstr "No autorizado." -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 #, c-format -msgid "Never" -msgstr "Nunca" +msgid "Not found." +msgstr "No encontrado." -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 #, c-format -msgid "Remove this access token" -msgstr "Eliminar este token de acceso" +msgid "Conflict." +msgstr "Conflicto." -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 +#, fuzzy, c-format +msgid "Only show active instances" +msgstr "Mostrar solo órdenes pagas" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 #, c-format -msgid "Delete" +msgid "Active" +msgstr "Activo" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, fuzzy, c-format +msgid "Only show deleted instances" +msgstr "Mostrar solo órdenes con reembolsos" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, fuzzy, c-format +msgid "Deleted" msgstr "Borrar" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 #, c-format -msgid "Load more devices after the last one" -msgstr "Cargar más dispositivos después del último" +msgid "Show all instances" +msgstr "Mostrar todas las intancias" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 #, c-format -msgid "Load next page" -msgstr "Cargar siguiente página" +msgid "All" +msgstr "Todo" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 -#, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" -msgstr "Aún no hay sesiones activas, agregá una presionando el signo +" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 +#, fuzzy, c-format +msgid "Delete instance" +msgstr "Eliminar esta instancia" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 -#, c-format -msgid "Forbidden." -msgstr "Acceso denegado." +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 +#, fuzzy, c-format +msgid "Delete the instance \"%1$s\"" +msgstr "Eliminar la plantilla \"%1$s\"" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 -#, c-format -msgid "Delete access token" -msgstr "Eliminar token de acceso" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 +#, fuzzy, c-format +msgid "" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" +msgstr "" +"Si eliminás el producto llamado %1$s (ID: %2$s), se perderán el stock y la " +"información relacionada" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Deleting an access token cannot be undone." -msgstr "La eliminación de un token de acceso no puede deshacerse." +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." +msgstr "" +"Esta acción elimina la clave privada de la instancia, pero preserva toda la " +"información transaccional. Aún podés acceder a la información transaccional " +"luego de haber eliminado la instancia." + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 +#, fuzzy, c-format +msgid "Deleting an instance %1$s" +msgstr "Eliminando la instancia \"%1$s\"" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 +#, fuzzy, c-format +msgid "This cannot be undone!" +msgstr "Esto NO puede deshacerse!" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 +#, fuzzy, c-format +msgid "Purge the instance" +msgstr "Purgar la instancia" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 +#, fuzzy, c-format +msgid "Purge the instance \"%1$s\"" +msgstr "Purgar la instancia \"%1$s\"" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 +#, fuzzy, c-format +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" +msgstr "" +"Si purgás la instancia con nombre %1$s (ID: %2$s) podrías perder información" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "This is not a valid Bitcoin address." -msgstr "Esta no es una dirección de Bitcoin válida." +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." +msgstr "" +"La instancia desaparecerá de tu lista and no te será posible acceder a esta " +"información." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 +#, fuzzy, c-format +msgid "Purging an instance %1$s" +msgstr "Purgando una instancia %1$s" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 +#, fuzzy, c-format +msgid "create access token" +msgstr "crear token de acceso" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "This is not a valid Ethereum address." -msgstr "Esta no es una dirección de Ethereum válida." +msgid "Check the password." +msgstr "Verificá la contraseña." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "This is not a valid host." -msgstr "Este no es un host válido." +msgid "Instance not found." +msgstr "Instancia no encontrada." -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "IBANs usually have more than 4 digits." -msgstr "Los IBAN generalmente tienen más de 4 dígitos." +msgid "Description" +msgstr "Descripción" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "IBANs usually have fewer than 34 digits." -msgstr "Los IBAN generalmente tienen menos de 34 dígitos." +msgid "" +"Helps you remember where this access token is being used before deleting it." +msgstr "" +"Te ayuda a recordar dónde se está usando este token de acceso antes de " +"eliminarlo." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "The IBAN's country code could not be retrieved." -msgstr "No se pudo obtener el código de país del IBAN." +msgid "Duration" +msgstr "Duración" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." -msgstr "El IBAN no es válido porque el dígito verificador es incorrecto." +msgid "Time the access token will be valid." +msgstr "Tiempo durante el cual el token de acceso será válido." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "This account is not allowed." -msgstr "Esta cuenta no está permitida." +msgid "Refreshable access tokens can pose a security risk!" +msgstr "" +"¡Los tokens de acceso renovables pueden representar un riesgo de seguridad!" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." msgstr "" -"Ninguno de los métodos de transferencia soportados por el servidor es " -"compatible con esta aplicación. Configuración del servidor: %1$s" +"Los tokens de acceso renovables pueden actualizarse antes de que venza su " +"tiempo de vida, otorgando acceso ilimitado a quien los posea. Usá esta " +"opción solo si sabés lo que estás haciendo y evaluaste los riesgos " +"asociados, especialmente respecto a los permisos otorgados por el alcance." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Wire method" -msgstr "Método de transferencia" +msgid "Scope" +msgstr "Alcance" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." msgstr "" -"Seleccioná el método que querés usar para transferir tus ganancias a tu " -"cuenta comercial." +"El alcance define el conjunto de permisos del token de acceso. Los tokens " +"renovables tienen permiso para extender el tiempo de vencimiento." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "Select a wire method..." -msgstr "Seleccioná un método de transferencia..." +msgid "Allows all operations without limit." +msgstr "Permite todas las operaciones sin restricción." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "Routing" -msgstr "Enrutamiento" +msgid "Allows all operations to read information." +msgstr "Permite todas las operaciones de lectura de información." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "Routing number" -msgstr "Número de enrutamiento" +msgid "Allows the creation of orders and checking of payment status." +msgstr "Permite crear órdenes y consultar el estado de pago." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "Account" -msgstr "Cuenta" - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 -#, c-format -msgid "Account number" -msgstr "Número de cuenta" - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 -#, c-format -msgid "Code" -msgstr "Código" - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 -#, c-format -msgid "Business Identifier Code" -msgstr "Código de identificación de empresa" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." +msgstr "" +"Permite crear órdenes, consultar el estado de pago y bloquear inventario." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "International Bank Account Number" -msgstr "Número de cuenta bancaria internacional" +msgid "Allows the creation of orders, checking of payment status and refunds." +msgstr "" +"Permite crear órdenes, consultar el estado de pago y gestionar reembolsos." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" -msgstr "tu número de cuenta bancaria, p. ej. DE12 0000 1111 2222 3333 00" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." +msgstr "" +"Permite crear órdenes, consultar el estado de pago, bloquear inventario y " +"gestionar reembolsos." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Unified Payment Interface" -msgstr "Interfaz de pago unificada" +msgid "" +"Allows all operations to read information with extendable expiration time." +msgstr "" +"Permite todas las operaciones de lectura con tiempo de vencimiento " +"extendible." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "Bitcoin protocol" -msgstr "Protocolo Bitcoin" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." +msgstr "" +"Permite crear órdenes y consultar el estado de pago con tiempo de " +"vencimiento extendible." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format -msgid "Ethereum protocol" -msgstr "Protocolo Ethereum" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." +msgstr "" +"Permite crear órdenes, consultar el estado de pago y bloquear inventario con " +"tiempo de vencimiento extendible." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "Interledger protocol" -msgstr "Protocolo Interledger" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." +msgstr "" +"Permite crear órdenes, consultar el estado de pago y gestionar reembolsos " +"con tiempo de vencimiento extendible." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" -msgstr "Ingresá los datos sin esquema. Se puede incluir una subruta:" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." +msgstr "" +"Permite crear órdenes, consultar el estado de pago, bloquear inventario y " +"gestionar reembolsos con tiempo de vencimiento extendible." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 #, c-format -msgid "Cyclos host" -msgstr "Host de Cyclos" +msgid "All (refreshable)" +msgstr "Todo (renovable)" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "cyclos account" -msgstr "Cuenta Cyclos" +msgid "Spa" +msgstr "Spa" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "Name of the account holder" -msgstr "Nombre del titular de la cuenta" +msgid "Spa (refreshable)" +msgstr "Spa (renovable)" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "John Doe" -msgstr "Juan Pérez" +msgid "Choose one" +msgstr "Elegir uno" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "Legal name of the person holding the account." -msgstr "Nombre legal de la persona titular de la cuenta." +msgid "Read only" +msgstr "Solo lectura" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "Invalid url" -msgstr "URL no válida" +msgid "Order simple" +msgstr "Orden simple" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "URL must end with a '/'" -msgstr "La URL debe terminar con '/'" +msgid "Order Point-of-Sale" +msgstr "Orden punto de venta" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "URL must not contain params" -msgstr "La URL no debe contener parámetros" +msgid "Order management" +msgstr "Gestión de órdenes" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "URL must not hash param" -msgstr "La URL no debe contener parámetro de hash" +msgid "Order full" +msgstr "Orden completa" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Conflict" -msgstr "Conflicto" +msgid "Read only (refreshable)" +msgstr "Solo lectura (renovable)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Server replied with \"bad request\"." -msgstr "El servidor respondió con un error de solicitud incorrecta." +msgid "Order simple (refreshable)" +msgstr "Orden simple (renovable)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Unauthorized, check credentials." -msgstr "No autorizado, verificá las credenciales." +msgid "Order Point-of-Sale (refreshable)" +msgstr "Orden punto de venta (renovable)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." -msgstr "El endpoint no parece ser un API Taler Revenue." +msgid "Order management (refreshable)" +msgstr "Gestión de órdenes (renovable)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." -msgstr "" -"La solicitud fue correcta, pero el servidor del banco no respondió con el " -"valor apropiado para 'credit_account', por lo que no podemos confirmar que " -"sea la misma cuenta bancaria." +msgid "Order full (refreshable)" +msgstr "Orden completa (renovable)" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Unsupported type of account" -msgstr "Tipo de cuenta no soportado" +msgid "Current password" +msgstr "Contraseña actual" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Account:" -msgstr "Cuenta:" +msgid "Please complete the marked fields" +msgstr "Por favor completá los campos marcados" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." -msgstr "" -"Si el banco soporta el API Taler Revenue, podés agregar la URL del endpoint " -"a continuación para mantener la información de ingresos sincronizada." +msgid "Confirm operation" +msgstr "Confirmar operación" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Endpoint URL" -msgstr "URL del endpoint" +msgid "Access token created" +msgstr "Token de acceso creado" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." msgstr "" -"Desde dónde el comerciante puede descargar información sobre las " -"transferencias bancarias entrantes a esta cuenta" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 -#, c-format -msgid "Auth type" -msgstr "Tipo de autenticación" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 -#, c-format -msgid "Choose the authentication type for the account info URL" -msgstr "Elegí el tipo de autenticación para la URL de información de cuenta" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 -#, c-format -msgid "Without authentication" -msgstr "Sin autenticación" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 -#, c-format -msgid "With username and password" -msgstr "Con usuario y contraseña" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 -#, c-format -msgid "With token" -msgstr "Con token" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 -#, c-format -msgid "Do not change" -msgstr "No modificar" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 -#, c-format -msgid "Username to access the account information." -msgstr "Usuario para acceder a la información de la cuenta." - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 -#, c-format -msgid "Password to access the account information." -msgstr "Contraseña para acceder a la información de la cuenta." - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 -#, c-format -msgid "Access token to access the account information." -msgstr "Token de acceso para acceder a la información de la cuenta." - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 -#, c-format -msgid "Match" -msgstr "Coincidencia" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 -#, c-format -msgid "Check where the information match against the server info." -msgstr "Verificá si la información coincide con la del servidor." +"Copiá el valor del token de acceso y guardalo, ya que no podrás recuperarlo " +"más adelante." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Compare info from server with account form" -msgstr "Comparar la información del servidor con el formulario de la cuenta" +msgid "Token" +msgstr "Token" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Test" -msgstr "Probar" +msgid "This token will never expire" +msgstr "Este token nunca vencerá" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Server didn't like the request we made." -msgstr "El servidor rechazó la solicitud realizada." +msgid "This token will be available until %1$s" +msgstr "Este token estará disponible hasta el %1$s" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, c-format -msgid "Account details" -msgstr "Detalles de la cuenta" +msgid "Create access token" +msgstr "Crear token de acceso" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Check if the information matches the server info." -msgstr "Verificá si la información coincide con la del servidor." +msgid "Load more devices before the first one" +msgstr "Cargar más dispositivos antes del primero" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "The bank account has been deleted." -msgstr "La cuenta bancaria fue eliminada." +msgid "Load first page" +msgstr "Cargar primera página" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "Delete account" -msgstr "Eliminar cuenta" +msgid "Created at" +msgstr "Creado el" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 #, c-format -msgid "Delete the account \"%1$s\"" -msgstr "Eliminar la cuenta \"%1$s\"" +msgid "Expires at" +msgstr "Vence el" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Invalid payto: \"%1$s\"" -msgstr "Payto no válido: \"%1$s\"" +msgid "Never" +msgstr "Nunca" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" -msgstr "Si eliminás la cuenta con nombre %1$s se perderá toda su información" +msgid "Remove this access token" +msgstr "Eliminar este token de acceso" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "Deleting an account can't be undone." -msgstr "La eliminación de una cuenta no puede deshacerse." +msgid "Load more devices after the last one" +msgstr "Cargar más dispositivos después del último" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Bank accounts" -msgstr "Cuentas bancarias" +msgid "Load next page" +msgstr "Cargar siguiente página" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Add new account" -msgstr "Agregar nueva cuenta" +msgid "There are no active sessions yet, add one by pressing the + sign" +msgstr "Aún no hay sesiones activas, agregá una presionando el signo +" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 -#, c-format -msgid "Owner's name" -msgstr "Nombre del titular" +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 +#, fuzzy, c-format +msgid "delete access token" +msgstr "Eliminar token de acceso" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Delete selected accounts from the database" -msgstr "Eliminar las cuentas seleccionadas de la base de datos" +msgid "Forbidden." +msgstr "Acceso denegado." -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 -#, c-format -msgid "There are no accounts yet, add more pressing the + sign" -msgstr "Aún no hay cuentas, agregá más presionando el signo +" +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 +#, fuzzy, c-format +msgid "New point-of-sale access" +msgstr "Orden punto de venta" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "You must provide a bank account to receive payments." -msgstr "Debés configurar una cuenta bancaria para recibir pagos." +msgid "Delete access token" +msgstr "Eliminar token de acceso" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." -msgstr "" -"Sin esta información, no podrás crear nuevas órdenes de pago que se " -"transfieran a una cuenta bancaria." +msgid "Deleting an access token cannot be undone." +msgstr "La eliminación de un token de acceso no puede deshacerse." -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format msgid "Invalid. Please use only letters and numbers." msgstr "No válido. Usá únicamente letras y números." -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 +#, fuzzy, c-format +msgid "add category" +msgstr "Nombre de la categoría" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" -msgstr "Nombre" +msgid "Not found" +msgstr "No encontrado" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "Nombre de la categoría" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete category" +msgstr "Nombre de la categoría" + +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format msgid "Category deleted" msgstr "Categoría eliminada" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format msgid "Add new devices" msgstr "Agregar nuevos dispositivos" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 -#, c-format -msgid "ID" -msgstr "ID" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "Total de productos" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "Eliminar la categoría seleccionada de la base de datos" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "Aún no hay categorías, agregá más presionando el signo +" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, fuzzy, c-format +msgid "update category" +msgstr "Nombre de la categoría" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "ID:" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "Nombre de la categoría" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "Productos" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "Imagen" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "Cargar más productos después del último" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "No hay productos en esta categoría." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 +#, fuzzy, c-format +msgid "create product group" +msgstr "Grupos de productos" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete product group" +msgstr "Eliminar producto" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 #, c-format -msgid "Account's KYC status" -msgstr "Estado KYC de la cuenta" +msgid "Product group deleted" +msgstr "Grupo de productos eliminado" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 #, c-format -msgid "Exchange" -msgstr "Exchange" +msgid "Add new group" +msgstr "Agregar nuevo grupo" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 #, c-format -msgid "Status" -msgstr "Estado" +msgid "Load more groups before the first one" +msgstr "Cargar más grupos antes del primero" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Ok" -msgstr "Ok" +msgid "Delete selected group from the database" +msgstr "Eliminar el grupo seleccionado de la base de datos" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 +#, c-format +msgid "Load more groups after the last one" +msgstr "Cargar más grupos después del último" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 #, c-format -msgid "Action required" -msgstr "Se requiere acción" +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "Aún no hay grupos de productos, agregá más presionando el signo +" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 #, c-format -msgid "Warning" -msgstr "Advertencia" +msgid "Account's KYC status" +msgstr "Estado KYC de la cuenta" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 #, c-format -msgid "Error" -msgstr "Error" +msgid "Exchange" +msgstr "Exchange" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 +#, c-format +msgid "Status" +msgstr "Estado" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "Se requiere verificación de cuenta bancaria." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "Se requiere más información." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 -#, c-format -msgid "Awaiting for account review." +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 +#, fuzzy, c-format +msgid "Awaiting account review." msgstr "Esperando revisión de la cuenta." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "Listo" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "Sincronizando..." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -"Error interno del servicio de pago. Contactá al administrador o intentá más tarde." +"Error interno del servicio de pago. Contactá al administrador o intentá más " +"tarde." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 -#, c-format +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 +#, fuzzy, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -"Error interno del backend del comerciante. Contactá al administrador o intentá más tarde." +"Error interno del servidor. Contactá al administrador o intentá más tarde." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." -msgstr "Tiempo de espera agotado del servicio de pago. Contactá al administrador o intentá más tarde." +msgstr "" +"Tiempo de espera agotado del servicio de pago. Contactá al administrador o " +"intentá más tarde." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" "Servicio de pago inaccesible. Contactá al administrador o intentá más tarde." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "Sistema bancario central incompatible." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 -#, c-format -msgid "Backend internal error. Contact administrator or check again later." -msgstr "Error interno del backend. Contactá al administrador o intentá más tarde." +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 +#, fuzzy, c-format +msgid "Server internal error. Contact administrator or check again later." +msgstr "" +"Error interno del servidor. Contactá al administrador o intentá más tarde." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -"La respuesta del servicio de pago no es válida. Contactá al administrador o intentá más tarde." +"La respuesta del servicio de pago no es válida. Contactá al administrador o " +"intentá más tarde." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." -msgstr "El proveedor del servicio de pago no puede realizar transferencias a esta cuenta." +msgstr "" +"El proveedor del servicio de pago no puede realizar transferencias a esta " +"cuenta." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "¡No hay verificaciones KYC pendientes!" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "Ok" +msgstr "Ok" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 +#, fuzzy, c-format +msgid "The account for wire transfers is invalid." msgstr "La cuenta para transferencias bancarias no parece ser válida" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 -#, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." -msgstr "El servicio backend respondió con \"%1$s\", lo cual no es válido." +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 +#, fuzzy, c-format +msgid "The server responded with \"%1$s\" which is invalid." +msgstr "El servidor respondió con \"%1$s\", lo cual no es válido." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" -msgstr "Sin claves de exchange" +msgid "No contact with the payment service yet." +msgstr "No hubo contacto con el servicio de pagos todavía." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 -#, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 +#, fuzzy, c-format +msgid "The server is still synchronizing with the payment service provider." msgstr "" -"El servicio backend aún se está sincronizando con el proveedor de servicios de pago." +"El servidor aún se está sincronizando con el proveedor de servicios de pago." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "No se pueden realizar transferencias desde esta cuenta" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -"El sistema bancario central no puede realizar transferencias entre las cuentas " -"del proveedor de servicios de pago y tus cuentas bancarias. Por lo tanto, no " -"podés usar este proveedor. Atentamente, el Exchange de Taler." +"Este sistema bancario no puede enviar transferencias entre la cuenta del " +"proveedor de servicio de pagos y su cuenta bancaria." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" -msgstr "" -"Debés completar un proceso KYC (Conocé a tu Cliente) según lo exigen las " -"regulaciones o leyes financieras" +msgid "Test" +msgstr "Probar" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." +msgstr "Un proceso de Identificación de Cliente (KYC) es obligatorio." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "El proveedor de servicios de pago requiere más información." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "Hacé clic aquí para completar este paso." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." -msgstr "Estamos esperando que el token de acceso esté disponible. Intentá de nuevo más tarde." +msgstr "" +"Estamos esperando que el token de acceso esté disponible. Intentá de nuevo " +"más tarde." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "Esperando revisión AML" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -"Esta cuenta no puede usarse. El proveedor de servicios de pago debe verificar " -"la información de la cuenta de forma manual." +"Esta cuenta no puede usarse. El proveedor de servicios de pago debe " +"verificar la información de la cuenta de forma manual." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment " @@ -2336,30 +2642,30 @@ msgstr "" "Esta cuenta fue configurada exitosamente para su uso con el proveedor de " "servicios de pago." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "Error de lógica" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 -#, c-format +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 +#, fuzzy, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -"El servicio backend detectó un error interno. Contactá al administrador del " -"sistema o intentá más tarde." +"El servidor detectó un error interno. Contactá al administrador del sistema " +"o intentá más tarde." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "Error interno" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " @@ -2368,8 +2674,8 @@ msgstr "" "El proveedor de servicios de pago detectó un error interno. Contactá al " "administrador del sistema o intentá más tarde." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " @@ -2378,18 +2684,18 @@ msgstr "" "El proveedor de servicios del comerciante detectó un error interno. Contactá " "al administrador del sistema o intentá más tarde." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 -#, c-format +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 +#, fuzzy, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -"El servicio backend no pudo contactar al proveedor de servicios de pago por " -"un tiempo de espera agotado. Contactá al administrador o intentá más tarde." +"El servidor no pudo contactar al proveedor de servicios de pago por un " +"tiempo de espera agotado. Contactá al administrador o intentá más tarde." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " @@ -2398,33 +2704,39 @@ msgstr "" "No se pudo contactar al proveedor de servicios de pago. Contactá al " "administrador del sistema o intentá más tarde." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "Cuenta no soportada" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 -#, c-format -msgid "This exchange does not support the given account." -msgstr "Este exchange no soporta la cuenta indicada." +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 +#, fuzzy, c-format +msgid "This payment service does not support the given account." +msgstr "Este servicio de pago no admite la cuenta indicada." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " "system administrator or check again later." msgstr "" -"El proveedor de servicios de pago respondió con un estado no válido. Contactá " -"al administrador del sistema o intentá más tarde." +"El proveedor de servicios de pago respondió con un estado no válido. " +"Contactá al administrador del sistema o intentá más tarde." + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "Cambiar valor a vacío" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" -msgstr "Cambiar valor a fecha desconocida" +msgid "Change value to never" +msgstr "Cambiar valor a nunca" #. screenid: 12 #: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:109 @@ -2433,7 +2745,7 @@ msgid "Enter description or id" msgstr "Ingresá una descripción o ID" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "No se encontró ninguna coincidencia para esa descripción o ID." @@ -2446,12 +2758,12 @@ msgstr "Debés ingresar un identificador de producto válido." #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 -#, c-format -msgid "Quantity must be greater than 0!" +#, fuzzy, c-format +msgid "Quantity must be greater than zero." msgstr "¡La cantidad debe ser mayor que 0!" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2461,49 +2773,55 @@ msgstr "" "unidades sin reservar en el stock." #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "Buscar producto" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "Cantidad" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "Cuántos productos se agregarán" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, fuzzy, c-format +msgid "Add it to the order" +msgstr "Monto de la orden" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" -msgstr "Agregar del inventario" +msgid "Invalid" +msgstr "No válido" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "Este producto tiene %1$s impuestos aplicables configurados." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "No hay impuestos configurados para este producto." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "Monto" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2513,308 +2831,324 @@ msgstr "" "utilizada por el comerciante." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " ""USD:2.3")." msgstr "" -"Ingresá la moneda y el valor separados por dos puntos (p. ej., "USD:2.3")." +"Ingresá la moneda y el valor separados por dos puntos (p. ej., " +""USD:2.3")." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "Nombre legal del impuesto, p. ej. IVA o derechos de importación." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "Agregar impuesto a la lista de impuestos" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "Describí y agregá un producto que no está en la lista de inventario" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "Agregar producto personalizado" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "Completá la información del producto" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "Debe ser un número." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "Debe ser mayor que 0." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "Foto del producto." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "Descripción completa del producto." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "Nombre de la unidad" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "Nombre de la unidad del producto." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "Precio por unidad" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "Monto en la moneda actual." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "Cuántos productos se agregarán." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "Impuestos" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "Precio total" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "Debe tener un plazo de reembolso" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "El reembolso automático no puede ser posterior al plazo de reembolso" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "Debe ser en el futuro" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." -msgstr "Debe especificarse una URL de cumplimiento o un mensaje de cumplimiento." +msgstr "" +"Debe especificarse una URL de cumplimiento o un mensaje de cumplimiento." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 -#, c-format -msgid "is not a valid URL" -msgstr "no es una URL válida" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, fuzzy, c-format +msgid "Invalid URL" +msgstr "No válido" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 -#, c-format +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 +#, fuzzy, c-format +msgid "create order" +msgstr "Crear orden" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 +#, fuzzy, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." msgstr "" "No hay cuentas bancarias activas configuradas. Debe haber al menos una " "cuenta bancaria disponible para crear nuevas órdenes" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, c-format +msgid "Conflict" +msgstr "Conflicto" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "El producto con ID \"%1$s\" está agotado." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 -#, c-format -msgid "No exchange would accept a payment because of KYC requirements." -msgstr "Ningún exchange aceptará pagos debido a requisitos de KYC." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 +#, fuzzy, c-format +msgid "No payment service would accept a payment because of KYC requirements." +msgstr "Ningún servicio de pago aceptará pagos debido a requisitos de KYC." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "Gestionar productos en la orden" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 -#, c-format -msgid "%1$s products with a total price of %2$s." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 +#, fuzzy, c-format +msgid "%1$s products with a total price of %2$s ." msgstr "%1$s productos con un precio total de %2$s." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "Gestionar la lista de productos en la orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "Quitar este producto de la orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "Suma de precios de productos" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "Precio total acumulado de los productos" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "Precio de la orden" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "Monto a pagar por el cliente" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "Precio final de la orden" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "Resumen" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "Título de la orden que se mostrará al cliente" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "Envío y cumplimiento" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "Fecha de entrega" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "Plazo para la entrega física garantizada por el comerciante." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "Lugar de entrega" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "Dirección a donde se entregarán los productos" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "URL de cumplimiento" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "URL a la que se redirigirá al usuario luego de un pago exitoso." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "Mensaje de cumplimiento" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "Mensaje que se le muestra al cliente después de pagar la orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "Opciones de pago de Taler" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" -msgstr "Sobreescribir la configuración de pago predeterminada de Taler para esta orden" +msgstr "" +"Sobreescribir la configuración de pago predeterminada de Taler para esta " +"orden" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "Tiempo de pago" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2826,19 +3160,19 @@ msgstr "" "comienza a contar desde la creación de la orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "Predeterminado" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "Tiempo de reembolso" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2848,29 +3182,29 @@ msgstr "" "comienza a contar desde la creación de la orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "Tiempo de transferencia bancaria" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 -#, c-format +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 +#, fuzzy, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" -"Tiempo que tiene el exchange para realizar la transferencia bancaria. El " -"tiempo comienza a contar desde la creación de la orden." +"Tiempo que tiene el servicio de pago para realizar la transferencia " +"bancaria. El tiempo comienza a contar desde la creación de la orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "Tiempo de reembolso automático" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2880,30 +3214,30 @@ msgstr "" "reembolsos sin necesidad de intervención del usuario." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "Comisión máxima" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " "fees must be covered in full by the consumer." msgstr "" "Comisiones máximas que el comerciante está dispuesto a cubrir para esta " -"orden. Las comisiones de depósito superiores deben ser cubiertas íntegramente " -"por el consumidor." +"orden. Las comisiones de depósito superiores deben ser cubiertas " +"íntegramente por el consumidor." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "Crear token" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2913,13 +3247,13 @@ msgstr "" "usuarios puedan reclamarla." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "Edad mínima requerida" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2930,115 +3264,123 @@ msgstr "" "los productos" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "La edad mínima definida por los productos es %1$s" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "No hay productos con restricción de edad en esta orden" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "Información adicional" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." -msgstr "Información personalizada que se incluirá en el contrato de esta orden." +msgstr "" +"Información personalizada que se incluirá en el contrato de esta orden." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "Debés ingresar un valor en notación de objetos JavaScript (JSON)." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "quitar" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "Nombre del campo personalizado" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "nuevo campo extra" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "Deshabilitado" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "Sin plazo" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "Plazo el %1$s" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 -#, c-format -msgid "Select date to show nearby orders" -msgstr "Seleccioná una fecha para mostrar órdenes cercanas" +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 +#, fuzzy, c-format +msgid "get product details" +msgstr "Detalles de la cuenta" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "Mostrar solo órdenes sin pagar" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "Mostrar solo órdenes pagas" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "Pagado" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "Mostrar solo órdenes con reembolsos" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "Reembolsado" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." -msgstr "Mostrar solo órdenes pagas cuya transferencia bancaria aún está pendiente." +msgstr "" +"Mostrar solo órdenes pagas cuya transferencia bancaria aún está pendiente." #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "Sin transferir" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -3048,213 +3390,256 @@ msgstr "" "servicios de pago" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "Completado" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "Eliminar todos los filtros" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "Borrar filtro de fecha" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 -#, c-format -msgid "Jump to date (%1$s)" -msgstr "Ir a la fecha (%1$s)" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 +#, fuzzy, c-format +msgid "authorize refund" +msgstr "No autorizado" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "Eliminado." #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "No disponible por razones legales." #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "Ir a la orden con el ID de producto indicado" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "ID de orden" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "Borrar filtro de fecha" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "Seleccioná una fecha para mostrar órdenes cercanas" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "Ir a la fecha (%1$s)" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "Instancia desconocida" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "Orden desconocida" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, fuzzy, c-format +msgid "This order is not refundable" +msgstr "Por qué se está reembolsando esta orden" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" +"El estado de la orden no es \"pagado\" y por eso no se puede emitir reembolso" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "Crear orden" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "copiar URL de la orden" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "La instancia no existe" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "La orden no existe" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "Fecha" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "Reembolso" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "copiar URL" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "Cargar más órdenes después de la última" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "¡No se encontraron órdenes que coincidan con tu búsqueda!" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "Duplicado" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "Este valor supera el monto reembolsable." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "Acceso denegado" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "Eliminado" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 -#, c-format -msgid "There are pending KYC requirements." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 +#, fuzzy, c-format +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "Hay requisitos de KYC pendientes." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "reembolsar" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "%1$s ya fue reembolsado" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "Motivo" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "Monto a reembolsar" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "Máximo reembolsable:" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "Elegí uno..." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "Solicitado por el cliente" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "Otro" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "Por qué se está reembolsando esta orden" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "Información adicional para dar contexto" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "ahora" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 -#, c-format -msgid "This is when the time for making refund has been expired." +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 +#, fuzzy, c-format +msgid "This is when the refund period has expired." msgstr "Este es el momento en que venció el plazo para realizar el reembolso." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "Este es el momento en que venció el plazo para realizar el pago." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " @@ -3263,132 +3648,138 @@ msgstr "" "Este es el momento en que el proveedor de servicios de pago ejecutará la " "transferencia bancaria." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." -msgstr "Esta transferencia bancaria fue notificada por el proveedor de servicios de pago." +msgstr "" +"Esta transferencia bancaria fue notificada por el proveedor de servicios de " +"pago." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, fuzzy, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" +"Esta transferencia bancaria fue notificada por el proveedor de servicios de " +"pago." + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "Este reembolso está esperando a ser reclamado por el cliente." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "Este reembolso fue reclamado por el cliente." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "El momento actual." -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 -#, c-format +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 +#, fuzzy, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" -"Este reembolso no puede reclamarse porque la transferencia bancaria ya fue realizada." +"Este reembolso no puede reclamarse porque la transferencia bancaria ya fue " +"realizada." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "Términos del contrato" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "Descripción legible de toda la compra" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "Precio total de la transacción" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "URL para esta compra" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "Comisión máxima" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" -msgstr "Comisión de depósito total máxima aceptada por el comerciante para este contrato" +msgstr "" +"Comisión de depósito total máxima aceptada por el comerciante para este " +"contrato" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "Momento en que se generó este contrato" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "Plazo de pago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "Pasado este plazo, el comerciante no aceptará pagos para el contrato" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "Plazo de reembolso" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "Pasado este plazo, no se aceptarán reembolsos." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "Plazo de transferencia bancaria" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 -#, c-format -msgid "Transfer deadline for the exchange" -msgstr "Plazo de transferencia para el exchange" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 -#, c-format -msgid "Time indicating when the order should be delivered" -msgstr "Fecha indicativa de entrega de la orden" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 -#, c-format -msgid "Where the order will be delivered" -msgstr "Dónde se entregará la orden" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 +#, fuzzy, c-format +msgid "Transfer deadline for the payment service" +msgstr "Plazo de transferencia para el servicio de pago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format msgid "Auto-refund delay" msgstr "Plazo de reembolso automático" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format msgid "" "How long the wallet should try to get an automatic refund for the purchase" @@ -3397,306 +3788,389 @@ msgstr "" "para la compra" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 +#, c-format +msgid "Time indicating when the order should be delivered" +msgstr "Fecha indicativa de entrega de la orden" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 +#, c-format +msgid "Where the order will be delivered" +msgstr "Dónde se entregará la orden" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "Información extra" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "Datos adicionales que solo interpreta la interfaz del comerciante" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "orden creada" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "plazo de pago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "plazo de reembolso" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "entrega" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "Orden" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "Reclamado" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "Reclamado el" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "Cronología" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "Detalles del pago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "Estado de la orden" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "Impago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "Lista de productos" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 +#, fuzzy, c-format +msgid "The contract terms have a v1 order without choices_index." +msgstr "Los términos del contrato tienen una orden v1 sin choices_index." + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, fuzzy, c-format +msgid "The contract terms have a v1 order with a bad choices_index." +msgstr "" +"Los términos del contrato tienen una orden v1 con un choices_index inválido." + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format msgid "refund missed: %1$s" msgstr "reembolso no realizado: %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 -#, c-format -msgid "refund missed: %1$s: %2$s" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 +#, fuzzy, c-format +msgid "refund missed: %1$s : %2$s" msgstr "reembolso no realizado: %1$s: %2$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format msgid "refund created: %1$s" msgstr "reembolso creado: %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 -#, c-format -msgid "refund created: %1$s: %2$s" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 +#, fuzzy, c-format +msgid "refund created: %1$s : %2$s" msgstr "reembolso creado: %1$s: %2$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format msgid "refund taken: %1$s" msgstr "reembolso cobrado: %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 -#, c-format -msgid "refund taken: %1$s: %2$s" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 +#, fuzzy, c-format +msgid "refund taken: %1$s : %2$s" msgstr "reembolso cobrado: %1$s: %2$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 -#, c-format -msgid "The contract terms has a v1 order without choices_index." -msgstr "Los términos del contrato tienen una orden v1 sin choices_index." - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 -#, c-format -msgid "The contract terms has a v1 order with a bad choices_index." -msgstr "Los términos del contrato tienen una orden v1 con un choices_index inválido." - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format msgid "wired %1$s" msgstr "transferido %1$s" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format msgid "wire deadline" msgstr "plazo de transferencia" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 +#, fuzzy, c-format +msgid "Related wire transfers" +msgstr "Transferencias bancarias verificadas" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 +#, fuzzy, c-format +msgid "Unconfirmed" +msgstr "Confirmado" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" -msgstr "Transferido" +msgid "Confirmed" +msgstr "Confirmado" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "Reembolsar orden" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "No reembolsable" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, fuzzy, c-format +msgid "No wire transfer reported" +msgstr "Sin transferencia bancaria informada" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, fuzzy, c-format +msgid "Check wire transfers" +msgstr "Transferencias bancarias" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "Próximo evento en" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "La orden fue transferida." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." -msgstr "El procesamiento bancario puede demorar algunos días hábiles dependiendo de tu banco." +msgstr "" +"El procesamiento bancario puede demorar algunos días hábiles dependiendo de " +"tu banco." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "Monto reembolsado" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "Reembolso cobrado" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "URL de estado" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "URI de reembolso" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 -#, c-format -msgid "Pay at" -msgstr "Pagar en" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 +#, fuzzy, c-format +msgid "Payment link" +msgstr "Plazo de pago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "URL de estado de la orden" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "URI de pago" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." msgstr "" -"Estado de orden desconocido. Esto es un error, por favor contactá al administrador." +"Estado de orden desconocido. Esto es un error, por favor contactá al " +"administrador." + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "Volver" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "nunca" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "desconocido" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Confirmado" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Confirmado" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "Detalles" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "No válido. Ingresá únicamente letras y números." #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" -msgstr "Solo letras y números del 2 al 7" +msgid "Use only letters and digits (2–7)." +msgstr "Sólo usa letras y dígitos (2-7)" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" -msgstr "La clave debe tener 32 caracteres" +msgstr "La longitud de la clave debe tener 32 caracteres" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, fuzzy, c-format +msgid "add otp device" +msgstr "Sin dispositivo" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "ID interno en el sistema" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "Útil para identificar el dispositivo físicamente" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "Algoritmo de verificación" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "Algoritmo utilizado para verificar transacciones en modo sin conexión" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "Clave del dispositivo" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " "generator." msgstr "" -"Asegurate de elegir una contraseña difícil de adivinar, o usá el generador aleatorio." +"Asegurate de elegir una contraseña difícil de adivinar, o usá el generador " +"aleatorio." #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "Tu dispositivo debe tener exactamente el mismo valor" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "Generar clave secreta aleatoria" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "Aleatorio" @@ -3708,7 +4182,7 @@ msgid "Create another" msgstr "Crear otro" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3718,13 +4192,19 @@ msgstr "" "antes de continuar." #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete otp device" +msgstr "Sin dispositivo" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "Dispositivos OTP" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "Eliminar los dispositivos seleccionados de la base de datos" @@ -3736,13 +4216,19 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "Aún no hay dispositivos, agregá más presionando el signo +" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 +#, fuzzy, c-format +msgid "update otp device" +msgstr "Sin dispositivo" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format msgid "Template id is unknown" msgstr "El ID de la plantilla es desconocido" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 #, c-format msgid "" "The provided information is inconsistent with the current state of the " @@ -3751,246 +4237,399 @@ msgstr "" "La información provista es inconsistente con el estado actual de la plantilla" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "Dispositivo:" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "Algoritmo a usar para verificar transacciones en modo sin conexión" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "Sin modificar" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" -msgstr "Asegurate de que sea muy difícil de adivinar o usá el generador aleatorio" +msgstr "" +"Asegurate de que sea muy difícil de adivinar o usá el generador aleatorio" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "Tu dispositivo debe tener exactamente el mismo valor" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "Cambiar clave" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "No coincide" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "Estás actualizando la contraseña para la instancia con ID \"%1$s\"" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "Para verificar que tenés acceso." #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "Nueva contraseña" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "Próxima contraseña a utilizar" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "Repetir contraseña" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "Confirmá la misma contraseña" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "Confirmar cambio" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, fuzzy, c-format +msgid "change password" +msgstr "Nueva contraseña" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "Verificando cambio de contraseña" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "Contraseña cambiada" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "La contraseña actual es incorrecta." #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, fuzzy, c-format +msgid "change instance password" +msgstr "Contraseña de la instancia." + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "No tenés permisos suficientes para cambiar la contraseña." #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, c-format msgid "Account not found." msgstr "Cuenta no encontrada." +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, fuzzy, c-format +msgid "create money pot" +msgstr "Crear nueva cuenta" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "Ya existe un fondo con el mismo ID." + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete money pot" +msgstr "Fondo" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "Fondo eliminado" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, c-format +msgid "Add new pots" +msgstr "Agregar nuevos fondos" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "Cargar más fondos antes del primero" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, c-format +msgid "Total" +msgstr "Total" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "Eliminar los fondos seleccionados de la base de datos" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "Cargar más fondos después del último" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "Aún no hay fondos, agregá más presionando el signo +" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "Agregar elemento a la lista" -#. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "Falta el nombre de la moneda" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "El nombre de la moneda debe contener solo letras" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "El valor solo puede ser numérico" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "El valor es demasiado alto" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "El valor tiene demasiada precisión decimal" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "Monto no válido \"%1$s\": %2$s" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, fuzzy, c-format +msgid "update money pot" +msgstr "Fondo" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "Descripción" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 #, c-format +msgid "Totals" +msgstr "Totales" + +#. screenid: 14 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 +#, fuzzy, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" "Hacé clic aquí para configurar el stock del producto. Si se deja así, el " -"backend no controlará el stock." +"servidor no controlará el stock." #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "Gestionar stock" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "Este producto fue configurado sin control de stock" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "Ilimitado" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " "%1$s)" msgstr "" -"La merma no puede superar el stock actual y las entradas pendientes (máximo %1$s)" +"La merma no puede superar el stock actual y las entradas pendientes (máximo " +"%1$s)" + +#. screenid: 14 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 +#, c-format +msgid "Current" +msgstr "Actual" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format msgid "Incoming" msgstr "Entrante" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format msgid "Lost" msgstr "Perdido" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 -#, c-format -msgid "Current" -msgstr "Actual" - -#. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "Quitar el control de stock para este producto" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "sin stock" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "Próximo reabastecimiento" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "Dirección del depósito" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "Monto no válido" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." -msgstr "Identificación del producto para usar en las URL (solo para uso interno)." +msgstr "" +"Identificación del producto para usar en las URL (solo para uso interno)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "Ilustración del producto para los clientes." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "Nombre del producto." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "Descripción del producto para los clientes." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "Restricción de edad" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "¿Este producto tiene restricción de edad para los clientes?" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "Edad mínima del cliente" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " "items, 5 meters) for customers." msgstr "" -"Unidad que describe la cantidad de producto vendida (p. ej. 2 kilogramos, " -"5 litros, 3 unidades, 5 metros) para los clientes." +"Unidad que describe la cantidad de producto vendida (p. ej. 2 kilogramos, 5 " +"litros, 3 unidades, 5 metros) para los clientes." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "Ejemplo: kg, unidades o litros" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." @@ -3999,99 +4638,114 @@ msgstr "" "indicadas del producto." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "Stock" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "Inventario para productos con stock limitado (solo para uso interno)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." -msgstr "Impuestos incluidos en el precio del producto, visibles para los clientes." +msgstr "" +"Impuestos incluidos en el precio del producto, visibles para los clientes." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "Buscar por descripción o ID de categoría" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "Categorías en las que se listará este producto." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "Fondo" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "Buscar por descripción o ID de fondo" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "Fondos en los que se listará este producto." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "Seleccioná uno" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "Grupo" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, c-format msgid "Search by group name or id" msgstr "Buscar por nombre o ID de grupo" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, fuzzy, c-format +msgid "add product" +msgstr "Total de productos" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -"La instancia no existe. Es posible que haya sido eliminada mientras se agregaba el producto." +"La instancia no existe. Es posible que haya sido eliminada mientras se " +"agregaba el producto." -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -"La categoría no existe. Es posible que haya sido eliminada mientras se agregaba el producto." +"La categoría no existe. Es posible que haya sido eliminada mientras se " +"agregaba el producto." -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -"El grupo de productos no existe. Es posible que haya sido eliminado mientras se agregaba el producto." +"El grupo de productos no existe. Es posible que haya sido eliminado mientras " +"se agregaba el producto." -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." msgstr "" -"El fondo no existe. Es posible que haya sido eliminado mientras se agregaba el producto." +"El fondo no existe. Es posible que haya sido eliminado mientras se agregaba " +"el producto." #. screenid: 56 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:92 @@ -4100,145 +4754,170 @@ msgid "Add product to inventory" msgstr "Agregar producto al inventario" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, fuzzy, c-format +msgid "update product" +msgstr "Eliminar producto" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "Producto no encontrado." #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "Este cambio se realizó sin información desactualizada." #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "Ventas" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "Vendido" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "recarga al %1$s" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, fuzzy, c-format +msgid "infinite" +msgstr "Ilimitado" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "Gratis" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "Ir a la página de actualización del producto" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "Actualizar" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "Eliminar este producto de la base de datos" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "Actualizar el producto con el nuevo precio" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "Actualizar producto con nuevo precio" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "Confirmar actualización" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" -msgstr "la pérdida no puede superar el stock actual más las entradas (máx %1$s)" +msgstr "" +"la pérdida no puede superar el stock actual más las entradas (máx %1$s)" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "Agregar más elementos al inventario" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "Registrar elementos perdidos en el inventario" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "Nuevo precio para el producto" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "Hay valores con errores." #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "Actualizar producto con nuevo stock y precio" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "Aún no hay productos, agregá más presionando el signo +" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, fuzzy, c-format +msgid "delete product" +msgstr "Eliminar producto" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "El producto (ID: %1$s) fue eliminado" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "Ir al producto con el ID indicado" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "ID de producto" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "Eliminar producto" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "Eliminar el producto \"%1$s\"" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4248,41 +4927,170 @@ msgstr "" "información relacionada" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "La eliminación de un producto no puede deshacerse." #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "ID de producto:" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, fuzzy, c-format +msgid "It should start with /" +msgstr "Debe comenzar con +" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, fuzzy, c-format +msgid "create scheduled report" +msgstr "Informes programados" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "No hay ningún generador de informes configurado en el servidor" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" +"Contactá al administrador del sistema para crear un generador de informes " +"antes de programar uno." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "Descipción del informe. Posiblemente incluído en el mensaje a enviar." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "A donde el programa debe enviar el informe" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "Fuente" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "URL base de donde pedir la información." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, fuzzy, c-format +msgid "Type of the data source" +msgstr "Nombre de la categoría" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "Programa" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" +"Nombre del programa a usar para transmitir el informe definido por la " +"confugración del servidor." + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, fuzzy, c-format +msgid "Report frequency" +msgstr "Frecuencia del informe" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "Cambio de frecuencia de informe" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, fuzzy, c-format +msgid "delete scheduled report" +msgstr "eliminar informes programados" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "Informe programado eliminado" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "Informes programados" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, c-format +msgid "Add new reports" +msgstr "Agregar nuevos informes" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "Frecuencia" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, c-format +msgid "Delete selected scheduled report from the database" +msgstr "Eliminar el informe programado seleccionado de la base de datos" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "Aún no hay informes, agregá más presionando el signo +" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, fuzzy, c-format +msgid "update scheduled report" +msgstr "Informes programados" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "Tu navegador no soporta el elemento canvas." #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "Gateway incorrecto" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "Servicio no disponible" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "Seleccioná la fecha desde la que mostrar estadísticas" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4307,620 +5115,729 @@ msgid "Orders table" msgstr "Tabla de órdenes" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "Seleccioná la fecha desde la que mostrar estadísticas" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "Desde (%1$s)" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "Estadísticas de órdenes" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "Desde" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "Aún no hay estadísticas de órdenes." #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "Cantidad de órdenes desde" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "hora" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "día" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "semana" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "semanas" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "mes" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "meses" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "trimestre" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "trimestres" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "años" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "Gráfico de ingresos" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "Tabla de ingresos" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "Filtro de estadísticas de ingresos" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "Rango de tiempo" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "Seleccioná el rango de tiempo para agrupar los datos" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "Seleccioná la cantidad de rangos a incluir en el conjunto de datos" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "Moneda" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "Seleccioná la moneda para mostrar las estadísticas" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" -msgstr "Estadísticas de ingresos de los últimos %1$s %2$s para la moneda '%3$s'" +msgstr "" +"Estadísticas de ingresos de los últimos %1$s %2$s para la moneda '%3$s'" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "Hora de inicio" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "Aún no hay estadísticas de ingresos." #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "Ingresos" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "Debe ser mayor que 0" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "Demasiado corto" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, fuzzy, c-format +msgid "add template" +msgstr "Agregar nuevas plantillas" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "No tenés permisos suficientes." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "Ya existe una plantilla con este identificador, por favor elegí otro." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "Identificador" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "Nombre de la plantilla en las URL." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "Nombre de la plantilla" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "Describí para qué sirve esta plantilla" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "Resumen de la orden" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "Si se especifica, esta plantilla creará órdenes con el mismo resumen" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "El resumen es editable" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "Permitir al usuario modificar el resumen." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "Si se especifica, esta plantilla creará órdenes con el mismo precio" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "El monto es editable" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "Permitir al usuario seleccionar el monto a pagar." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "La moneda es editable" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "Permitir al usuario cambiar la moneda." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "Monedas soportadas" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "Monedas soportadas: %1$s" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "Edad mínima" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "¿Este contrato tiene restricción de edad?" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "Tiempo límite de pago" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " "created." msgstr "" -"Cuánto tiempo tiene el cliente para completar el pago una vez creada la orden." +"Cuánto tiempo tiene el cliente para completar el pago una vez creada la " +"orden." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "Dispositivo OTP" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "Usar para verificar transacciones en modo sin conexión." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "Sin dispositivo OTP." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "Agregá uno primero" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "Sin dispositivo" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "Agregar nuevas plantillas" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "Cargar más plantillas antes de la primera" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "Eliminar las plantillas seleccionadas de la base de datos" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "Usar plantilla para crear una nueva orden" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "Generar un código QR para la plantilla." #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "Mostrar QR" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "Cargar más plantillas después de la última" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "Aún no hay plantillas, agregá más presionando el signo +" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, fuzzy, c-format +msgid "delete template" +msgstr "Eliminar plantilla" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "Ir a la plantilla con el ID indicado" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "Identificación de plantilla" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "Eliminar plantilla" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "Eliminar la plantilla \"%1$s\"" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 -#, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 +#, fuzzy, c-format +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "Si eliminás la plantilla %1$s (ID: %2$s) podrías perder información" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "La eliminación de una plantilla no puede deshacerse." #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "Imprimir" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, fuzzy, c-format +msgid "update template" +msgstr "Eliminar plantilla" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "La configuración de la plantilla debe ser corregida." #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " "currencies." msgstr "" -"La moneda de la plantilla es %1$s y no está en la lista de monedas soportadas." +"La moneda de la plantilla es %1$s y no está en la lista de monedas " +"soportadas." #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "Si se especifica, esta plantilla creará órdenes con el mismo resumen" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "Si se especifica, esta plantilla creará órdenes con el mismo precio" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " "created." msgstr "" -"Cuánto tiempo tiene el cliente para completar el pago una vez creada la orden." +"Cuánto tiempo tiene el cliente para completar el pago una vez creada la " +"orden." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "Se requiere un monto" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "Se requiere un resumen de la orden" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, fuzzy, c-format +msgid "create order from template" +msgstr "Nueva orden desde plantilla" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" +"No hay cuentas bancarias activas configuradas. Debe haber al menos una " +"cuenta bancaria disponible para crear nuevas órdenes" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "Sin stock para el producto con ID \"%1$s\"." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "Nueva orden desde plantilla" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "Monto de la orden" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "La expiración debe ser despues de la fecha de inicio" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, fuzzy, c-format +msgid "Granularity can't be greater than duration." +msgstr "¡La cantidad debe ser mayor que 0!" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, fuzzy, c-format +msgid "create token family" +msgstr "Eliminar familia de tokens" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, fuzzy, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "Ya existe una plantilla con este identificador, por favor elegí otro." + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "Slug" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" -msgstr "Slug de la familia de tokens para usar en las URL (solo para uso interno)" +msgstr "" +"Slug de la familia de tokens para usar en las URL (solo para uso interno)" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "Nombre de la familia de tokens legible por el usuario" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "Descripción de la familia de tokens para los clientes" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "Tipo" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "Elegí entre un descuento y una suscripción" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "Fecha de inicio" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "El primer día en que el cupón/suscripción puede usarse." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 -#, c-format -msgid " If set to %1$s, it cannot be used before this date." +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 +#, fuzzy, c-format +msgid "If set to %1$s, it cannot be used before this date." msgstr " Si se establece en %1$s, no podrá usarse antes de esa fecha." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "Fecha de vencimiento" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "El último día en que el cupón/suscripción puede usarse." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 -#, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 +#, fuzzy, c-format +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr " Si se establece en %1$s, dejarán de ser válidos a partir de %2$s." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." -msgstr "Cuánto tiempo permanece válido el cupón/suscripción después de ser activado." +msgstr "" +"Cuánto tiempo permanece válido el cupón/suscripción después de ser activado." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " "%2$s." msgstr "" -"Si lo activás el %1$s con una duración de 30 días, sigue siendo válido hasta el %2$s." +"Si lo activás el %1$s con una duración de 30 días, sigue siendo válido hasta " +"el %2$s." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "Granularidad de validez" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 -#, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 +#, fuzzy, c-format +msgid "Rounds the validity to a specific unit of time." msgstr "" -"Redondea la validez a una unidad de tiempo específica (como día, hora, minuto)." +"Redondea la validez a una unidad de tiempo específica (como día, hora, " +"minuto)." #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 -#, c-format -msgid "" -" If set to "1 day", a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." -msgstr "" -" Si se establece en \"1 día\", un pase de 30 días comprado el %1$s es válido " -"hasta el final del %2$s, no exactamente a la misma hora en que fue comprado." +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 +#, fuzzy, c-format +msgid "1 minute" +msgstr "Al minuto" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, fuzzy, c-format +msgid "1 hour" +msgstr "hora" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, fuzzy, c-format +msgid "1 day" +msgstr "Al día" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, fuzzy, c-format +msgid "30 days" +msgstr "días" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, fuzzy, c-format +msgid "90 days" +msgstr "días" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, fuzzy, c-format +msgid "365 days" +msgstr "días" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "Familias de tokens" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "Agregar familia de tokens" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "Válido antes de" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "Ir a la página de actualización de la familia de tokens" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "Eliminar esta familia de tokens de la base de datos" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." @@ -4928,242 +5845,263 @@ msgstr "" "Aún no hay familias de tokens, agregá la primera presionando el signo +." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, fuzzy, c-format +msgid "delete token family" +msgstr "Eliminar familia de tokens" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "La familia de tokens fue eliminada." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "Eliminar familia de tokens" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "Eliminar la familia de tokens \"%1$s\"" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " "become invalid." msgstr "" -"Si eliminás la familia de tokens %1$s (Slug: %2$s), todos los tokens emitidos " -"dejarán de ser válidos." +"Si eliminás la familia de tokens %1$s (Slug: %2$s), todos los tokens " +"emitidos dejarán de ser válidos." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "Eliminando la familia de tokens %1$s." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "no puede deshacerse" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, fuzzy, c-format +msgid "update token family" +msgstr "Agregar familia de tokens" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format msgid "Token Family: %1$s" msgstr "Familia de tokens: %1$s" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 -#, c-format -msgid "User-readable token family name" -msgstr "Nombre de la familia de tokens legible por el usuario" +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, fuzzy, c-format +msgid "inform wire transfer" +msgstr "Confirmar la transferencia bancaria" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 #, c-format -msgid "Token family description for customers" -msgstr "Descripción de la familia de tokens para los clientes" +msgid "Wire transfer already confirmed." +msgstr "La transferencia bancaria ya fue confirmada." -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 #, c-format -msgid "Incoming wire transfers" -msgstr "Transferencias bancarias entrantes" +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" +"La transferencia bancaria fue enviada y debería acreditarse en tu cuenta en " +"cualquier momento. Podés confirmar manualmente la recepción usando la " +"información de abajo." -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 -#, c-format -msgid "Load more wire transfers preceding the first one" -msgstr "Cargar más transferencias bancarias antes de la primera" +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, fuzzy, c-format +msgid "The wire transfer has been confirmed." +msgstr "La transferencia bancaria ya fue confirmada." -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, fuzzy, c-format +msgid "Transaction details" +msgstr "Detalles de la cuenta" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 #, c-format -msgid "Expected credit" -msgstr "Crédito esperado" +msgid "Transfer ID" +msgstr "ID de transferencia" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 #, c-format -msgid "Confirmed" -msgstr "Confirmado" +msgid "I have received the wire transfer" +msgstr "Recibí la transferencia bancaria" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 +#, fuzzy, c-format +msgid "Orders in this wire transfer" +msgstr "Transferencias bancarias verificadas" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 +#, fuzzy, c-format +msgid "Fee" +msgstr "Gratis" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 +#, fuzzy, c-format +msgid "Subtotals" +msgstr "Totales" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Validated" -msgstr "Validado" +msgid "Deposit fee" +msgstr "Comisión de deposito" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 +#, fuzzy, c-format +msgid "Wire fee" +msgstr "Transferencias bancarias" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Executed on" -msgstr "Ejecutado el" +msgid "not ready" +msgstr "no listo" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 +#, fuzzy, c-format +msgid "loading..." +msgstr "cargando..." #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 -#, c-format -msgid "yes" -msgstr "sí" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 +#, fuzzy, c-format +msgid "New wire transfers" +msgstr "Nueva transferencia bancaria" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "no" -msgstr "no" +msgid "Load more wire transfers preceding the first one" +msgstr "Cargar más transferencias bancarias antes de la primera" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "never" -msgstr "nunca" +msgid "To be determined." +msgstr "Por ser determinado." #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "unknown" -msgstr "desconocido" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." +msgstr "" +"Confirmarás que la transacción bancaría entrante ah llegado a tu cuenta de " +"banco." #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format msgid "Load more transfers after the last one" msgstr "Cargar más transferencias después de la última" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 -#, c-format -msgid "Verified wire transfers" -msgstr "Transferencias bancarias verificadas" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 +#, fuzzy, c-format +msgid "Confirmed wire transfers into bank account" +msgstr "Confirmar la transferencia bancaria" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 -#, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" -msgstr "Aún no hay transferencias, agregá más presionando el signo +" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 +#, fuzzy, c-format +msgid "Show details about the incoming wire transfer." +msgstr "Transferencias bancarias entrantes" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 72 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 +#, fuzzy, c-format +msgid "There are no transfers to list yet" +msgstr "No hay estadísticas en la lista" + +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "Todas las cuentas" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "Filtrar por dirección de cuenta" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 -#, c-format -msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." -msgstr "" -"Mostrar solo las transferencias que el proveedor de servicios de pago ya " -"acreditó en tu cuenta bancaria." - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 -#, c-format -msgid "Only show wire transfers confirmed by the merchant" -msgstr "Mostrar solo las transferencias confirmadas por el comerciante" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 #, c-format msgid "Verified" msgstr "Verificado" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 -#, c-format -msgid "Wire transfer already confirmed." -msgstr "La transferencia bancaria ya fue confirmada." - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 -#, c-format -msgid "I have received the wire transfer" -msgstr "Recibí la transferencia bancaria" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 -#, c-format -msgid "Confirm the wire transfer" -msgstr "Confirmar la transferencia bancaria" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -"La transferencia bancaria fue enviada y debería acreditarse en tu cuenta en " -"cualquier momento. Podés confirmar manualmente la recepción usando la " -"información de abajo." - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 -#, c-format -msgid "Time" -msgstr "Hora" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 -#, c-format -msgid "Transfer ID" -msgstr "ID de transferencia" +"Una transferencia bancaría esta verificada si coinciden los montos de todas " +"las ordenes liquidadas." #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format msgid "It's not the same." msgstr "No coincide." #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format msgid "You are deleting the instance with ID \"%1$s\"" msgstr "Estás eliminando la instancia con ID \"%1$s\"" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 +#, fuzzy, c-format +msgid "delete current instance" +msgstr "Eliminar esta instancia" + +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format msgid "Instance" msgstr "Instancia" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format msgid "Write the instance name to confirm the deletion" msgstr "Escribí el nombre de la instancia para confirmar la eliminación" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 -#, c-format -msgid "Purge" -msgstr "Purgar" - -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" "All the data will be fully deleted, otherwise only the access will be " @@ -5173,17 +6111,71 @@ msgstr "" "revocará el acceso." #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format msgid "DELETE" msgstr "ELIMINAR" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 +#, c-format +msgid "Doesn't have the pattern of an email" +msgstr "No tiene el formato de un correo electrónico" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 +#, c-format +msgid "Should start with +" +msgstr "Debe comenzar con +" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 +#, c-format +msgid "A phone number consists of numbers only" +msgstr "Un número de teléfono contiene únicamente dígitos" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 +#, fuzzy, c-format +msgid "Invalid phone number" +msgstr "Número de teléfono de contacto" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 +#, c-format +msgid "Invalid value" +msgstr "Valor no válido" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 +#, c-format +msgid "Max 7 lines" +msgstr "Máximo 7 líneas" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 +#, fuzzy, c-format +msgid "update instance settings" +msgstr "La instancia no existe" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format msgid "Instance id" msgstr "ID de instancia" +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 +#, c-format +msgid "URL" +msgstr "URL" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, fuzzy, c-format +msgid "Cancel operation" +msgstr "Confirmar operación" + #. screenid: 74 #: packages/merchant-backoffice-ui/src/paths/instance/update/index.tsx:113 #, c-format @@ -5191,622 +6183,1099 @@ msgid "Delete this instance" msgstr "Eliminar esta instancia" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "Debe ser uno de '%1$s'" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "La URL no es válida" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, fuzzy, c-format +msgid "add webhook" +msgstr "Agregar nuevos webhooks" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "ID del webhook a utilizar" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "Evento" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "Pago" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "Orden liquidada" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "Categoría agregada" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "Categoría actualizada" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "Inventario agregado" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "Inventario actualizado" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "Inventario eliminado" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "El evento del webhook: para qué se usa el webhook" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "Método" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "GET" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "POST" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "PUT" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "PATCH" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "HEAD" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "Método utilizado por el webhook" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "URL" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "URL del webhook a la que se redirigirá al cliente" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " "and %3$s will be replaced with the value of the corresponding variable." msgstr "" "El texto a continuación soporta el motor de plantillas %1$s. Cualquier " -"cadena entre %2$s y %3$s será reemplazada por el valor de la variable correspondiente." +"cadena entre %2$s y %3$s será reemplazada por el valor de la variable " +"correspondiente." #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "Por ejemplo, %1$s será reemplazado por el precio de la orden." #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "La lista resumida de variables es:" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "descripción de la orden" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "precio de la orden" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "identificación única de la orden" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "el monto que se estaba reembolsando" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" -msgstr "el motivo ingresado por el personal del comerciante para otorgar el reembolso" +msgstr "" +"el motivo ingresado por el personal del comerciante para otorgar el reembolso" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "momento del reembolso en nanosegundos desde 1970" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "Cabecera HTTP" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "Plantilla de cabecera del webhook" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "Cuerpo HTTP" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "Plantilla de cuerpo utilizada por el webhook." #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, fuzzy, c-format +msgid "delete webhook" +msgstr "Agregar nuevos webhooks" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "Webhook eliminado correctamente" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "Agregar nuevos webhooks" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "Cargar más webhooks antes del primero" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "Tipo de evento" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "Eliminar el webhook seleccionado de la base de datos" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "Cargar más webhooks después del último" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "Aún no hay webhooks, agregá más presionando el signo +" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, fuzzy, c-format +msgid "update webhook" +msgstr "Agregar nuevos webhooks" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "Webhook actualizado" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "Cabecera" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "Cuerpo" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "Plantilla de cuerpo utilizada por el webhook" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "No coincide" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, fuzzy, c-format +msgid "self provision instance" +msgstr "Autogestión" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "Ya existe otra instancia con este nombre de usuario." #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "Autogestión" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "Teléfono" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "Número de teléfono de contacto" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "Aceptar los Términos del servicio" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "Entiendo y acepto los %1$s" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "Términos del servicio" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "Debés aceptar los Términos del servicio para continuar." #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "Crear" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "restablecer contraseña para auto-abastecimiento" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "La instancia no está correctamente configurada para permitir MFA." -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 +#, c-format +msgid "The instance \"%1$s\" was not found." +msgstr "La instancia \"%1$s\" no fue encontrada." + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 +#, c-format +msgid "Resetting access to the instance \"%1$s\"" +msgstr "Restableciendo el acceso a la instancia \"%1$s\"" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 +#, c-format +msgid "Language" +msgstr "Idioma" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 +#, c-format +msgid "Force the language settings instead of using the browser" +msgstr "Impone la configuración de idioma en lugar de usar el navegador" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 +#, c-format +msgid "Date format" +msgstr "Formato de fecha" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 +#, c-format +msgid "How the date is going to be displayed" +msgstr "Cómo se mostrará la fecha" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 +#, c-format +msgid "Merchant type" +msgstr "Tipo de comerciante" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 +#, fuzzy, c-format +msgid "Simplify the UI based on use case." +msgstr "Simplificar la interfaz según el uso del usuario." + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 +#, c-format +msgid "Beta tester" +msgstr "Probador de versión BETA" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 +#, c-format +msgid "Expert user" +msgstr "Usuario experto" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 +#, c-format +msgid "Unattended in-person offline vending" +msgstr "Venta presencial desatendida sin conexión" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#, c-format +msgid "In-person online point-of-sale with inventory" +msgstr "Punto de venta presencial en línea con inventario" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 +#, c-format +msgid "Digital publishing" +msgstr "Publicación digital" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 +#, c-format +msgid "E-commerce site" +msgstr "Sitio de comercio electrónico" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 +#, fuzzy, c-format +msgid "Developer tools" +msgstr "Modo desarrollador" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 +#, c-format +msgid "Enable UI tools for troubleshooting." +msgstr "" +"Habilita herramientas de interfaz de usuario para solución de problemas." + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 +#, c-format +msgid "Testing features" +msgstr "Características de prueba" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 +#, fuzzy, c-format +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." +msgstr "" +"Usá el modo desarrollador solo si conocés el funcionamiento de la " +"aplicación. Algunas funciones habilitadas en este modo aún están en fase de " +"pruebas." + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 +#, c-format +msgid "Developer mode" +msgstr "Modo desarrollador" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 +#, c-format +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." +msgstr "" +"Solamente usá el modo desarrollador is sabes lo que estás haciendo. " +"Herramientas habilitadas en este modo están pensadas para arreglar problemas " +"o obtener mas información sobre la ejecución. PUEDES PERDER INFORMACIÓN." + +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 +#, fuzzy, c-format +msgid "create pos access token" +msgstr "crear token de acceso POS" + +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 +#, fuzzy, c-format +msgid "Device name" +msgstr "Nombre del dispositivo" + +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 +#, c-format +msgid "Scan this QR with the Taler POS app." +msgstr "Escaneá este código QR con la aplicación Taler POS." + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 +#, fuzzy, c-format +msgid "Payment services status" +msgstr "Estado de los servicios de pago" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 +#, fuzzy, c-format +msgid "Base URL" +msgstr "URL base" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 +#, fuzzy, c-format +msgid "Next update" +msgstr "Próxima actualización" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 +#, fuzzy, c-format +msgid "This payment service is ready to be used." +msgstr "Este cambio se realizó sin información desactualizada." + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 +#, fuzzy, c-format +msgid "" +"This payment service can't be used due to an error. Contact the service " +"provider." +msgstr "" +"Esta transferencia bancaria fue notificada por el proveedor de servicios de " +"pago." + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 +#, c-format +msgid "Details of the status" +msgstr "Detalles del estado" + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 +#, fuzzy, c-format +msgid "No payment services supported" +msgstr "Sin servicio de pagos admitido" + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 +#, fuzzy, c-format +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." +msgstr "" +"Actualmente la lista de servicio de pago en la configuración esta vacía. Sin " +"esto este servicio no puede procesar ningún pago." + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 +#, fuzzy, c-format +msgid "Ready until %1$s" +msgstr "Plazo el %1$s" + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 +#, fuzzy, c-format +msgid "Next update will be at %1$s" +msgstr "Vencerá el %1$s" + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 +#, c-format +msgid "Error" +msgstr "Error" + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 +#, fuzzy, c-format +msgid "This payment service is unavailable." +msgstr "Servicio no disponible" + +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 +#, c-format +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" +msgstr "Último HTTP status fue %1$s: %2$s (#%3$s )" + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 +#, c-format +msgid "Welcome!" +msgstr "Hola!" + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 +#, c-format +msgid "" +"The application is in an unexpected state and can't recover from here. You " +"can report the problem to the developers at %1$s" +msgstr "" +"La aplicación se encuentra en un estado inesperado y no puede recuperarse " +"desde aquí. Podés informar del problema a los desarrolladores en %1$s" + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 +#, fuzzy, c-format +msgid "You need to associate a bank account to receive revenue." +msgstr "Debés configurar una cuenta bancaria para recibir pagos." + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 +#, fuzzy, c-format +msgid "Without this the server will refuse to create new orders." +msgstr "Sin esto el servidor se negará a crear nuevas ordenes." + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 +#, c-format +msgid "Hide for today" +msgstr "Ocultar por hoy" + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 +#, fuzzy, c-format +msgid "KYC verification needed" +msgstr "Código de verificación" + +#. screenid: 3 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 +#, c-format +msgid "" +"Some transfers are on hold until the KYC process is completed. Visit the KYC " +"section in the left-hand menu for more information." +msgstr "" +"Algunas transferencias están en espera hasta que se complete el proceso de " +"KYC. Visite la sección de KYC en el menu de la izquierda para obtener mas " +"información." + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#, c-format +msgid "No 'admin' instance configured yet." +msgstr "Aún no se configuró ninguna instancia 'admin'." + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#, fuzzy, c-format +msgid "Create an 'admin' instance to begin using the merchant portal." +msgstr "" +"Creá una instancia 'admin' para comenzar a usar el backoffice del " +"comerciante." + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 +#, fuzzy, c-format +msgid "delete bank account" +msgstr "Eliminar cuenta" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 +#, c-format +msgid "The bank account has been deleted." +msgstr "La cuenta bancaria fue eliminada." + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 +#, c-format +msgid "Delete account" +msgstr "Eliminar cuenta" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#, c-format +msgid "Delete the account \"%1$s\"" +msgstr "Eliminar la cuenta \"%1$s\"" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 +#, c-format +msgid "Invalid payto: \"%1$s\"" +msgstr "Payto no válido: \"%1$s\"" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 +#, c-format +msgid "If you delete the account with name %1$s its information will be lost" +msgstr "Si eliminás la cuenta con nombre %1$s se perderá toda su información" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 +#, c-format +msgid "Deleting an account can't be undone." +msgstr "La eliminación de una cuenta no puede deshacerse." + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#, c-format +msgid "Bank accounts" +msgstr "Cuentas bancarias" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 +#, c-format +msgid "Add new account" +msgstr "Agregar nueva cuenta" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 +#, c-format +msgid "Owner's name" +msgstr "Nombre del titular" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 +#, c-format +msgid "Delete selected accounts from the database" +msgstr "Eliminar las cuentas seleccionadas de la base de datos" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 +#, c-format +msgid "There are no accounts yet, add more pressing the + sign" +msgstr "Aún no hay cuentas, agregá más presionando el signo +" + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 +#, fuzzy, c-format +msgid "No bank account configured yet." +msgstr "Aún no se configuró ninguna instancia 'admin'." + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 +#, fuzzy, c-format +msgid "Without this information you cannot create new payment orders." +msgstr "" +"Sin esta información, no podrás crear nuevas órdenes de pago que se " +"transfieran a una cuenta bancaria." + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 +#, fuzzy, c-format +msgid "This account is not ready to be used." +msgstr "Esta cuenta no está permitida." + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 +#, fuzzy, c-format +msgid "There are pending actions related to KYC." +msgstr "Hay acciones pendientes relacionados a KYC. %1$s" + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 +#, fuzzy, c-format +msgid "More details." +msgstr "Detalles del pago" + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 +#, fuzzy, c-format +msgid "You must complete kyc requirements to receive payments." +msgstr "Debés configurar una cuenta bancaria para recibir pagos." + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgid "The instance \"%1$s\" was not found." -msgstr "La instancia \"%1$s\" no fue encontrada." +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." +msgstr "" +"La información extra deberia contener entre 1 y 40 carácteres de letras, " +"números, punto, guión y punto y coma." -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgid "Resetting access to the instance \"%1$s\"" -msgstr "Restableciendo el acceso a la instancia \"%1$s\"" +msgid "Invalid url" +msgstr "URL no válida" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgid "Reset" -msgstr "Restablecer" +msgid "URL must end with a '/'" +msgstr "La URL debe terminar con '/'" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgid "Language" -msgstr "Idioma" +msgid "URL must not contain params" +msgstr "La URL no debe contener parámetros" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgid "Date format" -msgstr "Formato de fecha" +msgid "URL must not hash param" +msgstr "La URL no debe contener parámetro de hash" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 -#, c-format -msgid "How the date is going to be displayed" -msgstr "Cómo se mostrará la fecha" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 +#, fuzzy, c-format +msgid "change bank account" +msgstr "Cuenta bancaria" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 -#, c-format -msgid "Merchant type" -msgstr "Tipo de comerciante" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#, fuzzy, c-format +msgid "test revenue api" +msgstr "Próximo evento en" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgid "Simplify UI based on the user usage." -msgstr "Simplificar la interfaz según el uso del usuario." +msgid "Server replied with \"bad request\"." +msgstr "El servidor respondió con un error de solicitud incorrecta." -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgid "Expert user" -msgstr "Usuario experto" +msgid "Unauthorized, check credentials." +msgstr "No autorizado, verificá las credenciales." -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgid "Taler developer" -msgstr "Desarrollador de Taler" +msgid "The endpoint does not seem to be a Taler Revenue API." +msgstr "El endpoint no parece ser un API Taler Revenue." -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgid "Unattended in-person offline vending" -msgstr "Venta presencial desatendida sin conexión" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." +msgstr "" +"La solicitud fue correcta, pero el servidor del banco no respondió con el " +"valor apropiado para 'credit_account', por lo que no podemos confirmar que " +"sea la misma cuenta bancaria." -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgid "In-person online point-of-sale with inventory" -msgstr "Punto de venta presencial en línea con inventario" +msgid "Unsupported type of account" +msgstr "Tipo de cuenta no soportado" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgid "Digital publishing" -msgstr "Publicación digital" +msgid "Account:" +msgstr "Cuenta:" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgid "E-commerce site" -msgstr "Sitio de comercio electrónico" +msgid "Account details" +msgstr "Detalles de la cuenta" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 -#, c-format -msgid "Developer mode" -msgstr "Modo desarrollador" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#, fuzzy, c-format +msgid "Extra subject" +msgstr "Asunto extra" -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -"Usá el modo desarrollador solo si conocés el funcionamiento de la aplicación. " -"Algunas funciones habilitadas en este modo aún están en fase de pruebas." +"Texto adicional para incluir en el asunto de la transferencia bancaria " +"cuando al liquidar el pago" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "Money pot deleted" -msgstr "Fondo eliminado" +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." +msgstr "" +"Si el banco soporta el API Taler Revenue, podés agregar la URL del endpoint " +"a continuación para mantener la información de ingresos sincronizada." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Add new pots" -msgstr "Agregar nuevos fondos" +msgid "Endpoint URL" +msgstr "URL del endpoint" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Load more pots before the first one" -msgstr "Cargar más fondos antes del primero" +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" +msgstr "" +"Desde dónde el comerciante puede descargar información sobre las " +"transferencias bancarias entrantes a esta cuenta" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Total" -msgstr "Total" +msgid "Auth type" +msgstr "Tipo de autenticación" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Delete selected pots from the database" -msgstr "Eliminar los fondos seleccionados de la base de datos" +msgid "Choose the authentication type for the account info URL" +msgstr "Elegí el tipo de autenticación para la URL de información de cuenta" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Load more pots after the last one" -msgstr "Cargar más fondos después del último" +msgid "Without authentication" +msgstr "Sin autenticación" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "Aún no hay fondos, agregá más presionando el signo +" +msgid "With username and password" +msgstr "Con usuario y contraseña" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "Missing currency name" -msgstr "Falta el nombre de la moneda" +msgid "With token" +msgstr "Con token" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "Currency name must be only letters" -msgstr "El nombre de la moneda debe contener solo letras" +msgid "Do not change" +msgstr "No modificar" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Value can only by number" -msgstr "El valor solo puede ser numérico" +msgid "Username to access the account information." +msgstr "Usuario para acceder a la información de la cuenta." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "The value is too high" -msgstr "El valor es demasiado alto" +msgid "Password to access the account information." +msgstr "Contraseña para acceder a la información de la cuenta." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "The value is too precise" -msgstr "El valor tiene demasiada precisión decimal" +msgid "Access token to access the account information." +msgstr "Token de acceso para acceder a la información de la cuenta." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "Monto no válido \"%1$s\": %2$s" +msgid "Match" +msgstr "Coincidencia" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Descripton" -msgstr "Descripción" +msgid "Check where the information match against the server info." +msgstr "Verificá si la información coincide con la del servidor." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Totals" -msgstr "Totales" +msgid "Compare info from server with account form" +msgstr "Comparar la información del servidor con el formulario de la cuenta" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "There is already a money pot with the same id." -msgstr "Ya existe un fondo con el mismo ID." +msgid "parse revenue payto" +msgstr "analizar el Payto-URI" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, c-format -msgid "Product group deleted" -msgstr "Grupo de productos eliminado" +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 +#, fuzzy, c-format +msgid "add bank account" +msgstr "Cuenta bancaria" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 -#, c-format -msgid "Add new group" -msgstr "Agregar nuevo grupo" +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 +#, fuzzy, c-format +msgid "The instance does not exist." +msgstr "La instancia no existe" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgid "Load more groups before the first one" -msgstr "Cargar más grupos antes del primero" +msgid "" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" +msgstr "" +"La cuenta de banco ya existe pero con diferente information. Es el nombredel " +"propietario de la cuenta correcta?" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "Delete selected group from the database" -msgstr "Eliminar el grupo seleccionado de la base de datos" +msgid "Server didn't like the request we made." +msgstr "El servidor rechazó la solicitud realizada." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Load more groups after the last one" -msgstr "Cargar más grupos después del último" +msgid "Check if the information matches the server info." +msgstr "Verificá si la información coincide con la del servidor." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "There are no product groups yet, add more pressing the + sign" -msgstr "Aún no hay grupos de productos, agregá más presionando el signo +" +msgid "Verify details with server" +msgstr "Verificar detalles del servidor" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "Scheduled report deleted" -msgstr "Informe programado eliminado" +msgid "create instance and login" +msgstr "crear instancia e iniciar sesión" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "Scheduled reports" -msgstr "Informes programados" +msgid "Instance created" +msgstr "Instancia creada" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Add new reports" -msgstr "Agregar nuevos informes" +msgid "Please complete the marked fields and choose authorization method" +msgstr "" +"Por favor completá los campos marcados y elegí un método de autorización" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format -msgid "Frequency" -msgstr "Frecuencia" +msgid "checking compatibility with server..." +msgstr "verificando compatibilidad con el servidor..." -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format -msgid "Delete selected scheduled report from the database" -msgstr "Eliminar el informe programado seleccionado de la base de datos" +msgid "Contacting the server failed" +msgstr "Falló la conexión con el servidor" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format -msgid "There are no reports yet, add more pressing the + sign" -msgstr "Aún no hay informes, agregá más presionando el signo +" +msgid "The server version is not supported" +msgstr "La versión del servidor no es compatible" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 2 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format -msgid "No report generator configured in the server" -msgstr "No hay ningún generador de informes configurado en el servidor" +msgid "Supported version \"%1$s\", server version \"%2$s\"." +msgstr "Versión compatible \"%1$s\", versión de lserver \"%2$s\"." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 -#, c-format -msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." -msgstr "" -"Contactá al administrador del sistema para crear un generador de informes " -"antes de programar uno." +#. screenid: 26 +#: packages/merchant-backoffice-ui/src/paths/admin/create/InstanceCreatedSuccessfully.tsx:54 +#, fuzzy, c-format +msgid "Business Name" +msgstr "Nombre del negocio" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 -\ No newline at end of file +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, fuzzy, c-format +msgid "update product group" +msgstr "actualizar grupo de productos" + +#. screenid: 60 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 +#, fuzzy, c-format +msgid "Available statistics" +msgstr "Estadísticas disponibles" + +#. screenid: 60 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 +#, fuzzy, c-format +msgid "There are no statistics to list" +msgstr "No hay estadísticas en la lista" diff --git a/packages/merchant-backoffice-ui/src/i18n/fr.po b/packages/merchant-backoffice-ui/src/i18n/fr.po @@ -29,161 +29,161 @@ msgstr "" "X-Generator: Weblate 5.13.2\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "Annuler" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "%1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "Fermer" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "Continuer" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "Effacer" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "Confirmer" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 -#, c-format -msgid "Correct form" +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#, fuzzy, c-format +msgid "Correct the form" msgstr "Corriger le formulaire" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "Comparaison des informations sur le compte" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, fuzzy, c-format msgid "" "The connection to the account info URL was successful, but the reported " "account information does not match the details in the form." msgstr "" -"La connexion à l'URL de l'information du compte a réussi, mais les " -"données obtenues diffèrent de celles saisies dans le formulaire." +"La connexion à l'URL de l'information du compte a réussi, mais les données " +"obtenues diffèrent de celles saisies dans le formulaire." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "Champ" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "Dans le formulaire" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "Rapporté" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "Type" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "IBAN" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "Adresse" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "Hôte" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, fuzzy, c-format msgid "Account ID" msgstr "Identifiant" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "Le nom légal de la personne titulaire du compte" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "Le code postal de la personne titulaire du compte" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "Ville" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "Serveur de la banque" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "Compte bancaire" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "Code BIC" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "D'accord" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "Valider le compte bancaire : %1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -195,13 +195,29 @@ msgstr "" "suivant." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" +"Si votre application bancaire permet l'usage de codes QR pour effectuer des " +"virements, vous pouvez scanner celui-ci :" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, fuzzy, c-format +msgid "Bank app" +msgstr "Compte bancaire" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "Étape 1 :" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, fuzzy, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -212,19 +228,19 @@ msgstr "" "virement." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "Bénéficiaire" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "Étape 2 :" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, fuzzy, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -234,31 +250,31 @@ msgstr "" "application bancaire ou du site web de votre banque." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "Référence" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, fuzzy, c-format msgid "Receiver postal code" msgstr "Code postal de la personne bénéficiaire" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, fuzzy, c-format msgid "Receiver town" msgstr "Ville de la personnes bénéficiaire" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "Étape 3 :" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, fuzzy, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -268,48 +284,37 @@ msgstr "" "dans votre application bancaire ou sur le site Web de votre banque en ligne." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, fuzzy, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." +"the PayTo URI below to copy just one value." msgstr "" "Assurez-vous que L'ENSEMBLE des données sont correctes, y compris la " -référence, et que vous utilisez le compte bancaire sélectionné. " -"Afin d'éviter les erreurs de frappe, vous pouvez utiliser l'URI « payto:// » " -"ci-dessous, ou bien les boutons de copie (%1$s) pour chaque valeur." - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" -msgstr "" -"Si votre application bancaire permet l'usage de codes QR pour effectuer des " -"virements, vous pouvez scanner celui-ci :" +"référence, et que vous utilisez le compte bancaire sélectionné. Afin " +"d'éviter les erreurs de frappe, vous pouvez utiliser l'URI « payto:// » ci-" +"dessous, ou bien les boutons de copie (%1$s) pour chaque valeur." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, fuzzy, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" "Alternativement, si votre banque prend en charge les URIs de type PayTo, " "vous pouvez utiliser ce lien à la place : %1$s" - #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "Opération en cours…" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, fuzzy, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "L'opération sera automatiquement annulée après %1$s secondes" @@ -338,74 +343,80 @@ msgstr "minutes" msgid "seconds" msgstr "secondes" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "Indéfiniment" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "%1$sM" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "%1$sY" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "%1$sd" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "%1$sh" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "%1$smin" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "%1$ss" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 -#, c-format -msgid "Change value to never" +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 +#, fuzzy, c-format +msgid "Change the value to never" msgstr "Choisir : jamais" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 -#, c-format -msgid "Change value to empty" +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 +#, fuzzy, c-format +msgid "Change the value to empty" msgstr "Choisir : vide" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The file is not an image" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 +#, fuzzy, c-format +msgid "The image was normalized to be smaller than 1 MB" msgstr "La taille de l'image doit être inférieure à 1 Mo" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "Ajouter" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "Retirer" @@ -465,49 +476,49 @@ msgid "Additional address lines" msgstr "Informations complémentaires" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "Commandes" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "Inventaire" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "Catégories" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "Virements bancaires" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "Modèles" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, fuzzy, c-format msgid "Product groups" msgstr "Groupes de produits" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "Cagnottes" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, fuzzy, c-format msgid "Reports" msgstr "Rapports" @@ -519,213 +530,255 @@ msgid "Statistics" msgstr "Statistiques" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "Souscription et remises" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "Configuration" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, fuzzy, c-format +msgid "KYC Status" +msgstr "Situation" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "Dispositifs OTP" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "Webhooks" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "Options" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "Mot de passe" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, fuzzy, c-format msgid "Access tokens" msgstr "Jeton d'accès" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "Connexion" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "Personnalisation" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, fuzzy, c-format +msgid "Payment services" +msgstr "Devises prises en charge" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "Boutiques" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "Nouveau" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "Lister" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "Déconnexion" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, fuzzy, c-format +msgid "Select one..." +msgstr "Compte en banque" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, fuzzy, c-format +msgid "Hours" +msgstr "heures" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, fuzzy, c-format +msgid "Minutes" +msgstr "minutes" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, fuzzy, c-format +msgid "Seconds" +msgstr "secondes" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "Identifiant" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, fuzzy, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " "used to administer other instances." msgstr "" -"Nom de la boutique dans les URLs. La boutique 'principale' est particulière car " -"elle sert à administrer les autres boutiques." +"Nom de la boutique dans les URLs. La boutique 'principale' est particulière " +"car elle sert à administrer les autres boutiques." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "Nom de l'entreprise" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "Nom légal de l'entreprise qui opère cette boutique." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "Courriel" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "Courriel de contact" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "Numéro de téléphone" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, fuzzy, c-format msgid "Contact phone" msgstr "Téléphone de contact" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "URL du site web" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "URL." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "Logo" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "Image du Logo." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "Payer les frais de transaction" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" "Prendre en charge le coût de la transaction ou le répercuter sur le client." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "Localisation physique du commerçant." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "Juridiction" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "Juridiction compétente pour les litiges avec le commerçant." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "Heures limites de commande" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 -#, c-format +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#, fuzzy, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" -"Ces valeurs seront utilisées si elles ne sont pas précisées lors de la commande." +"Ces valeurs seront utilisées si elles ne sont pas précisées lors de la " +"commande." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, fuzzy, c-format msgid "Payment delay" msgstr "Durée de validité du paiement" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." @@ -733,1456 +786,1684 @@ msgstr "" "Délai octroyé aux clients pour payer une commande avant son expiration." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, fuzzy, c-format msgid "Refund delay" msgstr "Délai de remboursement" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." -msgstr "Délai pendant lequel le marchand peut effectuer un remboursement de la commande." +msgstr "" +"Délai pendant lequel le marchand peut effectuer un remboursement de la " +"commande." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, fuzzy, c-format msgid "Wire transfer delay" msgstr "Date limite pour les virements" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 -#, c-format +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 +#, fuzzy, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" "Durée maximale d'aggrégation des commandes auprès de l'Échange afin de " "réduire les frais de virement pour le marchand en virant d'un coup plusieurs " "paiements." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, fuzzy, c-format msgid "Wire transfer rounding" msgstr "Granularité des virements" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." -msgstr "Intervalle pour l'envoi des virements." +msgid "Rounding interval for wire deadlines." +msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " "be rounded to midnight." msgstr "" -"Par exemple, si vous choisissez un intervalle quotidien, la date limite d'envoi " -"sera placée à minuit." +"Par exemple, si vous choisissez un intervalle quotidien, la date limite " +"d'envoi sera placée à minuit." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, fuzzy, c-format msgid "No rounding" msgstr "Aucune" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, fuzzy, c-format msgid "To second" msgstr "Chaque seconde" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, fuzzy, c-format msgid "To minute" msgstr "Chaque minute" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, fuzzy, c-format msgid "To hour" msgstr "Horaire" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "Quotidienne" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "Hebdomadaire" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "Mensuelle" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "Trimestrielle" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "Annuelle" +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 +#, c-format +msgid "Can't paste this content. Please copy the 8 digits again." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 +#, c-format +msgid "Resend code possible in %1$s seconds." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 +#, c-format +msgid "Resend code possible in less than one minute." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#, c-format +msgid "Resend code possible in less than 5 minutes." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 +#, fuzzy, c-format +msgid "Resend will be possible after %1$s" +msgstr "Il expirera à %1$s" + #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, fuzzy, c-format msgid "Expired" msgstr "Expiré" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format msgid "Required" msgstr "Obligatoire" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#, fuzzy, c-format +msgid "verify code" +msgstr "Code de vérification" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format msgid "Unauthorized" msgstr "Non autorisé" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, fuzzy, c-format msgid "The code is not correct." msgstr "Ce code est incorrect." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format msgid "The challenge is no longer valid." msgstr "Ce défi a expiré." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format msgid "Too many attempts trying to solve the challenge." msgstr "Trop de tentatives pour résoudre ce défi." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 +#, fuzzy, c-format +msgid "send challenge" +msgstr "Mot de passe" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 +#, fuzzy, c-format +msgid "Failed to send the verification code." +msgstr "Echec de l'envoi du code de vérification." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format -msgid "Validation code sent." -msgstr "Un code de validation a été envoyé." +msgid "The request was valid, but the server is refusing action." +msgstr "La requête était valide, mais le serveur refuse de l'honorer." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 +#, fuzzy, c-format +msgid "The server is not aware of the specified MFA challenge." +msgstr "Le système ne reconnaît pas ce facteur d'identification." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" -msgstr "Le code de vérification envoyé au numéro de téléphone terminant par \"%1$s\"" +msgid "Code transmission failed." +msgstr "La transmission du code a échoué." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" -msgstr "Le code de vérification envoyé à l'adresse de courriel commençant par \"%1$s\"" +msgid "Already solved." +msgstr "Déjà résolu." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 -#, fuzzy, c-format -msgid "Verification code" -msgstr "Code de vérification" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 +#, c-format +msgid "It is too early to request another transmission of the challenge." +msgstr "C'est trop tôt pour demander une nouvelle transmission de ce défi." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "It will expire at %1$s" -msgstr "Il expirera à %1$s" +msgid "Validation code sent." +msgstr "Un code de validation a été envoyé." + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 +#, fuzzy, c-format +msgid "The verification code sent to the phone \" %1$s\"" +msgstr "" +"Le code de vérification envoyé au numéro de téléphone terminant par \"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgstr "" +"Le code de vérification envoyé au numéro de téléphone terminant par \"%1$s\"" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 +#, fuzzy, c-format +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" -"Le défi a expiré et ne peut plus être résolu mais vous pouvez revenir en " -"arrière et recommencer." +"Le code de vérification envoyé à l'adresse de courriel commençant par " +"\"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "Back" -msgstr "Retour" +msgid "The verification code sent to the email address starting with \"%1$s\"" +msgstr "" +"Le code de vérification envoyé à l'adresse de courriel commençant par " +"\"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, fuzzy, c-format -msgid "Verify" -msgstr "Vérifier" +msgid "Verification code" +msgstr "Code de vérification" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, fuzzy, c-format -msgid "Failed to send the verification code." -msgstr "Echec de l'envoi du code de vérification." +msgid "Code expired." +msgstr "Expiré" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "The request was valid, but the server is refusing action." -msgstr "La requête était valide, mais le serveur refuse de l'honorer." +msgid "Didn't received the code?" +msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "The backend is not aware of the specified MFA challenge." -msgstr "Le système ne reconnaît pas ce facteur d'identification." +msgid "Resend" +msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 -#, c-format -msgid "Code transmission failed." -msgstr "La transmission du code a échoué." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 +#, fuzzy, c-format +msgid "Verify" +msgstr "Vérifier" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 -#, c-format -msgid "Already solved." -msgstr "Déjà résolu." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 +#, fuzzy, c-format +msgid "The code transmission failed." +msgstr "La transmission du code a échoué." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 -#, c-format -msgid "It is too early to request another transmission of the challenge." -msgstr "C'est trop tôt pour demander une nouvelle transmission de ce défi." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 +#, fuzzy, c-format +msgid "The challenge is already solved." +msgstr "Ce défi a expiré." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, fuzzy, c-format msgid "Multi-factor authentication required." msgstr "L'identification multi-facteurs est requise." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 -#, c-format -msgid "You need to complete all of this requirements." +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 +#, fuzzy, c-format +msgid "You must complete all of these requirements." msgstr "Vous devez répondre à l'ensemble des exigences." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, fuzzy, c-format msgid "You need to complete at least one of this requirements." -msgstr "" -"Vous devez répondre à au-moins l'une de ces exigences." +msgstr "Vous devez répondre à au-moins l'une de ces exigences." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format msgid "An SMS to the phone number ending with %1$s" msgstr "Un SMS au numéro de téléphone se terminant par \"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format msgid "An email to the address starting with %1$s" msgstr "Un courriel à l'adresse commençant par \"%1$s\"" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 -#, c-format -msgid "You have to wait until %1$s to send a new code." -msgstr "Vous devez attendre jusqu'à %1$s pour envoyer un nouveau code." - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 -#, c-format -msgid "I have a code" -msgstr "J'ai un code" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 -#, c-format -msgid "Send me a message" -msgstr "Envoyez-moi un message" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 +#, fuzzy, c-format +msgid "Complete" +msgstr "Transferé" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 -#, c-format -msgid "Logged in" -msgstr "Identifié" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#, fuzzy, c-format +msgid "This is not a valid Bitcoin address." +msgstr "Ceci n'est pas une adresse Bitcoin valide." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Not found" -msgstr "Introuvable" +msgid "This is not a valid Ethereum address." +msgstr "Ceci n'est pas une adresse Ethereum valide." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Login required" -msgstr "Identification requise" +msgid "This is not a valid host." +msgstr "Ceci n'est pas un serveur valide." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, fuzzy, c-format -msgid "Instance name." -msgstr "Identifiant de la boutique." +msgid "IBANs usually have more than 4 digits." +msgstr "Les numéros IBAN comportent généralement plus de 4 chiffres." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, fuzzy, c-format -msgid "Instance password." -msgstr "Mot de passe de la boutique." +msgid "IBANs usually have fewer than 34 digits." +msgstr "Les numéros IBAN comportent généralement moins de 34 chiffres." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, fuzzy, c-format -msgid "Forgot password" -msgstr "J'ai oublié mon mot de passe" +msgid "The IBAN's country code could not be retrieved." +msgstr "Le code pays de l'IBAN n'a pas été trouvé." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, fuzzy, c-format -msgid "Create new account" -msgstr "Créer un nouveau compte" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 -#, c-format -msgid "Invalid" -msgstr "Invalide" +msgid "The IBAN is invalid because the checksum is wrong." +msgstr "Le numéro IBAN est invalide car la somme de contrôle est erronée." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, fuzzy, c-format -msgid "Doesn't have the pattern of an email" -msgstr "Cela ne ressemble pas à une addresse de courriel" +msgid "This account is not allowed." +msgstr "Ce compte n'est pas autorisé." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 -#, c-format -msgid "Should start with +" -msgstr "Le numéro international devrait commencer par +" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#, fuzzy, c-format +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" +msgstr "" +"Cette application ne supporte aucune des méthodes de transfert du serveur. " +"Le serveur est configuré pour : %1$s" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 -#, c-format -msgid "A phone number consists of numbers only" -msgstr "Un numéro de téléphone n'est composé que de chiffres" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#, fuzzy, c-format +msgid "Wire method" +msgstr "Méthode de virement" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, fuzzy, c-format -msgid "Invalid value" -msgstr "Valeur invalide" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." +msgstr "" +"Sélectionner la méthode que vous voulez employer pour transférer vos gains " +"vers votre compte professionnel." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Max 7 lines" -msgstr "Sept lignes au maximum" +msgid "Select a wire method..." +msgstr "Sélectionner une méthode de transfert…" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Doesn't match" -msgstr "Ne correspond pas" +msgid "Routing" +msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 -#, fuzzy, c-format -msgid "Instance created" -msgstr "La boutique a été créée" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#, c-format +msgid "Routing number" +msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Unauthorized." -msgstr "Non autorisé." +msgid "Account" +msgstr "Compte" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, fuzzy, c-format -msgid "Conflict." -msgstr "Conflit." +msgid "Account number" +msgstr "Numéro de compte" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 -#, fuzzy, c-format -msgid "Not found." -msgstr "Introuvable." +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#, c-format +msgid "Code" +msgstr "Code" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, fuzzy, c-format -msgid "New password" -msgstr "Nouveau mot de passe" +msgid "Business Identifier Code" +msgstr "Code BIC de la banque" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, fuzzy, c-format -msgid "Next password to be used" -msgstr "Prochain mot de passe à utiliser" +msgid "International Bank Account Number" +msgstr "Code IBAN" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 -#, fuzzy, c-format -msgid "Repeat password" -msgstr "Répéter le mot de passe" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#, c-format +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgstr "" +"votre numéro de compte bancaire au format international IBAN, p.e. CH12 0000 " +"1111 2222 3333 00" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, fuzzy, c-format -msgid "Confirm the same password" -msgstr "Confirmer ce mot de passe" +msgid "Unified Payment Interface" +msgstr "Interface unifiée de payments (UPI)" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, fuzzy, c-format -msgid "Please complete the marked fields and choose authorization method" -msgstr "" -"Merci de remplir les champs marqués et de choisir une méthode d'autorisation" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 -#, c-format -msgid "Confirm operation" -msgstr "Confirmer l'opération" +msgid "Bitcoin protocol" +msgstr "Protocole Bitcoin" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, fuzzy, c-format -msgid "Check the password." -msgstr "Vérifier le mot de passe." +msgid "Ethereum protocol" +msgstr "Protocole Ethereum" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, fuzzy, c-format -msgid "Instance not found." -msgstr "La boutique est introuvable." +msgid "Interledger protocol" +msgstr "Protocole Interledger" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Description" -msgstr "Description" +msgid "Enter the data without a scheme. A subpath may be included:" +msgstr "Saisir les données sans le schéma. A chemin d'accès peut être inclus :" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." -msgstr "" -"Cela vous aide à vous remémorer où ce jeton d'accès est utilisé avant de l'effacer." +msgid "Cyclos host" +msgstr "Hôte Cyclos" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 -#, c-format -msgid "Duration" -msgstr "Durée" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#, fuzzy, c-format +msgid "cyclos account" +msgstr "compte Cyclos" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, fuzzy, c-format -msgid "Time the access token will be valid." -msgstr "Durée de validité du jeton d'accès." +msgid "Name of the account holder" +msgstr "Nom de la personne titulaire du compte" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "Refreshable access tokens can pose a security risk!" -msgstr "Les jetons d'accès renouvelables peuvent poser un risque de sécurité !" +msgid "John Doe" +msgstr "Dominique Martin" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." -msgstr "" -"La durée des jetons d'accès renouvelables peut être étendue avant leur expiration, " -"ce qui procure à quiconque l'utilise un accès indéfini. N'utilisez cette méthode " -"que si vous savez ce que vous faîtes et avez évalué les risques associés " -"notamment aux permissions accordées dans ce contexte." +msgid "Legal name of the person holding the account." +msgstr "Nom légal de la personne titulaire du compte." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "Scope" -msgstr "Contexte" +msgid "The request reached a timeout, check your connection." +msgstr "" +"La demande a dépassé le temps de traitement maximum, vérifiez votre " +"connexion." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format +msgid "The request was cancelled." +msgstr "La demande a été annulée." + +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#, fuzzy, c-format msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +"Too many requests were made to the server and this action was throttled." msgstr "" -"Le contexte définit un jeu de privilèges pour le jeton d'accès. Les jetons renouvelables " -"possèdent le privilège d'étendre leur durée de vie." +"Un grand nombre de demandes ont été adressées au même serveur et cette " +"action a été ralentie." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 -#, c-format -msgid "Allows all operations without limit." -msgstr "Permettre toutes les opérations sans limite." +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#, fuzzy, c-format +msgid "The server's response was malformed, please report." +msgstr "La réponse du serveur est malformée." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "Allows all operations to read information." -msgstr "Permettre toutes les opérations de lecture." +msgid "Could not complete the request due to a network problem." +msgstr "La demande n'a pas pu être traitée en raison d'un problème de réseau." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 -#, c-format -msgid "Allows the creation of orders and checking of payment status." -msgstr "Permettre la création de commandes et la vérification de l'état des paiements." +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#, fuzzy, c-format +msgid "Unexpected request error, please report." +msgstr "Erreur inattendue sur la requête." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." -msgstr "" -"Permettre la création des commandes, la vérification de l'état des paiements et le " -"vérouillage des stocks." +msgid "Unexpected error." +msgstr "Erreur inattendue." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "login" msgstr "" -"Permettre la création des commandes, la vérification de l'état des paiements " -"et des remboursements." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." -msgstr "" -"Permettre la création des commandes, la vérification de l'état des paiements, " -"le vérouillage des stocks et des remboursements." +msgid "Logged in" +msgstr "Identifié" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 -#, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 +#, fuzzy, c-format +msgid "Wrong password." +msgstr "J'ai oublié mon mot de passe" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 -#, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 +#, fuzzy, c-format +msgid "The account doesn't exist." +msgstr "Ce compte n'est pas autorisé." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." -msgstr "" -" +msgid "Login required" +msgstr "Identification requise" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 -#, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 +#, fuzzy, c-format +msgid "Instance name." +msgstr "Identifiant de la boutique." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 -#, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 +#, fuzzy, c-format +msgid "Instance password." +msgstr "Mot de passe de la boutique." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 -#, c-format -msgid "All (refreshable)" -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 +#, fuzzy, c-format +msgid "Forgot password" +msgstr "J'ai oublié mon mot de passe" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 -#, c-format -msgid "Spa" -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 +#, fuzzy, c-format +msgid "Create new account" +msgstr "Créer un nouveau compte" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Spa (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, fuzzy, c-format -msgid "Choose one" -msgstr "Choisissez un ..." +msgctxt "title" +msgid "%1$s: Settings" +msgstr "Configuration" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 -#, c-format -msgid "Read only" -msgstr "" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New bank account" +msgstr "Compte bancaire" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 -#, c-format -msgid "All" -msgstr "Toutes" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Bank accounts" +msgstr "Comptes bancaires" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, fuzzy, c-format -msgid "Order simple" -msgstr "Identifiant de commande" +msgctxt "title" +msgid "%1$s: Update bank Account" +msgstr "Valider le compte bancaire : %1$s" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 -#, c-format -msgid "Order Point-of-Sale" -msgstr "" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Orders" +msgstr "Commandes" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Order management" +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, fuzzy, c-format -msgid "Order full" -msgstr "Identifiant de commande" +msgctxt "title" +msgid "%1$s: Inventory" +msgstr "Inventaire" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "Read only (refreshable)" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 -#, c-format -msgid "Order simple (refreshable)" -msgstr "" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update product" +msgstr "Modification du produit impossible" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 -#, c-format -msgid "Order full (refreshable)" -msgstr "" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update category" +msgstr "Impossible de modifier la catégorie" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, fuzzy, c-format -msgid "Current password" -msgstr "Mot de passe actuel" +msgctxt "title" +msgid "%1$s: Wire transfers" +msgstr "Virements bancaires" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, fuzzy, c-format -msgid "Please complete the marked fields" -msgstr "Merci de remplir les champs marqués" +msgctxt "title" +msgid "%1$s: Webhooks" +msgstr "Webhooks" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, fuzzy, c-format -msgid "Access token created" -msgstr "Un jeton d'accès a été créé" +msgctxt "title" +msgid "%1$s: New webhook" +msgstr "Ajouter de nouveaux webhooks" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 -#, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." -msgstr "" -"Prenez à présent note du jeton d'accès car il ne sera plus montré." +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update webhook" +msgstr "Impossible de modifier le webhook" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 -#, c-format -msgid "Token" -msgstr "Jeton" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: OTP devices" +msgstr "Appareils OTP" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 -#, c-format -msgid "This token will never expire" -msgstr "Ce jeton n'expirera jamais" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New OTP device" +msgstr "Aucun appareil OTP." -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 -#, c-format -msgid "This token will be available until %1$s" -msgstr "Ce jeton sera disponible jusqu'au %1$s" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update OTP device" +msgstr "Appareil OTP" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, fuzzy, c-format -msgid "No 'admin' instance configured yet." -msgstr "Aucune boutique 'principale' n'a encore été configurée." +msgctxt "title" +msgid "%1$s: New template" +msgstr "Utiliser le modèle" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, fuzzy, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." -msgstr "" -"Créer une boutique 'principale' pour commencer à utiliser l'interface " -"d'administration du marchand." +msgctxt "title" +msgid "%1$s: Update template" +msgstr "Utiliser le modèle" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, fuzzy, c-format -msgid "Create access token" -msgstr "Générer un jeton d'accès" +msgctxt "title" +msgid "%1$s: Templates" +msgstr "Modèles" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 -#, c-format -msgid "Load more devices before the first one" -msgstr "Insérer d'autres appareils avant le premier" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Use template" +msgstr "Utiliser le modèle" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Load first page" -msgstr "Charger la première page" +msgctxt "title" +msgid "%1$s: Personalization" +msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Created at" -msgstr "Créé le" +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" +msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 -#, c-format -msgid "Expires at" -msgstr "Expire le" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New token family" +msgstr "Ajouter une famille de jetons" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 -#, c-format -msgid "Never" -msgstr "Jamais" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update token family" +msgstr "Impossible de mettre à jour la famille de jetons" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, fuzzy, c-format -msgid "Remove this access token" -msgstr "Supprimer ce jeton d'accès" +msgctxt "title" +msgid "%1$s: Access tokens" +msgstr "Jeton d'accès" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 -#, c-format -msgid "Delete" -msgstr "Supprimer" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New access token" +msgstr "Nouveau jeton d'accès" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 -#, c-format -msgid "Load more devices after the last one" -msgstr "Ajouter d'autres appareils après le dernier" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New POS access token" +msgstr "Nouveau jeton d'accès" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 -#, c-format -msgid "Load next page" -msgstr "Charger la page suivante" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 +#, fuzzy, c-format +msgctxt "title" +msgid "New instance" +msgstr "Ajouter une nouvelle boutique" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, fuzzy, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "Instances" +msgstr "Boutiques" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 +#, c-format +msgid "Testing environment" msgstr "" -"Il n'y a pas encore de session active, ajoutez-en une en appuyant sur le signe +" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format -msgid "Forbidden." -msgstr "Interdit." +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." +msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 -#, fuzzy, c-format -msgid "Delete access token" -msgstr "Supprimer un jeton d'accès" +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 +#, c-format +msgid "Delete" +msgstr "Supprimer" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 -#, fuzzy, c-format -msgid "Deleting an access token cannot be undone." -msgstr "La suppression d'un jeton d'accès est irréversible." +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, c-format +msgid "Add new instance" +msgstr "Ajouter une nouvelle instance" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 -#, fuzzy, c-format -msgid "This is not a valid Bitcoin address." -msgstr "Ceci n'est pas une adresse Bitcoin valide." +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 +#, c-format +msgid "ID" +msgstr "Identifiant" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 #, c-format -msgid "This is not a valid Ethereum address." -msgstr "Ceci n'est pas une adresse Ethereum valide." +msgid "Name" +msgstr "Nom" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 #, c-format -msgid "This is not a valid host." -msgstr "Ceci n'est pas un serveur valide." +msgid "Edit" +msgstr "Editer" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 #, fuzzy, c-format -msgid "IBANs usually have more than 4 digits." -msgstr "Les numéros IBAN comportent généralement plus de 4 chiffres." +msgid "Change password" +msgstr "Avec mot de passe" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 -#, fuzzy, c-format -msgid "IBANs usually have fewer than 34 digits." -msgstr "Les numéros IBAN comportent généralement moins de 34 chiffres." +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 +#, c-format +msgid "Purge" +msgstr "Purger" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 #, fuzzy, c-format -msgid "The IBAN's country code could not be retrieved." -msgstr "Le code pays de l'IBAN n'a pas été trouvé." +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" +"Il n'y a pas encore d'instance, ajoutez-en une en appuyant sur le signe +" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 #, fuzzy, c-format -msgid "The IBAN is invalid because the checksum is wrong." -msgstr "Le numéro IBAN est invalide car la somme de contrôle est erronée." +msgid "delete instance" +msgstr "Suppression d'une instance %1$s ." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 #, fuzzy, c-format -msgid "This account is not allowed." -msgstr "Ce compte n'est pas autorisé." +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "L'instance \"%1$s\" (identifiant : %2$s) a été effacée" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 #, c-format -msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" -msgstr "" -"Cette application ne supporte aucune des méthodes de transfert du serveur. " -"Le serveur est configuré pour : %1$s" +msgid "Unauthorized." +msgstr "Non autorisé." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 #, fuzzy, c-format -msgid "Wire method" -msgstr "Méthode de virement" +msgid "Not found." +msgstr "Introuvable." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 #, fuzzy, c-format -msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." -msgstr "" -"Sélectionner la méthode que vous voulez employer pour transférer vos gains " -"vers votre compte professionnel." +msgid "Conflict." +msgstr "Conflit." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 #, c-format -msgid "Select a wire method..." -msgstr "Sélectionner une méthode de transfert…" +msgid "Only show active instances" +msgstr "N'afficher que les instances actives" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 #, c-format -msgid "Routing" +msgid "Active" +msgstr "Actives" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, c-format +msgid "Only show deleted instances" +msgstr "N'afficher que les instances effacées" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, c-format +msgid "Deleted" +msgstr "Effacées" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 +#, c-format +msgid "Show all instances" +msgstr "Afficher toutes les instances" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 +#, c-format +msgid "All" +msgstr "Toutes" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 +#, fuzzy, c-format +msgid "Delete instance" +msgstr "Suppression d'une instance %1$s ." + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 +#, fuzzy, c-format +msgid "Delete the instance \"%1$s\"" +msgstr "Suppression d'une instance %1$s ." + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 +#, fuzzy, c-format +msgid "" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" +"Si vous supprimez l'instance nommée %1$s (ID : %2$s), le commerçant ne sera " +"plus en mesure de traiter les commandes ou les remboursements" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, fuzzy, c-format -msgid "Routing number" +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" +"Cette action supprime la clé privée de l'instance, mais préserve toutes les " +"données de transaction. Vous pouvez toujours accéder à ces données après " +"avoir supprimé l'instance." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 -#, c-format -msgid "Account" -msgstr "Compte" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 +#, fuzzy, c-format +msgid "Deleting an instance %1$s" +msgstr "Suppression d'une instance %1$s ." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 #, fuzzy, c-format -msgid "Account number" -msgstr "Numéro de compte" +msgid "This cannot be undone!" +msgstr "ne peut être annulé" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 -#, c-format -msgid "Code" -msgstr "Code" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 +#, fuzzy, c-format +msgid "Purge the instance" +msgstr "Suppression d'une instance %1$s ." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 #, fuzzy, c-format -msgid "Business Identifier Code" -msgstr "Code BIC de la banque" +msgid "Purge the instance \"%1$s\"" +msgstr "Purge d'une instance %1$s ." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, fuzzy, c-format -msgid "International Bank Account Number" -msgstr "Code IBAN" +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" +msgstr "" +"Si vous purgez l'instance nommée %1$s (ID : %2$s), vous supprimerez " +"également toutes ses données de transaction." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 -#, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" -msgstr "votre numéro de compte bancaire au format international IBAN, p.e. CH12 0000 1111 2222 3333 00" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 +#, fuzzy, c-format +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." +msgstr "" +"L'instance disparaîtra de votre liste et vous ne pourrez plus accéder à ses " +"données." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, fuzzy, c-format -msgid "Unified Payment Interface" -msgstr "Interface unifiée de payments (UPI)" +msgid "Purging an instance %1$s" +msgstr "Purge d'une instance %1$s ." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, fuzzy, c-format -msgid "Bitcoin protocol" -msgstr "Protocole Bitcoin" +msgid "create access token" +msgstr "Générer un jeton d'accès" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, fuzzy, c-format -msgid "Ethereum protocol" -msgstr "Protocole Ethereum" +msgid "Check the password." +msgstr "Vérifier le mot de passe." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, fuzzy, c-format -msgid "Interledger protocol" -msgstr "Protocole Interledger" +msgid "Instance not found." +msgstr "La boutique est introuvable." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" -msgstr "Saisir les données sans le schéma. A chemin d'accès peut être inclus :" +msgid "Description" +msgstr "Description" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Cyclos host" -msgstr "Hôte Cyclos" +msgid "" +"Helps you remember where this access token is being used before deleting it." +msgstr "" +"Cela vous aide à vous remémorer où ce jeton d'accès est utilisé avant de " +"l'effacer." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 -#, fuzzy, c-format -msgid "cyclos account" -msgstr "compte Cyclos" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 +#, c-format +msgid "Duration" +msgstr "Durée" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, fuzzy, c-format -msgid "Name of the account holder" -msgstr "Nom de la personne titulaire du compte" +msgid "Time the access token will be valid." +msgstr "Durée de validité du jeton d'accès." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "John Doe" -msgstr "Dominique Martin" +msgid "Refreshable access tokens can pose a security risk!" +msgstr "Les jetons d'accès renouvelables peuvent poser un risque de sécurité !" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format -msgid "Legal name of the person holding the account." -msgstr "Nom légal de la personne titulaire du compte." +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." +msgstr "" +"La durée des jetons d'accès renouvelables peut être étendue avant leur " +"expiration, ce qui procure à quiconque l'utilise un accès indéfini. " +"N'utilisez cette méthode que si vous savez ce que vous faîtes et avez évalué " +"les risques associés notamment aux permissions accordées dans ce contexte." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Invalid url" -msgstr "URL invalide" +msgid "Scope" +msgstr "Contexte" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "URL must end with a '/'" -msgstr "L'URL doit terminer avec une '/'" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." +msgstr "" +"Le contexte définit un jeu de privilèges pour le jeton d'accès. Les jetons " +"renouvelables possèdent le privilège d'étendre leur durée de vie." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "URL must not contain params" -msgstr "L'URL ne doit pas contenir de requête" +msgid "Allows all operations without limit." +msgstr "Permettre toutes les opérations sans limite." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "URL must not hash param" -msgstr "L'URL ne doit pas comporter d'ancre" - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 -#, fuzzy, c-format -msgid "Conflict" -msgstr "Conflit" +msgid "Allows all operations to read information." +msgstr "Permettre toutes les opérations de lecture." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "Server replied with \"bad request\"." -msgstr "La syntaxe de la requête est erronée (réponse du serveur : \"400 bad request\")." +msgid "Allows the creation of orders and checking of payment status." +msgstr "" +"Permettre la création de commandes et la vérification de l'état des " +"paiements." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "Unauthorized, check credentials." -msgstr "Non autorisé, vérifiez les données d'identification." +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." +msgstr "" +"Permettre la création des commandes, la vérification de l'état des paiements " +"et le vérouillage des stocks." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." -msgstr "Ce point d'accès ne semble pas appartenir à l'API Taler Revenue." +msgid "Allows the creation of orders, checking of payment status and refunds." +msgstr "" +"Permettre la création des commandes, la vérification de l'état des paiements " +"et des remboursements." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." msgstr "" -"La requête a abouti mais le serveur de la banque n'a pas répondu avec " -"la valeur appropriée pour le champ 'credit_account' et nous ne pouvons donc " -"pas confirmer qu'il s'agit du même compte bancaire." +"Permettre la création des commandes, la vérification de l'état des " +"paiements, le vérouillage des stocks et des remboursements." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Unsupported type of account" -msgstr "Ce type de compte n'est pas supporté" +msgid "" +"Allows all operations to read information with extendable expiration time." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "Account:" -msgstr "Compte :" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." msgstr "" -"Si la banque supporte l'API Taler Revenue, vous pouvez ajouter ci-dessous " -"l'URL du point d'accès pour synchroniser les informations sur les revenus." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "Endpoint URL" -msgstr "URL du point d'accès" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 +#, c-format +msgid "All (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#, c-format +msgid "Spa" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 +#, c-format +msgid "Spa (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 +#, fuzzy, c-format +msgid "Choose one" +msgstr "Choisissez un ..." + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#, c-format +msgid "Read only" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#, fuzzy, c-format +msgid "Order simple" +msgstr "Identifiant de commande" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#, c-format +msgid "Order Point-of-Sale" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#, c-format +msgid "Order management" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#, fuzzy, c-format +msgid "Order full" +msgstr "Identifiant de commande" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 +#, c-format +msgid "Read only (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 +#, c-format +msgid "Order simple (refreshable)" msgstr "" -"Endroit d'où le commerçant peut récupérer l'information des virements " -"bancaires entrants sur ce compte" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Auth type" -msgstr "Type d'identification" +msgid "Order Point-of-Sale (refreshable)" +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "Choose the authentication type for the account info URL" -msgstr "Choisir le type d'identification pour l'URL d'information sur le compte" +msgid "Order management (refreshable)" +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "Without authentication" -msgstr "Aucune identification" +msgid "Order full (refreshable)" +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, fuzzy, c-format -msgid "With username and password" -msgstr "Avec identifiant et mot de passe" +msgid "Current password" +msgstr "Mot de passe actuel" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 -#, c-format -msgid "With token" -msgstr "Avec jeton d'accès" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 +#, fuzzy, c-format +msgid "Please complete the marked fields" +msgstr "Merci de remplir les champs marqués" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Do not change" -msgstr "Ne pas changer" +msgid "Confirm operation" +msgstr "Confirmer l'opération" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 -#, c-format -msgid "Username to access the account information." -msgstr "Identifiant pour accéder aux informations du compte." +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#, fuzzy, c-format +msgid "Access token created" +msgstr "Un jeton d'accès a été créé" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Password to access the account information." -msgstr "Mot de passe pour accéder aux informations du compte." +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." +msgstr "Prenez à présent note du jeton d'accès car il ne sera plus montré." -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Access token to access the account information." -msgstr "Jeton d'accès pour accéder aux informations du compte." +msgid "Token" +msgstr "Jeton" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Match" -msgstr "Correspondance" +msgid "This token will never expire" +msgstr "Ce jeton n'expirera jamais" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Check where the information match against the server info." -msgstr "Vérifier la correspondance des informations locales avec celles du serveur." +msgid "This token will be available until %1$s" +msgstr "Ce jeton sera disponible jusqu'au %1$s" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 -#, c-format -msgid "Compare info from server with account form" -msgstr "Comparer les informations du serveur avec celles du formulaire" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 +#, fuzzy, c-format +msgid "Create access token" +msgstr "Générer un jeton d'accès" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Test" -msgstr "Test" +msgid "Load more devices before the first one" +msgstr "Insérer d'autres appareils avant le premier" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 -#, fuzzy, c-format -msgid "Server didn't like the request we made." -msgstr "Le serveur n'a pas aimé notre requête." +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 +#, c-format +msgid "Load first page" +msgstr "Charger la première page" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "Account details" -msgstr "Détails du compte" +msgid "Created at" +msgstr "Créé le" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 -#, fuzzy, c-format -msgid "Check if the information matches the server info." -msgstr "Vérifier si les informations correspondent à celles du serveur." +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 +#, c-format +msgid "Expires at" +msgstr "Expire le" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 -#, fuzzy, c-format -msgid "The bank account has been deleted." -msgstr "Le compte bancaire a été supprimé avec succès." +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 +#, c-format +msgid "Never" +msgstr "Jamais" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, fuzzy, c-format -msgid "Delete account" -msgstr "Supprimer ce compte" +msgid "Remove this access token" +msgstr "Supprimer ce jeton d'accès" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 -#, fuzzy, c-format -msgid "Delete the account \"%1$s\"" -msgstr "Supprimer le compte \"%1$s\"" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 +#, c-format +msgid "Load more devices after the last one" +msgstr "Ajouter d'autres appareils après le dernier" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Invalid payto: \"%1$s\"" -msgstr "PayTo invalide : \"%1$s\"" +msgid "Load next page" +msgstr "Charger la page suivante" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, fuzzy, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -"Si vous effacez le compte nommé %1$s (identifiant : %2$s), le stock et " -"toutes les informations liées seront perdus" +"Il n'y a pas encore de session active, ajoutez-en une en appuyant sur le " +"signe +" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, fuzzy, c-format -msgid "Deleting an account can't be undone." -msgstr "La suppression d'un compte est irréversible." - -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 -#, c-format -msgid "Bank accounts" -msgstr "Comptes bancaires" - -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 -#, c-format -msgid "Add new account" -msgstr "Ajouter un nouveau compte" - -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 -#, c-format -msgid "Owner's name" -msgstr "Nom de la personne titulaire" +msgid "delete access token" +msgstr "Supprimer un jeton d'accès" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Delete selected accounts from the database" -msgstr "Supprimer les comptes sélectionnés de la base de données" +msgid "Forbidden." +msgstr "Interdit." -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "New point-of-sale access" msgstr "" -"Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, fuzzy, c-format -msgid "You must provide a bank account to receive payments." -msgstr "Vous devez associer un compte bancaire pour recevoir des fonds." +msgid "Delete access token" +msgstr "Supprimer un jeton d'accès" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 -#, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." -msgstr "" -"Sans cette information, vous ne pouvez pas générer d'ordre de paiement à " -"transférer vers un compte en banque." +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 +#, fuzzy, c-format +msgid "Deleting an access token cannot be undone." +msgstr "La suppression d'un jeton d'accès est irréversible." -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, fuzzy, c-format msgid "Invalid. Please use only letters and numbers." msgstr "Invalide. Veuillez insérer uniquement des chiffres et des lettres." -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 +#, fuzzy, c-format +msgid "add category" +msgstr "Nom de la catégorie" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" -msgstr "Nom" +msgid "Not found" +msgstr "Introuvable" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "Nom de la catégorie" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete category" +msgstr "Nom de la catégorie" + +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, fuzzy, c-format msgid "Category deleted" msgstr "Catégorie supprimée" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format msgid "Add new devices" msgstr "Ajouter de nouveaux appareils" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 -#, c-format -msgid "ID" -msgstr "Identifiant" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "Somme des produits" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "Supprimer la catégorie sélectionnée de la base de données" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" "Il n'y a pas encore de catégorie, ajoutez-en en appuyant sur le signe +" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, fuzzy, c-format +msgid "update category" +msgstr "Impossible de modifier la catégorie" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "Identifiant :" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "Nom de la catégorie" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "Produits" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "Image" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "Ajouter des produits après le dernier" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, fuzzy, c-format msgid "There are no products in this category." msgstr "Cette catégorie est vide." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 +#, fuzzy, c-format +msgid "create product group" +msgstr "Groupes de produits" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete product group" +msgstr "Effacées" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Product group deleted" +msgstr "Liste des produits" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new group" +msgstr "Ajouter un nouveau compte" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, fuzzy, c-format +msgid "Load more groups before the first one" +msgstr "Ajouter des webhooks avant le premier" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 +#, fuzzy, c-format +msgid "Delete selected group from the database" +msgstr "Supprimer les comptes sélectionnés de la base de données" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 +#, fuzzy, c-format +msgid "Load more groups after the last one" +msgstr "Ajouter des produits après le dernier" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#, fuzzy, c-format +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "Il n'y a pas encore de produits, ajoutez-en en appuyant sur le signe +" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 #, fuzzy, c-format msgid "Account's KYC status" msgstr "Situation KYC du compte" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 #, c-format msgid "Exchange" msgstr "Échange" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 #, fuzzy, c-format msgid "Status" msgstr "Situation" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 -#, c-format -msgid "Ok" -msgstr "D'accord" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 -#, fuzzy, c-format -msgid "Action required" -msgstr "Action requise" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 -#, c-format -msgid "Warning" -msgstr "Avertissement" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 -#, c-format -msgid "Error" -msgstr "Erreur" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, fuzzy, c-format msgid "Bank account verification required." msgstr "La vérification du compte bancaire est requise." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, fuzzy, c-format msgid "More information required." msgstr "Davantage d'information est nécessaire." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 -#, c-format -msgid "Awaiting for account review." +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 +#, fuzzy, c-format +msgid "Awaiting account review." msgstr "En attente d'examen du compte." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "Prêt" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, fuzzy, c-format msgid "Syncing..." msgstr "Synchronisation en cours…" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." @@ -2190,150 +2471,159 @@ msgstr "" "Une erreur interne au service de paiement est survenue. Retenter " "ultérieurement ou contacter l'administration si le cas persiste." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 -#, c-format +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 +#, fuzzy, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -"Une erreur interne à l'interface marchande est survenue. Retenter " -"ultérieurement ou contacter l'administration si le cas persiste." +"Une erreur interne au serveur est survenue. Retenter ultérieurement ou " +"contacter l'administration si le cas persiste." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -"Le service de paiement n'a pas répondu à temps. Retenter " -"ultérieurement ou contacter l'administration si le cas persiste." +"Le service de paiement n'a pas répondu à temps. Retenter ultérieurement ou " +"contacter l'administration si le cas persiste." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -"Le service de paiement est indisponible. Retenter " -"ultérieurement ou contacter l'administration si le cas persiste." +"Le service de paiement est indisponible. Retenter ultérieurement ou " +"contacter l'administration si le cas persiste." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "Système bancaire central incompatble." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 -#, c-format -msgid "Backend internal error. Contact administrator or check again later." +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 +#, fuzzy, c-format +msgid "Server internal error. Contact administrator or check again later." msgstr "" -"Une erreur interne au serveur est survenue. Retenter " -"ultérieurement ou contacter l'administration si le cas persiste." +"Une erreur interne au serveur est survenue. Retenter ultérieurement ou " +"contacter l'administration si le cas persiste." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -"La réponse du service de paiement est invalide. Retenter " -"ultérieurement ou contacter l'administration si le cas persiste." +"La réponse du service de paiement est invalide. Retenter ultérieurement ou " +"contacter l'administration si le cas persiste." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" "Le fournisseur du service du paiement ne peut pas effectuer de virement " "bancaire vers ce compte." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "Aucune vérification KYC en cours !" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 +#, c-format +msgid "Ok" +msgstr "D'accord" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, fuzzy, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "The account for wire transfers is invalid." msgstr "Le compte pour les virements bancaires semble invalide." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 -#, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." -msgstr "Le serveur a renvoyé une réponse invalide : \"%1$s\"." - -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, fuzzy, c-format -msgid "No exchange keys" -msgstr "Aucune clé d'échange" +msgid "The server responded with \"%1$s\" which is invalid." +msgstr "Le serveur a renvoyé une réponse invalide : \"%1$s\"." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +msgid "No contact with the payment service yet." +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 +#, fuzzy, c-format +msgid "The server is still synchronizing with the payment service provider." msgstr "" "Le serveur est encore en cours de synchronisation avec le fournisseur de " "service de paiement." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, fuzzy, c-format msgid "No transfers can be made from this account" msgstr "Aucun virement bancaire ne peut être effectué depuis ce compte." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 -#, c-format +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#, fuzzy, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" "Le système bancaire ne peut pas effectuer de virement entre les comptes du " "fournisseur de service de paiement et vos comptes en banque. Aussi vous ne " +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 +#, c-format +msgid "Test" +msgstr "Test" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, fuzzy, c-format msgid "The payment service provider requires more information." msgstr "" "Le prestataire du service de paiement requière une vérification du compte." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, fuzzy, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "Vous définissez le jeton d'accès pour la nouvelle instance" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, fuzzy, c-format msgid "" "This account cannot be used. The payment service provider must verify the " @@ -2342,8 +2632,8 @@ msgstr "" "Afficher uniquement les commandes qui ont déjà été transférées par le " "prestataire de services de paiement" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, fuzzy, c-format msgid "" "This account has been successfully configured for use with the payment " @@ -2352,72 +2642,76 @@ msgstr "" "Afficher uniquement les commandes qui ont déjà été transférées par le " "prestataire de services de paiement" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 -#, c-format +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 +#, fuzzy, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" +"Une erreur interne au service de paiement est survenue. Retenter " +"ultérieurement ou contacter l'administration si le cas persiste." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, fuzzy, c-format msgid "Internal error" msgstr "Interface" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 -#, c-format +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 +#, fuzzy, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" +"Le service de paiement n'a pas répondu à temps. Retenter ultérieurement ou " +"contacter l'administration si le cas persiste." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, fuzzy, c-format msgid "Unsupported account" msgstr "Devises prises en charge" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2425,10 +2719,16 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "Choisir : vide" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" -msgstr "Changer la valeur pour une date inconnue" +msgid "Change value to never" +msgstr "Choisir : jamais" #. screenid: 12 #: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:109 @@ -2437,7 +2737,7 @@ msgid "Enter description or id" msgstr "Entrez soit une description soit un identifiant" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, fuzzy, c-format msgid "No match found for that description or ID." msgstr "" @@ -2451,12 +2751,12 @@ msgstr "Vous devez entrer un identifiant de produit valide." #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 -#, c-format -msgid "Quantity must be greater than 0!" +#, fuzzy, c-format +msgid "Quantity must be greater than zero." msgstr "La quantité doit être supérieure à 0 !" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2466,49 +2766,55 @@ msgstr "" "unités non réservées en stock." #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "Recherche produit" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "Quantité" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "Combien de produits seront ajoutés" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, fuzzy, c-format +msgid "Add it to the order" +msgstr "Montant de la commande" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" -msgstr "Ajouter depuis l'inventaire" +msgid "Invalid" +msgstr "Invalide" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "Ce produit a %1$s taxes applicables configurées." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "Aucune taxe n'est configurée pour ce produit." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "Montant" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2518,7 +2824,7 @@ msgstr "" "principale utilisée par le commerçant." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, fuzzy, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2528,116 +2834,116 @@ msgstr "" ""USD:2.3" ;." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "Nom légal de la taxe, par exemple TVA ou droits d'importation." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "Ajouter une taxe à la liste des taxes" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" "Décrire et ajouter un produit qui ne figure pas dans la liste d'inventaire" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "Ajouter un produit personnalisé" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "Informations complètes sur le produit" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, fuzzy, c-format msgid "Must be a number." msgstr "Doit être un nombre" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, fuzzy, c-format msgid "Must be greater than 0." msgstr "Doit être supérieur à 0" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "Photo du produit." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "Description détaillée du produit." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "Nom de l'unité" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "Nom de l'unité du produit." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "Prix à l'unité" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "Montant dans la monnaie courante." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "Combien de produits seront ajoutés." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "Taxes" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "Prix total" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "Doit être supérieur à 0" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "Le délai de remboursement doit être fixé" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" @@ -2645,187 +2951,199 @@ msgstr "" "de remboursement" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "Doit être dans le future" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 #, fuzzy, c-format -msgid "is not a valid URL" -msgstr "Ceci n'est pas un serveur valide." +msgid "Invalid URL" +msgstr "Invalide" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 +#, fuzzy, c-format +msgid "create order" +msgstr "Créer une commande" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, fuzzy, c-format +msgid "Conflict" +msgstr "Conflit" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 -#, c-format -msgid "No exchange would accept a payment because of KYC requirements." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 +#, fuzzy, c-format +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" "Aucun exchange ne pourra accepter le paiement en raison des exigences en " "matière de connaissance du client (procédure KYC)." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "Gérer les produits dans l'ordre" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 -#, c-format -msgid "%1$s products with a total price of %2$s." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 +#, fuzzy, c-format +msgid "%1$s products with a total price of %2$s ." msgstr "%1$s produits pour un prix total de %2$s." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "Gérer la liste des produits dans la commande." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "Retirer ce produit de la commande." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, fuzzy, c-format msgid "Products price sum" msgstr "Liste des produits" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "Prix total des produits additionnés" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "Prix par article" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "Montant à payer par le client" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "Prix final de la commande" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "Résumé" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "Titre de la commande à afficher au client" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "Expédition et traitement des commandes" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "Date de livraison" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "Date limite de livraison physique assurée par le commerçant." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, fuzzy, c-format msgid "Delivery location" msgstr "Date de livraison" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "Adresse de livraison des produits" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "URL du service de traitement des commandes" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" "URL vers laquelle l'utilisateur sera redirigé après un paiement réussi." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, fuzzy, c-format msgid "Fulfillment message" msgstr "URL du service de traitement des commandes" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "Options de paiement Taler" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" "Remplacer les paramètres de paiement par défaut de Taler pour cette commande" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "Délai de paiement" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, fuzzy, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2837,19 +3155,19 @@ msgstr "" "courir après la création de la commande." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "Par défaut" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "Délai de remboursement" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2859,29 +3177,29 @@ msgstr "" "temps commence à la création de la commande." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "Délai de virement" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 -#, c-format +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 +#, fuzzy, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" "Temps nécessaire à l'exchange pour effectuer le virement. Le temps commence " "à la création de la commande." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "Délai de remboursement automatique" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2891,13 +3209,13 @@ msgstr "" "remboursements sans intervention de l'utilisateur." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "Frais maximums" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2908,13 +3226,13 @@ msgstr "" "consommateur." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "Créer un jeton" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, fuzzy, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2924,13 +3242,13 @@ msgstr "" "utilisateurs de voler les commandes d'autres personnes." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "Âge minimum requis" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2941,116 +3259,122 @@ msgstr "" "sera définie par les produits" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, fuzzy, c-format msgid "Minimum age defined by the products is %1$s" msgstr "L'âge minimum défini par les produits est de %1$s" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "Aucun produit avec restriction d'âge dans cette commande" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "Informations complémentaires" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" "Informations personnalisées à inclure dans le contrat pour cette commande." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "Vous devez saisir une valeur en JavaScript Object Notation (JSON)." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, fuzzy, c-format msgid "remove" msgstr "Effacer" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "Nom du champ personnalisé" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "Désactivé" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "Aucune date limite" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "Date limite à %1$s" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 -#, c-format -msgid "Select date to show nearby orders" -msgstr "Sélectionnez la date pour afficher les commandes proches" +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 +#, fuzzy, c-format +msgid "get product details" +msgstr "Détails du compte" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, fuzzy, c-format msgid "Only show unpaid orders" msgstr "Afficher uniquement les commandes payées" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "Afficher uniquement les commandes payées" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "Payée" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "Afficher uniquement les commandes avec remboursement" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "Remboursée" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "Virement non effectué" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -3060,214 +3384,256 @@ msgstr "" "prestataire de services de paiement" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "Transferé" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "Effacer tous les filtres" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "Effacer le filtre de date" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 -#, c-format -msgid "Jump to date (%1$s)" -msgstr "Aller à la date (%1$s)" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 +#, fuzzy, c-format +msgid "authorize refund" +msgstr "Non autorisé" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "Aller à la commande en fonction d'un identifiant de produit" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "Identifiant de commande" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "Effacer le filtre de date" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "Sélectionnez la date pour afficher les commandes proches" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "Aller à la date (%1$s)" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, fuzzy, c-format msgid "Instance unknown" msgstr "Identifiant d'instance" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, fuzzy, c-format msgid "Order unknown" msgstr "inconnu" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, fuzzy, c-format +msgid "This order is not refundable" +msgstr "Pourquoi cette commande est-elle remboursée" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "Créer une commande" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "Date" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "Remboursement" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "copiez l'URL" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "Charger d'autres commandes après la dernière" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "Aucune commande n'a été trouvée correspondant à votre requête !" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "Dupliqué" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, fuzzy, c-format msgid "This value exceeds the refundable amount." msgstr "Cette valeur dépasse le montant remboursable" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 -#, c-format -msgid "There are pending KYC requirements." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 +#, fuzzy, c-format +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" "Des exigences en matière de connaissance du client (KYC) sont en suspens." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, fuzzy, c-format msgid "refund" msgstr "Remboursement" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "Référence" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "Montant à rembourser" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "Remboursement maximum :" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "Choisissez un ..." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "A la demande du client" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "Autre" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "Pourquoi cette commande est-elle remboursée" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "Plus d'informations pour situer le contexte" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, fuzzy, c-format msgid "now" msgstr "non" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, fuzzy, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " @@ -3276,66 +3642,79 @@ msgstr "" "Afficher uniquement les commandes qui ont déjà été transférées par le " "prestataire de services de paiement" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, fuzzy, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" "Afficher uniquement les commandes qui ont déjà été transférées par le " "prestataire de services de paiement" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, fuzzy, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" +"Afficher uniquement les commandes qui ont déjà été transférées par le " +"prestataire de services de paiement" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, fuzzy, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "Montant à payer par le client" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, fuzzy, c-format msgid "This refund has been claimed by the customer." msgstr "Montant à payer par le client" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "Conditions du contrat" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "Description en langage courant de l'ensemble de la transaction" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "Prix total de la transaction" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "URL de cet achat" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "Frais maximums" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" @@ -3343,19 +3722,19 @@ msgstr "" "contrat" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "Heure à laquelle ce contrat a été généré" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "Date limite de paiement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" @@ -3363,49 +3742,37 @@ msgstr "" "Passé ce délai, le commerçant n'acceptera plus de paiements pour le contrat" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "Date limite de remboursement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, fuzzy, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "Passé ce délai, aucun remboursement ne sera accepté" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "Date limite pour les virements" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 -#, c-format -msgid "Transfer deadline for the exchange" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 +#, fuzzy, c-format +msgid "Transfer deadline for the payment service" msgstr "Date limite de transfert pour l'exchange" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 -#, c-format -msgid "Time indicating when the order should be delivered" -msgstr "Date à laquelle la commande doit être livrée" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 -#, c-format -msgid "Where the order will be delivered" -msgstr "Lieu de livraison de la commande" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format msgid "Auto-refund delay" msgstr "Délai de remboursement automatique" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format msgid "" "How long the wallet should try to get an automatic refund for the purchase" @@ -3414,13 +3781,25 @@ msgstr "" "automatique de l'achat" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 +#, c-format +msgid "Time indicating when the order should be delivered" +msgstr "Date à laquelle la commande doit être livrée" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 +#, c-format +msgid "Where the order will be delivered" +msgstr "Lieu de livraison de la commande" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "Infos supplémentaires" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" @@ -3428,217 +3807,241 @@ msgstr "" "commerçant" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, fuzzy, c-format msgid "order created" msgstr "Statut de la commande" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, fuzzy, c-format msgid "pay deadline" msgstr "Date limite de paiement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, fuzzy, c-format msgid "refund deadline" msgstr "Date limite de remboursement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, fuzzy, c-format msgid "delivery" msgstr "Date de livraison" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "Commande" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "Idées pour les projets réclamées" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "Réclamée à" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "Calendrier" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "Modalités de paiement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "Statut de la commande" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "Non payé" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "Liste des produits" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 #, c-format -msgid "refund missed: %1$s" +msgid "The contract terms have a v1 order without choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, c-format +msgid "The contract terms have a v1 order with a bad choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 +#, fuzzy, c-format +msgid "refund missed: %1$s : %2$s" +msgstr "Création réussie du remboursement" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, fuzzy, c-format msgid "refund created: %1$s" msgstr "Création réussie du remboursement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, fuzzy, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "Création réussie du remboursement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, fuzzy, c-format msgid "refund taken: %1$s" msgstr "Remboursement pris" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, fuzzy, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund taken: %1$s : %2$s" msgstr "Remboursement pris" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 -#, c-format -msgid "The contract terms has a v1 order with a bad choices_index." -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 +#, fuzzy, c-format +msgid "wire deadline" +msgstr "Aucune date limite" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 -#, c-format -msgid "wired %1$s" -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 +#, fuzzy, c-format +msgid "Related wire transfers" +msgstr "Virements bancaires" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 #, fuzzy, c-format -msgid "wire deadline" -msgstr "Aucune date limite" +msgid "Unconfirmed" +msgstr "Confirmé" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" -msgstr "Virement effectué" +msgid "Confirmed" +msgstr "Confirmé" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "Rembourser la commande" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "Non remboursable" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, fuzzy, c-format +msgid "No wire transfer reported" +msgstr "Délai de virement" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, fuzzy, c-format +msgid "Check wire transfers" +msgstr "Virements bancaires" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "Nouvel évènement dans" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, fuzzy, c-format msgid "The order was wired." msgstr "La demande a été annulée." #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "Montant remboursé" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "Remboursement pris" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "URL de l'état" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "URI de remboursement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 -#, c-format -msgid "Pay at" -msgstr "URL de paiement" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 +#, fuzzy, c-format +msgid "Payment link" +msgstr "Date limite de paiement" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "URL de l'état de la commande" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "URI de payment" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." @@ -3646,56 +4049,98 @@ msgstr "" "Statut de la commande inconnu. Il s'agit d'une erreur, veuillez contacter " "l'administrateur." +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "Retour" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "jamais" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "inconnu" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Confirmé" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Confirmé" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, fuzzy, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "Invalide. Veuillez n'insérer que des caractères et des chiffres" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" -msgstr "Juste des lettres et des chiffres de 2 à 7" +msgid "Use only letters and digits (2–7)." +msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "La clé doit comporter exactement 32 caractères" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, fuzzy, c-format +msgid "add otp device" +msgstr "Aucun appareil" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "Identifiant interne au système" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "Utile pour identifier physiquement l'appareil" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "Algorithme de vérification" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "Algorithme utilisé pour vérifier la transaction en mode hors ligne" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "Clé de l'appareil" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, fuzzy, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3705,19 +4150,19 @@ msgstr "" "utilisez le générateur aléatoire" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "Votre appareil doit afficher exactement la même valeur" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "Générer une clé secrète aléatoire" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "Aléatoire" @@ -3729,7 +4174,7 @@ msgid "Create another" msgstr "Créer une commande" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3739,13 +4184,19 @@ msgstr "" "clé avant de continuer." #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete otp device" +msgstr "Aucun appareil" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "Appareils OTP" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "Supprimer les appareils sélectionnés de la base de données" @@ -3758,13 +4209,19 @@ msgstr "" "Il n'y a pas encore d'appareil, ajoutez-en un en appuyant sur le signe +" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 +#, fuzzy, c-format +msgid "update otp device" +msgstr "Appareil OTP" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format msgid "Template id is unknown" msgstr "Identifiant du modèle inconnu" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 #, c-format msgid "" "The provided information is inconsistent with the current state of the " @@ -3773,26 +4230,26 @@ msgstr "" "Les informations fournies ne correspondent pas à l'état actuel du modèle" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "Appareil :" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" "Algorithme à utiliser pour vérifier les transactions en mode hors ligne" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "Pas de modification" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" @@ -3800,108 +4257,260 @@ msgstr "" "aléatoire" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "Votre appareil doit avoir exactement la même valeur" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "Changer la clé" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "N'est pas le même" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, fuzzy, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" "Vous mettez à jour le jeton d'accès de l'instance dont l'identifiant est %1$s" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, fuzzy, c-format +msgid "New password" +msgstr "Nouveau mot de passe" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, fuzzy, c-format +msgid "Next password to be used" +msgstr "Prochain mot de passe à utiliser" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, fuzzy, c-format +msgid "Repeat password" +msgstr "Répéter le mot de passe" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, fuzzy, c-format +msgid "Confirm the same password" +msgstr "Confirmer ce mot de passe" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "Confirmer le changement" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, fuzzy, c-format +msgid "change password" +msgstr "Avec mot de passe" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, fuzzy, c-format msgid "Testing password change" msgstr "Mot de passe" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, fuzzy, c-format msgid "Password changed" msgstr "Mot de passe" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, fuzzy, c-format msgid "The current password is wrong." msgstr "Avec mot de passe" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, fuzzy, c-format +msgid "change instance password" +msgstr "Mot de passe de la boutique." + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, fuzzy, c-format msgid "Account not found." msgstr "Identifiant du produit" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, fuzzy, c-format +msgid "create money pot" +msgstr "Créer un nouveau compte" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, fuzzy, c-format +msgid "There is already a money pot with the same id." +msgstr "" +"Affiche plus d'options dans le formulaire de configuration de l'instance" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete money pot" +msgstr "Cagnottes" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Money pot deleted" +msgstr "Inventaire" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new pots" +msgstr "Ajouter de nouveaux modèles" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, fuzzy, c-format +msgid "Load more pots before the first one" +msgstr "Ajouter de nouveaux modèles avant le premier" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, fuzzy, c-format +msgid "Total" +msgstr "Prix total" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, fuzzy, c-format +msgid "Delete selected pots from the database" +msgstr "Supprimer les comptes sélectionnés de la base de données" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, fuzzy, c-format +msgid "Load more pots after the last one" +msgstr "Ajouter des produits après le dernier" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, fuzzy, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" +"Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "Ajouter l'élément à la liste" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, fuzzy, c-format +msgid "The value is too precise" +msgstr "Changer la valeur pour jamais" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, fuzzy, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "Montant invalide" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, fuzzy, c-format +msgid "update money pot" +msgstr "Cagnottes" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, fuzzy, c-format +msgid "Descripton" +msgstr "Description" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, fuzzy, c-format +msgid "Totals" +msgstr "Total des produits" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, fuzzy, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" "Cliquez ici pour configurer le stock du produit, laissez-le tel quel et le " "backend ne contrôlera pas le stock." #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "Gestion du stock" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "Ce produit a été configuré sans contrôle du stock" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "Infini" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, fuzzy, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3911,55 +4520,55 @@ msgstr "" "entrantes (maximum %1$s)" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 +#, c-format +msgid "Current" +msgstr "Courant" + +#. screenid: 14 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format msgid "Incoming" msgstr "Arrivées" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format msgid "Lost" msgstr "Perte" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 -#, c-format -msgid "Current" -msgstr "Courant" - -#. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "Supprimer le contrôle des stocks pour ce produit" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "sans stock" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "Prochain réapprovisionnement" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "Adresse de l'entrepôt" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "Montant invalide" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" @@ -3967,43 +4576,43 @@ msgstr "" "uniquement)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "Illustration du produit pour les clients." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, fuzzy, c-format msgid "Product name." msgstr "Identifiant du produit" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "Description du produit pour les clients." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "Restriction d'âge" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "Ce produit est-il interdit aux personnes en dessous d'un certain âge ?" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "Âge minimum du client" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -4013,13 +4622,13 @@ msgstr "" "5 litres, 3 articles, 5 mètres) aux clients." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "Exemple : kg, pièces ou litres" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." @@ -4028,13 +4637,13 @@ msgstr "" "produits ci-dessus." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "Stock" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" @@ -4042,79 +4651,89 @@ msgstr "" "uniquement)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "Taxes incluses dans le prix du produit, communiquées aux clients." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "Recherche par description de catégorie ou par identifiant" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "Catégories dans lesquelles ce produit sera rangé." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, fuzzy, c-format msgid "Search by money pot description or id" msgstr "Recherche par description ou identifiant de produit" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, fuzzy, c-format msgid "Money pots where this product will be listed on." msgstr "Catégories dans lesquelles ce produit sera rangé." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, fuzzy, c-format msgid "Select one" msgstr "Compte en banque" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, fuzzy, c-format msgid "Search by group name or id" msgstr "Recherche par description ou identifiant de produit" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, fuzzy, c-format +msgid "add product" +msgstr "Somme des produits" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -4127,189 +4746,339 @@ msgid "Add product to inventory" msgstr "Ajouter le produit à l'inventaire" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, fuzzy, c-format +msgid "update product" +msgstr "Modification du produit impossible" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, fuzzy, c-format msgid "Product not found." msgstr "Identifiant du produit" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "Ventes" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "Vendu" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, fuzzy, c-format +msgid "infinite" +msgstr "Infini" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "Libre" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "Aller à la page de modification du produit" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "Modification" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "Effacer ce produit de la base de données" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "Modifier le prix du produit" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "Modifier le prix du produit" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "Confirmer la modification" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, fuzzy, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "La perte ne peut pas être supérieure au courant + entrées (max %1$s)" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "Ajouter d'autres éléments à l'inventaire" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "Signaler les éléments perdus dans l'inventaire" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "Nouveau prix pour le produit" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, fuzzy, c-format msgid "There are values with errors." msgstr "Certaines valeurs ont des erreurs" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "Changer le stock et le prix du produit" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "Il n'y a pas encore de produits, ajoutez-en en appuyant sur le signe +" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, fuzzy, c-format +msgid "delete product" +msgstr "Effacées" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, fuzzy, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "Le produit (identifiant : %1$s) a été modifié" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 +#, c-format +msgid "Jump to product with the given product ID" +msgstr "Aller directement au produit avec son identifiant" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 +#, c-format +msgid "Product id" +msgstr "Identifiant du produit" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 +#, fuzzy, c-format +msgid "Delete product" +msgstr "Effacées" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 +#, fuzzy, c-format +msgid "Delete the product \"%1$s\"" +msgstr "Impossible d'effacer le produit" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 +#, c-format +msgid "" +"If you delete the product named %1$s (ID: %2$s ), the stock and related " +"information will be lost" +msgstr "" +"Si vous effacez le produit nommé %1$s (identifiant : %2$s), le stock et " +"toutes les informations liées seront perdus" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 +#, fuzzy, c-format +msgid "Deleting a product cannot be undone." +msgstr "La suppression d'un produit est irréversible." + +#. screenid: 57 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 +#, c-format +msgid "Product id:" +msgstr "Identifiant du produit :" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, fuzzy, c-format +msgid "It should start with /" +msgstr "Le numéro international devrait commencer par +" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, fuzzy, c-format +msgid "Type of the data source" +msgstr "Nom de la catégorie" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 #, c-format -msgid "Jump to product with the given product ID" -msgstr "Aller directement au produit avec son identifiant" +msgid "Report frequency shift" +msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, fuzzy, c-format +msgid "delete scheduled report" +msgstr "Supprimer la catégorie sélectionnée de la base de données" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 #, c-format -msgid "Product id" -msgstr "Identifiant du produit" +msgid "Scheduled report deleted" +msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 -#, fuzzy, c-format -msgid "Delete product" -msgstr "Effacées" +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 #, fuzzy, c-format -msgid "Delete the product \"%1$s\"" -msgstr "Impossible d'effacer le produit" +msgid "Add new reports" +msgstr "Ajouter de nouveaux modèles" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 #, c-format -msgid "" -"If you delete the product named %1$s (ID: %2$s ), the stock and related " -"information will be lost" +msgid "Frequency" msgstr "" -"Si vous effacez le produit nommé %1$s (identifiant : %2$s), le stock et " -"toutes les informations liées seront perdus" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 #, fuzzy, c-format -msgid "Deleting a product cannot be undone." -msgstr "La suppression d'un produit est irréversible." +msgid "Delete selected scheduled report from the database" +msgstr "Supprimer la catégorie sélectionnée de la base de données" -#. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, fuzzy, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" +"Il n'y a pas encore de catégorie, ajoutez-en en appuyant sur le signe +" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 #, c-format -msgid "Product id:" -msgstr "Identifiant du produit :" +msgid "update scheduled report" +msgstr "" +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4334,296 +5103,308 @@ msgid "Orders table" msgstr "Statut de la commande" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, fuzzy, c-format msgid "Orders statistics" msgstr "Statut de la commande" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, fuzzy, c-format msgid "# of orders since" msgstr "prix de la commande" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, fuzzy, c-format msgid "hour" msgstr "heures" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, fuzzy, c-format msgid "day" msgstr "jours" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, fuzzy, c-format msgid "Revenue statistics filter" msgstr "Effacer tous les filtres" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, fuzzy, c-format msgid "Time range" msgstr "Calendrier" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, fuzzy, c-format msgid "Currency" msgstr "Courant" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, fuzzy, c-format msgid "Start time" msgstr "Délai de paiement" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "Doit être supérieur à 0" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "Trop court" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, fuzzy, c-format +msgid "add template" +msgstr "Ajouter de nouveaux modèles" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "Identifiant" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "Nom du modèle dans les URLs." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, fuzzy, c-format msgid "Template name" msgstr "Modèles" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "Décrire ce que ce modèle représente" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "Résumé de la commande" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "S'il est utilisé, ce modèle créera des commandes avec le même résumé" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "Le résumé est éditable" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "Autoriser l'utilisateur à modifier le résumé." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "S'il est utilisé, ce modèle créera des commandes avec le même prix" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "Le montant est modifiable" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "Permettre à l'utilisateur de sélectionner le montant à payer." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "La devise est modifiable" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "Permettre à l'utilisateur de changer de devise." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "Devises prises en charge" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "Devises prises en charge : %1$s" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "Age minimum" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "Ce contrat doit-il contenir une limite d'âge ?" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "Délai de paiement" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4633,135 +5414,147 @@ msgstr "" "la commande." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "Appareil OTP" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "A utiliser pour vérifier la transaction en mode hors ligne." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "Aucun appareil OTP." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "Ajouter un premier élément" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "Aucun appareil" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "Ajouter de nouveaux modèles" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "Ajouter de nouveaux modèles avant le premier" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "Effacer les modèles sélectionnés de la base de données" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "Utiliser le modèle pour créer une nouvelle commande" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "Créer un code QR pour le modèle." #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "Ajouter des modèles après le dernier" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "Il n'y a pas encore de modèles, ajoutez-en en appuyant sur le signe +" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, fuzzy, c-format +msgid "delete template" +msgstr "Suppression d'un modèle" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "Aller directement au modèle avec cet identifiant" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "Identification du modèle" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, fuzzy, c-format msgid "Delete template" msgstr "Suppression d'un modèle" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, fuzzy, c-format msgid "Delete the template \"%1$s\"" msgstr "Suppression d'un modèle" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 -#, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 +#, fuzzy, c-format +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" "Si vous effacez le modèle %1$s (identifiant : %2$s) vous pourriez perdre des " "informations" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, fuzzy, c-format msgid "Deleting a template cannot be undone." msgstr "La suppression d'un produit est irréversible." #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "Imprimer" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, fuzzy, c-format +msgid "update template" +msgstr "Utiliser le modèle" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4769,19 +5562,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "S'il est utilisé, ce modèle créera des commandes avec le même résumé." #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "S'il est utilisé, ce modèle créera des commandes avec le même prix" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4791,44 +5584,83 @@ msgstr "" "la commande." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "Montant obligatoire" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "Un résumé de la commande est obligatoire" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, fuzzy, c-format +msgid "create order from template" +msgstr "Nouvelle commande à partir d'un modèle" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" "Il n'y a plus de stock pour le produit dont l'identifiant est \"%1$s\"." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "Nouvelle commande à partir d'un modèle" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "Montant de la commande" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, fuzzy, c-format +msgid "Granularity can't be greater than duration." +msgstr "La quantité doit être supérieure à 0 !" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, fuzzy, c-format +msgid "create token family" +msgstr "Échec de la suppression de la famille de jetons" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, fuzzy, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" +"Affiche plus d'options dans le formulaire de configuration de l'instance" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "Type" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" @@ -4836,61 +5668,73 @@ msgstr "" "uniquement)" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "Nom de famille du jeton compréhensible par l'utilisateur" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "Description de la famille de jetons pour les clients" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "Type" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, fuzzy, c-format msgid "Start Date" msgstr "Délai de paiement" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4898,58 +5742,85 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 -#, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 +#, fuzzy, c-format +msgid "1 minute" +msgstr "Chaque minute" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, fuzzy, c-format +msgid "1 hour" +msgstr "heures" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, fuzzy, c-format +msgid "1 day" +msgstr "Quotidienne" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, fuzzy, c-format +msgid "30 days" +msgstr "jours" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, fuzzy, c-format +msgid "90 days" +msgstr "jours" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, fuzzy, c-format +msgid "365 days" +msgstr "jours" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "Familles de jetons" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "Ajouter une famille de jetons" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "Valide jusqu'à" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "Aller à la page de modification des familles de jetons" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "Effacer cette famille de jetons de la base de données" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." @@ -4958,25 +5829,31 @@ msgstr "" "sur le signe +." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, fuzzy, c-format +msgid "delete token family" +msgstr "Échec de la suppression de la famille de jetons" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, fuzzy, c-format msgid "Token family has been deleted." msgstr "Famille de jetons \"%1$s\" (type : %2$s) a été effacée" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, fuzzy, c-format msgid "Delete token family" msgstr "Échec de la suppression de la famille de jetons" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, fuzzy, c-format msgid "Delete the token family \"%1$s\"" msgstr "Suppression de la famille de jetons %1$s ." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4986,214 +5863,224 @@ msgstr "" "jetons émis deviendront invalides." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "Suppression de la famille de jetons %1$s ." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "ne peut être annulé" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, fuzzy, c-format +msgid "update token family" +msgstr "Impossible de mettre à jour la famille de jetons" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format msgid "Token Family: %1$s" msgstr "Famille de jetons : %1$s" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, fuzzy, c-format +msgid "inform wire transfer" +msgstr "Confirmez le même jeton d'accès" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 +#, fuzzy, c-format +msgid "Wire transfer already confirmed." +msgstr "Date limite pour les virements" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 #, c-format -msgid "User-readable token family name" -msgstr "Nom de famille du jeton compréhensible par l'utilisateur" +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, fuzzy, c-format +msgid "The wire transfer has been confirmed." +msgstr "Date limite pour les virements" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, fuzzy, c-format +msgid "Transaction details" +msgstr "Détails du compte" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, fuzzy, c-format +msgid "Transfer ID" +msgstr "Virements" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 #, c-format -msgid "Token family description for customers" -msgstr "Description de la famille de jetons pour les clients" +msgid "I have received the wire transfer" +msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 #, fuzzy, c-format -msgid "Incoming wire transfers" +msgid "Orders in this wire transfer" msgstr "Virements bancaires" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 -#, c-format -msgid "Load more wire transfers preceding the first one" -msgstr "Charger des virements avant le premier" +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 +#, fuzzy, c-format +msgid "Fee" +msgstr "Libre" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, fuzzy, c-format -msgid "Expected credit" -msgstr "Exécuté le" +msgid "Subtotals" +msgstr "Total des produits" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Confirmed" -msgstr "Confirmé" +msgid "Deposit fee" +msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, fuzzy, c-format -msgid "Validated" -msgstr "Valide à partir de" +msgid "Wire fee" +msgstr "Virements bancaires" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Executed on" -msgstr "Exécuté le" +msgid "not ready" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 +#, fuzzy, c-format +msgid "loading..." +msgstr "Synchronisation en cours…" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 -#, c-format -msgid "yes" -msgstr "oui" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 +#, fuzzy, c-format +msgid "New wire transfers" +msgstr "Virements bancaires" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "no" -msgstr "non" +msgid "Load more wire transfers preceding the first one" +msgstr "Charger des virements avant le premier" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "never" -msgstr "jamais" +msgid "To be determined." +msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "unknown" -msgstr "inconnu" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." +msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format msgid "Load more transfers after the last one" msgstr "Ajouter des virements après le dernier" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 +#, fuzzy, c-format +msgid "Confirmed wire transfers into bank account" +msgstr "Confirmez le même jeton d'accès" + +#. screenid: 72 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, fuzzy, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "Virements bancaires" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 -#, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 +#, fuzzy, c-format +msgid "There are no transfers to list yet" msgstr "" "Il n'y a pas encore de virements, ajoutez-en en appuyant sur le signe +" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 -#, c-format -msgid "All accounts" -msgstr "Tous les comptes" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format -msgid "Filter by account address" -msgstr "Filtre sur l'adresse du compte" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 -#, fuzzy, c-format -msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." -msgstr "" -"Afficher uniquement les commandes qui ont déjà été transférées par le " -"prestataire de services de paiement" +msgid "All accounts" +msgstr "Tous les comptes" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format -msgid "Only show wire transfers confirmed by the merchant" -msgstr "" -"Afficher uniquement les virements bancaires confirmés par le commerçant" +msgid "Filter by account address" +msgstr "Filtre sur l'adresse du compte" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 #, c-format msgid "Verified" msgstr "Vérifié" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 -#, fuzzy, c-format -msgid "Wire transfer already confirmed." -msgstr "Date limite pour les virements" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 -#, c-format -msgid "I have received the wire transfer" -msgstr "" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 -#, fuzzy, c-format -msgid "Confirm the wire transfer" -msgstr "Confirmez le même jeton d'accès" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 -#, fuzzy, c-format -msgid "Time" -msgstr "Calendrier" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 -#, fuzzy, c-format -msgid "Transfer ID" -msgstr "Virements" - #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, fuzzy, c-format msgid "It's not the same." msgstr "N'est pas le même" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, fuzzy, c-format msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" "Vous modifiez le jeton d'accès de l'instance dont l'identifiant est \"%1$s\"" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 +#, fuzzy, c-format +msgid "delete current instance" +msgstr "Suppression d'une instance %1$s ." + +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, fuzzy, c-format msgid "Instance" msgstr "Instances" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format msgid "Write the instance name to confirm the deletion" msgstr "" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 -#, c-format -msgid "Purge" -msgstr "Purger" - -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" "All the data will be fully deleted, otherwise only the access will be " @@ -5201,17 +6088,71 @@ msgid "" msgstr "" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format msgid "DELETE" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 +#, fuzzy, c-format +msgid "Doesn't have the pattern of an email" +msgstr "Cela ne ressemble pas à une addresse de courriel" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 +#, c-format +msgid "Should start with +" +msgstr "Le numéro international devrait commencer par +" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 +#, c-format +msgid "A phone number consists of numbers only" +msgstr "Un numéro de téléphone n'est composé que de chiffres" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 +#, fuzzy, c-format +msgid "Invalid phone number" +msgstr "Email de contact" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 +#, fuzzy, c-format +msgid "Invalid value" +msgstr "Valeur invalide" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 +#, c-format +msgid "Max 7 lines" +msgstr "Sept lignes au maximum" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 +#, c-format +msgid "update instance settings" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format msgid "Instance id" msgstr "Identifiant d'instance" +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 +#, c-format +msgid "URL" +msgstr "URL" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, fuzzy, c-format +msgid "Cancel operation" +msgstr "Confirmer l'opération" + #. screenid: 74 #: packages/merchant-backoffice-ui/src/paths/instance/update/index.tsx:113 #, fuzzy, c-format @@ -5219,133 +6160,133 @@ msgid "Delete this instance" msgstr "Suppression d'une instance %1$s ." #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "Doit être l'un des éléments suivants '%1$s'" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, fuzzy, c-format msgid "URL is invalid" msgstr "La chaine JSON est invalide" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, fuzzy, c-format +msgid "add webhook" +msgstr "Ajouter de nouveaux webhooks" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "Identifiant du Webhook à utiliser" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "Evènement" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, fuzzy, c-format msgid "Payment" msgstr "URI de payment" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, fuzzy, c-format msgid "Order settled" msgstr "Statut de la commande" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, fuzzy, c-format msgid "Category added" msgstr "Nom de la catégorie" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, fuzzy, c-format msgid "Category updated" msgstr "Nom de la catégorie" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, fuzzy, c-format msgid "Inventory added" msgstr "Inventaire" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, fuzzy, c-format msgid "Inventory updated" msgstr "Inventaire" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, fuzzy, c-format msgid "Inventory deleted" msgstr "Inventaire" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "L'événement du webhook : pourquoi le webhook est-il utilisé" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "Méthode" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "GET" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "POST" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "PUT" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "PATCH" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "HEAD" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "Méthode utilisée par le webhook" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "URL" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "URL du webhook où le client sera redirigé" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5356,43 +6297,43 @@ msgstr "" "correspondante." #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, fuzzy, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "Par exemple, %1$s sera remplacé par le prix de la commande" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "La liste restreinte des variables est la suivante :" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "description de la commande" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "prix de la commande" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "identification unique de la commande" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "le montant remboursé" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" @@ -5400,536 +6341,460 @@ msgstr "" "remboursement" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "instant du remboursement en nanosecondes depuis 1970" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, fuzzy, c-format msgid "Http header" msgstr "Entête" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "Modèle d'entête pour le webhook" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "body HTTP" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, fuzzy, c-format msgid "Body template used by the webhook." msgstr "Modèle de body pour le webhook" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, fuzzy, c-format +msgid "delete webhook" +msgstr "Ajouter de nouveaux webhooks" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "Suppression réussie du webhook" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "Ajouter de nouveaux webhooks" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "Ajouter des webhooks avant le premier" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "Type d'évènement" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "Supprimer le webhook sélectionné de la base de données" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "Ajouter des webhooks après le dernier" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "Il n'y a pas encore de webhook, ajoutez-en en appuyant sur le signe +" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, fuzzy, c-format +msgid "update webhook" +msgstr "Impossible de modifier le webhook" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "Webhook modifié" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "Entête" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "Corps" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, fuzzy, c-format msgid "Body template used by the webhook" msgstr "Modèle de body pour le webhook" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "Ne correspond pas" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, fuzzy, c-format +msgid "self provision instance" +msgstr "Suppression d'une instance %1$s ." + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, fuzzy, c-format msgid "There is another instance with this username." msgstr "" "Affiche plus d'options dans le formulaire de configuration de l'instance" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, fuzzy, c-format msgid "Contact phone number" msgstr "Email de contact" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, fuzzy, c-format msgid "Create" msgstr "Créé à" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, fuzzy, c-format msgid "The instance \"%1$s\" was not found." msgstr "Votre instance n'a pas été trouvée" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, fuzzy, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "Vous définissez le jeton d'accès pour la nouvelle instance" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 -#, c-format -msgid "Reset" -msgstr "" - #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format msgid "Language" msgstr "Langue" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 +#, c-format +msgid "Force the language settings instead of using the browser" +msgstr "" + +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "Format de la date" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "Comment la date sera affichée" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, fuzzy, c-format msgid "Merchant type" msgstr "Type d'évènement" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 -#, c-format -msgid "Developer mode" +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 +#, fuzzy, c-format +msgid "Developer tools" msgstr "Mode dévelopeur" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, fuzzy, c-format -msgid "Money pot deleted" -msgstr "Inventaire" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, fuzzy, c-format -msgid "Add new pots" -msgstr "Ajouter de nouveaux modèles" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, fuzzy, c-format -msgid "Load more pots before the first one" -msgstr "Ajouter de nouveaux modèles avant le premier" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, fuzzy, c-format -msgid "Total" -msgstr "Prix total" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, fuzzy, c-format -msgid "Delete selected pots from the database" -msgstr "Supprimer les comptes sélectionnés de la base de données" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, fuzzy, c-format -msgid "Load more pots after the last one" -msgstr "Ajouter des produits après le dernier" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, fuzzy, c-format -msgid "There are no money pots yet, add more pressing the + sign" +msgid "Enable UI tools for troubleshooting." msgstr "" -"Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Missing currency name" +msgid "Testing features" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Currency name must be only letters" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Value can only by number" -msgstr "" +msgid "Developer mode" +msgstr "Mode dévelopeur" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, fuzzy, c-format -msgid "The value is too precise" -msgstr "Changer la valeur pour jamais" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, fuzzy, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "Montant invalide" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 -#, fuzzy, c-format -msgid "Descripton" -msgstr "Description" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, fuzzy, c-format -msgid "Totals" -msgstr "Total des produits" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, fuzzy, c-format -msgid "There is already a money pot with the same id." +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -"Affiche plus d'options dans le formulaire de configuration de l'instance" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, fuzzy, c-format -msgid "Product group deleted" -msgstr "Liste des produits" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 -#, fuzzy, c-format -msgid "Add new group" -msgstr "Ajouter un nouveau compte" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 -#, fuzzy, c-format -msgid "Load more groups before the first one" -msgstr "Ajouter des webhooks avant le premier" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 -#, fuzzy, c-format -msgid "Delete selected group from the database" -msgstr "Supprimer les comptes sélectionnés de la base de données" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, fuzzy, c-format -msgid "Load more groups after the last one" -msgstr "Ajouter des produits après le dernier" +msgid "create pos access token" +msgstr "Générer un jeton d'accès" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, fuzzy, c-format -msgid "There are no product groups yet, add more pressing the + sign" -msgstr "Il n'y a pas encore de produits, ajoutez-en en appuyant sur le signe +" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 -#, c-format -msgid "Scheduled report deleted" -msgstr "" +msgid "Device name" +msgstr "Clé de l'appareil" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Scheduled reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, fuzzy, c-format -msgid "Add new reports" -msgstr "Ajouter de nouveaux modèles" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 -#, c-format -msgid "Frequency" -msgstr "" +msgid "Payment services status" +msgstr "Devises prises en charge" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, fuzzy, c-format -msgid "Delete selected scheduled report from the database" -msgstr "Supprimer la catégorie sélectionnée de la base de données" +msgid "Base URL" +msgstr "URL de l'état" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, fuzzy, c-format -msgid "There are no reports yet, add more pressing the + sign" -msgstr "" -"Il n'y a pas encore de catégorie, ajoutez-en en appuyant sur le signe +" +msgid "Next update" +msgstr "Inventaire" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 -#, c-format -msgid "No report generator configured in the server" -msgstr "" +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 +#, fuzzy, c-format +msgid "This payment service is ready to be used." +msgstr "Ce compte n'est pas autorisé." -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 -#, c-format +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 +#, fuzzy, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" +"Afficher uniquement les commandes qui ont déjà été transférées par le " +"prestataire de services de paiement" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 -#, c-format -msgid "Where the report program should send the report" -msgstr "" +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 +#, fuzzy, c-format +msgid "No payment services supported" +msgstr "Aucune clé d'échange" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 -#, c-format -msgid "Base URL to request the data from." -msgstr "" +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 +#, fuzzy, c-format +msgid "Ready until %1$s" +msgstr "Date limite à %1$s" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, fuzzy, c-format -msgid "Type of the data source" -msgstr "Nom de la catégorie" +msgid "Next update will be at %1$s" +msgstr "Il expirera à %1$s" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" -msgstr "" +msgid "Error" +msgstr "Erreur" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "Vous devez associer un compte bancaire pour recevoir des fonds." #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 -#, c-format -msgid "Without this the merchant backend will refuse to create new orders." +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 +#, fuzzy, c-format +msgid "Without this the server will refuse to create new orders." msgstr "" "Sans cela, le backend du commerçant refusera de créer de nouvelles commandes." #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "Cacher pour aujourd'hui" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "Vérification de l'identité du client (KYC) nécessaire" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 #, fuzzy, c-format msgid "" "Some transfers are on hold until the KYC process is completed. Visit the KYC " @@ -5939,404 +6804,424 @@ msgstr "" "vérification de l'identité du client (KYC) soit achevée. Pour plus " "d'informations, consultez la section KYC dans le panneau de gauche" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Settings" -msgstr "Configuration" +msgid "No 'admin' instance configured yet." +msgstr "Aucune boutique 'principale' n'a encore été configurée." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New bank account" -msgstr "Compte bancaire" +msgid "Create an 'admin' instance to begin using the merchant portal." +msgstr "" +"Créer une boutique 'principale' pour commencer à utiliser l'interface " +"d'administration du marchand." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" -msgstr "Comptes bancaires" +msgid "delete bank account" +msgstr "Supprimer ce compte" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" -msgstr "Valider le compte bancaire : %1$s" +msgid "The bank account has been deleted." +msgstr "Le compte bancaire a été supprimé avec succès." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Orders" -msgstr "Commandes" +msgid "Delete account" +msgstr "Supprimer ce compte" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Delete the account \"%1$s\"" +msgstr "Supprimer le compte \"%1$s\"" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "Invalid payto: \"%1$s\"" +msgstr "PayTo invalide : \"%1$s\"" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 +#, fuzzy, c-format +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" +"Si vous effacez le compte nommé %1$s (identifiant : %2$s), le stock et " +"toutes les informations liées seront perdus" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Inventory" -msgstr "Inventaire" +msgid "Deleting an account can't be undone." +msgstr "La suppression d'un compte est irréversible." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New product" -msgstr "" +msgid "Bank accounts" +msgstr "Comptes bancaires" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update product" -msgstr "Modification du produit impossible" +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 +#, c-format +msgid "Add new account" +msgstr "Ajouter un nouveau compte" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: Category" -msgstr "" +msgid "Owner's name" +msgstr "Nom de la personne titulaire" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "Delete selected accounts from the database" +msgstr "Supprimer les comptes sélectionnés de la base de données" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 +#, c-format +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" +"Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update category" -msgstr "Impossible de modifier la catégorie" +msgid "No bank account configured yet." +msgstr "Aucune boutique 'principale' n'a encore été configurée." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" -msgstr "Virements bancaires" +msgid "Without this information you cannot create new payment orders." +msgstr "" +"Sans cette information, vous ne pouvez pas générer d'ordre de paiement à " +"transférer vers un compte en banque." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Webhooks" -msgstr "Webhooks" +msgid "This account is not ready to be used." +msgstr "Ce compte n'est pas autorisé." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New webhook" -msgstr "Ajouter de nouveaux webhooks" +msgid "There are pending actions related to KYC." +msgstr "Cette catégorie est vide." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update webhook" -msgstr "Impossible de modifier le webhook" +msgid "More details." +msgstr "Modalités de paiement" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: OTP devices" -msgstr "Appareils OTP" +msgid "You must complete kyc requirements to receive payments." +msgstr "Vous devez associer un compte bancaire pour recevoir des fonds." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New OTP device" -msgstr "Aucun appareil OTP." +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 +#, c-format +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" -msgstr "Appareil OTP" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 +#, c-format +msgid "Invalid url" +msgstr "URL invalide" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New template" -msgstr "Utiliser le modèle" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 +#, c-format +msgid "URL must end with a '/'" +msgstr "L'URL doit terminer avec une '/'" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update template" -msgstr "Utiliser le modèle" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 +#, c-format +msgid "URL must not contain params" +msgstr "L'URL ne doit pas contenir de requête" + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 +#, c-format +msgid "URL must not hash param" +msgstr "L'URL ne doit pas comporter d'ancre" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Templates" -msgstr "Modèles" +msgid "change bank account" +msgstr "Compte bancaire" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Use template" -msgstr "Utiliser le modèle" +msgid "test revenue api" +msgstr "Nouvel évènement dans" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "Server replied with \"bad request\"." msgstr "" +"La syntaxe de la requête est erronée (réponse du serveur : \"400 bad " +"request\")." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" -msgstr "" +msgid "Unauthorized, check credentials." +msgstr "Non autorisé, vérifiez les données d'identification." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New token family" -msgstr "Ajouter une famille de jetons" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 +#, c-format +msgid "The endpoint does not seem to be a Taler Revenue API." +msgstr "Ce point d'accès ne semble pas appartenir à l'API Taler Revenue." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update token family" -msgstr "Impossible de mettre à jour la famille de jetons" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 +#, c-format +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." +msgstr "" +"La requête a abouti mais le serveur de la banque n'a pas répondu avec la " +"valeur appropriée pour le champ 'credit_account' et nous ne pouvons donc pas " +"confirmer qu'il s'agit du même compte bancaire." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Access tokens" -msgstr "Jeton d'accès" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 +#, c-format +msgid "Unsupported type of account" +msgstr "Ce type de compte n'est pas supporté" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New access token" -msgstr "Nouveau jeton d'accès" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 +#, c-format +msgid "Account:" +msgstr "Compte :" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 -#, fuzzy, c-format -msgctxt "title" -msgid "New instance" -msgstr "Ajouter une nouvelle boutique" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 +#, c-format +msgid "Account details" +msgstr "Détails du compte" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, fuzzy, c-format -msgctxt "title" -msgid "Instances" -msgstr "Boutiques" +msgid "Extra subject" +msgstr "Référence" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "" +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -"La demande a dépassé le temps de traitement maximum, vérifiez votre " -"connexion." -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The request was cancelled." -msgstr "La demande a été annulée." - -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 -#, fuzzy, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -"Un grand nombre de demandes ont été adressées au même serveur et cette " -"action a été ralentie." - -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 -#, fuzzy, c-format -msgid "The server's response was malformed." -msgstr "La réponse du serveur est malformée." +"Si la banque supporte l'API Taler Revenue, vous pouvez ajouter ci-dessous " +"l'URL du point d'accès pour synchroniser les informations sur les revenus." -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Could not complete the request due to a network problem." -msgstr "La demande n'a pas pu être traitée en raison d'un problème de réseau." +msgid "Endpoint URL" +msgstr "URL du point d'accès" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Unexpected request error." -msgstr "Erreur inattendue sur la requête." +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" +msgstr "" +"Endroit d'où le commerçant peut récupérer l'information des virements " +"bancaires entrants sur ce compte" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Unexpected error." -msgstr "Erreur inattendue." +msgid "Auth type" +msgstr "Type d'identification" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Add new instance" -msgstr "Ajouter une nouvelle instance" +msgid "Choose the authentication type for the account info URL" +msgstr "" +"Choisir le type d'identification pour l'URL d'information sur le compte" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" -msgstr "Editer" +msgid "Without authentication" +msgstr "Aucune identification" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, fuzzy, c-format -msgid "Change password" -msgstr "Avec mot de passe" +msgid "With username and password" +msgstr "Avec identifiant et mot de passe" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 -#, fuzzy, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." -msgstr "" -"Il n'y a pas encore d'instance, ajoutez-en une en appuyant sur le signe +" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 +#, c-format +msgid "With token" +msgstr "Avec jeton d'accès" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 -#, fuzzy, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." -msgstr "L'instance \"%1$s\" (identifiant : %2$s) a été effacée" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 +#, c-format +msgid "Do not change" +msgstr "Ne pas changer" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" -msgstr "N'afficher que les instances actives" +msgid "Username to access the account information." +msgstr "Identifiant pour accéder aux informations du compte." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" -msgstr "Actives" +msgid "Password to access the account information." +msgstr "Mot de passe pour accéder aux informations du compte." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" -msgstr "N'afficher que les instances effacées" +msgid "Access token to access the account information." +msgstr "Jeton d'accès pour accéder aux informations du compte." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" -msgstr "Effacées" +msgid "Match" +msgstr "Correspondance" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" -msgstr "Afficher toutes les instances" +msgid "Check where the information match against the server info." +msgstr "" +"Vérifier la correspondance des informations locales avec celles du serveur." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 -#, fuzzy, c-format -msgid "Delete instance" -msgstr "Suppression d'une instance %1$s ." +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 +#, c-format +msgid "Compare info from server with account form" +msgstr "Comparer les informations du serveur avec celles du formulaire" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 -#, fuzzy, c-format -msgid "Delete the instance \"%1$s\"" -msgstr "Suppression d'une instance %1$s ." +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 +#, c-format +msgid "parse revenue payto" +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, fuzzy, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" -msgstr "" -"Si vous supprimez l'instance nommée %1$s (ID : %2$s), le commerçant ne sera " -"plus en mesure de traiter les commandes ou les remboursements" +msgid "add bank account" +msgstr "Compte bancaire" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, fuzzy, c-format +msgid "The instance does not exist." +msgstr "Votre instance n'a pas été trouvée" + +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 +#, c-format msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -"Cette action supprime la clé privée de l'instance, mais préserve toutes les " -"données de transaction. Vous pouvez toujours accéder à ces données après " -"avoir supprimé l'instance." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, fuzzy, c-format -msgid "Deleting an instance %1$s" -msgstr "Suppression d'une instance %1$s ." +msgid "Server didn't like the request we made." +msgstr "Le serveur n'a pas aimé notre requête." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, fuzzy, c-format -msgid "This cannot be undone!" -msgstr "ne peut être annulé" +msgid "Check if the information matches the server info." +msgstr "Vérifier si les informations correspondent à celles du serveur." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 -#, fuzzy, c-format -msgid "Purge the instance" -msgstr "Suppression d'une instance %1$s ." +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 +#, c-format +msgid "Verify details with server" +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, fuzzy, c-format -msgid "Purge the instance \"%1$s\"" -msgstr "Purge d'une instance %1$s ." +msgid "create instance and login" +msgstr "Suppression d'une instance %1$s ." -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, fuzzy, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" -msgstr "" -"Si vous purgez l'instance nommée %1$s (ID : %2$s), vous supprimerez " -"également toutes ses données de transaction." +msgid "Instance created" +msgstr "La boutique a été créée" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, fuzzy, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Please complete the marked fields and choose authorization method" msgstr "" -"L'instance disparaîtra de votre liste et vous ne pourrez plus accéder à ses " -"données." - -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 -#, fuzzy, c-format -msgid "Purging an instance %1$s" -msgstr "Purge d'une instance %1$s ." +"Merci de remplir les champs marqués et de choisir une méthode d'autorisation" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "vérification de la compatibilité avec le serveur..." #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "Impossible de contacter le serveur" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "La version du serveur n'est pas supportée" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "Version supportée \"%1$s\", version du serveur \"%2$s\"." @@ -6347,14 +7232,129 @@ msgstr "Version supportée \"%1$s\", version du serveur \"%2$s\"." msgid "Business Name" msgstr "Nom de l'entreprise" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, fuzzy, c-format +msgid "update product group" +msgstr "Groupes de produits" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" + +#, fuzzy, c-format +#~ msgid "Exchanges" +#~ msgstr "Échange" + +#, c-format +#~ msgid "" +#~ "Merchant backend internal error. Contact administrator or check again " +#~ "later." +#~ msgstr "" +#~ "Une erreur interne à l'interface marchande est survenue. Retenter " +#~ "ultérieurement ou contacter l'administration si le cas persiste." + +#, fuzzy, c-format +#~ msgid "No exchange keys" +#~ msgstr "Aucune clé d'échange" + +#, c-format +#~ msgid "Interval to which wire deadlines should be rounded up to." +#~ msgstr "Intervalle pour l'envoi des virements." + +#, c-format +#~ msgid "" +#~ "The challenge is expired and can't be solved but you can go back and " +#~ "create a new challenge." +#~ msgstr "" +#~ "Le défi a expiré et ne peut plus être résolu mais vous pouvez revenir en " +#~ "arrière et recommencer." + +#, c-format +#~ msgid "You have to wait until %1$s to send a new code." +#~ msgstr "Vous devez attendre jusqu'à %1$s pour envoyer un nouveau code." + +#, c-format +#~ msgid "I have a code" +#~ msgstr "J'ai un code" + +#, c-format +#~ msgid "Send me a message" +#~ msgstr "Envoyez-moi un message" + +#, fuzzy, c-format +#~ msgid "Action required" +#~ msgstr "Action requise" + +#, c-format +#~ msgid "Warning" +#~ msgstr "Avertissement" + +#, c-format +#~ msgid "Change value to unknown date" +#~ msgstr "Changer la valeur pour une date inconnue" + +#, c-format +#~ msgid "Add from inventory" +#~ msgstr "Ajouter depuis l'inventaire" + +#, fuzzy, c-format +#~ msgid "is not a valid URL" +#~ msgstr "Ceci n'est pas un serveur valide." + +#, c-format +#~ msgid "Wired" +#~ msgstr "Virement effectué" + +#, c-format +#~ msgid "Pay at" +#~ msgstr "URL de paiement" + +#, c-format +#~ msgid "Just letters and numbers from 2 to 7" +#~ msgstr "Juste des lettres et des chiffres de 2 à 7" + +#, fuzzy, c-format +#~ msgid "Expected credit" +#~ msgstr "Exécuté le" + +#, fuzzy, c-format +#~ msgid "Validated" +#~ msgstr "Valide à partir de" + +#, c-format +#~ msgid "Executed on" +#~ msgstr "Exécuté le" + +#, c-format +#~ msgid "yes" +#~ msgstr "oui" + +#, c-format +#~ msgid "no" +#~ msgstr "non" + +#, fuzzy, c-format +#~ msgid "" +#~ "Only display transfers that have already been transferred to your bank " +#~ "account by the payment service provider." +#~ msgstr "" +#~ "Afficher uniquement les commandes qui ont déjà été transférées par le " +#~ "prestataire de services de paiement" + +#, c-format +#~ msgid "Only show wire transfers confirmed by the merchant" +#~ msgstr "" +#~ "Afficher uniquement les virements bancaires confirmés par le commerçant" + +#, fuzzy, c-format +#~ msgid "Time" +#~ msgstr "Calendrier" diff --git a/packages/merchant-backoffice-ui/src/i18n/he.po b/packages/merchant-backoffice-ui/src/i18n/he.po @@ -24,55 +24,55 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 #, c-format -msgid "Correct form" +msgid "Correct the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -80,103 +80,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, c-format msgid "Account ID" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -185,13 +185,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, c-format +msgid "Bank app" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -199,19 +213,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -219,31 +233,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -251,39 +265,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" +"the PayTo URI below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "" @@ -312,74 +318,80 @@ msgstr "" msgid "seconds" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, c-format -msgid "Change value to empty" +msgid "Change the value to empty" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "" @@ -439,49 +451,49 @@ msgid "Additional address lines" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, c-format msgid "Product groups" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -493,91 +505,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, c-format +msgid "KYC Status" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, c-format +msgid "Payment services" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, c-format +msgid "Select one..." +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, c-format +msgid "Hours" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, c-format +msgid "Minutes" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, c-format +msgid "Seconds" +msgstr "" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -585,163 +639,174 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, c-format msgid "Payment delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, c-format msgid "Refund delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 #, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -749,1576 +814,1794 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 #, c-format -msgid "Expired" +msgid "Can't paste this content. Please copy the 8 digits again." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 #, c-format -msgid "Required" +msgid "Resend code possible in %1$s seconds." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 #, c-format -msgid "Unauthorized" +msgid "Resend code possible in less than one minute." msgstr "" #. screenid: 5 #: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 #, c-format -msgid "The code is not correct." -msgstr "" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 -#, c-format -msgid "The challenge is not known anymore." +msgid "Resend code possible in less than 5 minutes." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 #, c-format -msgid "Too many attempts trying to solve the challenge." +msgid "Resend will be possible after %1$s" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format -msgid "Validation code sent." +msgid "Expired" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgid "Required" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "verify code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format -msgid "Verification code" +msgid "Unauthorized" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format -msgid "It will expire at %1$s" +msgid "The code is not correct." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format -msgid "Back" +msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 #, c-format -msgid "Verify" +msgid "send challenge" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format msgid "Failed to send the verification code." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The server is not aware of the specified MFA challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format msgid "It is too early to request another transmission of the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Multi-factor authentication required." +msgid "Validation code sent." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, c-format -msgid "You need to complete all of this requirements." +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "An email to the address starting with %1$s" +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "Verification code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, c-format -msgid "I have a code" +msgid "Code expired." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Send me a message" +msgid "Didn't received the code?" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "Logged in" +msgid "Resend" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "Not found" +msgid "Verify" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "Login required" +msgid "The code transmission failed." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "Instance name." +msgid "The challenge is already solved." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "Instance password." +msgid "Multi-factor authentication required." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "Forgot password" +msgid "You must complete all of these requirements." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "Create new account" +msgid "You need to complete at least one of this requirements." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Invalid" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Doesn't have the pattern of an email" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "Should start with +" +msgid "Complete" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "A phone number consists of numbers only" +msgid "This is not a valid Bitcoin address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Invalid value" +msgid "This is not a valid Ethereum address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Max 7 lines" +msgid "This is not a valid host." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Doesn't match" +msgid "IBANs usually have more than 4 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Instance created" +msgid "IBANs usually have fewer than 34 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Unauthorized." +msgid "The IBAN's country code could not be retrieved." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Conflict." +msgid "The IBAN is invalid because the checksum is wrong." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "Not found." +msgid "This account is not allowed." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "New password" +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Next password to be used" +msgid "Wire method" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Repeat password" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Confirm the same password" +msgid "Select a wire method..." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "Routing" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "Confirm operation" +msgid "Routing number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Check the password." +msgid "Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, c-format -msgid "Instance not found." +msgid "Account number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "Description" +msgid "Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." +msgid "Business Identifier Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "Duration" +msgid "International Bank Account Number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "Time the access token will be valid." +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 -#, c-format -msgid "Refreshable access tokens can pose a security risk!" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#, c-format +msgid "Unified Payment Interface" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." +msgid "Bitcoin protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Scope" +msgid "Ethereum protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "Interledger protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Allows all operations without limit." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Allows all operations to read information." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "cyclos account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." +msgid "Name of the account holder" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." +msgid "Legal name of the person holding the account." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." +"Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "All (refreshable)" +msgid "Unexpected request error, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Spa" +msgid "Unexpected error." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Spa (refreshable)" +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "Choose one" +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 #, c-format -msgid "Read only" +msgid "Wrong password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 #, c-format -msgid "All" +msgid "The account doesn't exist." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Order simple" +msgid "Login required" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "Order Point-of-Sale" +msgid "Instance name." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "Order management" +msgid "Instance password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Order full" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "Read only (refreshable)" +msgid "Create new account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Order simple (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgctxt "title" +msgid "%1$s: Settings" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: New bank account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: Bank accounts" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Current password" +msgctxt "title" +msgid "%1$s: Update bank Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Please complete the marked fields" +msgctxt "title" +msgid "%1$s: Orders" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Access token created" +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: Update product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "No 'admin' instance configured yet." +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: Update category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Create access token" +msgctxt "title" +msgid "%1$s: Wire transfers" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Load more devices before the first one" +msgctxt "title" +msgid "%1$s: Webhooks" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Load first page" +msgctxt "title" +msgid "%1$s: New webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Created at" +msgctxt "title" +msgid "%1$s: Update webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Expires at" +msgctxt "title" +msgid "%1$s: OTP devices" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Never" +msgctxt "title" +msgid "%1$s: New OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Remove this access token" +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "Delete" +msgctxt "title" +msgid "%1$s: New template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Load more devices after the last one" +msgctxt "title" +msgid "%1$s: Update template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "Load next page" +msgctxt "title" +msgid "%1$s: Templates" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "%1$s: Use template" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Forbidden." +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Delete access token" +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "Deleting an access token cannot be undone." +msgctxt "title" +msgid "%1$s: New token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, c-format -msgid "This is not a valid Bitcoin address." +msgctxt "title" +msgid "%1$s: Update token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, c-format -msgid "This is not a valid Ethereum address." +msgctxt "title" +msgid "%1$s: Access tokens" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, c-format -msgid "This is not a valid host." +msgctxt "title" +msgid "%1$s: New access token" msgstr "" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 #, c-format -msgid "IBANs usually have more than 4 digits." +msgctxt "title" +msgid "%1$s: New POS access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "IBANs usually have fewer than 34 digits." +msgctxt "title" +msgid "New instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "The IBAN's country code could not be retrieved." +msgctxt "title" +msgid "Instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." +msgid "Testing environment" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format -msgid "This account is not allowed." +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 +#, c-format +msgid "Delete" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, c-format +msgid "Add new instance" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 +#, c-format +msgid "ID" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 +#, c-format +msgid "Name" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 +#, c-format +msgid "Edit" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 +#, c-format +msgid "Change password" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 +#, c-format +msgid "Purge" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 +#, c-format +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, c-format +msgid "delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 +#, c-format +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 +#, c-format +msgid "Unauthorized." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 +#, c-format +msgid "Not found." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 +#, c-format +msgid "Conflict." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 +#, c-format +msgid "Only show active instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#, c-format +msgid "Active" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, c-format +msgid "Only show deleted instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, c-format +msgid "Deleted" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 +#, c-format +msgid "Show all instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 +#, c-format +msgid "All" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 +#, c-format +msgid "Delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 +#, c-format +msgid "Delete the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Wire method" +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 +#, c-format +msgid "Deleting an instance %1$s" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 +#, c-format +msgid "This cannot be undone!" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 +#, c-format +msgid "Purge the instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 +#, c-format +msgid "Purge the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "Select a wire method..." +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, c-format -msgid "Routing" +msgid "Purging an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, c-format -msgid "Routing number" +msgid "create access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "Account" +msgid "Check the password." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "Account number" +msgid "Instance not found." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Code" +msgid "Description" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Business Identifier Code" +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "International Bank Account Number" +msgid "Duration" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "Time the access token will be valid." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "Unified Payment Interface" +msgid "Refreshable access tokens can pose a security risk!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format -msgid "Bitcoin protocol" +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Ethereum protocol" +msgid "Scope" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "Interledger protocol" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "Allows all operations without limit." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "Cyclos host" +msgid "Allows all operations to read information." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "cyclos account" +msgid "Allows the creation of orders and checking of payment status." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "Name of the account holder" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "John Doe" +msgid "Allows the creation of orders, checking of payment status and refunds." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format -msgid "Legal name of the person holding the account." +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Invalid url" +msgid "" +"Allows all operations to read information with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "URL must end with a '/'" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format -msgid "URL must not contain params" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "URL must not hash param" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format -msgid "Conflict" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 #, c-format -msgid "Server replied with \"bad request\"." +msgid "All (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "Unauthorized, check credentials." +msgid "Spa" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "Spa (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +msgid "Choose one" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "Unsupported type of account" +msgid "Read only" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "Account:" +msgid "Order simple" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +msgid "Order Point-of-Sale" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "Endpoint URL" +msgid "Order management" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +msgid "Order full" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Auth type" +msgid "Read only (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "Order simple (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Without authentication" +msgid "Order Point-of-Sale (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "With username and password" +msgid "Order management (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "With token" +msgid "Order full (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Do not change" +msgid "Current password" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Username to access the account information." +msgid "Please complete the marked fields" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Password to access the account information." +msgid "Confirm operation" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Access token to access the account information." +msgid "Access token created" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Match" +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Check where the information match against the server info." +msgid "Token" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Compare info from server with account form" +msgid "This token will never expire" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Test" +msgid "This token will be available until %1$s" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, c-format -msgid "Server didn't like the request we made." +msgid "Create access token" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Account details" +msgid "Load more devices before the first one" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "Check if the information matches the server info." +msgid "Load first page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "The bank account has been deleted." +msgid "Created at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 #, c-format -msgid "Delete account" +msgid "Expires at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Delete the account \"%1$s\"" +msgid "Never" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Remove this access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "Load more devices after the last one" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Deleting an account can't be undone." +msgid "Load next page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Bank accounts" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, c-format -msgid "Add new account" +msgid "delete access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Owner's name" +msgid "Forbidden." msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "Delete selected accounts from the database" +msgid "New point-of-sale access" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "Delete access token" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "You must provide a bank account to receive payments." +msgid "Deleting an access token cannot be undone." msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 #, c-format -msgid "Invalid. Please use only letters and numbers." +msgid "add category" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" +msgid "Not found" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 #, c-format -msgid "Category deleted" +msgid "delete category" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format -msgid "Add new devices" +msgid "Category deleted" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format -msgid "ID" +msgid "Add new devices" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, c-format +msgid "update category" +msgstr "" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 #, c-format -msgid "Account's KYC status" +msgid "create product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 #, c-format -msgid "Exchange" +msgid "delete product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 #, c-format -msgid "Status" +msgid "Product group deleted" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 #, c-format -msgid "Ok" +msgid "Add new group" +msgstr "" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, c-format +msgid "Load more groups before the first one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Action required" +msgid "Delete selected group from the database" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 #, c-format -msgid "Warning" +msgid "Load more groups after the last one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 #, c-format -msgid "Error" +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 +#, c-format +msgid "Account's KYC status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 +#, c-format +msgid "Exchange" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 +#, c-format +msgid "Status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 +#, c-format +msgid "Ok" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "The account for wire transfers is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" +msgid "No contact with the payment service yet." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 #, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +msgid "The server is still synchronizing with the payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment " "service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2326,9 +2609,15 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 #, c-format -msgid "Change value to unknown date" +msgid "Change value to empty" +msgstr "" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 +#, c-format +msgid "Change value to never" msgstr "" #. screenid: 12 @@ -2338,7 +2627,7 @@ msgid "Enter description or id" msgstr "" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "" @@ -2352,11 +2641,11 @@ msgstr "" #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 #, c-format -msgid "Quantity must be greater than 0!" +msgid "Quantity must be greater than zero." msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2364,49 +2653,55 @@ msgid "" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 #, c-format -msgid "Add from inventory" +msgid "Add it to the order" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 +#, c-format +msgid "Invalid" +msgstr "" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2414,7 +2709,7 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2422,297 +2717,309 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, c-format +msgid "Invalid URL" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 #, c-format -msgid "is not a valid URL" +msgid "create order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, c-format +msgid "Conflict" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 #, c-format -msgid "%1$s products with a total price of %2$s." +msgid "%1$s products with a total price of %2$s ." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2721,19 +3028,19 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2741,27 +3048,27 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2769,13 +3076,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2783,13 +3090,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2797,13 +3104,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2811,115 +3118,121 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 #, c-format -msgid "Select date to show nearby orders" +msgid "get product details" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -2927,628 +3240,747 @@ msgid "" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 #, c-format -msgid "Jump to date (%1$s)" +msgid "authorize refund" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, c-format +msgid "This order is not refundable" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " "service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, c-format -msgid "Transfer deadline for the exchange" +msgid "Transfer deadline for the payment service" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format -msgid "Time indicating when the order should be delivered" +msgid "Auto-refund delay" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format -msgid "Where the order will be delivered" +msgid "" +"How long the wallet should try to get an automatic refund for the purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 #, c-format -msgid "Auto-refund delay" +msgid "Time indicating when the order should be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 #, c-format -msgid "" -"How long the wallet should try to get an automatic refund for the purchase" +msgid "Where the order will be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 +#, c-format +msgid "The contract terms have a v1 order without choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, c-format +msgid "The contract terms have a v1 order with a bad choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "refund missed: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format msgid "refund created: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format msgid "refund taken: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund taken: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format -msgid "The contract terms has a v1 order with a bad choices_index." +msgid "wire deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 #, c-format -msgid "wired %1$s" +msgid "Related wire transfers" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 #, c-format -msgid "wire deadline" +msgid "Unconfirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" +msgid "Confirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, c-format +msgid "No wire transfer reported" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, c-format +msgid "Check wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 #, c-format -msgid "Pay at" +msgid "Payment link" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." msgstr "" +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, c-format +msgid "confirmed" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, c-format +msgid "unconfirmed" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" +msgid "Use only letters and digits (2–7)." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, c-format +msgid "add otp device" +msgstr "" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3556,19 +3988,19 @@ msgid "" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "" @@ -3580,7 +4012,7 @@ msgid "Create another" msgstr "" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3588,13 +4020,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, c-format +msgid "delete otp device" +msgstr "" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "" @@ -3606,143 +4044,299 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 #, c-format -msgid "Template id is unknown" +msgid "update otp device" msgstr "" #. screenid: 52 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format +msgid "Template id is unknown" +msgstr "" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 +#, c-format msgid "" "The provided information is inconsistent with the current state of the " "template" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, c-format +msgid "change password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, c-format +msgid "change instance password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, c-format msgid "Account not found." msgstr "" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, c-format +msgid "create money pot" +msgstr "" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, c-format +msgid "delete money pot" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, c-format +msgid "Add new pots" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, c-format +msgid "Total" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, c-format +msgid "Totals" +msgstr "" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3750,97 +4344,97 @@ msgid "" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 #, c-format -msgid "Incoming" +msgid "Current" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format -msgid "Lost" +msgid "Incoming" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format -msgid "Current" +msgid "Lost" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -3848,104 +4442,114 @@ msgid "" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" -#. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#. screenid: 23 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 +#, c-format +msgid "Search by group name or id" +msgstr "" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 #, c-format -msgid "Search by group name or id" +msgid "add product" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -3958,145 +4562,169 @@ msgid "Add product to inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, c-format +msgid "update product" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, c-format +msgid "infinite" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, c-format +msgid "delete product" +msgstr "" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4104,41 +4732,166 @@ msgid "" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "" #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, c-format +msgid "It should start with /" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, c-format +msgid "Type of the data source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, c-format +msgid "delete scheduled report" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, c-format +msgid "Add new reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, c-format +msgid "Delete selected scheduled report from the database" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4163,296 +4916,308 @@ msgid "Orders table" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, c-format +msgid "add template" +msgstr "" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4460,133 +5225,145 @@ msgid "" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, c-format +msgid "delete template" +msgstr "" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, c-format +msgid "update template" +msgstr "" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4594,19 +5371,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4614,103 +5391,153 @@ msgid "" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, c-format +msgid "create order from template" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, c-format +msgid "Granularity can't be greater than duration." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, c-format +msgid "create token family" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4718,83 +5545,116 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." +msgid "1 minute" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, c-format +msgid "1 hour" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, c-format +msgid "1 day" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, c-format +msgid "30 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, c-format +msgid "90 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, c-format +msgid "365 days" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, c-format +msgid "delete token family" +msgstr "" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4802,225 +5662,292 @@ msgid "" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 #, c-format -msgid "Token Family: %1$s" +msgid "update token family" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format -msgid "User-readable token family name" +msgid "Token Family: %1$s" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, c-format +msgid "inform wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 +#, c-format +msgid "Wire transfer already confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, c-format +msgid "The wire transfer has been confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, c-format +msgid "Transaction details" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, c-format +msgid "Transfer ID" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 +#, c-format +msgid "Orders in this wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 #, c-format -msgid "Token family description for customers" +msgid "Fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, c-format -msgid "Incoming wire transfers" +msgid "Subtotals" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Load more wire transfers preceding the first one" +msgid "Deposit fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, c-format -msgid "Expected credit" +msgid "Wire fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Confirmed" +msgid "not ready" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 #, c-format -msgid "Validated" +msgid "loading..." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, c-format -msgid "Executed on" +msgid "New wire transfers" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "yes" +msgid "Load more wire transfers preceding the first one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "no" +msgid "To be determined." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "never" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format -msgid "unknown" +msgid "Load more transfers after the last one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 #, c-format -msgid "Load more transfers after the last one" +msgid "Confirmed wire transfers into bank account" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 +#, c-format +msgid "Verified" +msgstr "" + +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format -msgid "Only show wire transfers confirmed by the merchant" +msgid "It's not the same." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format -msgid "Verified" +msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 #, c-format -msgid "Wire transfer already confirmed." +msgid "delete current instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format -msgid "I have received the wire transfer" +msgid "Instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format -msgid "Confirm the wire transfer" +msgid "Write the instance name to confirm the deletion" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"All the data will be fully deleted, otherwise only the access will be " +"removed." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format -msgid "Time" +msgid "DELETE" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 #, c-format -msgid "Transfer ID" +msgid "Doesn't have the pattern of an email" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 #, c-format -msgid "It's not the same." +msgid "Should start with +" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 #, c-format -msgid "You are deleting the instance with ID \"%1$s\"" +msgid "A phone number consists of numbers only" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 #, c-format -msgid "Instance" +msgid "Invalid phone number" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 #, c-format -msgid "Write the instance name to confirm the deletion" +msgid "Invalid value" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 #, c-format -msgid "Purge" +msgid "Max 7 lines" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 #, c-format -msgid "" -"All the data will be fully deleted, otherwise only the access will be " -"removed." +msgid "update instance settings" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format -msgid "DELETE" +msgid "Instance id" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 #, c-format -msgid "Instance id" +msgid "URL" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, c-format +msgid "Cancel operation" msgstr "" #. screenid: 74 @@ -5030,133 +5957,133 @@ msgid "Delete this instance" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, c-format +msgid "add webhook" +msgstr "" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5164,963 +6091,903 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, c-format +msgid "delete webhook" +msgstr "" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, c-format +msgid "update webhook" +msgstr "" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, c-format +msgid "self provision instance" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "Developer mode" +msgid "Developer tools" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, c-format -msgid "Money pot deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, c-format -msgid "Add new pots" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, c-format -msgid "Load more pots before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, c-format -msgid "Total" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, c-format -msgid "Delete selected pots from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, c-format -msgid "Load more pots after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 -#, c-format -msgid "Value can only by number" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, c-format -msgid "The value is too precise" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "Descripton" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, c-format -msgid "Totals" -msgstr "" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, c-format -msgid "There is already a money pot with the same id." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, c-format -msgid "Product group deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 -#, c-format -msgid "Add new group" +msgid "Enable UI tools for troubleshooting." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Load more groups before the first one" +msgid "Testing features" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Delete selected group from the database" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Load more groups after the last one" +msgid "Developer mode" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "There are no product groups yet, add more pressing the + sign" +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, c-format -msgid "Scheduled report deleted" +msgid "create pos access token" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, c-format -msgid "Scheduled reports" +msgid "Device name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Add new reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, c-format -msgid "Frequency" +msgid "Payment services status" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, c-format -msgid "Delete selected scheduled report from the database" +msgid "Base URL" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, c-format -msgid "There are no reports yet, add more pressing the + sign" +msgid "Next update" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, c-format -msgid "No report generator configured in the server" +msgid "This payment service is ready to be used." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, c-format -msgid "Type of the data source" +msgid "Next update will be at %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, c-format -msgid "Without this the merchant backend will refuse to create new orders." +msgid "Without this the server will refuse to create new orders." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 +#, c-format +msgid "" +"Some transfers are on hold until the KYC process is completed. Visit the KYC " +"section in the left-hand menu for more information." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#, c-format +msgid "No 'admin' instance configured yet." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 #, c-format -msgid "" -"Some transfers are on hold until the KYC process is completed. Visit the KYC " -"section in the left-hand menu for more information." +msgid "Create an 'admin' instance to begin using the merchant portal." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, c-format -msgctxt "title" -msgid "%1$s: Settings" +msgid "delete bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, c-format -msgctxt "title" -msgid "%1$s: New bank account" +msgid "The bank account has been deleted." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" +msgid "Delete account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" +msgid "Delete the account \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: Orders" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "Deleting an account can't be undone." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "Bank accounts" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 #, c-format -msgctxt "title" -msgid "%1$s: Update product" +msgid "Add new account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: Category" +msgid "Owner's name" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "Delete selected accounts from the database" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: Update category" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" +msgid "No bank account configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" +msgid "Without this information you cannot create new payment orders." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" +msgid "This account is not ready to be used." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, c-format -msgctxt "title" -msgid "%1$s: Update webhook" +msgid "There are pending actions related to KYC." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" +msgid "More details." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" +msgid "You must complete kyc requirements to receive payments." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgctxt "title" -msgid "%1$s: New template" +msgid "Invalid url" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: Update template" +msgid "URL must end with a '/'" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: Templates" +msgid "URL must not contain params" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Use template" +msgid "URL must not hash param" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "change bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "Server replied with \"bad request\"." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: Access tokens" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "%1$s: New access token" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "New instance" +msgid "Unsupported type of account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgctxt "title" -msgid "Instances" +msgid "Account:" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "Account details" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, c-format -msgid "The request was cancelled." +msgid "Extra subject" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The server's response was malformed." +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Unexpected request error." +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Unexpected error." +msgid "Auth type" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Add new instance" +msgid "Choose the authentication type for the account info URL" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" +msgid "Without authentication" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Change password" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." +msgid "With token" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgid "Do not change" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" +msgid "Username to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" +msgid "Password to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" +msgid "Access token to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" +msgid "Match" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" +msgid "Check where the information match against the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Delete instance" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "Delete the instance \"%1$s\"" +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" +msgid "add bank account" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." +msgid "The instance does not exist." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgid "Deleting an instance %1$s" +msgid "" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "This cannot be undone!" +msgid "Server didn't like the request we made." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Purge the instance" +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purge the instance \"%1$s\"" +msgid "Verify details with server" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" +msgid "create instance and login" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Instance created" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Purging an instance %1$s" +msgid "Please complete the marked fields and choose authorization method" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6131,14 +6998,20 @@ msgstr "" msgid "Business Name" msgstr "" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, c-format +msgid "update product group" +msgstr "" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" diff --git a/packages/merchant-backoffice-ui/src/i18n/it.po b/packages/merchant-backoffice-ui/src/i18n/it.po @@ -29,55 +29,55 @@ msgstr "" "X-Generator: Weblate 5.5.5\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "Confermare" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 #, c-format -msgid "Correct form" +msgid "Correct the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -85,103 +85,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, fuzzy, c-format msgid "Account ID" msgstr "Importo" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -190,13 +190,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, c-format +msgid "Bank app" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -204,19 +218,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -224,31 +238,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "Soggetto" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -256,39 +270,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" +"the PayTo URI below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "" @@ -317,74 +323,80 @@ msgstr "" msgid "seconds" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, c-format -msgid "Change value to empty" +msgid "Change the value to empty" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "" @@ -444,49 +456,49 @@ msgid "Additional address lines" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, c-format msgid "Product groups" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -498,91 +510,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, c-format +msgid "KYC Status" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "Impostazioni" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, c-format +msgid "Payment services" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, c-format +msgid "Select one..." +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, c-format +msgid "Hours" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, c-format +msgid "Minutes" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, c-format +msgid "Seconds" +msgstr "" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -590,163 +644,174 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, c-format msgid "Payment delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, fuzzy, c-format msgid "Refund delay" msgstr "Rimborsato" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 #, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -754,1576 +819,1794 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 #, c-format -msgid "Expired" +msgid "Can't paste this content. Please copy the 8 digits again." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 #, c-format -msgid "Required" -msgstr "Obbligatorio" +msgid "Resend code possible in %1$s seconds." +msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 #, c-format -msgid "Unauthorized" +msgid "Resend code possible in less than one minute." msgstr "" #. screenid: 5 #: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 #, c-format -msgid "The code is not correct." +msgid "Resend code possible in less than 5 minutes." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 #, c-format -msgid "The challenge is not known anymore." +msgid "Resend will be possible after %1$s" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format -msgid "Too many attempts trying to solve the challenge." +msgid "Expired" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format -msgid "Validation code sent." -msgstr "" +msgid "Required" +msgstr "Obbligatorio" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgid "verify code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "Unauthorized" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format -msgid "Verification code" +msgid "The code is not correct." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "It will expire at %1$s" +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 -#, c-format -msgid "Back" -msgstr "Indietro" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 #, c-format -msgid "Verify" +msgid "send challenge" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format msgid "Failed to send the verification code." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The server is not aware of the specified MFA challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format msgid "It is too early to request another transmission of the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Multi-factor authentication required." +msgid "Validation code sent." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, c-format -msgid "You need to complete all of this requirements." +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "An email to the address starting with %1$s" +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "Verification code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, c-format -msgid "I have a code" +msgid "Code expired." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Send me a message" +msgid "Didn't received the code?" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "Logged in" +msgid "Resend" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "Not found" +msgid "Verify" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "Login required" +msgid "The code transmission failed." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "Instance name." +msgid "The challenge is already solved." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "Instance password." +msgid "Multi-factor authentication required." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "Forgot password" +msgid "You must complete all of these requirements." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "Create new account" +msgid "You need to complete at least one of this requirements." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Invalid" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Doesn't have the pattern of an email" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "Should start with +" +msgid "Complete" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "A phone number consists of numbers only" +msgid "This is not a valid Bitcoin address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Invalid value" +msgid "This is not a valid Ethereum address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Max 7 lines" +msgid "This is not a valid host." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Doesn't match" +msgid "IBANs usually have more than 4 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Instance created" +msgid "IBANs usually have fewer than 34 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Unauthorized." +msgid "The IBAN's country code could not be retrieved." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 -#, fuzzy, c-format -msgid "Conflict." -msgstr "Confermare" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Not found." +msgid "The IBAN is invalid because the checksum is wrong." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "New password" +msgid "This account is not allowed." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "Next password to be used" +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Repeat password" +msgid "Wire method" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Confirm the same password" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "Select a wire method..." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Confirm operation" +msgid "Routing" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "Check the password." +msgid "Routing number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Instance not found." +msgid "Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 -#, c-format -msgid "Description" -msgstr "" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#, fuzzy, c-format +msgid "Account number" +msgstr "Importo" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." +msgid "Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 -#, c-format -msgid "Duration" -msgstr "" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "Time the access token will be valid." +msgid "Business Identifier Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "Refreshable access tokens can pose a security risk!" +msgid "International Bank Account Number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, c-format -msgid "Scope" +msgid "Unified Payment Interface" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "Bitcoin protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Allows all operations without limit." +msgid "Ethereum protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "Allows all operations to read information." +msgid "Interledger protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "cyclos account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." +msgid "Name of the account holder" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." +msgid "Legal name of the person holding the account." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." +"Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "All (refreshable)" +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "Spa" +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "Spa (refreshable)" +msgid "Unexpected request error, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Choose one" +msgid "Unexpected error." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Read only" +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "All" +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 #, c-format -msgid "Order simple" +msgid "Wrong password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 #, c-format -msgid "Order Point-of-Sale" +msgid "The account doesn't exist." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Order management" +msgid "Login required" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "Order full" +msgid "Instance name." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "Read only (refreshable)" +msgid "Instance password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Order simple (refreshable)" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgid "Create new account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Order management (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Settings" +msgstr "Impostazioni" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: New bank account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, c-format -msgid "Current password" +msgctxt "title" +msgid "%1$s: Bank accounts" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Please complete the marked fields" +msgctxt "title" +msgid "%1$s: Update bank Account" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Access token created" +msgctxt "title" +msgid "%1$s: Orders" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: Update product" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "No 'admin' instance configured yet." +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "Create access token" +msgctxt "title" +msgid "%1$s: Update category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Load more devices before the first one" +msgctxt "title" +msgid "%1$s: Wire transfers" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Load first page" +msgctxt "title" +msgid "%1$s: Webhooks" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Created at" +msgctxt "title" +msgid "%1$s: New webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Expires at" +msgctxt "title" +msgid "%1$s: Update webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Never" +msgctxt "title" +msgid "%1$s: OTP devices" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Remove this access token" +msgctxt "title" +msgid "%1$s: New OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Delete" +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "Load more devices after the last one" +msgctxt "title" +msgid "%1$s: New template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Load next page" +msgctxt "title" +msgid "%1$s: Update template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "%1$s: Templates" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "Forbidden." +msgctxt "title" +msgid "%1$s: Use template" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Delete access token" +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Deleting an access token cannot be undone." +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "This is not a valid Bitcoin address." +msgctxt "title" +msgid "%1$s: New token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, c-format -msgid "This is not a valid Ethereum address." +msgctxt "title" +msgid "%1$s: Update token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, c-format -msgid "This is not a valid host." +msgctxt "title" +msgid "%1$s: Access tokens" msgstr "" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, c-format -msgid "IBANs usually have more than 4 digits." +msgctxt "title" +msgid "%1$s: New access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 #, c-format -msgid "IBANs usually have fewer than 34 digits." +msgctxt "title" +msgid "%1$s: New POS access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "The IBAN's country code could not be retrieved." +msgctxt "title" +msgid "New instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." +msgctxt "title" +msgid "Instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "This account is not allowed." +msgid "Testing environment" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 #, c-format -msgid "Wire method" +msgid "Delete" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 #, c-format -msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +msgid "Add new instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 #, c-format -msgid "Select a wire method..." +msgid "ID" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 #, c-format -msgid "Routing" +msgid "Name" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 #, c-format -msgid "Routing number" +msgid "Edit" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 #, c-format -msgid "Account" +msgid "Change password" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 +#, c-format +msgid "Purge" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 +#, c-format +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, c-format +msgid "delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 +#, c-format +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 +#, c-format +msgid "Unauthorized." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 +#, c-format +msgid "Not found." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 #, fuzzy, c-format -msgid "Account number" -msgstr "Importo" +msgid "Conflict." +msgstr "Confermare" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 #, c-format -msgid "Code" +msgid "Only show active instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 #, c-format -msgid "Business Identifier Code" +msgid "Active" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 #, c-format -msgid "International Bank Account Number" +msgid "Only show deleted instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "Deleted" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 #, c-format -msgid "Unified Payment Interface" +msgid "Show all instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 #, c-format -msgid "Bitcoin protocol" +msgid "All" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 #, c-format -msgid "Ethereum protocol" +msgid "Delete instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 #, c-format -msgid "Interledger protocol" +msgid "Delete the instance \"%1$s\"" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Cyclos host" +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 #, c-format -msgid "cyclos account" +msgid "Deleting an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 #, c-format -msgid "Name of the account holder" +msgid "This cannot be undone!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 #, c-format -msgid "John Doe" +msgid "Purge the instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 #, c-format -msgid "Legal name of the person holding the account." +msgid "Purge the instance \"%1$s\"" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format -msgid "Invalid url" +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "URL must end with a '/'" +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, c-format -msgid "URL must not contain params" +msgid "Purging an instance %1$s" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, c-format -msgid "URL must not hash param" +msgid "create access token" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 -#, fuzzy, c-format -msgid "Conflict" -msgstr "Confermare" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 +#, c-format +msgid "Check the password." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "Server replied with \"bad request\"." +msgid "Instance not found." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Unauthorized, check credentials." +msgid "Description" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 +#, c-format +msgid "Duration" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 +#, c-format +msgid "Time the access token will be valid." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 +#, c-format +msgid "Refreshable access tokens can pose a security risk!" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Unsupported type of account" +msgid "Scope" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "Account:" -msgstr "Conto:" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#, c-format +msgid "Allows all operations without limit." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#, c-format +msgid "Allows all operations to read information." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#, c-format +msgid "Allows the creation of orders and checking of payment status." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +"Allows the creation of orders, checking of payment status and inventory " +"locking." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "Endpoint URL" +msgid "Allows the creation of orders, checking of payment status and refunds." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#, c-format +msgid "" +"Allows all operations to read information with extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#, c-format +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 +#, c-format +msgid "All (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#, c-format +msgid "Spa" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 +#, c-format +msgid "Spa (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 +#, c-format +msgid "Choose one" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#, c-format +msgid "Read only" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#, c-format +msgid "Order simple" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#, c-format +msgid "Order Point-of-Sale" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#, c-format +msgid "Order management" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +msgid "Order full" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Auth type" +msgid "Read only (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "Order simple (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Without authentication" +msgid "Order Point-of-Sale (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "With username and password" +msgid "Order management (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "With token" +msgid "Order full (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Do not change" +msgid "Current password" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Username to access the account information." +msgid "Please complete the marked fields" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Password to access the account information." +msgid "Confirm operation" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Access token to access the account information." +msgid "Access token created" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Match" +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Check where the information match against the server info." +msgid "Token" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Compare info from server with account form" +msgid "This token will never expire" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Test" +msgid "This token will be available until %1$s" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, c-format -msgid "Server didn't like the request we made." +msgid "Create access token" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Account details" +msgid "Load more devices before the first one" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "Check if the information matches the server info." +msgid "Load first page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "The bank account has been deleted." +msgid "Created at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 #, c-format -msgid "Delete account" +msgid "Expires at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Delete the account \"%1$s\"" +msgid "Never" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Remove this access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "Load more devices after the last one" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Deleting an account can't be undone." +msgid "Load next page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Bank accounts" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, c-format -msgid "Add new account" +msgid "delete access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Owner's name" +msgid "Forbidden." msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "Delete selected accounts from the database" +msgid "New point-of-sale access" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "Delete access token" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "You must provide a bank account to receive payments." +msgid "Deleting an access token cannot be undone." msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 #, c-format -msgid "Invalid. Please use only letters and numbers." +msgid "add category" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" +msgid "Not found" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 #, c-format -msgid "Category deleted" +msgid "delete category" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format -msgid "Add new devices" +msgid "Category deleted" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format -msgid "ID" +msgid "Add new devices" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, c-format +msgid "update category" +msgstr "" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 #, c-format -msgid "Account's KYC status" +msgid "create product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 #, c-format -msgid "Exchange" +msgid "delete product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 #, c-format -msgid "Status" +msgid "Product group deleted" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 #, c-format -msgid "Ok" +msgid "Add new group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 -#, fuzzy, c-format -msgid "Action required" -msgstr "Obbligatorio" +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, c-format +msgid "Load more groups before the first one" +msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Warning" +msgid "Delete selected group from the database" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 #, c-format -msgid "Error" +msgid "Load more groups after the last one" +msgstr "" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#, c-format +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 +#, c-format +msgid "Account's KYC status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 +#, c-format +msgid "Exchange" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 +#, c-format +msgid "Status" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "Ok" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The account for wire transfers is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "No exchange keys" +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +msgid "No contact with the payment service yet." +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 +#, c-format +msgid "The server is still synchronizing with the payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment " "service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2331,9 +2614,15 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" +msgid "Change value to never" msgstr "" #. screenid: 12 @@ -2343,7 +2632,7 @@ msgid "Enter description or id" msgstr "" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "" @@ -2357,11 +2646,11 @@ msgstr "" #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 #, c-format -msgid "Quantity must be greater than 0!" +msgid "Quantity must be greater than zero." msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2369,49 +2658,55 @@ msgid "" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, c-format +msgid "Add it to the order" +msgstr "" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" +msgid "Invalid" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "Importo" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2419,7 +2714,7 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2427,297 +2722,309 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, c-format +msgid "Invalid URL" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 #, c-format -msgid "is not a valid URL" +msgid "create order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, fuzzy, c-format +msgid "Conflict" +msgstr "Confermare" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 #, c-format -msgid "%1$s products with a total price of %2$s." +msgid "%1$s products with a total price of %2$s ." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2726,19 +3033,19 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, fuzzy, c-format msgid "Refund time" msgstr "Rimborsato" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2746,27 +3053,27 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2774,13 +3081,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2788,13 +3095,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2802,13 +3109,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2816,744 +3123,869 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 #, c-format -msgid "Select date to show nearby orders" +msgid "get product details" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "Rimborsato" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " "service provider" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#. screenid: 47 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 +#, c-format +msgid "Completed" +msgstr "" + +#. screenid: 47 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 +#, c-format +msgid "Remove all filters" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 +#, c-format +msgid "authorize refund" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 +#, c-format +msgid "Gone." +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format -msgid "Completed" +msgid "UnavailableForLegalReasons." msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format -msgid "Remove all filters" +msgid "Jump to order with the given product ID" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format -msgid "Clear date filter" +msgid "Order id" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 #, c-format -msgid "Jump to date (%1$s)" +msgid "Clear date filter" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 #, c-format -msgid "Gone." +msgid "Select date to show nearby orders" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 #, c-format -msgid "UnavailableForLegalReasons." +msgid "Jump to date (%1$s)" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format -msgid "Jump to order with the given product ID" +msgid "Instance unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format -msgid "Order id" +msgid "Order unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 #, c-format -msgid "Instance unknown" +msgid "This order is not refundable" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 #, c-format -msgid "Order unknown" +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "Data" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, fuzzy, c-format msgid "refund" msgstr "Rimborsato" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " "service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, c-format -msgid "Transfer deadline for the exchange" +msgid "Transfer deadline for the payment service" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format -msgid "Time indicating when the order should be delivered" +msgid "Auto-refund delay" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format -msgid "Where the order will be delivered" +msgid "" +"How long the wallet should try to get an automatic refund for the purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 #, c-format -msgid "Auto-refund delay" +msgid "Time indicating when the order should be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 #, c-format -msgid "" -"How long the wallet should try to get an automatic refund for the purchase" +msgid "Where the order will be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, fuzzy, c-format msgid "refund deadline" msgstr "Rimborsato" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 #, c-format -msgid "refund missed: %1$s" +msgid "The contract terms have a v1 order without choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "The contract terms have a v1 order with a bad choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format -msgid "refund created: %1$s" +msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 #, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund missed: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format -msgid "refund taken: %1$s" +msgid "refund created: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "refund taken: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, c-format -msgid "The contract terms has a v1 order with a bad choices_index." +msgid "refund taken: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format msgid "wire deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 +#, c-format +msgid "Related wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 +#, fuzzy, c-format +msgid "Unconfirmed" +msgstr "Confermare" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" +msgid "Confirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, fuzzy, c-format msgid "Refund order" msgstr "Rimborsato" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, c-format +msgid "No wire transfer reported" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, c-format +msgid "Check wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 #, c-format -msgid "Pay at" +msgid "Payment link" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." msgstr "" +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "Indietro" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Confermare" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Confermare" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" +msgid "Use only letters and digits (2–7)." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, c-format +msgid "add otp device" +msgstr "" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3561,19 +3993,19 @@ msgid "" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "" @@ -3585,7 +4017,7 @@ msgid "Create another" msgstr "" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3593,13 +4025,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, c-format +msgid "delete otp device" +msgstr "" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "" @@ -3611,143 +4049,299 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 #, c-format -msgid "Template id is unknown" +msgid "update otp device" msgstr "" #. screenid: 52 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format +msgid "Template id is unknown" +msgstr "" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 +#, c-format msgid "" "The provided information is inconsistent with the current state of the " "template" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, c-format +msgid "change password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, c-format +msgid "change instance password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, fuzzy, c-format msgid "Account not found." msgstr "Importo" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, c-format +msgid "create money pot" +msgstr "" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, c-format +msgid "delete money pot" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, c-format +msgid "Add new pots" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, c-format +msgid "Total" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, c-format +msgid "Totals" +msgstr "" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3755,97 +4349,97 @@ msgid "" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 #, c-format -msgid "Incoming" +msgid "Current" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format -msgid "Lost" +msgid "Incoming" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format -msgid "Current" +msgid "Lost" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -3853,255 +4447,289 @@ msgid "" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, c-format msgid "Search by group name or id" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, c-format +msgid "add product" +msgstr "" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:92 +#, c-format +msgid "Add product to inventory" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 #, c-format -msgid "Add product to inventory" +msgid "update product" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, c-format +msgid "infinite" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, c-format +msgid "delete product" +msgstr "" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4109,41 +4737,166 @@ msgid "" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "" #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, c-format +msgid "It should start with /" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, c-format +msgid "Type of the data source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, c-format +msgid "delete scheduled report" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, c-format +msgid "Add new reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, c-format +msgid "Delete selected scheduled report from the database" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4168,296 +4921,308 @@ msgid "Orders table" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, c-format +msgid "add template" +msgstr "" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4465,133 +5230,145 @@ msgid "" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, c-format +msgid "delete template" +msgstr "" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, c-format +msgid "update template" +msgstr "" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4599,19 +5376,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4619,103 +5396,153 @@ msgid "" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, c-format +msgid "create order from template" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, c-format +msgid "Granularity can't be greater than duration." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, c-format +msgid "create token family" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4723,83 +5550,116 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." +msgid "1 minute" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, c-format +msgid "1 hour" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, c-format +msgid "1 day" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, c-format +msgid "30 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, c-format +msgid "90 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, c-format +msgid "365 days" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, c-format +msgid "delete token family" +msgstr "" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4807,225 +5667,292 @@ msgid "" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 #, c-format -msgid "Token Family: %1$s" +msgid "update token family" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format -msgid "User-readable token family name" +msgid "Token Family: %1$s" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 #, c-format -msgid "Token family description for customers" +msgid "inform wire transfer" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 #, c-format -msgid "Incoming wire transfers" +msgid "Wire transfer already confirmed." msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, c-format +msgid "The wire transfer has been confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, c-format +msgid "Transaction details" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, c-format +msgid "Transfer ID" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 +#, c-format +msgid "Orders in this wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 +#, c-format +msgid "Fee" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 +#, c-format +msgid "Subtotals" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Load more wire transfers preceding the first one" +msgid "Deposit fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, c-format -msgid "Expected credit" +msgid "Wire fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Confirmed" +msgid "not ready" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 #, c-format -msgid "Validated" +msgid "loading..." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, c-format -msgid "Executed on" +msgid "New wire transfers" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "yes" +msgid "Load more wire transfers preceding the first one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "no" +msgid "To be determined." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "never" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format -msgid "unknown" +msgid "Load more transfers after the last one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 #, c-format -msgid "Load more transfers after the last one" +msgid "Confirmed wire transfers into bank account" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 +#, c-format +msgid "Verified" +msgstr "" + +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format -msgid "Only show wire transfers confirmed by the merchant" +msgid "It's not the same." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format -msgid "Verified" +msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 #, c-format -msgid "Wire transfer already confirmed." +msgid "delete current instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format -msgid "I have received the wire transfer" +msgid "Instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format -msgid "Confirm the wire transfer" +msgid "Write the instance name to confirm the deletion" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"All the data will be fully deleted, otherwise only the access will be " +"removed." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format -msgid "Time" +msgid "DELETE" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 #, c-format -msgid "Transfer ID" +msgid "Doesn't have the pattern of an email" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 #, c-format -msgid "It's not the same." +msgid "Should start with +" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 #, c-format -msgid "You are deleting the instance with ID \"%1$s\"" +msgid "A phone number consists of numbers only" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 #, c-format -msgid "Instance" +msgid "Invalid phone number" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 #, c-format -msgid "Write the instance name to confirm the deletion" +msgid "Invalid value" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 #, c-format -msgid "Purge" +msgid "Max 7 lines" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 #, c-format -msgid "" -"All the data will be fully deleted, otherwise only the access will be " -"removed." +msgid "update instance settings" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format -msgid "DELETE" +msgid "Instance id" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 #, c-format -msgid "Instance id" +msgid "URL" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, c-format +msgid "Cancel operation" msgstr "" #. screenid: 74 @@ -5035,133 +5962,133 @@ msgid "Delete this instance" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, c-format +msgid "add webhook" +msgstr "" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5169,963 +6096,903 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, c-format +msgid "delete webhook" +msgstr "" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, c-format +msgid "update webhook" +msgstr "" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, c-format +msgid "self provision instance" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "Developer mode" +msgid "Developer tools" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, c-format -msgid "Money pot deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, c-format -msgid "Add new pots" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, c-format -msgid "Load more pots before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, c-format -msgid "Total" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, c-format -msgid "Delete selected pots from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, c-format -msgid "Load more pots after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 -#, c-format -msgid "Value can only by number" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, c-format -msgid "The value is too precise" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 -#, c-format -msgid "Descripton" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, c-format -msgid "Totals" -msgstr "" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, c-format -msgid "There is already a money pot with the same id." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, c-format -msgid "Product group deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "Add new group" +msgid "Enable UI tools for troubleshooting." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Load more groups before the first one" +msgid "Testing features" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Delete selected group from the database" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Load more groups after the last one" +msgid "Developer mode" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "There are no product groups yet, add more pressing the + sign" +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, c-format -msgid "Scheduled report deleted" +msgid "create pos access token" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, c-format -msgid "Scheduled reports" +msgid "Device name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Add new reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, c-format -msgid "Frequency" +msgid "Payment services status" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, c-format -msgid "Delete selected scheduled report from the database" +msgid "Base URL" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, c-format -msgid "There are no reports yet, add more pressing the + sign" +msgid "Next update" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, c-format -msgid "No report generator configured in the server" +msgid "This payment service is ready to be used." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, c-format -msgid "Type of the data source" +msgid "Next update will be at %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, c-format -msgid "Without this the merchant backend will refuse to create new orders." +msgid "Without this the server will refuse to create new orders." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 #, c-format msgid "" "Some transfers are on hold until the KYC process is completed. Visit the KYC " "section in the left-hand menu for more information." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Settings" -msgstr "Impostazioni" +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#, c-format +msgid "No 'admin' instance configured yet." +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 #, c-format -msgctxt "title" -msgid "%1$s: New bank account" +msgid "Create an 'admin' instance to begin using the merchant portal." +msgstr "" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 +#, c-format +msgid "delete bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" +msgid "The bank account has been deleted." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" +msgid "Delete account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, c-format -msgctxt "title" -msgid "%1$s: Orders" +msgid "Delete the account \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "Deleting an account can't be undone." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: Update product" +msgid "Bank accounts" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 #, c-format -msgctxt "title" -msgid "%1$s: Category" +msgid "Add new account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "Owner's name" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: Update category" +msgid "Delete selected accounts from the database" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" +msgid "No bank account configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" +msgid "Without this information you cannot create new payment orders." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, c-format -msgctxt "title" -msgid "%1$s: Update webhook" +msgid "This account is not ready to be used." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" +msgid "There are pending actions related to KYC." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" +msgid "More details." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "You must complete kyc requirements to receive payments." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: New template" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgctxt "title" -msgid "%1$s: Update template" +msgid "Invalid url" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: Templates" +msgid "URL must end with a '/'" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: Use template" +msgid "URL must not contain params" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "URL must not hash param" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "change bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" +msgid "Server replied with \"bad request\"." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Access tokens" +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: New access token" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "New instance" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "Instances" +msgid "Unsupported type of account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgid "The request reached a timeout, check your connection." -msgstr "" +msgid "Account:" +msgstr "Conto:" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgid "The request was cancelled." +msgid "Account details" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#, fuzzy, c-format +msgid "Extra subject" +msgstr "Soggetto" + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The server's response was malformed." +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Unexpected request error." +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Unexpected error." +msgid "Auth type" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Add new instance" +msgid "Choose the authentication type for the account info URL" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" +msgid "Without authentication" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Change password" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." +msgid "With token" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgid "Do not change" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" +msgid "Username to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" +msgid "Password to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" +msgid "Access token to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" +msgid "Match" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" +msgid "Check where the information match against the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Delete instance" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "Delete the instance \"%1$s\"" +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" +msgid "add bank account" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." +msgid "The instance does not exist." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgid "Deleting an instance %1$s" +msgid "" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "This cannot be undone!" +msgid "Server didn't like the request we made." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Purge the instance" +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purge the instance \"%1$s\"" +msgid "Verify details with server" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" +msgid "create instance and login" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Instance created" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Purging an instance %1$s" +msgid "Please complete the marked fields and choose authorization method" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6136,18 +7003,28 @@ msgstr "" msgid "Business Name" msgstr "" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, c-format +msgid "update product group" +msgstr "" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" #, fuzzy, c-format +#~ msgid "Action required" +#~ msgstr "Obbligatorio" + +#, fuzzy, c-format #~ msgid "KYC Required" #~ msgstr "Obbligatorio" diff --git a/packages/merchant-backoffice-ui/src/i18n/strings.ts b/packages/merchant-backoffice-ui/src/i18n/strings.ts @@ -43,8 +43,8 @@ strings['uk'] = { "Confirm": [ "Підтвердити" ], - "Correct form": [ - "" + "Correct the form": [ + "Умови контракту" ], "Comparing account details": [ "" @@ -103,6 +103,12 @@ strings['uk'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "" ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "" + ], + "Bank app": [ + "Банківський рахунок" + ], "Step 1:": [ "" ], @@ -133,13 +139,10 @@ strings['uk'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "" ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ - "" - ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "" ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "" ], "Operation in progress...": [ @@ -181,13 +184,16 @@ strings['uk'] = { "%1$ssec": [ "%1$sсек" ], - "Change value to never": [ + "Change the value to never": [ "змінити значення на ніколи" ], - "Change value to empty": [ + "Change the value to empty": [ "змінити значення на порожнє" ], - "Image must be smaller than 1 MB": [ + "The file is not an image": [ + "" + ], + "The image was normalized to be smaller than 1 MB": [ "Зображення повинно бути меншим за 1 МБ" ], "Add": [ @@ -256,6 +262,9 @@ strings['uk'] = { "Configuration": [ "Термін дії" ], + "KYC Status": [ + "URL статусу" + ], "OTP Devices": [ "" ], @@ -277,6 +286,9 @@ strings['uk'] = { "Personalization": [ "" ], + "Payment services": [ + "Деталі оплати" + ], "Instances": [ "Інстанції" ], @@ -289,6 +301,21 @@ strings['uk'] = { "Log out": [ "Вийти" ], + "Select one...": [ + "Виберіть один рахунок" + ], + "Days": [ + "" + ], + "Hours": [ + "години" + ], + "Minutes": [ + "хвилини" + ], + "Seconds": [ + "секунди" + ], "Username": [ "" ], @@ -343,7 +370,7 @@ strings['uk'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -352,6 +379,12 @@ strings['uk'] = { "Time customers have to pay an order before the offer expires by default.": [ "Час, який мають клієнти для оплати замовлення до закінчення терміну дії пропозиції за замовчуванням." ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "" + ], "Refund delay": [ "Затримка автоматичного повернення" ], @@ -361,13 +394,13 @@ strings['uk'] = { "Wire transfer delay": [ "Термін банківського переказу" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "Максимальний час, на який обмінник може затримати переказ коштів продавцю, дозволяючи йому об'єднувати менші платежі у більші банківські перекази та знижуючи комісії за переказ." ], "Wire transfer rounding": [ "Термін банківського переказу" ], - "Interval to which wire deadlines should be rounded up to.": [ + "Rounding interval for wire deadlines.": [ "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ @@ -400,70 +433,103 @@ strings['uk'] = { "To year": [ "" ], + "Can't paste this content. Please copy the 8 digits again.": [ + "" + ], + "Resend code possible in %1$s seconds.": [ + "" + ], + "Resend code possible in less than one minute.": [ + "" + ], + "Resend code possible in less than 5 minutes.": [ + "" + ], + "Resend will be possible after %1$s": [ + "" + ], "Expired": [ "Закінчується о" ], "Required": [ "обовʼязково" ], + "verify code": [ + "Алгоритм перевірки" + ], "Unauthorized": [ "Авторизовано" ], "The code is not correct.": [ "Це недійсна адреса біткойн." ], - "The challenge is not known anymore.": [ + "The challenge is no longer valid.": [ "" ], "Too many attempts trying to solve the challenge.": [ "" ], - "Validation code sent.": [ + "send challenge": [ + "Підтвердити зміну" + ], + "Failed to send the verification code.": [ + "Не вдалося видалити інстанцію" + ], + "The request was valid, but the server is refusing action.": [ "" ], - "The verification code sent to the phone number ending with \"%1$s\"": [ + "The server is not aware of the specified MFA challenge.": [ "" ], - "The verification code sent to the email address starting with \"%1$s\"": [ + "Code transmission failed.": [ "" ], - "Verification code": [ - "Алгоритм перевірки" + "Already solved.": [ + "" ], - "It will expire at %1$s": [ + "It is too early to request another transmission of the challenge.": [ "" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ + "Validation code sent.": [ "" ], - "Back": [ - "Назад" + "The verification code sent to the phone \" %1$s\"": [ + "Ви встановлюєте токен доступу для нової інстанції" ], - "Verify": [ - "Перевірено" + "The verification code sent to the phone number ending with \"%1$s\"": [ + "" ], - "Failed to send the verification code.": [ - "Не вдалося видалити інстанцію" + "The verification code sent to the email address \" %1$s\"": [ + "" ], - "The request was valid, but the server is refusing action.": [ + "The verification code sent to the email address starting with \"%1$s\"": [ "" ], - "The backend is not aware of the specified MFA challenge.": [ + "Verification code": [ + "Алгоритм перевірки" + ], + "Code expired.": [ + "Закінчується о" + ], + "Didn't received the code?": [ "" ], - "Code transmission failed.": [ + "Resend": [ "" ], - "Already solved.": [ + "Verify": [ + "Перевірено" + ], + "The code transmission failed.": [ "" ], - "It is too early to request another transmission of the challenge.": [ + "The challenge is already solved.": [ "" ], "Multi-factor authentication required.": [ "" ], - "You need to complete all of this requirements.": [ + "You must complete all of these requirements.": [ "" ], "You need to complete at least one of this requirements.": [ @@ -475,170 +541,329 @@ strings['uk'] = { "An email to the address starting with %1$s": [ "" ], - "You have to wait until %1$s to send a new code.": [ - "" - ], - "I have a code": [ - "" + "Complete": [ + "Гроші перераховані" ], - "Send me a message": [ - "" + "This is not a valid Bitcoin address.": [ + "Це недійсна адреса біткойн." ], - "Logged in": [ - "" + "This is not a valid Ethereum address.": [ + "Це недійсна адреса Ethereum." ], - "Not found": [ - "замовлення не знайдено" + "This is not a valid host.": [ + "Це недійсна адреса біткойн." ], - "Login required": [ - "Потрібен вхід" + "IBANs usually have more than 4 digits.": [ + "Номера IBAN зазвичай мають більше 4-ьох цифр" ], - "Instance name.": [ - "Ідентифікатор інстанції" + "IBANs usually have fewer than 34 digits.": [ + "Номера IBAN зазвичай мають менше 34-ьох цифр" ], - "Instance password.": [ - "Керування запасами" + "The IBAN's country code could not be retrieved.": [ + "Код країни IBAN не знайдено" ], - "Forgot password": [ - "" + "The IBAN is invalid because the checksum is wrong.": [ + "Номер IBAN не коректний, контрольна сума не сходиться" ], - "Create new account": [ - "Зарахований банківський рахунок" + "This account is not allowed.": [ + "Це недійсна адреса біткойн." ], - "Invalid": [ - "недійсний" + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ + "" ], - "Doesn't have the pattern of an email": [ - "URL має неправильний формат" + "Wire method": [ + "Метод переказу" ], - "Should start with +": [ + "Select the method you want to use to transfer your earnings to your business account.": [ "" ], - "A phone number consists of numbers only": [ - "" + "Select a wire method...": [ + "Виберіть один метод переказу" ], - "Invalid value": [ - "недійсний формат" + "Routing": [ + "Маршрутизація" ], - "Max 7 lines": [ - "максимум 7 рядків" + "Routing number": [ + "Номер маршрутизації." ], - "Doesn't match": [ - "" + "Account": [ + "Рахунок" ], - "Instance created": [ - "Ідентифікатор інстанції" + "Account number": [ + "Номер рахунку." ], - "Unauthorized.": [ - "Авторизовано" + "Code": [ + "Код" ], - "Conflict.": [ - "Конфлікт." + "Business Identifier Code": [ + "Код ідентифікації бізнесу." ], - "Not found.": [ - "замовлення не знайдено" + "International Bank Account Number": [ + "Номер банківського рахунку." ], - "New password": [ + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ "" ], - "Next password to be used": [ - "наступний токен доступу, який буде використано" + "Unified Payment Interface": [ + "Уніфікований інтерфейс платежів." ], - "Repeat password": [ - "Повторіть токен доступу" + "Bitcoin protocol": [ + "Протокол біткойн." ], - "Confirm the same password": [ - "підтвердити той самий токен доступу" + "Ethereum protocol": [ + "Протокол Ethereum." ], - "Please complete the marked fields and choose authorization method": [ - "Необхідно заповнити позначені поля та вибрати метод авторизації" + "Interledger protocol": [ + "Протокол Interledger." ], - "Confirm operation": [ - "Підтверджено" + "Enter the data without a scheme. A subpath may be included:": [ + "" ], - "Check the password.": [ + "Cyclos host": [ "" ], - "Instance not found.": [ - "замовлення не знайдено" + "cyclos account": [ + "Рахунок" ], - "Description": [ - "Опис" + "Name of the account holder": [ + "Назва категорії" ], - "Helps you remember where this access token is being used before deleting it.": [ + "John Doe": [ "" ], - "Duration": [ - "Термін дії" - ], - "Time the access token will be valid.": [ - "Наданий токен доступу є недійсним." + "Legal name of the person holding the account.": [ + "Офіційне ім'я власника рахунку." ], - "Refreshable access tokens can pose a security risk!": [ + "The request reached a timeout, check your connection.": [ "" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "The request was cancelled.": [ "" ], - "Scope": [ + "Too many requests were made to the server and this action was throttled.": [ "" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "The server's response was malformed, please report.": [ "" ], - "Allows all operations without limit.": [ + "Could not complete the request due to a network problem.": [ "" ], - "Allows all operations to read information.": [ - "" + "Unexpected request error, please report.": [ + "Несподівана помилка" ], - "Allows the creation of orders and checking of payment status.": [ - "" + "Unexpected error.": [ + "Несподівана помилка" ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ + "login": [ "" ], - "Allows the creation of orders, checking of payment status and refunds.": [ + "Logged in": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ - "" + "Wrong password.": [ + "Встановити токен доступу" ], - "Allows all operations to read information with extendable expiration time.": [ - "" + "The account doesn't exist.": [ + "Це недійсна адреса біткойн." ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ - "" + "Login required": [ + "Потрібен вхід" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ - "" + "Instance name.": [ + "Ідентифікатор інстанції" ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ - "" + "Instance password.": [ + "Керування запасами" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "Forgot password": [ "" ], - "All (refreshable)": [ - "" + "Create new account": [ + "Зарахований банківський рахунок" ], - "Spa": [ + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ "" ], - "Spa (refreshable)": [ + "Testing environment": [ "" ], - "Choose one": [ - "Виберіть одну..." - ], - "Read only": [ + "This server is meant for testing features and configurations. Don't use your personal information here.": [ "" ], - "All": [ - "Всі" - ], - "Order simple": [ - "ідентифікатор замовлення" + "Delete": [ + "Видалити" + ], + "Add new instance": [ + "додати нову інстанцію" + ], + "ID": [ + "Ідентифікатор" + ], + "Name": [ + "Назва" + ], + "Edit": [ + "Редагувати" + ], + "Change password": [ + "" + ], + "Purge": [ + "Очистити" + ], + "There are no instances yet. Add one by pressing the '+' sign.": [ + "Ще немає інстанцій, додайте більше, натиснувши знак +" + ], + "delete instance": [ + "Не вдалося видалити інстанцію" + ], + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "Інстанція \"%1$s\" (ID: %2$s) була видалена" + ], + "Unauthorized.": [ + "Авторизовано" + ], + "Not found.": [ + "замовлення не знайдено" + ], + "Conflict.": [ + "Конфлікт." + ], + "Only show active instances": [ + "Показувати тільки активні інстанції" + ], + "Active": [ + "Активні" + ], + "Only show deleted instances": [ + "Показувати тільки видалені інстанції" + ], + "Deleted": [ + "Видалено" + ], + "Show all instances": [ + "Показати всі інстанції" + ], + "All": [ + "Всі" + ], + "Delete instance": [ + "Не вдалося видалити інстанцію" + ], + "Delete the instance \"%1$s\"": [ + "завантажити новіші шаблони" + ], + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "" + ], + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "" + ], + "Deleting an instance %1$s": [ + "завантажити новіші шаблони" + ], + "This cannot be undone!": [ + "не може бути порожнім" + ], + "Purge the instance": [ + "Не вдалося видалити інстанцію" + ], + "Purge the instance \"%1$s\"": [ + "Ви встановлюєте токен доступу для нової інстанції" + ], + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "" + ], + "The instance will disappear from your list and you will no longer be able to access its data.": [ + "" + ], + "Purging an instance %1$s": [ + "" + ], + "create access token": [ + "Встановити токен доступу" + ], + "Check the password.": [ + "" + ], + "Instance not found.": [ + "замовлення не знайдено" + ], + "Description": [ + "Опис" + ], + "Helps you remember where this access token is being used before deleting it.": [ + "" + ], + "Duration": [ + "Термін дії" + ], + "Time the access token will be valid.": [ + "Наданий токен доступу є недійсним." + ], + "Refreshable access tokens can pose a security risk!": [ + "" + ], + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "" + ], + "Scope": [ + "" + ], + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "" + ], + "Allows all operations without limit.": [ + "" + ], + "Allows all operations to read information.": [ + "" + ], + "Allows the creation of orders and checking of payment status.": [ + "" + ], + "Allows the creation of orders, checking of payment status and inventory locking.": [ + "" + ], + "Allows the creation of orders, checking of payment status and refunds.": [ + "" + ], + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "" + ], + "Allows all operations to read information with extendable expiration time.": [ + "" + ], + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "" + ], + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "" + ], + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "" + ], + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "" + ], + "All (refreshable)": [ + "" + ], + "Spa": [ + "" + ], + "Spa (refreshable)": [ + "" + ], + "Choose one": [ + "Виберіть одну..." + ], + "Read only": [ + "" + ], + "Order simple": [ + "ідентифікатор замовлення" ], "Order Point-of-Sale": [ "Ключ точки продажу" @@ -670,6 +895,9 @@ strings['uk'] = { "Please complete the marked fields": [ "Необхідно заповнити позначені поля" ], + "Confirm operation": [ + "Підтверджено" + ], "Access token created": [ "Токен доступу" ], @@ -685,12 +913,6 @@ strings['uk'] = { "This token will be available until %1$s": [ "" ], - "No 'admin' instance configured yet.": [ - "Інстанція 'default' ще не налаштована." - ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ - "Створіть інстанцію 'default', щоб почати використовувати бекофіс продавця." - ], "Create access token": [ "Встановити токен доступу" ], @@ -712,9 +934,6 @@ strings['uk'] = { "Remove this access token": [ "Повторіть токен доступу" ], - "Delete": [ - "Видалити" - ], "Load more devices after the last one": [ "завантажити більше шаблонів після останнього" ], @@ -724,278 +943,95 @@ strings['uk'] = { "There are no active sessions yet, add one by pressing the + sign": [ "Продуктів ще немає, додайте більше, натиснувши знак +" ], + "delete access token": [ + "Встановити токен доступу" + ], "Forbidden.": [ "" ], + "New point-of-sale access": [ + "Ключ точки продажу" + ], "Delete access token": [ "Встановити токен доступу" ], "Deleting an access token cannot be undone.": [ "наступний токен доступу, який буде використано" ], - "This is not a valid Bitcoin address.": [ - "Це недійсна адреса біткойн." + "Invalid. Please use only letters and numbers.": [ + "" ], - "This is not a valid Ethereum address.": [ - "Це недійсна адреса Ethereum." + "add category": [ + "не вдалося створити продукт" ], - "This is not a valid host.": [ - "Це недійсна адреса біткойн." + "Not found": [ + "замовлення не знайдено" ], - "IBANs usually have more than 4 digits.": [ - "Номера IBAN зазвичай мають більше 4-ьох цифр" + "Category name": [ + "" ], - "IBANs usually have fewer than 34 digits.": [ - "Номера IBAN зазвичай мають менше 34-ьох цифр" + "delete category": [ + "Назва категорії" ], - "The IBAN's country code could not be retrieved.": [ - "Код країни IBAN не знайдено" + "Category deleted": [ + "шаблон успішно видалено" ], - "The IBAN is invalid because the checksum is wrong.": [ - "Номер IBAN не коректний, контрольна сума не сходиться" + "Add new devices": [ + "додати новий резерв" ], - "This account is not allowed.": [ - "Це недійсна адреса біткойн." + "Total products": [ + "Загальна ціна" ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ - "" + "Delete selected category from the database": [ + "видалити вибраний переказ з бази даних" ], - "Wire method": [ - "Метод переказу" + "There are no categories yet, add more pressing the + sign": [ + "Шаблонів ще немає, додайте більше, натиснувши знак +" ], - "Select the method you want to use to transfer your earnings to your business account.": [ + "update category": [ + "не вдалося оновити шаблон" + ], + "Id:": [ "" ], - "Select a wire method...": [ - "Виберіть один метод переказу" + "Name of the category": [ + "Назва категорії" ], - "Routing": [ - "Маршрутизація" + "Products": [ + "Товари" ], - "Routing number": [ - "Номер маршрутизації." + "Image": [ + "Зображення" ], - "Account": [ - "Рахунок" + "Load more products after the last one": [ + "завантажити більше шаблонів після останнього" ], - "Account number": [ - "Номер рахунку." + "There are no products in this category.": [ + "Керування списком продуктів у замовленні." ], - "Code": [ - "Код" + "create product group": [ + "Товари" ], - "Business Identifier Code": [ - "Код ідентифікації бізнесу." + "delete product group": [ + "Видалено" ], - "International Bank Account Number": [ - "Номер банківського рахунку." + "Product group deleted": [ + "Список продуктів" ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ - "" - ], - "Unified Payment Interface": [ - "Уніфікований інтерфейс платежів." - ], - "Bitcoin protocol": [ - "Протокол біткойн." - ], - "Ethereum protocol": [ - "Протокол Ethereum." - ], - "Interledger protocol": [ - "Протокол Interledger." - ], - "Enter the data without a scheme. A subpath may be included:": [ - "" - ], - "Cyclos host": [ - "" - ], - "cyclos account": [ - "Рахунок" - ], - "Name of the account holder": [ - "Назва категорії" - ], - "John Doe": [ - "" - ], - "Legal name of the person holding the account.": [ - "Офіційне ім'я власника рахунку." - ], - "Invalid url": [ - "недійсний формат" - ], - "URL must end with a '/'": [ - "" - ], - "URL must not contain params": [ - "" - ], - "URL must not hash param": [ - "" - ], - "Conflict": [ - "Підтвердити" - ], - "Server replied with \"bad request\".": [ - "Відповідь сервера з кодом помилки." - ], - "Unauthorized, check credentials.": [ - "" - ], - "The endpoint does not seem to be a Taler Revenue API.": [ - "" - ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ - "" - ], - "Unsupported type of account": [ - "" - ], - "Account:": [ - "Рахунок:" - ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ - "" - ], - "Endpoint URL": [ - "" - ], - "From where the merchant can download information about incoming wire transfers to this account": [ - "" - ], - "Auth type": [ - "Тип події" - ], - "Choose the authentication type for the account info URL": [ - "" - ], - "Without authentication": [ - "" - ], - "With username and password": [ - "" - ], - "With token": [ - "Створити токен" - ], - "Do not change": [ - "URL обмінника" - ], - "Username to access the account information.": [ - "" - ], - "Password to access the account information.": [ - "" - ], - "Access token to access the account information.": [ - "" - ], - "Match": [ - "" - ], - "Check where the information match against the server info.": [ - "" - ], - "Compare info from server with account form": [ - "" - ], - "Test": [ - "" - ], - "Server didn't like the request we made.": [ - "Відповідь сервера з кодом помилки." - ], - "Account details": [ - "Адреса рахунку" - ], - "Check if the information matches the server info.": [ - "" - ], - "The bank account has been deleted.": [ - "Банківський рахунок успішно видалено." - ], - "Delete account": [ - "Виберіть один рахунок" - ], - "Delete the account \"%1$s\"": [ - "не вдалося видалити продукт" - ], - "Invalid payto: \"%1$s\"": [ - "" - ], - "If you delete the account with name %1$s its information will be lost": [ - "" - ], - "Deleting an account can't be undone.": [ - "наступний токен доступу, який буде використано" - ], - "Bank accounts": [ - "Банківський рахунок" - ], - "Add new account": [ + "Add new group": [ "Зарахований банківський рахунок" ], - "Owner's name": [ - "Назва бізнесу" - ], - "Delete selected accounts from the database": [ - "видалити вибраний переказ з бази даних" - ], - "There are no accounts yet, add more pressing the + sign": [ - "Продуктів ще немає, додайте більше, натиснувши знак +" - ], - "You must provide a bank account to receive payments.": [ - "URI, що вказує на банківський рахунок для зарахування доходу." - ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ - "" - ], - "Invalid. Please use only letters and numbers.": [ - "" - ], - "Name": [ - "Назва" - ], - "Category name": [ - "" - ], - "Category deleted": [ - "шаблон успішно видалено" - ], - "Add new devices": [ - "додати новий резерв" - ], - "ID": [ - "Ідентифікатор" - ], - "Total products": [ - "Загальна ціна" + "Load more groups before the first one": [ + "завантажити більше вебхуків до першого" ], - "Delete selected category from the database": [ + "Delete selected group from the database": [ "видалити вибраний переказ з бази даних" ], - "There are no categories yet, add more pressing the + sign": [ - "Шаблонів ще немає, додайте більше, натиснувши знак +" - ], - "Id:": [ - "" - ], - "Name of the category": [ - "Назва категорії" - ], - "Products": [ - "Товари" - ], - "Image": [ - "Зображення" - ], - "Load more products after the last one": [ + "Load more groups after the last one": [ "завантажити більше шаблонів після останнього" ], - "There are no products in this category.": [ - "Керування списком продуктів у замовленні." + "There are no product groups yet, add more pressing the + sign": [ + "Продуктів ще немає, додайте більше, натиснувши знак +" ], "Account's KYC status": [ "Адреса рахунку" @@ -1006,25 +1042,13 @@ strings['uk'] = { "Status": [ "URL статусу" ], - "Ok": [ - "" - ], - "Action required": [ - "Потрібен вхід" - ], - "Warning": [ - "" - ], - "Error": [ - "" - ], "Bank account verification required.": [ "Сума обов'язкова" ], "More information required.": [ "додаткова інформація для надання контексту" ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "" ], "Ready": [ @@ -1036,7 +1060,7 @@ strings['uk'] = { "Payment service internal error. Contact administrator or check again later.": [ "" ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "" ], "Payment service timeout. Contact administrator or check again later.": [ @@ -1048,7 +1072,7 @@ strings['uk'] = { "Incompatible core banking system.": [ "" ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "" ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -1060,25 +1084,31 @@ strings['uk'] = { "No pending kyc verification!": [ "Немає очікуваних перевірок KYC!" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "" + ], + "The account for wire transfers is invalid.": [ "перевірте ідентифікатор, він виглядає недійсним." ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "" ], - "No exchange keys": [ + "No contact with the payment service yet.": [ "" ], - "The backend service is still synchronizing with the payment service provider.": [ - "" + "The server is still synchronizing with the payment service provider.": [ + "показувати лише замовлення, де клієнти заплатили, але банківські перекази від постачальника платежів ще не виконані" ], "No transfers can be made from this account": [ "Податки для цього продукту не налаштовані." ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "" + ], + "Test": [ "" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -1102,7 +1132,7 @@ strings['uk'] = { "Logic bug": [ "" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "" ], "Internal error": [ @@ -1114,7 +1144,7 @@ strings['uk'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "" ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -1123,14 +1153,17 @@ strings['uk'] = { "Unsupported account": [ "Цільовий рахунок" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "" ], - "Change value to unknown date": [ - "змінити значення на невідому дату" + "Change value to empty": [ + "змінити значення на порожнє" + ], + "Change value to never": [ + "змінити значення на ніколи" ], "Enter description or id": [ "Введіть ідентифікатор замовлення" @@ -1141,7 +1174,7 @@ strings['uk'] = { "You must enter a valid product identifier.": [ "Ви повинні ввести дійсний ідентифікатор продукту." ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "Кількість має бути більше 0!" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -1156,8 +1189,11 @@ strings['uk'] = { "How many products will be added": [ "скільки продуктів буде додано" ], - "Add from inventory": [ - "Додати зі складу" + "Add it to the order": [ + "Сума замовлення" + ], + "Invalid": [ + "недійсний" ], "This product has %1$s applicable taxes configured.": [ "" @@ -1237,22 +1273,28 @@ strings['uk'] = { "Either fulfillment url or fulfillment message must be specified.": [ "" ], - "is not a valid URL": [ + "Invalid URL": [ "недійсний" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ + "створити замовлення" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ "" ], + "Conflict": [ + "Підтвердити" + ], "Product with ID \"%1$s\" is out of stock.": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "" ], "Manage products in order": [ "Керування продуктами в замовленні" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "%1$s товарів із загальною ціною %2$s." ], "Manage list of products in the order.": [ @@ -1333,7 +1375,7 @@ strings['uk'] = { "Wire transfer time": [ "Ідентифікатор банківського переказу" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "Термін, до якого обмінник повинен здійснити банківський переказ." ], "Auto-refund time": [ @@ -1381,6 +1423,9 @@ strings['uk'] = { "Custom field name": [ "Назва будинку" ], + "new extra field": [ + "" + ], "Disabled": [ "" ], @@ -1390,8 +1435,8 @@ strings['uk'] = { "Deadline at %1$s": [ "" ], - "Select date to show nearby orders": [ - "виберіть дату, щоб показати найближчі замовлення" + "get product details": [ + "Адреса рахунку" ], "Only show unpaid orders": [ "показувати лише оплачені замовлення" @@ -1423,11 +1468,8 @@ strings['uk'] = { "Remove all filters": [ "видалити всі фільтри" ], - "Clear date filter": [ - "очистити фільтр дати" - ], - "Jump to date (%1$s)": [ - "" + "authorize refund": [ + "Авторизовано" ], "Gone.": [ "" @@ -1441,15 +1483,33 @@ strings['uk'] = { "Order id": [ "ідентифікатор замовлення" ], + "Clear date filter": [ + "очистити фільтр дати" + ], + "Select date to show nearby orders": [ + "виберіть дату, щоб показати найближчі замовлення" + ], + "Jump to date (%1$s)": [ + "" + ], "Instance unknown": [ "Ідентифікатор інстанції" ], "Order unknown": [ "невідомо" ], - "Create order": [ + "This order is not refundable": [ + "чому це замовлення повертається" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], + "Create order": [ "створити замовлення" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -1483,12 +1543,15 @@ strings['uk'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "" ], "refund": [ "повернення" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "Причина" ], @@ -1516,7 +1579,7 @@ strings['uk'] = { "now": [ "ні" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -1528,6 +1591,9 @@ strings['uk'] = { "This wire transfer has been notified by the payment service provider.": [ "показувати лише замовлення, де клієнти заплатили, але банківські перекази від постачальника платежів ще не виконані" ], + "This wire transfer has been notified manually or by the banking system.": [ + "показувати лише замовлення, де клієнти заплатили, але банківські перекази від постачальника платежів ще не виконані" + ], "This refund is waiting to be claimed by the customer.": [ "Сума, яку має сплатити клієнт" ], @@ -1537,7 +1603,7 @@ strings['uk'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -1576,21 +1642,21 @@ strings['uk'] = { "Wire transfer deadline": [ "Термін банківського переказу" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "термін переказу для обмінника" ], - "Time indicating when the order should be delivered": [ - "час, що вказує, коли замовлення має бути доставлене" - ], - "Where the order will be delivered": [ - "куди буде доставлене замовлення" - ], "Auto-refund delay": [ "Затримка автоматичного повернення" ], "How long the wallet should try to get an automatic refund for the purchase": [ "скільки часу гаманець повинен намагатися отримати автоматичне повернення за покупку" ], + "Time indicating when the order should be delivered": [ + "час, що вказує, коли замовлення має бути доставлене" + ], + "Where the order will be delivered": [ + "куди буде доставлене замовлення" + ], "Extra info": [ "Додаткова інформація" ], @@ -1633,38 +1699,44 @@ strings['uk'] = { "Product list": [ "Список продуктів" ], - "refund missed: %1$s": [ + "The contract terms have a v1 order without choices_index.": [ "" ], - "refund missed: %1$s: %2$s": [ + "The contract terms have a v1 order with a bad choices_index.": [ "" ], + "refund missed: %1$s": [ + "" + ], + "refund missed: %1$s : %2$s": [ + "повернення успішно створено" + ], "refund created: %1$s": [ "повернення успішно створено" ], - "refund created: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "повернення успішно створено" ], "refund taken: %1$s": [ "Повернення здійснено" ], - "refund taken: %1$s: %2$s": [ + "refund taken: %1$s : %2$s": [ "Повернення здійснено" ], - "The contract terms has a v1 order without choices_index.": [ - "" - ], - "The contract terms has a v1 order with a bad choices_index.": [ - "" - ], "wired %1$s": [ "" ], "wire deadline": [ "Термін повернення" ], - "Wired": [ - "перераховано" + "Related wire transfers": [ + "Ідентифікатор банківського переказу" + ], + "Unconfirmed": [ + "Підтверджено" + ], + "Confirmed": [ + "Підтверджено" ], "Refund order": [ "замовлення на повернення" @@ -1672,6 +1744,12 @@ strings['uk'] = { "Not refundable": [ "не підлягає поверненню" ], + "No wire transfer reported": [ + "Ідентифікатор банківського переказу" + ], + "Check wire transfers": [ + "Ідентифікатор банківського переказу" + ], "Next event in": [ "" ], @@ -1693,8 +1771,8 @@ strings['uk'] = { "Refund URI": [ "URI повернення" ], - "Pay at": [ - "URL для оплати" + "Payment link": [ + "Термін оплати" ], "Order status URL": [ "URL статусу замовлення" @@ -1705,15 +1783,36 @@ strings['uk'] = { "Unknown order status. This is an error, please contact the administrator.": [ "Невідомий статус замовлення. Це помилка, будь ласка, зв'яжіться з адміністратором." ], + "Back": [ + "Назад" + ], + "never": [ + "ніколи" + ], + "unknown": [ + "невідомо" + ], + "confirmed": [ + "Підтверджено" + ], + "unconfirmed": [ + "Підтверджено" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "" ], - "Just letters and numbers from 2 to 7": [ - "лише літери та цифри від 2 до 7" + "Use only letters and digits (2–7).": [ + "" ], "The size of the key must be 32 characters": [ "розмір ключа повинен бути 32" ], + "add otp device": [ + "додати новий резерв" + ], "Internal ID on the system": [ "" ], @@ -1747,6 +1846,9 @@ strings['uk'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "" ], + "delete otp device": [ + "Не вдалося видалити пристрій" + ], "OTP devices": [ "додати новий резерв" ], @@ -1756,6 +1858,9 @@ strings['uk'] = { "There are no devices to list yet, add more by pressing the + sign": [ "Ще немає інстанцій, додайте більше, натиснувши знак +" ], + "update otp device": [ + "не вдалося створити резерв" + ], "Template id is unknown": [ "" ], @@ -1789,9 +1894,24 @@ strings['uk'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "" + ], + "Next password to be used": [ + "наступний токен доступу, який буде використано" + ], + "Repeat password": [ + "Повторіть токен доступу" + ], + "Confirm the same password": [ + "підтвердити той самий токен доступу" + ], "Confirm change": [ "Підтвердити зміну" ], + "change password": [ + "Керування запасами" + ], "Testing password change": [ "Підтвердити зміну" ], @@ -1801,16 +1921,76 @@ strings['uk'] = { "The current password is wrong.": [ "Встановити токен доступу" ], + "change instance password": [ + "Керування запасами" + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "Сервер не знайдено" ], + "create money pot": [ + "Зарахований банківський рахунок" + ], + "There is already a money pot with the same id.": [ + "" + ], + "delete money pot": [ + "Виберіть один рахунок" + ], + "Money pot deleted": [ + "шаблон успішно видалено" + ], + "Add new pots": [ + "додати нові шаблони" + ], + "Load more pots before the first one": [ + "завантажити більше шаблонів до першого" + ], + "Total": [ + "Загальна ціна" + ], + "Delete selected pots from the database": [ + "видалити вибраний переказ з бази даних" + ], + "Load more pots after the last one": [ + "завантажити більше шаблонів після останнього" + ], + "There are no money pots yet, add more pressing the + sign": [ + "Продуктів ще немає, додайте більше, натиснувши знак +" + ], "Add element to the list": [ "додати елемент до списку" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "змінити значення на ніколи" + ], + "Invalid amount \"%1$s\": %2$s": [ + "Фіксована сума" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "Опис" + ], + "Totals": [ + "Загальна ціна" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "натисніть тут, щоб налаштувати запас продукту, залиште як є, і бекенд не буде контролювати запас." ], "Manage stock": [ @@ -1825,15 +2005,15 @@ strings['uk'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "втрати не можуть бути більшими за поточні та прибуваючі (макс %1$s)" ], + "Current": [ + "Поточний" + ], "Incoming": [ "Прибуття" ], "Lost": [ "Втрачено" ], - "Current": [ - "Поточний" - ], "Remove stock control for this product": [ "видалити контроль запасів для цього продукту" ], @@ -1912,6 +2092,9 @@ strings['uk'] = { "Search by group name or id": [ "шукати продукти за їхнім описом або ідентифікатором" ], + "add product": [ + "Загальна ціна" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -1927,6 +2110,9 @@ strings['uk'] = { "Add product to inventory": [ "додати продукт до інвентарю" ], + "update product": [ + "не вдалося оновити продукт" + ], "Product not found.": [ "Сервер не знайдено" ], @@ -1939,6 +2125,12 @@ strings['uk'] = { "Sold": [ "Продано" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "Нескінченний" + ], "Free": [ "" ], @@ -1981,6 +2173,9 @@ strings['uk'] = { "There are no products to list yet, add more by pressing the + sign": [ "Продуктів ще немає, додайте більше, натиснувши знак +" ], + "delete product": [ + "Видалено" + ], "Product (ID: %1$s) has been deleted": [ "Продукт (ID: %1$s) оновлено" ], @@ -2005,6 +2200,69 @@ strings['uk'] = { "Product id:": [ "Ідентифікатор продукту:" ], + "It should start with /": [ + "це повинно бути більше 0" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "" + ], + "Description of the report. Possibly included in the report message": [ + "" + ], + "Where the report program should send the report": [ + "" + ], + "Source": [ + "" + ], + "Base URL to request the data from.": [ + "" + ], + "Type of the data source": [ + "Назва категорії" + ], + "Program": [ + "" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "" + ], + "Report frequency shift": [ + "" + ], + "delete scheduled report": [ + "видалити вибраний переказ з бази даних" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "додати нові шаблони" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "видалити вибраний переказ з бази даних" + ], + "There are no reports yet, add more pressing the + sign": [ + "Шаблонів ще немає, додайте більше, натиснувши знак +" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "" ], @@ -2014,9 +2272,6 @@ strings['uk'] = { "Service unavailable": [ "" ], - "Select date from which to show statistics": [ - "" - ], "Show chart": [ "" ], @@ -2029,6 +2284,9 @@ strings['uk'] = { "Orders table": [ "Статус замовлення" ], + "Select date from which to show statistics": [ + "" + ], "Start from (%1$s)": [ "" ], @@ -2113,6 +2371,9 @@ strings['uk'] = { "Too short": [ "занадто короткий" ], + "add template": [ + "додати нові шаблони" + ], "You don't have enough permissions.": [ "" ], @@ -2215,6 +2476,9 @@ strings['uk'] = { "There are no templates to list yet, add more by pressing the + sign": [ "Шаблонів ще немає, додайте більше, натиснувши знак +" ], + "delete template": [ + "додати нові шаблони" + ], "Jump to template with the given template ID": [ "перейти до замовлення з зазначеним ідентифікатором" ], @@ -2227,7 +2491,7 @@ strings['uk'] = { "Delete the template \"%1$s\"": [ "" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "" ], "Deleting a template cannot be undone.": [ @@ -2236,6 +2500,9 @@ strings['uk'] = { "Print": [ "Друк" ], + "update template": [ + "додати нові шаблони" + ], "The template configuration needs to be fixed.": [ "" ], @@ -2257,6 +2524,12 @@ strings['uk'] = { "An order summary is required": [ "Підсумок замовлення обов'язковий" ], + "create order from template": [ + "Нове замовлення для шаблону" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "" ], @@ -2266,12 +2539,30 @@ strings['uk'] = { "Amount of the order": [ "Сума замовлення" ], + "Expiration should be after start date": [ + "це повинно бути більше 0" + ], + "Granularity can't be greater than duration.": [ + "Кількість має бути більше 0!" + ], + "create token family": [ + "Не вдалося видалити сімейство токенів" + ], + "There is another token family with this ID. Choose another one.": [ + "" + ], "Slug": [ "" ], "Token family slug to use in URLs (for internal use only)": [ "ідентифікація продукту для використання в URL (тільки для внутрішнього використання)" ], + "User-readable token family name": [ + "" + ], + "Token family description for customers": [ + "опис продукту для клієнтів" + ], "Kind": [ "" ], @@ -2284,7 +2575,7 @@ strings['uk'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ @@ -2293,7 +2584,7 @@ strings['uk'] = { "The last day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -2305,12 +2596,27 @@ strings['uk'] = { "Validity Granularity": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ + "1 minute": [ + "хвилини" + ], + "1 hour": [ + "години" + ], + "1 day": [ "" ], + "30 days": [ + "дні" + ], + "90 days": [ + "дні" + ], + "365 days": [ + "дні" + ], "Token Families": [ "" ], @@ -2329,6 +2635,9 @@ strings['uk'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "Шаблонів ще немає, додайте більше, натиснувши знак +." ], + "delete token family": [ + "Не вдалося видалити сімейство токенів" + ], "Token family has been deleted.": [ "Сімейство токенів \"%1$s\" (SLUG: %2$s) видалено" ], @@ -2347,52 +2656,76 @@ strings['uk'] = { "can't be undone": [ "не може бути порожнім" ], + "update token family": [ + "Не вдалося оновити сімейство токенів" + ], "Token Family: %1$s": [ "Сімейство токенів: %1$s" ], - "User-readable token family name": [ - "" - ], - "Token family description for customers": [ - "опис продукту для клієнтів" + "inform wire transfer": [ + "підтвердити той самий токен доступу" ], - "Incoming wire transfers": [ + "Wire transfer already confirmed.": [ + "Термін банківського переказу" + ], + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "" + ], + "The wire transfer has been confirmed.": [ + "Термін банківського переказу" + ], + "Transaction details": [ + "Адреса рахунку" + ], + "Transfer ID": [ + "Перекази" + ], + "I have received the wire transfer": [ + "" + ], + "Orders in this wire transfer": [ "Ідентифікатор банківського переказу" ], - "Load more wire transfers preceding the first one": [ - "завантажити більше переказів до першого" + "Fee": [ + "назавжди" ], - "Expected credit": [ - "Очікуваний баланс" + "Subtotals": [ + "Загальна ціна" ], - "Confirmed": [ - "Підтверджено" + "Deposit fee": [ + "Максимальна комісія за депозит" ], - "Validated": [ - "Дійсний до" + "Wire fee": [ + "Максимальна комісія за переказ" ], - "Executed on": [ - "Виконано о" + "not ready": [ + "" ], - "yes": [ - "так" + "loading...": [ + "Завантаження..." ], - "no": [ - "ні" + "New wire transfers": [ + "Ідентифікатор банківського переказу" ], - "never": [ - "ніколи" + "Load more wire transfers preceding the first one": [ + "завантажити більше переказів до першого" ], - "unknown": [ - "невідомо" + "To be determined.": [ + "" + ], + "You confirm that the incoming wire transfer has arrived into your bank account.": [ + "" ], "Load more transfers after the last one": [ "завантажити більше переказів після останнього" ], - "Verified wire transfers": [ + "Confirmed wire transfers into bank account": [ + "підтвердити той самий токен доступу" + ], + "Show details about the incoming wire transfer.": [ "Ідентифікатор банківського переказу" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "There are no transfers to list yet": [ "Переказів ще немає, додайте більше, натиснувши знак +" ], "All accounts": [ @@ -2401,57 +2734,63 @@ strings['uk'] = { "Filter by account address": [ "фільтрувати за адресою рахунку" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ - "показувати лише замовлення, де клієнти заплатили, але банківські перекази від постачальника платежів ще не виконані" - ], - "Only show wire transfers confirmed by the merchant": [ - "показувати лише перекази, підтверджені продавцем" - ], "Verified": [ "Перевірено" ], - "Wire transfer already confirmed.": [ - "Термін банківського переказу" - ], - "I have received the wire transfer": [ - "" - ], - "Confirm the wire transfer": [ - "підтвердити той самий токен доступу" - ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], - "Time": [ - "Хронологія" - ], - "Transfer ID": [ - "Перекази" - ], "It's not the same.": [ "не співпадає" ], "You are deleting the instance with ID \"%1$s\"": [ "Ви оновлюєте токен доступу з інстанції з ідентифікатором %1$s" ], + "delete current instance": [ + "Не вдалося видалити інстанцію" + ], "Instance": [ "Інстанція" ], "Write the instance name to confirm the deletion": [ "" ], - "Purge": [ - "Очистити" - ], "All the data will be fully deleted, otherwise only the access will be removed.": [ "" ], "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "URL має неправильний формат" + ], + "Should start with +": [ + "" + ], + "A phone number consists of numbers only": [ + "" + ], + "Invalid phone number": [ + "Контактний email" + ], + "Invalid value": [ + "недійсний формат" + ], + "Max 7 lines": [ + "максимум 7 рядків" + ], + "update instance settings": [ + "Не вдалося створити інстанцію" + ], "Instance id": [ "Ідентифікатор інстанції" ], + "URL": [ + "URL" + ], + "Cancel operation": [ + "Підтверджено" + ], "Delete this instance": [ "Не вдалося видалити інстанцію" ], @@ -2461,6 +2800,9 @@ strings['uk'] = { "URL is invalid": [ "недійсний" ], + "add webhook": [ + "додати нові вебхуки" + ], "Webhook ID to use": [ "ID вебхука для використання" ], @@ -2512,9 +2854,6 @@ strings['uk'] = { "Method used by the webhook": [ "Метод, що використовується вебхуком" ], - "URL": [ - "URL" - ], "URL of the webhook where the customer will be redirected": [ "URL вебхука, куди буде перенаправлений клієнт" ], @@ -2557,6 +2896,9 @@ strings['uk'] = { "Body template used by the webhook.": [ "Шаблон тіла вебхука" ], + "delete webhook": [ + "не вдалося видалити вебхук" + ], "Webhook deleted successfully": [ "вебхук успішно видалено" ], @@ -2578,6 +2920,9 @@ strings['uk'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "Вебхуків ще немає, додайте більше, натиснувши знак +" ], + "update webhook": [ + "не вдалося видалити вебхук" + ], "Webhook updated": [ "ID вебхука для використання" ], @@ -2590,6 +2935,12 @@ strings['uk'] = { "Body template used by the webhook": [ "Шаблон тіла вебхука" ], + "Doesn't match": [ + "" + ], + "self provision instance": [ + "Не вдалося видалити інстанцію" + ], "There is another instance with this username.": [ "" ], @@ -2617,6 +2968,9 @@ strings['uk'] = { "Create": [ "Створено о" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -2626,10 +2980,10 @@ strings['uk'] = { "Resetting access to the instance \"%1$s\"": [ "Ви встановлюєте токен доступу для нової інстанції" ], - "Reset": [ + "Language": [ "" ], - "Language": [ + "Force the language settings instead of using the browser": [ "" ], "Date format": [ @@ -2641,13 +2995,13 @@ strings['uk'] = { "Merchant type": [ "Тип події" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "" ], - "Expert user": [ + "Beta tester": [ "" ], - "Taler developer": [ + "Expert user": [ "" ], "Unattended in-person offline vending": [ @@ -2662,137 +3016,83 @@ strings['uk'] = { "E-commerce site": [ "" ], - "Developer mode": [ - "" - ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Developer tools": [ "" ], - "Money pot deleted": [ - "шаблон успішно видалено" - ], - "Add new pots": [ - "додати нові шаблони" - ], - "Load more pots before the first one": [ - "завантажити більше шаблонів до першого" - ], - "Total": [ - "Загальна ціна" - ], - "Delete selected pots from the database": [ - "видалити вибраний переказ з бази даних" - ], - "Load more pots after the last one": [ - "завантажити більше шаблонів після останнього" - ], - "There are no money pots yet, add more pressing the + sign": [ - "Продуктів ще немає, додайте більше, натиснувши знак +" - ], - "Missing currency name": [ + "Enable UI tools for troubleshooting.": [ "" ], - "Currency name must be only letters": [ + "Testing features": [ "" ], - "Value can only by number": [ + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ "" ], - "The value is too high": [ + "Developer mode": [ "" ], - "The value is too precise": [ - "змінити значення на ніколи" - ], - "Invalid amount \"%1$s\": %2$s": [ - "Фіксована сума" - ], - "Descripton": [ - "Опис" - ], - "Totals": [ - "Загальна ціна" - ], - "There is already a money pot with the same id.": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "Product group deleted": [ - "Список продуктів" - ], - "Add new group": [ - "Зарахований банківський рахунок" - ], - "Load more groups before the first one": [ - "завантажити більше вебхуків до першого" - ], - "Delete selected group from the database": [ - "видалити вибраний переказ з бази даних" - ], - "Load more groups after the last one": [ - "завантажити більше шаблонів після останнього" - ], - "There are no product groups yet, add more pressing the + sign": [ - "Продуктів ще немає, додайте більше, натиснувши знак +" + "create pos access token": [ + "Встановити токен доступу" ], - "Scheduled report deleted": [ - "" + "Device name": [ + "Пристрій:" ], - "Scheduled reports": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Add new reports": [ - "додати нові шаблони" + "Payment services status": [ + "Деталі оплати" ], - "Frequency": [ - "" + "Base URL": [ + "URL статусу" ], - "Delete selected scheduled report from the database": [ - "видалити вибраний переказ з бази даних" + "Next update": [ + "ID вебхука для використання" ], - "There are no reports yet, add more pressing the + sign": [ - "Шаблонів ще немає, додайте більше, натиснувши знак +" + "This payment service is ready to be used.": [ + "Це недійсна адреса біткойн." ], - "No report generator configured in the server": [ - "" + "This payment service can't be used due to an error. Contact the service provider.": [ + "показувати лише замовлення, де клієнти заплатили, але банківські перекази від постачальника платежів ще не виконані" ], - "Contact the system administrator to create a report generator before scheduling one.": [ + "Details of the status": [ "" ], - "Description of the report. Possibly included in the report message": [ + "No payment services supported": [ "" ], - "Where the report program should send the report": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "Source": [ + "Ready until %1$s": [ "" ], - "Base URL to request the data from.": [ + "Next update will be at %1$s": [ "" ], - "Type of the data source": [ - "Назва категорії" - ], - "Program": [ + "Error": [ "" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ + "This payment service is unavailable.": [ "" ], - "Report frequency": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], "Welcome!": [ "" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], "You need to associate a bank account to receive revenue.": [ "URI, що вказує на банківський рахунок для зарахування доходу." ], - "Without this the merchant backend will refuse to create new orders.": [ - "" + "Without this the server will refuse to create new orders.": [ + "використовувати шаблон для створення нового замовлення." ], "Hide for today": [ "Сховати на сьогодні" @@ -2803,90 +3103,189 @@ strings['uk'] = { "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "" ], - "The request reached a timeout, check your connection.": [ - "" + "No 'admin' instance configured yet.": [ + "Інстанція 'default' ще не налаштована." ], - "The request was cancelled.": [ - "" + "Create an 'admin' instance to begin using the merchant portal.": [ + "Створіть інстанцію 'default', щоб почати використовувати бекофіс продавця." ], - "Too many requests were made to the server, and this action was throttled.": [ - "" + "delete bank account": [ + "Виберіть один рахунок" + ], + "The bank account has been deleted.": [ + "Банківський рахунок успішно видалено." + ], + "Delete account": [ + "Виберіть один рахунок" + ], + "Delete the account \"%1$s\"": [ + "не вдалося видалити продукт" ], - "The server's response was malformed.": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Could not complete the request due to a network problem.": [ + "If you delete the account with name %1$s its information will be lost": [ "" ], - "Unexpected request error.": [ - "Несподівана помилка" + "Deleting an account can't be undone.": [ + "наступний токен доступу, який буде використано" ], - "Unexpected error.": [ - "Несподівана помилка" + "Bank accounts": [ + "Банківський рахунок" ], - "Add new instance": [ - "додати нову інстанцію" + "Add new account": [ + "Зарахований банківський рахунок" ], - "Edit": [ - "Редагувати" + "Owner's name": [ + "Назва бізнесу" ], - "Change password": [ - "" + "Delete selected accounts from the database": [ + "видалити вибраний переказ з бази даних" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ - "Ще немає інстанцій, додайте більше, натиснувши знак +" + "There are no accounts yet, add more pressing the + sign": [ + "Продуктів ще немає, додайте більше, натиснувши знак +" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ - "Інстанція \"%1$s\" (ID: %2$s) була видалена" + "No bank account configured yet.": [ + "Інстанція 'default' ще не налаштована." ], - "Only show active instances": [ - "Показувати тільки активні інстанції" + "Without this information you cannot create new payment orders.": [ + "використовувати шаблон для створення нового замовлення." ], - "Active": [ - "Активні" + "This account is not ready to be used.": [ + "Це недійсна адреса біткойн." ], - "Only show deleted instances": [ - "Показувати тільки видалені інстанції" + "There are pending actions related to KYC.": [ + "Керування списком продуктів у замовленні." ], - "Deleted": [ - "Видалено" + "More details.": [ + "Деталі оплати" ], - "Show all instances": [ - "Показати всі інстанції" + "You must complete kyc requirements to receive payments.": [ + "URI, що вказує на банківський рахунок для зарахування доходу." ], - "Delete instance": [ - "Не вдалося видалити інстанцію" + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ + "" ], - "Delete the instance \"%1$s\"": [ - "завантажити новіші шаблони" + "Invalid url": [ + "недійсний формат" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "URL must end with a '/'": [ "" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "URL must not contain params": [ "" ], - "Deleting an instance %1$s": [ - "завантажити новіші шаблони" + "URL must not hash param": [ + "" ], - "This cannot be undone!": [ - "не може бути порожнім" + "change bank account": [ + "Банківський рахунок" ], - "Purge the instance": [ - "Не вдалося видалити інстанцію" + "test revenue api": [ + "" ], - "Purge the instance \"%1$s\"": [ - "Ви встановлюєте токен доступу для нової інстанції" + "Server replied with \"bad request\".": [ + "Відповідь сервера з кодом помилки." ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Unauthorized, check credentials.": [ "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ + "The endpoint does not seem to be a Taler Revenue API.": [ "" ], - "Purging an instance %1$s": [ + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "" + ], + "Unsupported type of account": [ + "" + ], + "Account:": [ + "Рахунок:" + ], + "Account details": [ + "Адреса рахунку" + ], + "Extra subject": [ + "Призначення" + ], + "Additional text to include in the wire transfer subject when settling the payment": [ + "" + ], + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "" + ], + "Endpoint URL": [ + "" + ], + "From where the merchant can download information about incoming wire transfers to this account": [ + "" + ], + "Auth type": [ + "Тип події" + ], + "Choose the authentication type for the account info URL": [ + "" + ], + "Without authentication": [ + "" + ], + "With username and password": [ + "" + ], + "With token": [ + "Створити токен" + ], + "Do not change": [ + "URL обмінника" + ], + "Username to access the account information.": [ + "" + ], + "Password to access the account information.": [ + "" + ], + "Access token to access the account information.": [ + "" + ], + "Match": [ + "" + ], + "Check where the information match against the server info.": [ + "" + ], + "Compare info from server with account form": [ + "" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "Банківський рахунок" + ], + "The instance does not exist.": [ + "замовлення не знайдено" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "Відповідь сервера з кодом помилки." + ], + "Check if the information matches the server info.": [ + "" + ], + "Verify details with server": [ "" ], + "create instance and login": [ + "Не вдалося видалити інстанцію" + ], + "Instance created": [ + "Ідентифікатор інстанції" + ], + "Please complete the marked fields and choose authorization method": [ + "Необхідно заповнити позначені поля та вибрати метод авторизації" + ], "checking compatibility with server...": [ "" ], @@ -2902,6 +3301,9 @@ strings['uk'] = { "Business Name": [ "Назва бізнесу" ], + "update product group": [ + "Товари" + ], "Available statistics": [ "" ], @@ -2995,6 +3397,9 @@ strings['uk'] = { "title\u0004%1$s: New access token": [ "Новий токен доступу" ], + "title\u0004%1$s: New POS access token": [ + "Новий токен доступу" + ], "title\u0004New instance": [ "додати нову інстанцію" ], @@ -3006,7 +3411,7 @@ strings['uk'] = { "domain": "messages", "plural_forms": "nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;", "lang": "uk", - "completeness": 62 + "completeness": 63 }; strings['tr'] = { @@ -3035,7 +3440,7 @@ strings['tr'] = { "Confirm": [ "" ], - "Correct form": [ + "Correct the form": [ "" ], "Comparing account details": [ @@ -3095,6 +3500,12 @@ strings['tr'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "" ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "" + ], + "Bank app": [ + "Banka hesabı" + ], "Step 1:": [ "" ], @@ -3125,13 +3536,10 @@ strings['tr'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "" ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ - "" - ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "" ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "" ], "Operation in progress...": [ @@ -3173,13 +3581,16 @@ strings['tr'] = { "%1$ssec": [ "" ], - "Change value to never": [ + "Change the value to never": [ "" ], - "Change value to empty": [ + "Change the value to empty": [ + "" + ], + "The file is not an image": [ "" ], - "Image must be smaller than 1 MB": [ + "The image was normalized to be smaller than 1 MB": [ "" ], "Add": [ @@ -3248,6 +3659,9 @@ strings['tr'] = { "Configuration": [ "" ], + "KYC Status": [ + "Hesap" + ], "OTP Devices": [ "" ], @@ -3269,6 +3683,9 @@ strings['tr'] = { "Personalization": [ "" ], + "Payment services": [ + "Hesap" + ], "Instances": [ "" ], @@ -3281,6 +3698,21 @@ strings['tr'] = { "Log out": [ "" ], + "Select one...": [ + "" + ], + "Days": [ + "" + ], + "Hours": [ + "" + ], + "Minutes": [ + "" + ], + "Seconds": [ + "" + ], "Username": [ "" ], @@ -3335,7 +3767,7 @@ strings['tr'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -3344,6 +3776,12 @@ strings['tr'] = { "Time customers have to pay an order before the offer expires by default.": [ "" ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "" + ], "Refund delay": [ "" ], @@ -3353,13 +3791,13 @@ strings['tr'] = { "Wire transfer delay": [ "" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "" ], "Wire transfer rounding": [ "" ], - "Interval to which wire deadlines should be rounded up to.": [ + "Rounding interval for wire deadlines.": [ "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ @@ -3392,46 +3830,43 @@ strings['tr'] = { "To year": [ "" ], - "Expired": [ - "" - ], - "Required": [ + "Can't paste this content. Please copy the 8 digits again.": [ "" ], - "Unauthorized": [ + "Resend code possible in %1$s seconds.": [ "" ], - "The code is not correct.": [ + "Resend code possible in less than one minute.": [ "" ], - "The challenge is not known anymore.": [ + "Resend code possible in less than 5 minutes.": [ "" ], - "Too many attempts trying to solve the challenge.": [ + "Resend will be possible after %1$s": [ "" ], - "Validation code sent.": [ + "Expired": [ "" ], - "The verification code sent to the phone number ending with \"%1$s\"": [ + "Required": [ "" ], - "The verification code sent to the email address starting with \"%1$s\"": [ + "verify code": [ "" ], - "Verification code": [ + "Unauthorized": [ "" ], - "It will expire at %1$s": [ + "The code is not correct.": [ "" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ + "The challenge is no longer valid.": [ "" ], - "Back": [ + "Too many attempts trying to solve the challenge.": [ "" ], - "Verify": [ + "send challenge": [ "" ], "Failed to send the verification code.": [ @@ -3440,7 +3875,7 @@ strings['tr'] = { "The request was valid, but the server is refusing action.": [ "" ], - "The backend is not aware of the specified MFA challenge.": [ + "The server is not aware of the specified MFA challenge.": [ "" ], "Code transmission failed.": [ @@ -3452,514 +3887,493 @@ strings['tr'] = { "It is too early to request another transmission of the challenge.": [ "" ], - "Multi-factor authentication required.": [ + "Validation code sent.": [ "" ], - "You need to complete all of this requirements.": [ + "The verification code sent to the phone \" %1$s\"": [ "" ], - "You need to complete at least one of this requirements.": [ + "The verification code sent to the phone number ending with \"%1$s\"": [ "" ], - "An SMS to the phone number ending with %1$s": [ + "The verification code sent to the email address \" %1$s\"": [ "" ], - "An email to the address starting with %1$s": [ + "The verification code sent to the email address starting with \"%1$s\"": [ "" ], - "You have to wait until %1$s to send a new code.": [ + "Verification code": [ "" ], - "I have a code": [ + "Code expired.": [ "" ], - "Send me a message": [ + "Didn't received the code?": [ "" ], - "Logged in": [ + "Resend": [ "" ], - "Not found": [ + "Verify": [ "" ], - "Login required": [ + "The code transmission failed.": [ "" ], - "Instance name.": [ + "The challenge is already solved.": [ "" ], - "Instance password.": [ + "Multi-factor authentication required.": [ "" ], - "Forgot password": [ + "You must complete all of these requirements.": [ "" ], - "Create new account": [ - "Banka hesabı" + "You need to complete at least one of this requirements.": [ + "" ], - "Invalid": [ + "An SMS to the phone number ending with %1$s": [ "" ], - "Doesn't have the pattern of an email": [ + "An email to the address starting with %1$s": [ "" ], - "Should start with +": [ + "Complete": [ "" ], - "A phone number consists of numbers only": [ + "This is not a valid Bitcoin address.": [ "" ], - "Invalid value": [ - "Geçerlilik" + "This is not a valid Ethereum address.": [ + "" ], - "Max 7 lines": [ + "This is not a valid host.": [ "" ], - "Doesn't match": [ + "IBANs usually have more than 4 digits.": [ "" ], - "Instance created": [ + "IBANs usually have fewer than 34 digits.": [ "" ], - "Unauthorized.": [ + "The IBAN's country code could not be retrieved.": [ "" ], - "Conflict.": [ + "The IBAN is invalid because the checksum is wrong.": [ "" ], - "Not found.": [ + "This account is not allowed.": [ "" ], - "New password": [ + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ "" ], - "Next password to be used": [ + "Wire method": [ "" ], - "Repeat password": [ + "Select the method you want to use to transfer your earnings to your business account.": [ "" ], - "Confirm the same password": [ + "Select a wire method...": [ "" ], - "Please complete the marked fields and choose authorization method": [ + "Routing": [ "" ], - "Confirm operation": [ - "Kasaba konumu" + "Routing number": [ + "Bina numarası" ], - "Check the password.": [ - "" + "Account": [ + "Hesap" ], - "Instance not found.": [ - "" + "Account number": [ + "Hesap" ], - "Description": [ + "Code": [ "" ], - "Helps you remember where this access token is being used before deleting it.": [ + "Business Identifier Code": [ "" ], - "Duration": [ + "International Bank Account Number": [ "" ], - "Time the access token will be valid.": [ + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ "" ], - "Refreshable access tokens can pose a security risk!": [ + "Unified Payment Interface": [ "" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "Bitcoin protocol": [ "" ], - "Scope": [ + "Ethereum protocol": [ "" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "Interledger protocol": [ "" ], - "Allows all operations without limit.": [ + "Enter the data without a scheme. A subpath may be included:": [ "" ], - "Allows all operations to read information.": [ + "Cyclos host": [ "" ], - "Allows the creation of orders and checking of payment status.": [ - "" + "cyclos account": [ + "Hesap" ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ + "Name of the account holder": [ "" ], - "Allows the creation of orders, checking of payment status and refunds.": [ + "John Doe": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "Legal name of the person holding the account.": [ "" ], - "Allows all operations to read information with extendable expiration time.": [ + "The request reached a timeout, check your connection.": [ "" ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "The request was cancelled.": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "Too many requests were made to the server and this action was throttled.": [ "" ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "The server's response was malformed, please report.": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "Could not complete the request due to a network problem.": [ "" ], - "All (refreshable)": [ + "Unexpected request error, please report.": [ "" ], - "Spa": [ + "Unexpected error.": [ "" ], - "Spa (refreshable)": [ + "login": [ "" ], - "Choose one": [ + "Logged in": [ "" ], - "Read only": [ + "Wrong password.": [ "" ], - "All": [ + "The account doesn't exist.": [ "" ], - "Order simple": [ + "Login required": [ "" ], - "Order Point-of-Sale": [ + "Instance name.": [ "" ], - "Order management": [ + "Instance password.": [ "" ], - "Order full": [ + "Forgot password": [ "" ], - "Read only (refreshable)": [ - "" + "Create new account": [ + "Banka hesabı" ], - "Order simple (refreshable)": [ + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ "" ], - "Order Point-of-Sale (refreshable)": [ + "Testing environment": [ "" ], - "Order management (refreshable)": [ + "This server is meant for testing features and configurations. Don't use your personal information here.": [ "" ], - "Order full (refreshable)": [ + "Delete": [ "" ], - "Current password": [ - "" + "Add new instance": [ + "Banka hesabı" ], - "Please complete the marked fields": [ + "ID": [ "" ], - "Access token created": [ + "Name": [ "" ], - "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "Edit": [ "" ], - "Token": [ + "Change password": [ "" ], - "This token will never expire": [ + "Purge": [ "" ], - "This token will be available until %1$s": [ + "There are no instances yet. Add one by pressing the '+' sign.": [ "" ], - "No 'admin' instance configured yet.": [ - "" + "delete instance": [ + "Banka hesabı" ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ "" ], - "Create access token": [ - "Oluşturulma" - ], - "Load more devices before the first one": [ + "Unauthorized.": [ "" ], - "Load first page": [ + "Not found.": [ "" ], - "Created at": [ - "Oluşturulma" - ], - "Expires at": [ + "Conflict.": [ "" ], - "Never": [ + "Only show active instances": [ "" ], - "Remove this access token": [ + "Active": [ "" ], - "Delete": [ + "Only show deleted instances": [ "" ], - "Load more devices after the last one": [ + "Deleted": [ "" ], - "Load next page": [ + "Show all instances": [ "" ], - "There are no active sessions yet, add one by pressing the + sign": [ + "All": [ "" ], - "Forbidden.": [ + "Delete instance": [ "" ], - "Delete access token": [ - "Oluşturulma" - ], - "Deleting an access token cannot be undone.": [ + "Delete the instance \"%1$s\"": [ "" ], - "This is not a valid Bitcoin address.": [ + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ "" ], - "This is not a valid Ethereum address.": [ + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ "" ], - "This is not a valid host.": [ + "Deleting an instance %1$s": [ "" ], - "IBANs usually have more than 4 digits.": [ + "This cannot be undone!": [ "" ], - "IBANs usually have fewer than 34 digits.": [ + "Purge the instance": [ "" ], - "The IBAN's country code could not be retrieved.": [ + "Purge the instance \"%1$s\"": [ "" ], - "The IBAN is invalid because the checksum is wrong.": [ + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ "" ], - "This account is not allowed.": [ + "The instance will disappear from your list and you will no longer be able to access its data.": [ "" ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ + "Purging an instance %1$s": [ "" ], - "Wire method": [ - "" + "create access token": [ + "Oluşturulma" ], - "Select the method you want to use to transfer your earnings to your business account.": [ + "Check the password.": [ "" ], - "Select a wire method...": [ + "Instance not found.": [ "" ], - "Routing": [ + "Description": [ "" ], - "Routing number": [ - "Bina numarası" - ], - "Account": [ - "Hesap" - ], - "Account number": [ - "Hesap" - ], - "Code": [ + "Helps you remember where this access token is being used before deleting it.": [ "" ], - "Business Identifier Code": [ + "Duration": [ "" ], - "International Bank Account Number": [ + "Time the access token will be valid.": [ "" ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "Refreshable access tokens can pose a security risk!": [ "" ], - "Unified Payment Interface": [ + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ "" ], - "Bitcoin protocol": [ + "Scope": [ "" ], - "Ethereum protocol": [ + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ "" ], - "Interledger protocol": [ + "Allows all operations without limit.": [ "" ], - "Enter the data without a scheme. A subpath may be included:": [ + "Allows all operations to read information.": [ "" ], - "Cyclos host": [ + "Allows the creation of orders and checking of payment status.": [ "" ], - "cyclos account": [ - "Hesap" - ], - "Name of the account holder": [ + "Allows the creation of orders, checking of payment status and inventory locking.": [ "" ], - "John Doe": [ + "Allows the creation of orders, checking of payment status and refunds.": [ "" ], - "Legal name of the person holding the account.": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ "" ], - "Invalid url": [ - "Geçerlilik" - ], - "URL must end with a '/'": [ + "Allows all operations to read information with extendable expiration time.": [ "" ], - "URL must not contain params": [ + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ "" ], - "URL must not hash param": [ + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ "" ], - "Conflict": [ + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ "" ], - "Server replied with \"bad request\".": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ "" ], - "Unauthorized, check credentials.": [ + "All (refreshable)": [ "" ], - "The endpoint does not seem to be a Taler Revenue API.": [ + "Spa": [ "" ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "Spa (refreshable)": [ "" ], - "Unsupported type of account": [ + "Choose one": [ "" ], - "Account:": [ - "Hesap:" - ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Read only": [ "" ], - "Endpoint URL": [ + "Order simple": [ "" ], - "From where the merchant can download information about incoming wire transfers to this account": [ + "Order Point-of-Sale": [ "" ], - "Auth type": [ + "Order management": [ "" ], - "Choose the authentication type for the account info URL": [ + "Order full": [ "" ], - "Without authentication": [ + "Read only (refreshable)": [ "" ], - "With username and password": [ + "Order simple (refreshable)": [ "" ], - "With token": [ + "Order Point-of-Sale (refreshable)": [ "" ], - "Do not change": [ + "Order management (refreshable)": [ "" ], - "Username to access the account information.": [ + "Order full (refreshable)": [ "" ], - "Password to access the account information.": [ + "Current password": [ "" ], - "Access token to access the account information.": [ + "Please complete the marked fields": [ "" ], - "Match": [ + "Confirm operation": [ + "Kasaba konumu" + ], + "Access token created": [ "" ], - "Check where the information match against the server info.": [ + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ "" ], - "Compare info from server with account form": [ + "Token": [ "" ], - "Test": [ + "This token will never expire": [ "" ], - "Server didn't like the request we made.": [ + "This token will be available until %1$s": [ "" ], - "Account details": [ - "Hesap" + "Create access token": [ + "Oluşturulma" ], - "Check if the information matches the server info.": [ + "Load more devices before the first one": [ "" ], - "The bank account has been deleted.": [ + "Load first page": [ "" ], - "Delete account": [ + "Created at": [ "Oluşturulma" ], - "Delete the account \"%1$s\"": [ - "Banka hesabı" - ], - "Invalid payto: \"%1$s\"": [ + "Expires at": [ "" ], - "If you delete the account with name %1$s its information will be lost": [ + "Never": [ "" ], - "Deleting an account can't be undone.": [ + "Remove this access token": [ "" ], - "Bank accounts": [ - "Banka hesabı" - ], - "Add new account": [ - "Banka hesabı" + "Load more devices after the last one": [ + "" ], - "Owner's name": [ + "Load next page": [ "" ], - "Delete selected accounts from the database": [ + "There are no active sessions yet, add one by pressing the + sign": [ "" ], - "There are no accounts yet, add more pressing the + sign": [ + "delete access token": [ + "Oluşturulma" + ], + "Forbidden.": [ "" ], - "You must provide a bank account to receive payments.": [ + "New point-of-sale access": [ "" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ + "Delete access token": [ + "Oluşturulma" + ], + "Deleting an access token cannot be undone.": [ "" ], "Invalid. Please use only letters and numbers.": [ "" ], - "Name": [ + "add category": [ + "" + ], + "Not found": [ "" ], "Category name": [ "" ], - "Category deleted": [ + "delete category": [ "" ], - "Add new devices": [ + "Category deleted": [ "" ], - "ID": [ + "Add new devices": [ "" ], "Total products": [ @@ -3971,6 +4385,9 @@ strings['tr'] = { "There are no categories yet, add more pressing the + sign": [ "" ], + "update category": [ + "" + ], "Id:": [ "" ], @@ -3989,25 +4406,37 @@ strings['tr'] = { "There are no products in this category.": [ "" ], - "Account's KYC status": [ - "Hesap" + "create product group": [ + "Ürünler" ], - "Exchange": [ + "delete product group": [ + "Ürünler" + ], + "Product group deleted": [ + "Ürünler" + ], + "Add new group": [ + "Banka hesabı" + ], + "Load more groups before the first one": [ "" ], - "Status": [ + "Delete selected group from the database": [ "" ], - "Ok": [ + "Load more groups after the last one": [ "" ], - "Action required": [ + "There are no product groups yet, add more pressing the + sign": [ "" ], - "Warning": [ + "Account's KYC status": [ + "Hesap" + ], + "Exchange": [ "" ], - "Error": [ + "Status": [ "" ], "Bank account verification required.": [ @@ -4016,7 +4445,7 @@ strings['tr'] = { "More information required.": [ "" ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "" ], "Ready": [ @@ -4028,7 +4457,7 @@ strings['tr'] = { "Payment service internal error. Contact administrator or check again later.": [ "" ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "" ], "Payment service timeout. Contact administrator or check again later.": [ @@ -4040,7 +4469,7 @@ strings['tr'] = { "Incompatible core banking system.": [ "" ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "" ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -4052,25 +4481,31 @@ strings['tr'] = { "No pending kyc verification!": [ "" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "" + ], + "The account for wire transfers is invalid.": [ "" ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "" ], - "No exchange keys": [ + "No contact with the payment service yet.": [ "" ], - "The backend service is still synchronizing with the payment service provider.": [ + "The server is still synchronizing with the payment service provider.": [ "" ], "No transfers can be made from this account": [ "" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "" + ], + "Test": [ "" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -4094,7 +4529,7 @@ strings['tr'] = { "Logic bug": [ "" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "" ], "Internal error": [ @@ -4106,7 +4541,7 @@ strings['tr'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "" ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -4115,13 +4550,16 @@ strings['tr'] = { "Unsupported account": [ "" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "" ], - "Change value to unknown date": [ + "Change value to empty": [ + "" + ], + "Change value to never": [ "" ], "Enter description or id": [ @@ -4133,7 +4571,7 @@ strings['tr'] = { "You must enter a valid product identifier.": [ "" ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -4148,7 +4586,10 @@ strings['tr'] = { "How many products will be added": [ "" ], - "Add from inventory": [ + "Add it to the order": [ + "" + ], + "Invalid": [ "" ], "This product has %1$s applicable taxes configured.": [ @@ -4229,22 +4670,28 @@ strings['tr'] = { "Either fulfillment url or fulfillment message must be specified.": [ "" ], - "is not a valid URL": [ + "Invalid URL": [ + "Geçerlilik" + ], + "create order": [ + "Oluşturulma" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ "" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "Conflict": [ "" ], "Product with ID \"%1$s\" is out of stock.": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "" ], "Manage products in order": [ "" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "" ], "Manage list of products in the order.": [ @@ -4325,7 +4772,7 @@ strings['tr'] = { "Wire transfer time": [ "" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "" ], "Auto-refund time": [ @@ -4373,6 +4820,9 @@ strings['tr'] = { "Custom field name": [ "Bina adı" ], + "new extra field": [ + "" + ], "Disabled": [ "" ], @@ -4382,8 +4832,8 @@ strings['tr'] = { "Deadline at %1$s": [ "" ], - "Select date to show nearby orders": [ - "" + "get product details": [ + "Hesap" ], "Only show unpaid orders": [ "" @@ -4415,10 +4865,7 @@ strings['tr'] = { "Remove all filters": [ "" ], - "Clear date filter": [ - "" - ], - "Jump to date (%1$s)": [ + "authorize refund": [ "" ], "Gone.": [ @@ -4433,15 +4880,33 @@ strings['tr'] = { "Order id": [ "" ], + "Clear date filter": [ + "" + ], + "Select date to show nearby orders": [ + "" + ], + "Jump to date (%1$s)": [ + "" + ], "Instance unknown": [ "" ], "Order unknown": [ "" ], + "This order is not refundable": [ + "" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "Oluşturulma" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -4475,12 +4940,15 @@ strings['tr'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "" ], "refund": [ "" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "" ], @@ -4508,7 +4976,7 @@ strings['tr'] = { "now": [ "" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -4520,6 +4988,9 @@ strings['tr'] = { "This wire transfer has been notified by the payment service provider.": [ "" ], + "This wire transfer has been notified manually or by the banking system.": [ + "" + ], "This refund is waiting to be claimed by the customer.": [ "" ], @@ -4529,7 +5000,7 @@ strings['tr'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -4568,19 +5039,19 @@ strings['tr'] = { "Wire transfer deadline": [ "" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "" ], - "Time indicating when the order should be delivered": [ + "Auto-refund delay": [ "" ], - "Where the order will be delivered": [ + "How long the wallet should try to get an automatic refund for the purchase": [ "" ], - "Auto-refund delay": [ + "Time indicating when the order should be delivered": [ "" ], - "How long the wallet should try to get an automatic refund for the purchase": [ + "Where the order will be delivered": [ "" ], "Extra info": [ @@ -4625,29 +5096,29 @@ strings['tr'] = { "Product list": [ "Ürünler" ], - "refund missed: %1$s": [ + "The contract terms have a v1 order without choices_index.": [ "" ], - "refund missed: %1$s: %2$s": [ + "The contract terms have a v1 order with a bad choices_index.": [ "" ], - "refund created: %1$s": [ + "refund missed: %1$s": [ "" ], - "refund created: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "" ], - "refund taken: %1$s": [ + "refund created: %1$s": [ "" ], - "refund taken: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "" ], - "The contract terms has a v1 order without choices_index.": [ + "refund taken: %1$s": [ "" ], - "The contract terms has a v1 order with a bad choices_index.": [ - "" + "refund taken: %1$s : %2$s": [ + "Geçerlilik" ], "wired %1$s": [ "" @@ -4655,15 +5126,27 @@ strings['tr'] = { "wire deadline": [ "" ], - "Wired": [ + "Related wire transfers": [ "" ], + "Unconfirmed": [ + "Kasaba konumu" + ], + "Confirmed": [ + "Kasaba konumu" + ], "Refund order": [ "" ], "Not refundable": [ "" ], + "No wire transfer reported": [ + "" + ], + "Check wire transfers": [ + "" + ], "Next event in": [ "" ], @@ -4685,8 +5168,8 @@ strings['tr'] = { "Refund URI": [ "" ], - "Pay at": [ - "" + "Payment link": [ + "Hesap" ], "Order status URL": [ "" @@ -4697,15 +5180,36 @@ strings['tr'] = { "Unknown order status. This is an error, please contact the administrator.": [ "" ], + "Back": [ + "" + ], + "never": [ + "" + ], + "unknown": [ + "" + ], + "confirmed": [ + "Kasaba konumu" + ], + "unconfirmed": [ + "Kasaba konumu" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "" ], - "Just letters and numbers from 2 to 7": [ + "Use only letters and digits (2–7).": [ "" ], "The size of the key must be 32 characters": [ "" ], + "add otp device": [ + "" + ], "Internal ID on the system": [ "" ], @@ -4739,6 +5243,9 @@ strings['tr'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "" ], + "delete otp device": [ + "" + ], "OTP devices": [ "" ], @@ -4748,6 +5255,9 @@ strings['tr'] = { "There are no devices to list yet, add more by pressing the + sign": [ "" ], + "update otp device": [ + "" + ], "Template id is unknown": [ "" ], @@ -4781,9 +5291,24 @@ strings['tr'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "" + ], + "Next password to be used": [ + "" + ], + "Repeat password": [ + "" + ], + "Confirm the same password": [ + "" + ], "Confirm change": [ "Kasaba konumu" ], + "change password": [ + "" + ], "Testing password change": [ "" ], @@ -4793,16 +5318,76 @@ strings['tr'] = { "The current password is wrong.": [ "" ], + "change instance password": [ + "" + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "Hesap" ], + "create money pot": [ + "Banka hesabı" + ], + "There is already a money pot with the same id.": [ + "" + ], + "delete money pot": [ + "Oluşturulma" + ], + "Money pot deleted": [ + "" + ], + "Add new pots": [ + "Banka hesabı" + ], + "Load more pots before the first one": [ + "" + ], + "Total": [ + "Ürünler" + ], + "Delete selected pots from the database": [ + "" + ], + "Load more pots after the last one": [ + "" + ], + "There are no money pots yet, add more pressing the + sign": [ + "" + ], "Add element to the list": [ "" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "" + ], + "Invalid amount \"%1$s\": %2$s": [ + "Geçerlilik" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "" + ], + "Totals": [ + "Ürünler" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "" ], "Manage stock": [ @@ -4817,13 +5402,13 @@ strings['tr'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "" ], - "Incoming": [ + "Current": [ "" ], - "Lost": [ + "Incoming": [ "" ], - "Current": [ + "Lost": [ "" ], "Remove stock control for this product": [ @@ -4904,6 +5489,9 @@ strings['tr'] = { "Search by group name or id": [ "" ], + "add product": [ + "Ürünler" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -4919,6 +5507,9 @@ strings['tr'] = { "Add product to inventory": [ "" ], + "update product": [ + "Ürünler" + ], "Product not found.": [ "" ], @@ -4931,6 +5522,12 @@ strings['tr'] = { "Sold": [ "" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "" + ], "Free": [ "" ], @@ -4973,6 +5570,9 @@ strings['tr'] = { "There are no products to list yet, add more by pressing the + sign": [ "" ], + "delete product": [ + "Ürünler" + ], "Product (ID: %1$s) has been deleted": [ "" ], @@ -4997,76 +5597,139 @@ strings['tr'] = { "Product id:": [ "Ürünler" ], - "Your browser does not support the canvas element.": [ + "It should start with /": [ "" ], - "Bad gateway": [ + "create scheduled report": [ "" ], - "Service unavailable": [ + "No report generator configured in the server": [ "" ], - "Select date from which to show statistics": [ + "Contact the system administrator to create a report generator before scheduling one.": [ "" ], - "Show chart": [ + "Description of the report. Possibly included in the report message": [ "" ], - "Orders chart": [ + "Where the report program should send the report": [ "" ], - "Show table": [ + "Source": [ "" ], - "Orders table": [ + "Base URL to request the data from.": [ "" ], - "Start from (%1$s)": [ + "Type of the data source": [ "" ], - "Orders statistics": [ + "Program": [ "" ], - "Since": [ + "Name of the program to use to transmit the report defined by the server configuration.": [ "" ], - "No order statistics yet.": [ + "Report frequency": [ "" ], - "# of orders since": [ + "Report frequency shift": [ "" ], - "hour": [ + "delete scheduled report": [ "" ], - "day": [ + "Scheduled report deleted": [ "" ], - "week": [ + "Scheduled reports": [ "" ], - "weeks": [ + "Add new reports": [ + "Banka hesabı" + ], + "Frequency": [ "" ], - "month": [ + "Delete selected scheduled report from the database": [ "" ], - "months": [ + "There are no reports yet, add more pressing the + sign": [ "" ], - "quarter": [ + "update scheduled report": [ "" ], - "quarters": [ + "Your browser does not support the canvas element.": [ "" ], - "years": [ + "Bad gateway": [ "" ], - "Revenue chart": [ + "Service unavailable": [ "" ], - "Revenue table": [ + "Show chart": [ + "" + ], + "Orders chart": [ + "" + ], + "Show table": [ + "" + ], + "Orders table": [ + "" + ], + "Select date from which to show statistics": [ + "" + ], + "Start from (%1$s)": [ + "" + ], + "Orders statistics": [ + "" + ], + "Since": [ + "" + ], + "No order statistics yet.": [ + "" + ], + "# of orders since": [ + "" + ], + "hour": [ + "" + ], + "day": [ + "" + ], + "week": [ + "" + ], + "weeks": [ + "" + ], + "month": [ + "" + ], + "months": [ + "" + ], + "quarter": [ + "" + ], + "quarters": [ + "" + ], + "years": [ + "" + ], + "Revenue chart": [ + "" + ], + "Revenue table": [ "" ], "Revenue statistics filter": [ @@ -5105,6 +5768,9 @@ strings['tr'] = { "Too short": [ "" ], + "add template": [ + "Banka hesabı" + ], "You don't have enough permissions.": [ "" ], @@ -5207,6 +5873,9 @@ strings['tr'] = { "There are no templates to list yet, add more by pressing the + sign": [ "" ], + "delete template": [ + "Banka hesabı" + ], "Jump to template with the given template ID": [ "" ], @@ -5219,7 +5888,7 @@ strings['tr'] = { "Delete the template \"%1$s\"": [ "" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "" ], "Deleting a template cannot be undone.": [ @@ -5228,6 +5897,9 @@ strings['tr'] = { "Print": [ "" ], + "update template": [ + "Banka hesabı" + ], "The template configuration needs to be fixed.": [ "" ], @@ -5249,6 +5921,12 @@ strings['tr'] = { "An order summary is required": [ "" ], + "create order from template": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "" ], @@ -5258,12 +5936,30 @@ strings['tr'] = { "Amount of the order": [ "" ], + "Expiration should be after start date": [ + "" + ], + "Granularity can't be greater than duration.": [ + "" + ], + "create token family": [ + "Oluşturulma" + ], + "There is another token family with this ID. Choose another one.": [ + "" + ], "Slug": [ "" ], "Token family slug to use in URLs (for internal use only)": [ "" ], + "User-readable token family name": [ + "" + ], + "Token family description for customers": [ + "" + ], "Kind": [ "" ], @@ -5276,7 +5972,7 @@ strings['tr'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ @@ -5285,7 +5981,7 @@ strings['tr'] = { "The last day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -5297,10 +5993,25 @@ strings['tr'] = { "Validity Granularity": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ + "" + ], + "1 minute": [ + "" + ], + "1 hour": [ + "" + ], + "1 day": [ + "" + ], + "30 days": [ + "" + ], + "90 days": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ + "365 days": [ "" ], "Token Families": [ @@ -5321,6 +6032,9 @@ strings['tr'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "" ], + "delete token family": [ + "Oluşturulma" + ], "Token family has been deleted.": [ "" ], @@ -5339,85 +6053,88 @@ strings['tr'] = { "can't be undone": [ "" ], - "Token Family: %1$s": [ - "" + "update token family": [ + "Oluşturulma" ], - "User-readable token family name": [ + "Token Family: %1$s": [ "" ], - "Token family description for customers": [ + "inform wire transfer": [ "" ], - "Incoming wire transfers": [ + "Wire transfer already confirmed.": [ "" ], - "Load more wire transfers preceding the first one": [ + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ "" ], - "Expected credit": [ + "The wire transfer has been confirmed.": [ "" ], - "Confirmed": [ - "Kasaba konumu" + "Transaction details": [ + "Hesap" ], - "Validated": [ + "Transfer ID": [ "" ], - "Executed on": [ + "I have received the wire transfer": [ "" ], - "yes": [ + "Orders in this wire transfer": [ "" ], - "no": [ + "Fee": [ "" ], - "never": [ - "" + "Subtotals": [ + "Ürünler" ], - "unknown": [ + "Deposit fee": [ "" ], - "Load more transfers after the last one": [ + "Wire fee": [ "" ], - "Verified wire transfers": [ + "not ready": [ "" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "loading...": [ "" ], - "All accounts": [ - "Hesap" + "New wire transfers": [ + "" ], - "Filter by account address": [ + "Load more wire transfers preceding the first one": [ "" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ + "To be determined.": [ "" ], - "Only show wire transfers confirmed by the merchant": [ + "You confirm that the incoming wire transfer has arrived into your bank account.": [ "" ], - "Verified": [ + "Load more transfers after the last one": [ "" ], - "Wire transfer already confirmed.": [ + "Confirmed wire transfers into bank account": [ "" ], - "I have received the wire transfer": [ + "Show details about the incoming wire transfer.": [ "" ], - "Confirm the wire transfer": [ + "There are no transfers to list yet": [ "" ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "All accounts": [ + "Hesap" + ], + "Filter by account address": [ "" ], - "Time": [ + "Verified": [ "" ], - "Transfer ID": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], "It's not the same.": [ @@ -5426,24 +6143,51 @@ strings['tr'] = { "You are deleting the instance with ID \"%1$s\"": [ "" ], + "delete current instance": [ + "Banka hesabı" + ], "Instance": [ "" ], "Write the instance name to confirm the deletion": [ "" ], - "Purge": [ - "" - ], "All the data will be fully deleted, otherwise only the access will be removed.": [ "" ], "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "" + ], + "Should start with +": [ + "" + ], + "A phone number consists of numbers only": [ + "" + ], + "Invalid phone number": [ + "Geçerlilik" + ], + "Invalid value": [ + "Geçerlilik" + ], + "Max 7 lines": [ + "" + ], + "update instance settings": [ + "" + ], "Instance id": [ "" ], + "URL": [ + "" + ], + "Cancel operation": [ + "Kasaba konumu" + ], "Delete this instance": [ "" ], @@ -5453,6 +6197,9 @@ strings['tr'] = { "URL is invalid": [ "" ], + "add webhook": [ + "" + ], "Webhook ID to use": [ "" ], @@ -5504,9 +6251,6 @@ strings['tr'] = { "Method used by the webhook": [ "" ], - "URL": [ - "" - ], "URL of the webhook where the customer will be redirected": [ "" ], @@ -5549,6 +6293,9 @@ strings['tr'] = { "Body template used by the webhook.": [ "" ], + "delete webhook": [ + "" + ], "Webhook deleted successfully": [ "" ], @@ -5570,6 +6317,9 @@ strings['tr'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "" ], + "update webhook": [ + "" + ], "Webhook updated": [ "" ], @@ -5582,6 +6332,12 @@ strings['tr'] = { "Body template used by the webhook": [ "" ], + "Doesn't match": [ + "" + ], + "self provision instance": [ + "" + ], "There is another instance with this username.": [ "" ], @@ -5609,6 +6365,9 @@ strings['tr'] = { "Create": [ "Oluşturulma" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -5618,10 +6377,10 @@ strings['tr'] = { "Resetting access to the instance \"%1$s\"": [ "" ], - "Reset": [ + "Language": [ "" ], - "Language": [ + "Force the language settings instead of using the browser": [ "" ], "Date format": [ @@ -5633,13 +6392,13 @@ strings['tr'] = { "Merchant type": [ "" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "" ], - "Expert user": [ + "Beta tester": [ "" ], - "Taler developer": [ + "Expert user": [ "" ], "Unattended in-person offline vending": [ @@ -5654,229 +6413,274 @@ strings['tr'] = { "E-commerce site": [ "" ], - "Developer mode": [ + "Developer tools": [ "" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Enable UI tools for troubleshooting.": [ "" ], - "Money pot deleted": [ + "Testing features": [ "" ], - "Add new pots": [ - "Banka hesabı" - ], - "Load more pots before the first one": [ + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ "" ], - "Total": [ - "Ürünler" - ], - "Delete selected pots from the database": [ + "Developer mode": [ "" ], - "Load more pots after the last one": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "There are no money pots yet, add more pressing the + sign": [ - "" + "create pos access token": [ + "Oluşturulma" ], - "Missing currency name": [ + "Device name": [ "" ], - "Currency name must be only letters": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Value can only by number": [ - "" + "Payment services status": [ + "Hesap" ], - "The value is too high": [ + "Base URL": [ "" ], - "The value is too precise": [ + "Next update": [ "" ], - "Invalid amount \"%1$s\": %2$s": [ - "Geçerlilik" - ], - "Descripton": [ + "This payment service is ready to be used.": [ "" ], - "Totals": [ - "Ürünler" - ], - "There is already a money pot with the same id.": [ + "This payment service can't be used due to an error. Contact the service provider.": [ "" ], - "Product group deleted": [ - "Ürünler" - ], - "Add new group": [ - "Banka hesabı" - ], - "Load more groups before the first one": [ + "Details of the status": [ "" ], - "Delete selected group from the database": [ + "No payment services supported": [ "" ], - "Load more groups after the last one": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "There are no product groups yet, add more pressing the + sign": [ + "Ready until %1$s": [ "" ], - "Scheduled report deleted": [ + "Next update will be at %1$s": [ "" ], - "Scheduled reports": [ + "Error": [ "" ], - "Add new reports": [ - "Banka hesabı" - ], - "Frequency": [ + "This payment service is unavailable.": [ "" ], - "Delete selected scheduled report from the database": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], - "There are no reports yet, add more pressing the + sign": [ + "Welcome!": [ "" ], - "No report generator configured in the server": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], - "Contact the system administrator to create a report generator before scheduling one.": [ + "You need to associate a bank account to receive revenue.": [ "" ], - "Description of the report. Possibly included in the report message": [ + "Without this the server will refuse to create new orders.": [ "" ], - "Where the report program should send the report": [ + "Hide for today": [ "" ], - "Source": [ + "KYC verification needed": [ "" ], - "Base URL to request the data from.": [ + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "" ], - "Type of the data source": [ + "No 'admin' instance configured yet.": [ "" ], - "Program": [ + "Create an 'admin' instance to begin using the merchant portal.": [ "" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ - "" + "delete bank account": [ + "Oluşturulma" ], - "Report frequency": [ + "The bank account has been deleted.": [ "" ], - "Welcome!": [ - "" + "Delete account": [ + "Oluşturulma" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ - "" + "Delete the account \"%1$s\"": [ + "Banka hesabı" ], - "You need to associate a bank account to receive revenue.": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Without this the merchant backend will refuse to create new orders.": [ + "If you delete the account with name %1$s its information will be lost": [ "" ], - "Hide for today": [ + "Deleting an account can't be undone.": [ "" ], - "KYC verification needed": [ + "Bank accounts": [ + "Banka hesabı" + ], + "Add new account": [ + "Banka hesabı" + ], + "Owner's name": [ "" ], - "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "Delete selected accounts from the database": [ "" ], - "The request reached a timeout, check your connection.": [ + "There are no accounts yet, add more pressing the + sign": [ "" ], - "The request was cancelled.": [ + "No bank account configured yet.": [ "" ], - "Too many requests were made to the server, and this action was throttled.": [ + "Without this information you cannot create new payment orders.": [ "" ], - "The server's response was malformed.": [ + "This account is not ready to be used.": [ "" ], - "Could not complete the request due to a network problem.": [ + "There are pending actions related to KYC.": [ "" ], - "Unexpected request error.": [ + "More details.": [ + "Hesap" + ], + "You must complete kyc requirements to receive payments.": [ "" ], - "Unexpected error.": [ + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ "" ], - "Add new instance": [ + "Invalid url": [ + "Geçerlilik" + ], + "URL must end with a '/'": [ + "" + ], + "URL must not contain params": [ + "" + ], + "URL must not hash param": [ + "" + ], + "change bank account": [ "Banka hesabı" ], - "Edit": [ + "test revenue api": [ "" ], - "Change password": [ + "Server replied with \"bad request\".": [ "" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ + "Unauthorized, check credentials.": [ "" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "The endpoint does not seem to be a Taler Revenue API.": [ "" ], - "Only show active instances": [ + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ "" ], - "Active": [ + "Unsupported type of account": [ "" ], - "Only show deleted instances": [ + "Account:": [ + "Hesap:" + ], + "Account details": [ + "Hesap" + ], + "Extra subject": [ + "Konu" + ], + "Additional text to include in the wire transfer subject when settling the payment": [ "" ], - "Deleted": [ + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ "" ], - "Show all instances": [ + "Endpoint URL": [ "" ], - "Delete instance": [ + "From where the merchant can download information about incoming wire transfers to this account": [ "" ], - "Delete the instance \"%1$s\"": [ + "Auth type": [ "" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Choose the authentication type for the account info URL": [ "" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "Without authentication": [ "" ], - "Deleting an instance %1$s": [ + "With username and password": [ "" ], - "This cannot be undone!": [ + "With token": [ "" ], - "Purge the instance": [ + "Do not change": [ "" ], - "Purge the instance \"%1$s\"": [ + "Username to access the account information.": [ "" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Password to access the account information.": [ "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ + "Access token to access the account information.": [ "" ], - "Purging an instance %1$s": [ + "Match": [ + "" + ], + "Check where the information match against the server info.": [ + "" + ], + "Compare info from server with account form": [ + "" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "Banka hesabı" + ], + "The instance does not exist.": [ + "" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "" + ], + "Check if the information matches the server info.": [ + "" + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "" + ], + "Instance created": [ + "" + ], + "Please complete the marked fields and choose authorization method": [ "" ], "checking compatibility with server...": [ @@ -5894,6 +6698,9 @@ strings['tr'] = { "Business Name": [ "" ], + "update product group": [ + "Ürünler" + ], "Available statistics": [ "" ], @@ -5987,6 +6794,9 @@ strings['tr'] = { "title\u0004%1$s: New access token": [ "Oluşturulma" ], + "title\u0004%1$s: New POS access token": [ + "Oluşturulma" + ], "title\u0004New instance": [ "" ], @@ -5998,7 +6808,7 @@ strings['tr'] = { "domain": "messages", "plural_forms": "nplurals=2; plural=n != 1;", "lang": "tr", - "completeness": 7 + "completeness": 10 }; strings['sv'] = { @@ -6027,7 +6837,7 @@ strings['sv'] = { "Confirm": [ "Bekräfta" ], - "Correct form": [ + "Correct the form": [ "" ], "Comparing account details": [ @@ -6087,6 +6897,12 @@ strings['sv'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "" ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "" + ], + "Bank app": [ + "" + ], "Step 1:": [ "" ], @@ -6117,13 +6933,10 @@ strings['sv'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "" ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "" ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ - "" - ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "" ], "Operation in progress...": [ @@ -6165,13 +6978,16 @@ strings['sv'] = { "%1$ssec": [ "" ], - "Change value to never": [ + "Change the value to never": [ "" ], - "Change value to empty": [ + "Change the value to empty": [ + "" + ], + "The file is not an image": [ "" ], - "Image must be smaller than 1 MB": [ + "The image was normalized to be smaller than 1 MB": [ "" ], "Add": [ @@ -6240,6 +7056,9 @@ strings['sv'] = { "Configuration": [ "" ], + "KYC Status": [ + "" + ], "OTP Devices": [ "" ], @@ -6261,6 +7080,9 @@ strings['sv'] = { "Personalization": [ "" ], + "Payment services": [ + "" + ], "Instances": [ "" ], @@ -6273,6 +7095,21 @@ strings['sv'] = { "Log out": [ "" ], + "Select one...": [ + "" + ], + "Days": [ + "" + ], + "Hours": [ + "" + ], + "Minutes": [ + "" + ], + "Seconds": [ + "" + ], "Username": [ "" ], @@ -6327,7 +7164,7 @@ strings['sv'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -6336,6 +7173,12 @@ strings['sv'] = { "Time customers have to pay an order before the offer expires by default.": [ "" ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "" + ], "Refund delay": [ "" ], @@ -6345,13 +7188,13 @@ strings['sv'] = { "Wire transfer delay": [ "" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "" ], "Wire transfer rounding": [ "" ], - "Interval to which wire deadlines should be rounded up to.": [ + "Rounding interval for wire deadlines.": [ "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ @@ -6384,46 +7227,43 @@ strings['sv'] = { "To year": [ "" ], - "Expired": [ + "Can't paste this content. Please copy the 8 digits again.": [ "" ], - "Required": [ - "Obligatoriskt" - ], - "Unauthorized": [ + "Resend code possible in %1$s seconds.": [ "" ], - "The code is not correct.": [ + "Resend code possible in less than one minute.": [ "" ], - "The challenge is not known anymore.": [ + "Resend code possible in less than 5 minutes.": [ "" ], - "Too many attempts trying to solve the challenge.": [ + "Resend will be possible after %1$s": [ "" ], - "Validation code sent.": [ + "Expired": [ "" ], - "The verification code sent to the phone number ending with \"%1$s\"": [ - "" + "Required": [ + "Obligatoriskt" ], - "The verification code sent to the email address starting with \"%1$s\"": [ + "verify code": [ "" ], - "Verification code": [ + "Unauthorized": [ "" ], - "It will expire at %1$s": [ + "The code is not correct.": [ "" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ + "The challenge is no longer valid.": [ "" ], - "Back": [ + "Too many attempts trying to solve the challenge.": [ "" ], - "Verify": [ + "send challenge": [ "" ], "Failed to send the verification code.": [ @@ -6432,7 +7272,7 @@ strings['sv'] = { "The request was valid, but the server is refusing action.": [ "" ], - "The backend is not aware of the specified MFA challenge.": [ + "The server is not aware of the specified MFA challenge.": [ "" ], "Code transmission failed.": [ @@ -6444,505 +7284,487 @@ strings['sv'] = { "It is too early to request another transmission of the challenge.": [ "" ], - "Multi-factor authentication required.": [ + "Validation code sent.": [ "" ], - "You need to complete all of this requirements.": [ + "The verification code sent to the phone \" %1$s\"": [ "" ], - "You need to complete at least one of this requirements.": [ + "The verification code sent to the phone number ending with \"%1$s\"": [ "" ], - "An SMS to the phone number ending with %1$s": [ + "The verification code sent to the email address \" %1$s\"": [ "" ], - "An email to the address starting with %1$s": [ + "The verification code sent to the email address starting with \"%1$s\"": [ "" ], - "You have to wait until %1$s to send a new code.": [ + "Verification code": [ "" ], - "I have a code": [ + "Code expired.": [ "" ], - "Send me a message": [ + "Didn't received the code?": [ "" ], - "Logged in": [ + "Resend": [ "" ], - "Not found": [ + "Verify": [ "" ], - "Login required": [ + "The code transmission failed.": [ "" ], - "Instance name.": [ + "The challenge is already solved.": [ "" ], - "Instance password.": [ + "Multi-factor authentication required.": [ "" ], - "Forgot password": [ + "You must complete all of these requirements.": [ "" ], - "Create new account": [ + "You need to complete at least one of this requirements.": [ "" ], - "Invalid": [ + "An SMS to the phone number ending with %1$s": [ "" ], - "Doesn't have the pattern of an email": [ + "An email to the address starting with %1$s": [ "" ], - "Should start with +": [ + "Complete": [ "" ], - "A phone number consists of numbers only": [ + "This is not a valid Bitcoin address.": [ "" ], - "Invalid value": [ + "This is not a valid Ethereum address.": [ "" ], - "Max 7 lines": [ + "This is not a valid host.": [ "" ], - "Doesn't match": [ + "IBANs usually have more than 4 digits.": [ "" ], - "Instance created": [ + "IBANs usually have fewer than 34 digits.": [ "" ], - "Unauthorized.": [ + "The IBAN's country code could not be retrieved.": [ "" ], - "Conflict.": [ - "Bekräfta" + "The IBAN is invalid because the checksum is wrong.": [ + "" ], - "Not found.": [ + "This account is not allowed.": [ "" ], - "New password": [ + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ "" ], - "Next password to be used": [ + "Wire method": [ "" ], - "Repeat password": [ + "Select the method you want to use to transfer your earnings to your business account.": [ "" ], - "Confirm the same password": [ + "Select a wire method...": [ "" ], - "Please complete the marked fields and choose authorization method": [ + "Routing": [ "" ], - "Confirm operation": [ + "Routing number": [ "" ], - "Check the password.": [ + "Account": [ "" ], - "Instance not found.": [ + "Account number": [ "" ], - "Description": [ + "Code": [ "" ], - "Helps you remember where this access token is being used before deleting it.": [ + "Business Identifier Code": [ "" ], - "Duration": [ + "International Bank Account Number": [ "" ], - "Time the access token will be valid.": [ + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ "" ], - "Refreshable access tokens can pose a security risk!": [ + "Unified Payment Interface": [ "" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "Bitcoin protocol": [ "" ], - "Scope": [ + "Ethereum protocol": [ "" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "Interledger protocol": [ "" ], - "Allows all operations without limit.": [ + "Enter the data without a scheme. A subpath may be included:": [ "" ], - "Allows all operations to read information.": [ + "Cyclos host": [ "" ], - "Allows the creation of orders and checking of payment status.": [ + "cyclos account": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ + "Name of the account holder": [ "" ], - "Allows the creation of orders, checking of payment status and refunds.": [ + "John Doe": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "Legal name of the person holding the account.": [ "" ], - "Allows all operations to read information with extendable expiration time.": [ + "The request reached a timeout, check your connection.": [ "" ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "The request was cancelled.": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "Too many requests were made to the server and this action was throttled.": [ "" ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "The server's response was malformed, please report.": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ - "" - ], - "All (refreshable)": [ - "" - ], - "Spa": [ - "" - ], - "Spa (refreshable)": [ - "" - ], - "Choose one": [ - "" - ], - "Read only": [ + "Could not complete the request due to a network problem.": [ "" ], - "All": [ + "Unexpected request error, please report.": [ "" ], - "Order simple": [ + "Unexpected error.": [ "" ], - "Order Point-of-Sale": [ + "login": [ "" ], - "Order management": [ + "Logged in": [ "" ], - "Order full": [ + "Wrong password.": [ "" ], - "Read only (refreshable)": [ + "The account doesn't exist.": [ "" ], - "Order simple (refreshable)": [ + "Login required": [ "" ], - "Order Point-of-Sale (refreshable)": [ + "Instance name.": [ "" ], - "Order management (refreshable)": [ + "Instance password.": [ "" ], - "Order full (refreshable)": [ + "Forgot password": [ "" ], - "Current password": [ + "Create new account": [ "" ], - "Please complete the marked fields": [ + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ "" ], - "Access token created": [ + "Testing environment": [ "" ], - "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "This server is meant for testing features and configurations. Don't use your personal information here.": [ "" ], - "Token": [ + "Delete": [ "" ], - "This token will never expire": [ + "Add new instance": [ "" ], - "This token will be available until %1$s": [ + "ID": [ "" ], - "No 'admin' instance configured yet.": [ + "Name": [ "" ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ + "Edit": [ "" ], - "Create access token": [ + "Change password": [ "" ], - "Load more devices before the first one": [ + "Purge": [ "" ], - "Load first page": [ + "There are no instances yet. Add one by pressing the '+' sign.": [ "" ], - "Created at": [ + "delete instance": [ "" ], - "Expires at": [ + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ "" ], - "Never": [ + "Unauthorized.": [ "" ], - "Remove this access token": [ + "Not found.": [ "" ], - "Delete": [ - "" + "Conflict.": [ + "Bekräfta" ], - "Load more devices after the last one": [ + "Only show active instances": [ "" ], - "Load next page": [ + "Active": [ "" ], - "There are no active sessions yet, add one by pressing the + sign": [ + "Only show deleted instances": [ "" ], - "Forbidden.": [ + "Deleted": [ "" ], - "Delete access token": [ + "Show all instances": [ "" ], - "Deleting an access token cannot be undone.": [ + "All": [ "" ], - "This is not a valid Bitcoin address.": [ + "Delete instance": [ "" ], - "This is not a valid Ethereum address.": [ + "Delete the instance \"%1$s\"": [ "" ], - "This is not a valid host.": [ + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ "" ], - "IBANs usually have more than 4 digits.": [ + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ "" ], - "IBANs usually have fewer than 34 digits.": [ + "Deleting an instance %1$s": [ "" ], - "The IBAN's country code could not be retrieved.": [ + "This cannot be undone!": [ "" ], - "The IBAN is invalid because the checksum is wrong.": [ + "Purge the instance": [ "" ], - "This account is not allowed.": [ + "Purge the instance \"%1$s\"": [ "" ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ "" ], - "Wire method": [ + "The instance will disappear from your list and you will no longer be able to access its data.": [ "" ], - "Select the method you want to use to transfer your earnings to your business account.": [ + "Purging an instance %1$s": [ "" ], - "Select a wire method...": [ + "create access token": [ "" ], - "Routing": [ + "Check the password.": [ "" ], - "Routing number": [ + "Instance not found.": [ "" ], - "Account": [ + "Description": [ "" ], - "Account number": [ + "Helps you remember where this access token is being used before deleting it.": [ "" ], - "Code": [ + "Duration": [ "" ], - "Business Identifier Code": [ + "Time the access token will be valid.": [ "" ], - "International Bank Account Number": [ + "Refreshable access tokens can pose a security risk!": [ "" ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ "" ], - "Unified Payment Interface": [ + "Scope": [ "" ], - "Bitcoin protocol": [ + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ "" ], - "Ethereum protocol": [ + "Allows all operations without limit.": [ "" ], - "Interledger protocol": [ + "Allows all operations to read information.": [ "" ], - "Enter the data without a scheme. A subpath may be included:": [ + "Allows the creation of orders and checking of payment status.": [ "" ], - "Cyclos host": [ + "Allows the creation of orders, checking of payment status and inventory locking.": [ "" ], - "cyclos account": [ + "Allows the creation of orders, checking of payment status and refunds.": [ "" ], - "Name of the account holder": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ "" ], - "John Doe": [ + "Allows all operations to read information with extendable expiration time.": [ "" ], - "Legal name of the person holding the account.": [ + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ "" ], - "Invalid url": [ + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ "" ], - "URL must end with a '/'": [ + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ "" ], - "URL must not contain params": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ "" ], - "URL must not hash param": [ + "All (refreshable)": [ "" ], - "Conflict": [ - "Bekräfta" - ], - "Server replied with \"bad request\".": [ + "Spa": [ "" ], - "Unauthorized, check credentials.": [ + "Spa (refreshable)": [ "" ], - "The endpoint does not seem to be a Taler Revenue API.": [ + "Choose one": [ "" ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "Read only": [ "" ], - "Unsupported type of account": [ + "Order simple": [ "" ], - "Account:": [ + "Order Point-of-Sale": [ "" ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Order management": [ "" ], - "Endpoint URL": [ + "Order full": [ "" ], - "From where the merchant can download information about incoming wire transfers to this account": [ + "Read only (refreshable)": [ "" ], - "Auth type": [ + "Order simple (refreshable)": [ "" ], - "Choose the authentication type for the account info URL": [ + "Order Point-of-Sale (refreshable)": [ "" ], - "Without authentication": [ + "Order management (refreshable)": [ "" ], - "With username and password": [ + "Order full (refreshable)": [ "" ], - "With token": [ + "Current password": [ "" ], - "Do not change": [ + "Please complete the marked fields": [ "" ], - "Username to access the account information.": [ + "Confirm operation": [ "" ], - "Password to access the account information.": [ + "Access token created": [ "" ], - "Access token to access the account information.": [ + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ "" ], - "Match": [ + "Token": [ "" ], - "Check where the information match against the server info.": [ + "This token will never expire": [ "" ], - "Compare info from server with account form": [ + "This token will be available until %1$s": [ "" ], - "Test": [ + "Create access token": [ "" ], - "Server didn't like the request we made.": [ + "Load more devices before the first one": [ "" ], - "Account details": [ + "Load first page": [ "" ], - "Check if the information matches the server info.": [ + "Created at": [ "" ], - "The bank account has been deleted.": [ + "Expires at": [ "" ], - "Delete account": [ + "Never": [ "" ], - "Delete the account \"%1$s\"": [ + "Remove this access token": [ "" ], - "Invalid payto: \"%1$s\"": [ + "Load more devices after the last one": [ "" ], - "If you delete the account with name %1$s its information will be lost": [ + "Load next page": [ "" ], - "Deleting an account can't be undone.": [ + "There are no active sessions yet, add one by pressing the + sign": [ "" ], - "Bank accounts": [ + "delete access token": [ "" ], - "Add new account": [ + "Forbidden.": [ "" ], - "Owner's name": [ + "New point-of-sale access": [ "" ], - "Delete selected accounts from the database": [ + "Delete access token": [ "" ], - "There are no accounts yet, add more pressing the + sign": [ + "Deleting an access token cannot be undone.": [ "" ], - "You must provide a bank account to receive payments.": [ + "Invalid. Please use only letters and numbers.": [ "" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ + "add category": [ "" ], - "Invalid. Please use only letters and numbers.": [ + "Not found": [ "" ], - "Name": [ + "Category name": [ "" ], - "Category name": [ + "delete category": [ "" ], "Category deleted": [ @@ -6951,9 +7773,6 @@ strings['sv'] = { "Add new devices": [ "" ], - "ID": [ - "" - ], "Total products": [ "" ], @@ -6963,6 +7782,9 @@ strings['sv'] = { "There are no categories yet, add more pressing the + sign": [ "" ], + "update category": [ + "" + ], "Id:": [ "" ], @@ -6981,25 +7803,37 @@ strings['sv'] = { "There are no products in this category.": [ "" ], - "Account's KYC status": [ + "create product group": [ "" ], - "Exchange": [ + "delete product group": [ "" ], - "Status": [ + "Product group deleted": [ "" ], - "Ok": [ + "Add new group": [ "" ], - "Action required": [ - "Obligatoriskt" + "Load more groups before the first one": [ + "" + ], + "Delete selected group from the database": [ + "" ], - "Warning": [ + "Load more groups after the last one": [ "" ], - "Error": [ + "There are no product groups yet, add more pressing the + sign": [ + "" + ], + "Account's KYC status": [ + "" + ], + "Exchange": [ + "" + ], + "Status": [ "" ], "Bank account verification required.": [ @@ -7008,7 +7842,7 @@ strings['sv'] = { "More information required.": [ "" ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "" ], "Ready": [ @@ -7020,7 +7854,7 @@ strings['sv'] = { "Payment service internal error. Contact administrator or check again later.": [ "" ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "" ], "Payment service timeout. Contact administrator or check again later.": [ @@ -7032,7 +7866,7 @@ strings['sv'] = { "Incompatible core banking system.": [ "" ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "" ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -7044,25 +7878,31 @@ strings['sv'] = { "No pending kyc verification!": [ "" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "" + ], + "The account for wire transfers is invalid.": [ "" ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "" ], - "No exchange keys": [ + "No contact with the payment service yet.": [ "" ], - "The backend service is still synchronizing with the payment service provider.": [ + "The server is still synchronizing with the payment service provider.": [ "" ], "No transfers can be made from this account": [ "" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "" + ], + "Test": [ "" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -7086,7 +7926,7 @@ strings['sv'] = { "Logic bug": [ "" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "" ], "Internal error": [ @@ -7098,7 +7938,7 @@ strings['sv'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "" ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -7107,13 +7947,16 @@ strings['sv'] = { "Unsupported account": [ "" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "" ], - "Change value to unknown date": [ + "Change value to empty": [ + "" + ], + "Change value to never": [ "" ], "Enter description or id": [ @@ -7125,7 +7968,7 @@ strings['sv'] = { "You must enter a valid product identifier.": [ "" ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -7140,7 +7983,10 @@ strings['sv'] = { "How many products will be added": [ "" ], - "Add from inventory": [ + "Add it to the order": [ + "" + ], + "Invalid": [ "" ], "This product has %1$s applicable taxes configured.": [ @@ -7221,22 +8067,28 @@ strings['sv'] = { "Either fulfillment url or fulfillment message must be specified.": [ "" ], - "is not a valid URL": [ + "Invalid URL": [ "" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ "" ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ + "" + ], + "Conflict": [ + "Bekräfta" + ], "Product with ID \"%1$s\" is out of stock.": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "" ], "Manage products in order": [ "" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "" ], "Manage list of products in the order.": [ @@ -7317,7 +8169,7 @@ strings['sv'] = { "Wire transfer time": [ "" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "" ], "Auto-refund time": [ @@ -7365,6 +8217,9 @@ strings['sv'] = { "Custom field name": [ "" ], + "new extra field": [ + "" + ], "Disabled": [ "" ], @@ -7374,7 +8229,7 @@ strings['sv'] = { "Deadline at %1$s": [ "" ], - "Select date to show nearby orders": [ + "get product details": [ "" ], "Only show unpaid orders": [ @@ -7407,10 +8262,7 @@ strings['sv'] = { "Remove all filters": [ "" ], - "Clear date filter": [ - "" - ], - "Jump to date (%1$s)": [ + "authorize refund": [ "" ], "Gone.": [ @@ -7425,15 +8277,33 @@ strings['sv'] = { "Order id": [ "" ], + "Clear date filter": [ + "" + ], + "Select date to show nearby orders": [ + "" + ], + "Jump to date (%1$s)": [ + "" + ], "Instance unknown": [ "" ], "Order unknown": [ "" ], + "This order is not refundable": [ + "" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -7467,12 +8337,15 @@ strings['sv'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "" ], "refund": [ "" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "" ], @@ -7500,7 +8373,7 @@ strings['sv'] = { "now": [ "" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -7512,6 +8385,9 @@ strings['sv'] = { "This wire transfer has been notified by the payment service provider.": [ "" ], + "This wire transfer has been notified manually or by the banking system.": [ + "" + ], "This refund is waiting to be claimed by the customer.": [ "" ], @@ -7521,7 +8397,7 @@ strings['sv'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -7560,19 +8436,19 @@ strings['sv'] = { "Wire transfer deadline": [ "" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "" ], - "Time indicating when the order should be delivered": [ + "Auto-refund delay": [ "" ], - "Where the order will be delivered": [ + "How long the wallet should try to get an automatic refund for the purchase": [ "" ], - "Auto-refund delay": [ + "Time indicating when the order should be delivered": [ "" ], - "How long the wallet should try to get an automatic refund for the purchase": [ + "Where the order will be delivered": [ "" ], "Extra info": [ @@ -7617,28 +8493,28 @@ strings['sv'] = { "Product list": [ "" ], - "refund missed: %1$s": [ + "The contract terms have a v1 order without choices_index.": [ "" ], - "refund missed: %1$s: %2$s": [ + "The contract terms have a v1 order with a bad choices_index.": [ "" ], - "refund created: %1$s": [ + "refund missed: %1$s": [ "" ], - "refund created: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "" ], - "refund taken: %1$s": [ + "refund created: %1$s": [ "" ], - "refund taken: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "" ], - "The contract terms has a v1 order without choices_index.": [ + "refund taken: %1$s": [ "" ], - "The contract terms has a v1 order with a bad choices_index.": [ + "refund taken: %1$s : %2$s": [ "" ], "wired %1$s": [ @@ -7647,7 +8523,13 @@ strings['sv'] = { "wire deadline": [ "" ], - "Wired": [ + "Related wire transfers": [ + "" + ], + "Unconfirmed": [ + "Bekräfta" + ], + "Confirmed": [ "" ], "Refund order": [ @@ -7656,6 +8538,12 @@ strings['sv'] = { "Not refundable": [ "" ], + "No wire transfer reported": [ + "" + ], + "Check wire transfers": [ + "" + ], "Next event in": [ "" ], @@ -7677,7 +8565,7 @@ strings['sv'] = { "Refund URI": [ "" ], - "Pay at": [ + "Payment link": [ "" ], "Order status URL": [ @@ -7689,15 +8577,36 @@ strings['sv'] = { "Unknown order status. This is an error, please contact the administrator.": [ "" ], + "Back": [ + "" + ], + "never": [ + "" + ], + "unknown": [ + "" + ], + "confirmed": [ + "Bekräfta" + ], + "unconfirmed": [ + "Bekräfta" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "" ], - "Just letters and numbers from 2 to 7": [ + "Use only letters and digits (2–7).": [ "" ], "The size of the key must be 32 characters": [ "" ], + "add otp device": [ + "" + ], "Internal ID on the system": [ "" ], @@ -7731,6 +8640,9 @@ strings['sv'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "" ], + "delete otp device": [ + "" + ], "OTP devices": [ "" ], @@ -7740,6 +8652,9 @@ strings['sv'] = { "There are no devices to list yet, add more by pressing the + sign": [ "" ], + "update otp device": [ + "" + ], "Template id is unknown": [ "" ], @@ -7773,9 +8688,24 @@ strings['sv'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "" + ], + "Next password to be used": [ + "" + ], + "Repeat password": [ + "" + ], + "Confirm the same password": [ + "" + ], "Confirm change": [ "" ], + "change password": [ + "" + ], "Testing password change": [ "" ], @@ -7785,16 +8715,76 @@ strings['sv'] = { "The current password is wrong.": [ "" ], + "change instance password": [ + "" + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "" ], + "create money pot": [ + "" + ], + "There is already a money pot with the same id.": [ + "" + ], + "delete money pot": [ + "" + ], + "Money pot deleted": [ + "" + ], + "Add new pots": [ + "" + ], + "Load more pots before the first one": [ + "" + ], + "Total": [ + "" + ], + "Delete selected pots from the database": [ + "" + ], + "Load more pots after the last one": [ + "" + ], + "There are no money pots yet, add more pressing the + sign": [ + "" + ], "Add element to the list": [ "" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "" + ], + "Invalid amount \"%1$s\": %2$s": [ + "" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "" + ], + "Totals": [ + "" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "" ], "Manage stock": [ @@ -7809,13 +8799,13 @@ strings['sv'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "" ], - "Incoming": [ + "Current": [ "" ], - "Lost": [ + "Incoming": [ "" ], - "Current": [ + "Lost": [ "" ], "Remove stock control for this product": [ @@ -7896,6 +8886,9 @@ strings['sv'] = { "Search by group name or id": [ "" ], + "add product": [ + "" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -7911,6 +8904,9 @@ strings['sv'] = { "Add product to inventory": [ "" ], + "update product": [ + "" + ], "Product not found.": [ "" ], @@ -7923,6 +8919,12 @@ strings['sv'] = { "Sold": [ "" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "" + ], "Free": [ "" ], @@ -7965,6 +8967,9 @@ strings['sv'] = { "There are no products to list yet, add more by pressing the + sign": [ "" ], + "delete product": [ + "" + ], "Product (ID: %1$s) has been deleted": [ "" ], @@ -7989,6 +8994,69 @@ strings['sv'] = { "Product id:": [ "" ], + "It should start with /": [ + "" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "" + ], + "Description of the report. Possibly included in the report message": [ + "" + ], + "Where the report program should send the report": [ + "" + ], + "Source": [ + "" + ], + "Base URL to request the data from.": [ + "" + ], + "Type of the data source": [ + "" + ], + "Program": [ + "" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "" + ], + "Report frequency shift": [ + "" + ], + "delete scheduled report": [ + "" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "" + ], + "There are no reports yet, add more pressing the + sign": [ + "" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "" ], @@ -7998,9 +9066,6 @@ strings['sv'] = { "Service unavailable": [ "" ], - "Select date from which to show statistics": [ - "" - ], "Show chart": [ "" ], @@ -8013,6 +9078,9 @@ strings['sv'] = { "Orders table": [ "" ], + "Select date from which to show statistics": [ + "" + ], "Start from (%1$s)": [ "" ], @@ -8097,6 +9165,9 @@ strings['sv'] = { "Too short": [ "" ], + "add template": [ + "" + ], "You don't have enough permissions.": [ "" ], @@ -8199,6 +9270,9 @@ strings['sv'] = { "There are no templates to list yet, add more by pressing the + sign": [ "" ], + "delete template": [ + "" + ], "Jump to template with the given template ID": [ "" ], @@ -8211,7 +9285,7 @@ strings['sv'] = { "Delete the template \"%1$s\"": [ "" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "" ], "Deleting a template cannot be undone.": [ @@ -8220,6 +9294,9 @@ strings['sv'] = { "Print": [ "" ], + "update template": [ + "" + ], "The template configuration needs to be fixed.": [ "" ], @@ -8241,6 +9318,12 @@ strings['sv'] = { "An order summary is required": [ "" ], + "create order from template": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "" ], @@ -8250,34 +9333,52 @@ strings['sv'] = { "Amount of the order": [ "" ], - "Slug": [ + "Expiration should be after start date": [ "" ], - "Token family slug to use in URLs (for internal use only)": [ + "Granularity can't be greater than duration.": [ "" ], - "Kind": [ + "create token family": [ "" ], - "Choose between a discount and a subscription": [ + "There is another token family with this ID. Choose another one.": [ "" ], - "Start Date": [ + "Slug": [ "" ], - "The first day the coupon/subscription can be used.": [ + "Token family slug to use in URLs (for internal use only)": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "User-readable token family name": [ "" ], - "Expiration Date": [ + "Token family description for customers": [ "" ], - "The last day the coupon/subscription can be used.": [ + "Kind": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "Choose between a discount and a subscription": [ + "" + ], + "Start Date": [ + "" + ], + "The first day the coupon/subscription can be used.": [ + "" + ], + "If set to %1$s, it cannot be used before this date.": [ + "" + ], + "Expiration Date": [ + "" + ], + "The last day the coupon/subscription can be used.": [ + "" + ], + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -8289,10 +9390,25 @@ strings['sv'] = { "Validity Granularity": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ + "" + ], + "1 minute": [ + "" + ], + "1 hour": [ + "" + ], + "1 day": [ + "" + ], + "30 days": [ + "" + ], + "90 days": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ + "365 days": [ "" ], "Token Families": [ @@ -8313,6 +9429,9 @@ strings['sv'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "" ], + "delete token family": [ + "" + ], "Token family has been deleted.": [ "" ], @@ -8331,85 +9450,88 @@ strings['sv'] = { "can't be undone": [ "" ], + "update token family": [ + "" + ], "Token Family: %1$s": [ "" ], - "User-readable token family name": [ + "inform wire transfer": [ "" ], - "Token family description for customers": [ + "Wire transfer already confirmed.": [ "" ], - "Incoming wire transfers": [ + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ "" ], - "Load more wire transfers preceding the first one": [ + "The wire transfer has been confirmed.": [ "" ], - "Expected credit": [ + "Transaction details": [ "" ], - "Confirmed": [ + "Transfer ID": [ "" ], - "Validated": [ + "I have received the wire transfer": [ "" ], - "Executed on": [ + "Orders in this wire transfer": [ "" ], - "yes": [ + "Fee": [ "" ], - "no": [ + "Subtotals": [ "" ], - "never": [ + "Deposit fee": [ "" ], - "unknown": [ + "Wire fee": [ "" ], - "Load more transfers after the last one": [ + "not ready": [ "" ], - "Verified wire transfers": [ + "loading...": [ "" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "New wire transfers": [ "" ], - "All accounts": [ + "Load more wire transfers preceding the first one": [ "" ], - "Filter by account address": [ + "To be determined.": [ "" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ + "You confirm that the incoming wire transfer has arrived into your bank account.": [ "" ], - "Only show wire transfers confirmed by the merchant": [ + "Load more transfers after the last one": [ "" ], - "Verified": [ + "Confirmed wire transfers into bank account": [ "" ], - "Wire transfer already confirmed.": [ + "Show details about the incoming wire transfer.": [ "" ], - "I have received the wire transfer": [ + "There are no transfers to list yet": [ "" ], - "Confirm the wire transfer": [ + "All accounts": [ "" ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "Filter by account address": [ "" ], - "Time": [ + "Verified": [ "" ], - "Transfer ID": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], "It's not the same.": [ @@ -8418,13 +9540,13 @@ strings['sv'] = { "You are deleting the instance with ID \"%1$s\"": [ "" ], - "Instance": [ + "delete current instance": [ "" ], - "Write the instance name to confirm the deletion": [ + "Instance": [ "" ], - "Purge": [ + "Write the instance name to confirm the deletion": [ "" ], "All the data will be fully deleted, otherwise only the access will be removed.": [ @@ -8433,9 +9555,36 @@ strings['sv'] = { "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "" + ], + "Should start with +": [ + "" + ], + "A phone number consists of numbers only": [ + "" + ], + "Invalid phone number": [ + "" + ], + "Invalid value": [ + "" + ], + "Max 7 lines": [ + "" + ], + "update instance settings": [ + "" + ], "Instance id": [ "" ], + "URL": [ + "" + ], + "Cancel operation": [ + "" + ], "Delete this instance": [ "" ], @@ -8445,6 +9594,9 @@ strings['sv'] = { "URL is invalid": [ "" ], + "add webhook": [ + "" + ], "Webhook ID to use": [ "" ], @@ -8496,9 +9648,6 @@ strings['sv'] = { "Method used by the webhook": [ "" ], - "URL": [ - "" - ], "URL of the webhook where the customer will be redirected": [ "" ], @@ -8541,6 +9690,9 @@ strings['sv'] = { "Body template used by the webhook.": [ "" ], + "delete webhook": [ + "" + ], "Webhook deleted successfully": [ "" ], @@ -8562,6 +9714,9 @@ strings['sv'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "" ], + "update webhook": [ + "" + ], "Webhook updated": [ "" ], @@ -8574,6 +9729,12 @@ strings['sv'] = { "Body template used by the webhook": [ "" ], + "Doesn't match": [ + "" + ], + "self provision instance": [ + "" + ], "There is another instance with this username.": [ "" ], @@ -8601,6 +9762,9 @@ strings['sv'] = { "Create": [ "" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -8610,10 +9774,10 @@ strings['sv'] = { "Resetting access to the instance \"%1$s\"": [ "" ], - "Reset": [ + "Language": [ "" ], - "Language": [ + "Force the language settings instead of using the browser": [ "" ], "Date format": [ @@ -8625,13 +9789,13 @@ strings['sv'] = { "Merchant type": [ "" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "" ], - "Expert user": [ + "Beta tester": [ "" ], - "Taler developer": [ + "Expert user": [ "" ], "Unattended in-person offline vending": [ @@ -8646,229 +9810,274 @@ strings['sv'] = { "E-commerce site": [ "" ], + "Developer tools": [ + "" + ], + "Enable UI tools for troubleshooting.": [ + "" + ], + "Testing features": [ + "" + ], + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ + "" + ], "Developer mode": [ "" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "Money pot deleted": [ + "create pos access token": [ "" ], - "Add new pots": [ + "Device name": [ "" ], - "Load more pots before the first one": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Total": [ + "Payment services status": [ "" ], - "Delete selected pots from the database": [ + "Base URL": [ "" ], - "Load more pots after the last one": [ + "Next update": [ "" ], - "There are no money pots yet, add more pressing the + sign": [ + "This payment service is ready to be used.": [ "" ], - "Missing currency name": [ + "This payment service can't be used due to an error. Contact the service provider.": [ "" ], - "Currency name must be only letters": [ + "Details of the status": [ "" ], - "Value can only by number": [ + "No payment services supported": [ "" ], - "The value is too high": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "The value is too precise": [ + "Ready until %1$s": [ "" ], - "Invalid amount \"%1$s\": %2$s": [ + "Next update will be at %1$s": [ "" ], - "Descripton": [ + "Error": [ "" ], - "Totals": [ + "This payment service is unavailable.": [ "" ], - "There is already a money pot with the same id.": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], - "Product group deleted": [ + "Welcome!": [ "" ], - "Add new group": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], - "Load more groups before the first one": [ + "You need to associate a bank account to receive revenue.": [ "" ], - "Delete selected group from the database": [ + "Without this the server will refuse to create new orders.": [ "" ], - "Load more groups after the last one": [ + "Hide for today": [ "" ], - "There are no product groups yet, add more pressing the + sign": [ + "KYC verification needed": [ "" ], - "Scheduled report deleted": [ + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "" ], - "Scheduled reports": [ + "No 'admin' instance configured yet.": [ "" ], - "Add new reports": [ + "Create an 'admin' instance to begin using the merchant portal.": [ "" ], - "Frequency": [ + "delete bank account": [ "" ], - "Delete selected scheduled report from the database": [ + "The bank account has been deleted.": [ "" ], - "There are no reports yet, add more pressing the + sign": [ + "Delete account": [ "" ], - "No report generator configured in the server": [ + "Delete the account \"%1$s\"": [ "" ], - "Contact the system administrator to create a report generator before scheduling one.": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Description of the report. Possibly included in the report message": [ + "If you delete the account with name %1$s its information will be lost": [ "" ], - "Where the report program should send the report": [ + "Deleting an account can't be undone.": [ "" ], - "Source": [ + "Bank accounts": [ "" ], - "Base URL to request the data from.": [ + "Add new account": [ "" ], - "Type of the data source": [ + "Owner's name": [ "" ], - "Program": [ + "Delete selected accounts from the database": [ "" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ + "There are no accounts yet, add more pressing the + sign": [ "" ], - "Report frequency": [ + "No bank account configured yet.": [ "" ], - "Welcome!": [ + "Without this information you cannot create new payment orders.": [ "" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "This account is not ready to be used.": [ "" ], - "You need to associate a bank account to receive revenue.": [ + "There are pending actions related to KYC.": [ "" ], - "Without this the merchant backend will refuse to create new orders.": [ + "More details.": [ "" ], - "Hide for today": [ + "You must complete kyc requirements to receive payments.": [ "" ], - "KYC verification needed": [ + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ "" ], - "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "Invalid url": [ "" ], - "The request reached a timeout, check your connection.": [ + "URL must end with a '/'": [ "" ], - "The request was cancelled.": [ + "URL must not contain params": [ "" ], - "Too many requests were made to the server, and this action was throttled.": [ + "URL must not hash param": [ "" ], - "The server's response was malformed.": [ + "change bank account": [ "" ], - "Could not complete the request due to a network problem.": [ + "test revenue api": [ "" ], - "Unexpected request error.": [ + "Server replied with \"bad request\".": [ "" ], - "Unexpected error.": [ + "Unauthorized, check credentials.": [ "" ], - "Add new instance": [ + "The endpoint does not seem to be a Taler Revenue API.": [ "" ], - "Edit": [ + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ "" ], - "Change password": [ + "Unsupported type of account": [ "" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ + "Account:": [ "" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "Account details": [ "" ], - "Only show active instances": [ + "Extra subject": [ "" ], - "Active": [ + "Additional text to include in the wire transfer subject when settling the payment": [ "" ], - "Only show deleted instances": [ + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ "" ], - "Deleted": [ + "Endpoint URL": [ "" ], - "Show all instances": [ + "From where the merchant can download information about incoming wire transfers to this account": [ "" ], - "Delete instance": [ + "Auth type": [ "" ], - "Delete the instance \"%1$s\"": [ + "Choose the authentication type for the account info URL": [ "" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Without authentication": [ "" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "With username and password": [ "" ], - "Deleting an instance %1$s": [ + "With token": [ "" ], - "This cannot be undone!": [ + "Do not change": [ "" ], - "Purge the instance": [ + "Username to access the account information.": [ "" ], - "Purge the instance \"%1$s\"": [ + "Password to access the account information.": [ "" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Access token to access the account information.": [ "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ + "Match": [ "" ], - "Purging an instance %1$s": [ + "Check where the information match against the server info.": [ + "" + ], + "Compare info from server with account form": [ + "" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "" + ], + "The instance does not exist.": [ + "" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "" + ], + "Check if the information matches the server info.": [ + "" + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "" + ], + "Instance created": [ + "" + ], + "Please complete the marked fields and choose authorization method": [ "" ], "checking compatibility with server...": [ @@ -8886,6 +10095,9 @@ strings['sv'] = { "Business Name": [ "" ], + "update product group": [ + "" + ], "Available statistics": [ "" ], @@ -8979,6 +10191,9 @@ strings['sv'] = { "title\u0004%1$s: New access token": [ "" ], + "title\u0004%1$s: New POS access token": [ + "" + ], "title\u0004New instance": [ "" ], @@ -9019,7 +10234,7 @@ strings['it'] = { "Confirm": [ "Confermare" ], - "Correct form": [ + "Correct the form": [ "" ], "Comparing account details": [ @@ -9079,10 +10294,16 @@ strings['it'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "" ], - "Step 1:": [ + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ "" ], - "Copy and paste this IBAN and the legal name of the beneficial owner into the respective fields in your preferred banking app or online banking website.": [ + "Bank app": [ + "" + ], + "Step 1:": [ + "" + ], + "Copy and paste this IBAN and the legal name of the beneficial owner into the respective fields in your preferred banking app or online banking website.": [ "" ], "Beneficiary": [ @@ -9109,13 +10330,10 @@ strings['it'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "" ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ - "" - ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "" ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "" ], "Operation in progress...": [ @@ -9157,13 +10375,16 @@ strings['it'] = { "%1$ssec": [ "" ], - "Change value to never": [ + "Change the value to never": [ "" ], - "Change value to empty": [ + "Change the value to empty": [ + "" + ], + "The file is not an image": [ "" ], - "Image must be smaller than 1 MB": [ + "The image was normalized to be smaller than 1 MB": [ "" ], "Add": [ @@ -9232,6 +10453,9 @@ strings['it'] = { "Configuration": [ "" ], + "KYC Status": [ + "" + ], "OTP Devices": [ "" ], @@ -9253,6 +10477,9 @@ strings['it'] = { "Personalization": [ "" ], + "Payment services": [ + "" + ], "Instances": [ "" ], @@ -9265,6 +10492,21 @@ strings['it'] = { "Log out": [ "" ], + "Select one...": [ + "" + ], + "Days": [ + "" + ], + "Hours": [ + "" + ], + "Minutes": [ + "" + ], + "Seconds": [ + "" + ], "Username": [ "" ], @@ -9319,7 +10561,7 @@ strings['it'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -9328,6 +10570,12 @@ strings['it'] = { "Time customers have to pay an order before the offer expires by default.": [ "" ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "" + ], "Refund delay": [ "Rimborsato" ], @@ -9337,13 +10585,13 @@ strings['it'] = { "Wire transfer delay": [ "" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "" ], "Wire transfer rounding": [ "" ], - "Interval to which wire deadlines should be rounded up to.": [ + "Rounding interval for wire deadlines.": [ "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ @@ -9376,46 +10624,43 @@ strings['it'] = { "To year": [ "" ], - "Expired": [ + "Can't paste this content. Please copy the 8 digits again.": [ "" ], - "Required": [ - "Obbligatorio" - ], - "Unauthorized": [ + "Resend code possible in %1$s seconds.": [ "" ], - "The code is not correct.": [ + "Resend code possible in less than one minute.": [ "" ], - "The challenge is not known anymore.": [ + "Resend code possible in less than 5 minutes.": [ "" ], - "Too many attempts trying to solve the challenge.": [ + "Resend will be possible after %1$s": [ "" ], - "Validation code sent.": [ + "Expired": [ "" ], - "The verification code sent to the phone number ending with \"%1$s\"": [ - "" + "Required": [ + "Obbligatorio" ], - "The verification code sent to the email address starting with \"%1$s\"": [ + "verify code": [ "" ], - "Verification code": [ + "Unauthorized": [ "" ], - "It will expire at %1$s": [ + "The code is not correct.": [ "" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ + "The challenge is no longer valid.": [ "" ], - "Back": [ - "Indietro" + "Too many attempts trying to solve the challenge.": [ + "" ], - "Verify": [ + "send challenge": [ "" ], "Failed to send the verification code.": [ @@ -9424,7 +10669,7 @@ strings['it'] = { "The request was valid, but the server is refusing action.": [ "" ], - "The backend is not aware of the specified MFA challenge.": [ + "The server is not aware of the specified MFA challenge.": [ "" ], "Code transmission failed.": [ @@ -9436,505 +10681,487 @@ strings['it'] = { "It is too early to request another transmission of the challenge.": [ "" ], - "Multi-factor authentication required.": [ + "Validation code sent.": [ "" ], - "You need to complete all of this requirements.": [ + "The verification code sent to the phone \" %1$s\"": [ "" ], - "You need to complete at least one of this requirements.": [ + "The verification code sent to the phone number ending with \"%1$s\"": [ "" ], - "An SMS to the phone number ending with %1$s": [ + "The verification code sent to the email address \" %1$s\"": [ "" ], - "An email to the address starting with %1$s": [ + "The verification code sent to the email address starting with \"%1$s\"": [ "" ], - "You have to wait until %1$s to send a new code.": [ + "Verification code": [ "" ], - "I have a code": [ + "Code expired.": [ "" ], - "Send me a message": [ + "Didn't received the code?": [ "" ], - "Logged in": [ + "Resend": [ "" ], - "Not found": [ + "Verify": [ "" ], - "Login required": [ + "The code transmission failed.": [ "" ], - "Instance name.": [ + "The challenge is already solved.": [ "" ], - "Instance password.": [ + "Multi-factor authentication required.": [ "" ], - "Forgot password": [ + "You must complete all of these requirements.": [ "" ], - "Create new account": [ + "You need to complete at least one of this requirements.": [ "" ], - "Invalid": [ + "An SMS to the phone number ending with %1$s": [ "" ], - "Doesn't have the pattern of an email": [ + "An email to the address starting with %1$s": [ "" ], - "Should start with +": [ + "Complete": [ "" ], - "A phone number consists of numbers only": [ + "This is not a valid Bitcoin address.": [ "" ], - "Invalid value": [ + "This is not a valid Ethereum address.": [ "" ], - "Max 7 lines": [ + "This is not a valid host.": [ "" ], - "Doesn't match": [ + "IBANs usually have more than 4 digits.": [ "" ], - "Instance created": [ + "IBANs usually have fewer than 34 digits.": [ "" ], - "Unauthorized.": [ + "The IBAN's country code could not be retrieved.": [ "" ], - "Conflict.": [ - "Confermare" - ], - "Not found.": [ + "The IBAN is invalid because the checksum is wrong.": [ "" ], - "New password": [ + "This account is not allowed.": [ "" ], - "Next password to be used": [ + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ "" ], - "Repeat password": [ + "Wire method": [ "" ], - "Confirm the same password": [ + "Select the method you want to use to transfer your earnings to your business account.": [ "" ], - "Please complete the marked fields and choose authorization method": [ + "Select a wire method...": [ "" ], - "Confirm operation": [ + "Routing": [ "" ], - "Check the password.": [ + "Routing number": [ "" ], - "Instance not found.": [ + "Account": [ "" ], - "Description": [ - "" + "Account number": [ + "Importo" ], - "Helps you remember where this access token is being used before deleting it.": [ + "Code": [ "" ], - "Duration": [ + "Business Identifier Code": [ "" ], - "Time the access token will be valid.": [ + "International Bank Account Number": [ "" ], - "Refreshable access tokens can pose a security risk!": [ + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ "" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "Unified Payment Interface": [ "" ], - "Scope": [ + "Bitcoin protocol": [ "" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "Ethereum protocol": [ "" ], - "Allows all operations without limit.": [ + "Interledger protocol": [ "" ], - "Allows all operations to read information.": [ + "Enter the data without a scheme. A subpath may be included:": [ "" ], - "Allows the creation of orders and checking of payment status.": [ + "Cyclos host": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ + "cyclos account": [ "" ], - "Allows the creation of orders, checking of payment status and refunds.": [ + "Name of the account holder": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "John Doe": [ "" ], - "Allows all operations to read information with extendable expiration time.": [ + "Legal name of the person holding the account.": [ "" ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "The request reached a timeout, check your connection.": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "The request was cancelled.": [ "" ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "Too many requests were made to the server and this action was throttled.": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "The server's response was malformed, please report.": [ "" ], - "All (refreshable)": [ + "Could not complete the request due to a network problem.": [ "" ], - "Spa": [ + "Unexpected request error, please report.": [ "" ], - "Spa (refreshable)": [ + "Unexpected error.": [ "" ], - "Choose one": [ + "login": [ "" ], - "Read only": [ + "Logged in": [ "" ], - "All": [ + "Wrong password.": [ "" ], - "Order simple": [ + "The account doesn't exist.": [ "" ], - "Order Point-of-Sale": [ + "Login required": [ "" ], - "Order management": [ + "Instance name.": [ "" ], - "Order full": [ + "Instance password.": [ "" ], - "Read only (refreshable)": [ + "Forgot password": [ "" ], - "Order simple (refreshable)": [ + "Create new account": [ "" ], - "Order Point-of-Sale (refreshable)": [ + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ "" ], - "Order management (refreshable)": [ + "Testing environment": [ "" ], - "Order full (refreshable)": [ + "This server is meant for testing features and configurations. Don't use your personal information here.": [ "" ], - "Current password": [ + "Delete": [ "" ], - "Please complete the marked fields": [ + "Add new instance": [ "" ], - "Access token created": [ + "ID": [ "" ], - "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "Name": [ "" ], - "Token": [ + "Edit": [ "" ], - "This token will never expire": [ + "Change password": [ "" ], - "This token will be available until %1$s": [ + "Purge": [ "" ], - "No 'admin' instance configured yet.": [ + "There are no instances yet. Add one by pressing the '+' sign.": [ "" ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ + "delete instance": [ "" ], - "Create access token": [ + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ "" ], - "Load more devices before the first one": [ + "Unauthorized.": [ "" ], - "Load first page": [ + "Not found.": [ "" ], - "Created at": [ - "" + "Conflict.": [ + "Confermare" ], - "Expires at": [ + "Only show active instances": [ "" ], - "Never": [ + "Active": [ "" ], - "Remove this access token": [ + "Only show deleted instances": [ "" ], - "Delete": [ + "Deleted": [ "" ], - "Load more devices after the last one": [ + "Show all instances": [ "" ], - "Load next page": [ + "All": [ "" ], - "There are no active sessions yet, add one by pressing the + sign": [ + "Delete instance": [ "" ], - "Forbidden.": [ + "Delete the instance \"%1$s\"": [ "" ], - "Delete access token": [ + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ "" ], - "Deleting an access token cannot be undone.": [ + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ "" ], - "This is not a valid Bitcoin address.": [ + "Deleting an instance %1$s": [ "" ], - "This is not a valid Ethereum address.": [ + "This cannot be undone!": [ "" ], - "This is not a valid host.": [ + "Purge the instance": [ "" ], - "IBANs usually have more than 4 digits.": [ + "Purge the instance \"%1$s\"": [ "" ], - "IBANs usually have fewer than 34 digits.": [ + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ "" ], - "The IBAN's country code could not be retrieved.": [ + "The instance will disappear from your list and you will no longer be able to access its data.": [ "" ], - "The IBAN is invalid because the checksum is wrong.": [ + "Purging an instance %1$s": [ "" ], - "This account is not allowed.": [ + "create access token": [ "" ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ + "Check the password.": [ "" ], - "Wire method": [ + "Instance not found.": [ "" ], - "Select the method you want to use to transfer your earnings to your business account.": [ + "Description": [ "" ], - "Select a wire method...": [ + "Helps you remember where this access token is being used before deleting it.": [ "" ], - "Routing": [ + "Duration": [ "" ], - "Routing number": [ + "Time the access token will be valid.": [ "" ], - "Account": [ + "Refreshable access tokens can pose a security risk!": [ "" ], - "Account number": [ - "Importo" + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "" ], - "Code": [ + "Scope": [ "" ], - "Business Identifier Code": [ + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ "" ], - "International Bank Account Number": [ + "Allows all operations without limit.": [ "" ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "Allows all operations to read information.": [ "" ], - "Unified Payment Interface": [ - "" - ], - "Bitcoin protocol": [ - "" - ], - "Ethereum protocol": [ - "" - ], - "Interledger protocol": [ + "Allows the creation of orders and checking of payment status.": [ "" ], - "Enter the data without a scheme. A subpath may be included:": [ + "Allows the creation of orders, checking of payment status and inventory locking.": [ "" ], - "Cyclos host": [ + "Allows the creation of orders, checking of payment status and refunds.": [ "" ], - "cyclos account": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ "" ], - "Name of the account holder": [ + "Allows all operations to read information with extendable expiration time.": [ "" ], - "John Doe": [ + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ "" ], - "Legal name of the person holding the account.": [ + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ "" ], - "Invalid url": [ + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ "" ], - "URL must end with a '/'": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ "" ], - "URL must not contain params": [ + "All (refreshable)": [ "" ], - "URL must not hash param": [ + "Spa": [ "" ], - "Conflict": [ - "Confermare" - ], - "Server replied with \"bad request\".": [ + "Spa (refreshable)": [ "" ], - "Unauthorized, check credentials.": [ + "Choose one": [ "" ], - "The endpoint does not seem to be a Taler Revenue API.": [ + "Read only": [ "" ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "Order simple": [ "" ], - "Unsupported type of account": [ + "Order Point-of-Sale": [ "" ], - "Account:": [ - "Conto:" - ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Order management": [ "" ], - "Endpoint URL": [ + "Order full": [ "" ], - "From where the merchant can download information about incoming wire transfers to this account": [ + "Read only (refreshable)": [ "" ], - "Auth type": [ + "Order simple (refreshable)": [ "" ], - "Choose the authentication type for the account info URL": [ + "Order Point-of-Sale (refreshable)": [ "" ], - "Without authentication": [ + "Order management (refreshable)": [ "" ], - "With username and password": [ + "Order full (refreshable)": [ "" ], - "With token": [ + "Current password": [ "" ], - "Do not change": [ + "Please complete the marked fields": [ "" ], - "Username to access the account information.": [ + "Confirm operation": [ "" ], - "Password to access the account information.": [ + "Access token created": [ "" ], - "Access token to access the account information.": [ + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ "" ], - "Match": [ + "Token": [ "" ], - "Check where the information match against the server info.": [ + "This token will never expire": [ "" ], - "Compare info from server with account form": [ + "This token will be available until %1$s": [ "" ], - "Test": [ + "Create access token": [ "" ], - "Server didn't like the request we made.": [ + "Load more devices before the first one": [ "" ], - "Account details": [ + "Load first page": [ "" ], - "Check if the information matches the server info.": [ + "Created at": [ "" ], - "The bank account has been deleted.": [ + "Expires at": [ "" ], - "Delete account": [ + "Never": [ "" ], - "Delete the account \"%1$s\"": [ + "Remove this access token": [ "" ], - "Invalid payto: \"%1$s\"": [ + "Load more devices after the last one": [ "" ], - "If you delete the account with name %1$s its information will be lost": [ + "Load next page": [ "" ], - "Deleting an account can't be undone.": [ + "There are no active sessions yet, add one by pressing the + sign": [ "" ], - "Bank accounts": [ + "delete access token": [ "" ], - "Add new account": [ + "Forbidden.": [ "" ], - "Owner's name": [ + "New point-of-sale access": [ "" ], - "Delete selected accounts from the database": [ + "Delete access token": [ "" ], - "There are no accounts yet, add more pressing the + sign": [ + "Deleting an access token cannot be undone.": [ "" ], - "You must provide a bank account to receive payments.": [ + "Invalid. Please use only letters and numbers.": [ "" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ + "add category": [ "" ], - "Invalid. Please use only letters and numbers.": [ + "Not found": [ "" ], - "Name": [ + "Category name": [ "" ], - "Category name": [ + "delete category": [ "" ], "Category deleted": [ @@ -9943,9 +11170,6 @@ strings['it'] = { "Add new devices": [ "" ], - "ID": [ - "" - ], "Total products": [ "" ], @@ -9955,6 +11179,9 @@ strings['it'] = { "There are no categories yet, add more pressing the + sign": [ "" ], + "update category": [ + "" + ], "Id:": [ "" ], @@ -9973,25 +11200,37 @@ strings['it'] = { "There are no products in this category.": [ "" ], - "Account's KYC status": [ + "create product group": [ "" ], - "Exchange": [ + "delete product group": [ "" ], - "Status": [ + "Product group deleted": [ "" ], - "Ok": [ + "Add new group": [ "" ], - "Action required": [ - "Obbligatorio" + "Load more groups before the first one": [ + "" ], - "Warning": [ + "Delete selected group from the database": [ "" ], - "Error": [ + "Load more groups after the last one": [ + "" + ], + "There are no product groups yet, add more pressing the + sign": [ + "" + ], + "Account's KYC status": [ + "" + ], + "Exchange": [ + "" + ], + "Status": [ "" ], "Bank account verification required.": [ @@ -10000,7 +11239,7 @@ strings['it'] = { "More information required.": [ "" ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "" ], "Ready": [ @@ -10012,7 +11251,7 @@ strings['it'] = { "Payment service internal error. Contact administrator or check again later.": [ "" ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "" ], "Payment service timeout. Contact administrator or check again later.": [ @@ -10024,7 +11263,7 @@ strings['it'] = { "Incompatible core banking system.": [ "" ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "" ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -10036,25 +11275,31 @@ strings['it'] = { "No pending kyc verification!": [ "" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "" + ], + "The account for wire transfers is invalid.": [ "" ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "" ], - "No exchange keys": [ + "No contact with the payment service yet.": [ "" ], - "The backend service is still synchronizing with the payment service provider.": [ + "The server is still synchronizing with the payment service provider.": [ "" ], "No transfers can be made from this account": [ "" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "" + ], + "Test": [ "" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -10078,7 +11323,7 @@ strings['it'] = { "Logic bug": [ "" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "" ], "Internal error": [ @@ -10090,7 +11335,7 @@ strings['it'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "" ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -10099,13 +11344,16 @@ strings['it'] = { "Unsupported account": [ "" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "" ], - "Change value to unknown date": [ + "Change value to empty": [ + "" + ], + "Change value to never": [ "" ], "Enter description or id": [ @@ -10117,7 +11365,7 @@ strings['it'] = { "You must enter a valid product identifier.": [ "" ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -10132,7 +11380,10 @@ strings['it'] = { "How many products will be added": [ "" ], - "Add from inventory": [ + "Add it to the order": [ + "" + ], + "Invalid": [ "" ], "This product has %1$s applicable taxes configured.": [ @@ -10213,22 +11464,28 @@ strings['it'] = { "Either fulfillment url or fulfillment message must be specified.": [ "" ], - "is not a valid URL": [ + "Invalid URL": [ "" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ "" ], + "Conflict": [ + "Confermare" + ], "Product with ID \"%1$s\" is out of stock.": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "" ], "Manage products in order": [ "" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "" ], "Manage list of products in the order.": [ @@ -10309,7 +11566,7 @@ strings['it'] = { "Wire transfer time": [ "" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "" ], "Auto-refund time": [ @@ -10357,6 +11614,9 @@ strings['it'] = { "Custom field name": [ "" ], + "new extra field": [ + "" + ], "Disabled": [ "" ], @@ -10366,7 +11626,7 @@ strings['it'] = { "Deadline at %1$s": [ "" ], - "Select date to show nearby orders": [ + "get product details": [ "" ], "Only show unpaid orders": [ @@ -10399,10 +11659,7 @@ strings['it'] = { "Remove all filters": [ "" ], - "Clear date filter": [ - "" - ], - "Jump to date (%1$s)": [ + "authorize refund": [ "" ], "Gone.": [ @@ -10417,15 +11674,33 @@ strings['it'] = { "Order id": [ "" ], + "Clear date filter": [ + "" + ], + "Select date to show nearby orders": [ + "" + ], + "Jump to date (%1$s)": [ + "" + ], "Instance unknown": [ "" ], "Order unknown": [ "" ], + "This order is not refundable": [ + "" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -10459,12 +11734,15 @@ strings['it'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "" ], "refund": [ "Rimborsato" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "" ], @@ -10492,7 +11770,7 @@ strings['it'] = { "now": [ "" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -10504,6 +11782,9 @@ strings['it'] = { "This wire transfer has been notified by the payment service provider.": [ "" ], + "This wire transfer has been notified manually or by the banking system.": [ + "" + ], "This refund is waiting to be claimed by the customer.": [ "" ], @@ -10513,7 +11794,7 @@ strings['it'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -10552,19 +11833,19 @@ strings['it'] = { "Wire transfer deadline": [ "" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "" ], - "Time indicating when the order should be delivered": [ + "Auto-refund delay": [ "" ], - "Where the order will be delivered": [ + "How long the wallet should try to get an automatic refund for the purchase": [ "" ], - "Auto-refund delay": [ + "Time indicating when the order should be delivered": [ "" ], - "How long the wallet should try to get an automatic refund for the purchase": [ + "Where the order will be delivered": [ "" ], "Extra info": [ @@ -10609,28 +11890,28 @@ strings['it'] = { "Product list": [ "" ], - "refund missed: %1$s": [ + "The contract terms have a v1 order without choices_index.": [ "" ], - "refund missed: %1$s: %2$s": [ + "The contract terms have a v1 order with a bad choices_index.": [ "" ], - "refund created: %1$s": [ + "refund missed: %1$s": [ "" ], - "refund created: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "" ], - "refund taken: %1$s": [ + "refund created: %1$s": [ "" ], - "refund taken: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "" ], - "The contract terms has a v1 order without choices_index.": [ + "refund taken: %1$s": [ "" ], - "The contract terms has a v1 order with a bad choices_index.": [ + "refund taken: %1$s : %2$s": [ "" ], "wired %1$s": [ @@ -10639,7 +11920,13 @@ strings['it'] = { "wire deadline": [ "" ], - "Wired": [ + "Related wire transfers": [ + "" + ], + "Unconfirmed": [ + "Confermare" + ], + "Confirmed": [ "" ], "Refund order": [ @@ -10648,6 +11935,12 @@ strings['it'] = { "Not refundable": [ "" ], + "No wire transfer reported": [ + "" + ], + "Check wire transfers": [ + "" + ], "Next event in": [ "" ], @@ -10669,7 +11962,7 @@ strings['it'] = { "Refund URI": [ "" ], - "Pay at": [ + "Payment link": [ "" ], "Order status URL": [ @@ -10681,15 +11974,36 @@ strings['it'] = { "Unknown order status. This is an error, please contact the administrator.": [ "" ], + "Back": [ + "Indietro" + ], + "never": [ + "" + ], + "unknown": [ + "" + ], + "confirmed": [ + "Confermare" + ], + "unconfirmed": [ + "Confermare" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "" ], - "Just letters and numbers from 2 to 7": [ + "Use only letters and digits (2–7).": [ "" ], "The size of the key must be 32 characters": [ "" ], + "add otp device": [ + "" + ], "Internal ID on the system": [ "" ], @@ -10723,6 +12037,9 @@ strings['it'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "" ], + "delete otp device": [ + "" + ], "OTP devices": [ "" ], @@ -10732,6 +12049,9 @@ strings['it'] = { "There are no devices to list yet, add more by pressing the + sign": [ "" ], + "update otp device": [ + "" + ], "Template id is unknown": [ "" ], @@ -10765,9 +12085,24 @@ strings['it'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "" + ], + "Next password to be used": [ + "" + ], + "Repeat password": [ + "" + ], + "Confirm the same password": [ + "" + ], "Confirm change": [ "" ], + "change password": [ + "" + ], "Testing password change": [ "" ], @@ -10777,39 +12112,99 @@ strings['it'] = { "The current password is wrong.": [ "" ], + "change instance password": [ + "" + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "Importo" ], - "Add element to the list": [ + "create money pot": [ "" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "There is already a money pot with the same id.": [ "" ], - "Manage stock": [ + "delete money pot": [ "" ], - "This product has been configured without stock control": [ + "Money pot deleted": [ "" ], - "Infinite": [ + "Add new pots": [ "" ], - "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ + "Load more pots before the first one": [ "" ], - "Incoming": [ + "Total": [ "" ], - "Lost": [ + "Delete selected pots from the database": [ + "" + ], + "Load more pots after the last one": [ + "" + ], + "There are no money pots yet, add more pressing the + sign": [ + "" + ], + "Add element to the list": [ + "" + ], + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "" + ], + "Invalid amount \"%1$s\": %2$s": [ + "" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "" + ], + "Totals": [ + "" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ + "" + ], + "Manage stock": [ + "" + ], + "This product has been configured without stock control": [ + "" + ], + "Infinite": [ + "" + ], + "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "" ], "Current": [ "" ], + "Incoming": [ + "" + ], + "Lost": [ + "" + ], "Remove stock control for this product": [ "" ], @@ -10888,6 +12283,9 @@ strings['it'] = { "Search by group name or id": [ "" ], + "add product": [ + "" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -10903,6 +12301,9 @@ strings['it'] = { "Add product to inventory": [ "" ], + "update product": [ + "" + ], "Product not found.": [ "" ], @@ -10915,6 +12316,12 @@ strings['it'] = { "Sold": [ "" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "" + ], "Free": [ "" ], @@ -10957,6 +12364,9 @@ strings['it'] = { "There are no products to list yet, add more by pressing the + sign": [ "" ], + "delete product": [ + "" + ], "Product (ID: %1$s) has been deleted": [ "" ], @@ -10981,6 +12391,69 @@ strings['it'] = { "Product id:": [ "" ], + "It should start with /": [ + "" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "" + ], + "Description of the report. Possibly included in the report message": [ + "" + ], + "Where the report program should send the report": [ + "" + ], + "Source": [ + "" + ], + "Base URL to request the data from.": [ + "" + ], + "Type of the data source": [ + "" + ], + "Program": [ + "" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "" + ], + "Report frequency shift": [ + "" + ], + "delete scheduled report": [ + "" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "" + ], + "There are no reports yet, add more pressing the + sign": [ + "" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "" ], @@ -10990,9 +12463,6 @@ strings['it'] = { "Service unavailable": [ "" ], - "Select date from which to show statistics": [ - "" - ], "Show chart": [ "" ], @@ -11005,6 +12475,9 @@ strings['it'] = { "Orders table": [ "" ], + "Select date from which to show statistics": [ + "" + ], "Start from (%1$s)": [ "" ], @@ -11089,6 +12562,9 @@ strings['it'] = { "Too short": [ "" ], + "add template": [ + "" + ], "You don't have enough permissions.": [ "" ], @@ -11191,6 +12667,9 @@ strings['it'] = { "There are no templates to list yet, add more by pressing the + sign": [ "" ], + "delete template": [ + "" + ], "Jump to template with the given template ID": [ "" ], @@ -11203,7 +12682,7 @@ strings['it'] = { "Delete the template \"%1$s\"": [ "" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "" ], "Deleting a template cannot be undone.": [ @@ -11212,6 +12691,9 @@ strings['it'] = { "Print": [ "" ], + "update template": [ + "" + ], "The template configuration needs to be fixed.": [ "" ], @@ -11233,6 +12715,12 @@ strings['it'] = { "An order summary is required": [ "" ], + "create order from template": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "" ], @@ -11242,12 +12730,30 @@ strings['it'] = { "Amount of the order": [ "" ], + "Expiration should be after start date": [ + "" + ], + "Granularity can't be greater than duration.": [ + "" + ], + "create token family": [ + "" + ], + "There is another token family with this ID. Choose another one.": [ + "" + ], "Slug": [ "" ], "Token family slug to use in URLs (for internal use only)": [ "" ], + "User-readable token family name": [ + "" + ], + "Token family description for customers": [ + "" + ], "Kind": [ "" ], @@ -11260,7 +12766,7 @@ strings['it'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ @@ -11269,7 +12775,7 @@ strings['it'] = { "The last day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -11281,10 +12787,25 @@ strings['it'] = { "Validity Granularity": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ + "" + ], + "1 minute": [ + "" + ], + "1 hour": [ + "" + ], + "1 day": [ + "" + ], + "30 days": [ + "" + ], + "90 days": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ + "365 days": [ "" ], "Token Families": [ @@ -11305,6 +12826,9 @@ strings['it'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "" ], + "delete token family": [ + "" + ], "Token family has been deleted.": [ "" ], @@ -11323,85 +12847,88 @@ strings['it'] = { "can't be undone": [ "" ], + "update token family": [ + "" + ], "Token Family: %1$s": [ "" ], - "User-readable token family name": [ + "inform wire transfer": [ "" ], - "Token family description for customers": [ + "Wire transfer already confirmed.": [ "" ], - "Incoming wire transfers": [ + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ "" ], - "Load more wire transfers preceding the first one": [ + "The wire transfer has been confirmed.": [ "" ], - "Expected credit": [ + "Transaction details": [ "" ], - "Confirmed": [ + "Transfer ID": [ "" ], - "Validated": [ + "I have received the wire transfer": [ "" ], - "Executed on": [ + "Orders in this wire transfer": [ "" ], - "yes": [ + "Fee": [ "" ], - "no": [ + "Subtotals": [ "" ], - "never": [ + "Deposit fee": [ "" ], - "unknown": [ + "Wire fee": [ "" ], - "Load more transfers after the last one": [ + "not ready": [ "" ], - "Verified wire transfers": [ + "loading...": [ "" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "New wire transfers": [ "" ], - "All accounts": [ + "Load more wire transfers preceding the first one": [ "" ], - "Filter by account address": [ + "To be determined.": [ "" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ + "You confirm that the incoming wire transfer has arrived into your bank account.": [ "" ], - "Only show wire transfers confirmed by the merchant": [ + "Load more transfers after the last one": [ "" ], - "Verified": [ + "Confirmed wire transfers into bank account": [ "" ], - "Wire transfer already confirmed.": [ + "Show details about the incoming wire transfer.": [ "" ], - "I have received the wire transfer": [ + "There are no transfers to list yet": [ "" ], - "Confirm the wire transfer": [ + "All accounts": [ "" ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "Filter by account address": [ "" ], - "Time": [ + "Verified": [ "" ], - "Transfer ID": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], "It's not the same.": [ @@ -11410,13 +12937,13 @@ strings['it'] = { "You are deleting the instance with ID \"%1$s\"": [ "" ], - "Instance": [ + "delete current instance": [ "" ], - "Write the instance name to confirm the deletion": [ + "Instance": [ "" ], - "Purge": [ + "Write the instance name to confirm the deletion": [ "" ], "All the data will be fully deleted, otherwise only the access will be removed.": [ @@ -11425,9 +12952,36 @@ strings['it'] = { "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "" + ], + "Should start with +": [ + "" + ], + "A phone number consists of numbers only": [ + "" + ], + "Invalid phone number": [ + "" + ], + "Invalid value": [ + "" + ], + "Max 7 lines": [ + "" + ], + "update instance settings": [ + "" + ], "Instance id": [ "" ], + "URL": [ + "" + ], + "Cancel operation": [ + "" + ], "Delete this instance": [ "" ], @@ -11437,6 +12991,9 @@ strings['it'] = { "URL is invalid": [ "" ], + "add webhook": [ + "" + ], "Webhook ID to use": [ "" ], @@ -11488,9 +13045,6 @@ strings['it'] = { "Method used by the webhook": [ "" ], - "URL": [ - "" - ], "URL of the webhook where the customer will be redirected": [ "" ], @@ -11533,6 +13087,9 @@ strings['it'] = { "Body template used by the webhook.": [ "" ], + "delete webhook": [ + "" + ], "Webhook deleted successfully": [ "" ], @@ -11554,6 +13111,9 @@ strings['it'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "" ], + "update webhook": [ + "" + ], "Webhook updated": [ "" ], @@ -11566,6 +13126,12 @@ strings['it'] = { "Body template used by the webhook": [ "" ], + "Doesn't match": [ + "" + ], + "self provision instance": [ + "" + ], "There is another instance with this username.": [ "" ], @@ -11593,6 +13159,9 @@ strings['it'] = { "Create": [ "" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -11602,10 +13171,10 @@ strings['it'] = { "Resetting access to the instance \"%1$s\"": [ "" ], - "Reset": [ + "Language": [ "" ], - "Language": [ + "Force the language settings instead of using the browser": [ "" ], "Date format": [ @@ -11617,13 +13186,13 @@ strings['it'] = { "Merchant type": [ "" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "" ], - "Expert user": [ + "Beta tester": [ "" ], - "Taler developer": [ + "Expert user": [ "" ], "Unattended in-person offline vending": [ @@ -11638,229 +13207,274 @@ strings['it'] = { "E-commerce site": [ "" ], - "Developer mode": [ + "Developer tools": [ "" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Enable UI tools for troubleshooting.": [ "" ], - "Money pot deleted": [ + "Testing features": [ "" ], - "Add new pots": [ + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ "" ], - "Load more pots before the first one": [ + "Developer mode": [ "" ], - "Total": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "Delete selected pots from the database": [ + "create pos access token": [ "" ], - "Load more pots after the last one": [ + "Device name": [ "" ], - "There are no money pots yet, add more pressing the + sign": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Missing currency name": [ + "Payment services status": [ "" ], - "Currency name must be only letters": [ + "Base URL": [ "" ], - "Value can only by number": [ + "Next update": [ "" ], - "The value is too high": [ + "This payment service is ready to be used.": [ "" ], - "The value is too precise": [ + "This payment service can't be used due to an error. Contact the service provider.": [ "" ], - "Invalid amount \"%1$s\": %2$s": [ + "Details of the status": [ "" ], - "Descripton": [ + "No payment services supported": [ "" ], - "Totals": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "There is already a money pot with the same id.": [ + "Ready until %1$s": [ "" ], - "Product group deleted": [ + "Next update will be at %1$s": [ "" ], - "Add new group": [ + "Error": [ "" ], - "Load more groups before the first one": [ + "This payment service is unavailable.": [ "" ], - "Delete selected group from the database": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], - "Load more groups after the last one": [ + "Welcome!": [ "" ], - "There are no product groups yet, add more pressing the + sign": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], - "Scheduled report deleted": [ + "You need to associate a bank account to receive revenue.": [ "" ], - "Scheduled reports": [ + "Without this the server will refuse to create new orders.": [ "" ], - "Add new reports": [ + "Hide for today": [ "" ], - "Frequency": [ + "KYC verification needed": [ "" ], - "Delete selected scheduled report from the database": [ + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "" ], - "There are no reports yet, add more pressing the + sign": [ + "No 'admin' instance configured yet.": [ "" ], - "No report generator configured in the server": [ + "Create an 'admin' instance to begin using the merchant portal.": [ "" ], - "Contact the system administrator to create a report generator before scheduling one.": [ + "delete bank account": [ "" ], - "Description of the report. Possibly included in the report message": [ + "The bank account has been deleted.": [ "" ], - "Where the report program should send the report": [ + "Delete account": [ "" ], - "Source": [ + "Delete the account \"%1$s\"": [ "" ], - "Base URL to request the data from.": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Type of the data source": [ + "If you delete the account with name %1$s its information will be lost": [ "" ], - "Program": [ + "Deleting an account can't be undone.": [ "" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ + "Bank accounts": [ "" ], - "Report frequency": [ + "Add new account": [ "" ], - "Welcome!": [ + "Owner's name": [ "" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "Delete selected accounts from the database": [ "" ], - "You need to associate a bank account to receive revenue.": [ + "There are no accounts yet, add more pressing the + sign": [ "" ], - "Without this the merchant backend will refuse to create new orders.": [ + "No bank account configured yet.": [ "" ], - "Hide for today": [ + "Without this information you cannot create new payment orders.": [ "" ], - "KYC verification needed": [ + "This account is not ready to be used.": [ "" ], - "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "There are pending actions related to KYC.": [ "" ], - "The request reached a timeout, check your connection.": [ + "More details.": [ "" ], - "The request was cancelled.": [ + "You must complete kyc requirements to receive payments.": [ "" ], - "Too many requests were made to the server, and this action was throttled.": [ + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ "" ], - "The server's response was malformed.": [ + "Invalid url": [ "" ], - "Could not complete the request due to a network problem.": [ + "URL must end with a '/'": [ "" ], - "Unexpected request error.": [ + "URL must not contain params": [ "" ], - "Unexpected error.": [ + "URL must not hash param": [ "" ], - "Add new instance": [ + "change bank account": [ "" ], - "Edit": [ + "test revenue api": [ "" ], - "Change password": [ + "Server replied with \"bad request\".": [ "" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ + "Unauthorized, check credentials.": [ "" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "The endpoint does not seem to be a Taler Revenue API.": [ "" ], - "Only show active instances": [ + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ "" ], - "Active": [ + "Unsupported type of account": [ "" ], - "Only show deleted instances": [ + "Account:": [ + "Conto:" + ], + "Account details": [ "" ], - "Deleted": [ + "Extra subject": [ + "Soggetto" + ], + "Additional text to include in the wire transfer subject when settling the payment": [ "" ], - "Show all instances": [ + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ "" ], - "Delete instance": [ + "Endpoint URL": [ "" ], - "Delete the instance \"%1$s\"": [ + "From where the merchant can download information about incoming wire transfers to this account": [ "" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Auth type": [ "" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "Choose the authentication type for the account info URL": [ "" ], - "Deleting an instance %1$s": [ + "Without authentication": [ "" ], - "This cannot be undone!": [ + "With username and password": [ "" ], - "Purge the instance": [ + "With token": [ "" ], - "Purge the instance \"%1$s\"": [ + "Do not change": [ "" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Username to access the account information.": [ "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ + "Password to access the account information.": [ "" ], - "Purging an instance %1$s": [ + "Access token to access the account information.": [ + "" + ], + "Match": [ + "" + ], + "Check where the information match against the server info.": [ + "" + ], + "Compare info from server with account form": [ + "" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "" + ], + "The instance does not exist.": [ + "" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "" + ], + "Check if the information matches the server info.": [ + "" + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "" + ], + "Instance created": [ + "" + ], + "Please complete the marked fields and choose authorization method": [ "" ], "checking compatibility with server...": [ @@ -11878,6 +13492,9 @@ strings['it'] = { "Business Name": [ "" ], + "update product group": [ + "" + ], "Available statistics": [ "" ], @@ -11971,6 +13588,9 @@ strings['it'] = { "title\u0004%1$s: New access token": [ "" ], + "title\u0004%1$s: New POS access token": [ + "" + ], "title\u0004New instance": [ "" ], @@ -12011,7 +13631,7 @@ strings['he'] = { "Confirm": [ "" ], - "Correct form": [ + "Correct the form": [ "" ], "Comparing account details": [ @@ -12071,6 +13691,12 @@ strings['he'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "" ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "" + ], + "Bank app": [ + "" + ], "Step 1:": [ "" ], @@ -12101,13 +13727,10 @@ strings['he'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "" ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ - "" - ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "" ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "" ], "Operation in progress...": [ @@ -12149,13 +13772,16 @@ strings['he'] = { "%1$ssec": [ "" ], - "Change value to never": [ + "Change the value to never": [ "" ], - "Change value to empty": [ + "Change the value to empty": [ + "" + ], + "The file is not an image": [ "" ], - "Image must be smaller than 1 MB": [ + "The image was normalized to be smaller than 1 MB": [ "" ], "Add": [ @@ -12224,6 +13850,9 @@ strings['he'] = { "Configuration": [ "" ], + "KYC Status": [ + "" + ], "OTP Devices": [ "" ], @@ -12245,6 +13874,9 @@ strings['he'] = { "Personalization": [ "" ], + "Payment services": [ + "" + ], "Instances": [ "" ], @@ -12257,6 +13889,21 @@ strings['he'] = { "Log out": [ "" ], + "Select one...": [ + "" + ], + "Days": [ + "" + ], + "Hours": [ + "" + ], + "Minutes": [ + "" + ], + "Seconds": [ + "" + ], "Username": [ "" ], @@ -12311,7 +13958,7 @@ strings['he'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -12320,6 +13967,12 @@ strings['he'] = { "Time customers have to pay an order before the offer expires by default.": [ "" ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "" + ], "Refund delay": [ "" ], @@ -12329,13 +13982,13 @@ strings['he'] = { "Wire transfer delay": [ "" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "" ], "Wire transfer rounding": [ "" ], - "Interval to which wire deadlines should be rounded up to.": [ + "Rounding interval for wire deadlines.": [ "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ @@ -12368,46 +14021,43 @@ strings['he'] = { "To year": [ "" ], - "Expired": [ - "" - ], - "Required": [ + "Can't paste this content. Please copy the 8 digits again.": [ "" ], - "Unauthorized": [ + "Resend code possible in %1$s seconds.": [ "" ], - "The code is not correct.": [ + "Resend code possible in less than one minute.": [ "" ], - "The challenge is not known anymore.": [ + "Resend code possible in less than 5 minutes.": [ "" ], - "Too many attempts trying to solve the challenge.": [ + "Resend will be possible after %1$s": [ "" ], - "Validation code sent.": [ + "Expired": [ "" ], - "The verification code sent to the phone number ending with \"%1$s\"": [ + "Required": [ "" ], - "The verification code sent to the email address starting with \"%1$s\"": [ + "verify code": [ "" ], - "Verification code": [ + "Unauthorized": [ "" ], - "It will expire at %1$s": [ + "The code is not correct.": [ "" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ + "The challenge is no longer valid.": [ "" ], - "Back": [ + "Too many attempts trying to solve the challenge.": [ "" ], - "Verify": [ + "send challenge": [ "" ], "Failed to send the verification code.": [ @@ -12416,7 +14066,7 @@ strings['he'] = { "The request was valid, but the server is refusing action.": [ "" ], - "The backend is not aware of the specified MFA challenge.": [ + "The server is not aware of the specified MFA challenge.": [ "" ], "Code transmission failed.": [ @@ -12428,505 +14078,487 @@ strings['he'] = { "It is too early to request another transmission of the challenge.": [ "" ], - "Multi-factor authentication required.": [ + "Validation code sent.": [ "" ], - "You need to complete all of this requirements.": [ + "The verification code sent to the phone \" %1$s\"": [ "" ], - "You need to complete at least one of this requirements.": [ + "The verification code sent to the phone number ending with \"%1$s\"": [ "" ], - "An SMS to the phone number ending with %1$s": [ + "The verification code sent to the email address \" %1$s\"": [ "" ], - "An email to the address starting with %1$s": [ + "The verification code sent to the email address starting with \"%1$s\"": [ "" ], - "You have to wait until %1$s to send a new code.": [ + "Verification code": [ "" ], - "I have a code": [ + "Code expired.": [ "" ], - "Send me a message": [ + "Didn't received the code?": [ "" ], - "Logged in": [ + "Resend": [ "" ], - "Not found": [ + "Verify": [ "" ], - "Login required": [ + "The code transmission failed.": [ "" ], - "Instance name.": [ + "The challenge is already solved.": [ "" ], - "Instance password.": [ + "Multi-factor authentication required.": [ "" ], - "Forgot password": [ + "You must complete all of these requirements.": [ "" ], - "Create new account": [ + "You need to complete at least one of this requirements.": [ "" ], - "Invalid": [ + "An SMS to the phone number ending with %1$s": [ "" ], - "Doesn't have the pattern of an email": [ + "An email to the address starting with %1$s": [ "" ], - "Should start with +": [ + "Complete": [ "" ], - "A phone number consists of numbers only": [ + "This is not a valid Bitcoin address.": [ "" ], - "Invalid value": [ + "This is not a valid Ethereum address.": [ "" ], - "Max 7 lines": [ + "This is not a valid host.": [ "" ], - "Doesn't match": [ + "IBANs usually have more than 4 digits.": [ "" ], - "Instance created": [ + "IBANs usually have fewer than 34 digits.": [ "" ], - "Unauthorized.": [ + "The IBAN's country code could not be retrieved.": [ "" ], - "Conflict.": [ + "The IBAN is invalid because the checksum is wrong.": [ "" ], - "Not found.": [ + "This account is not allowed.": [ "" ], - "New password": [ + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ "" ], - "Next password to be used": [ + "Wire method": [ "" ], - "Repeat password": [ + "Select the method you want to use to transfer your earnings to your business account.": [ "" ], - "Confirm the same password": [ + "Select a wire method...": [ "" ], - "Please complete the marked fields and choose authorization method": [ + "Routing": [ "" ], - "Confirm operation": [ + "Routing number": [ "" ], - "Check the password.": [ + "Account": [ "" ], - "Instance not found.": [ + "Account number": [ "" ], - "Description": [ + "Code": [ "" ], - "Helps you remember where this access token is being used before deleting it.": [ + "Business Identifier Code": [ "" ], - "Duration": [ + "International Bank Account Number": [ "" ], - "Time the access token will be valid.": [ + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ "" ], - "Refreshable access tokens can pose a security risk!": [ + "Unified Payment Interface": [ "" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "Bitcoin protocol": [ "" ], - "Scope": [ + "Ethereum protocol": [ "" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "Interledger protocol": [ "" ], - "Allows all operations without limit.": [ - "" - ], - "Allows all operations to read information.": [ - "" - ], - "Allows the creation of orders and checking of payment status.": [ - "" - ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ - "" - ], - "Allows the creation of orders, checking of payment status and refunds.": [ - "" - ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ - "" - ], - "Allows all operations to read information with extendable expiration time.": [ + "Enter the data without a scheme. A subpath may be included:": [ "" ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "Cyclos host": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "cyclos account": [ "" ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "Name of the account holder": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "John Doe": [ "" ], - "All (refreshable)": [ + "Legal name of the person holding the account.": [ "" ], - "Spa": [ + "The request reached a timeout, check your connection.": [ "" ], - "Spa (refreshable)": [ + "The request was cancelled.": [ "" ], - "Choose one": [ + "Too many requests were made to the server and this action was throttled.": [ "" ], - "Read only": [ + "The server's response was malformed, please report.": [ "" ], - "All": [ + "Could not complete the request due to a network problem.": [ "" ], - "Order simple": [ + "Unexpected request error, please report.": [ "" ], - "Order Point-of-Sale": [ + "Unexpected error.": [ "" ], - "Order management": [ + "login": [ "" ], - "Order full": [ + "Logged in": [ "" ], - "Read only (refreshable)": [ + "Wrong password.": [ "" ], - "Order simple (refreshable)": [ + "The account doesn't exist.": [ "" ], - "Order Point-of-Sale (refreshable)": [ + "Login required": [ "" ], - "Order management (refreshable)": [ + "Instance name.": [ "" ], - "Order full (refreshable)": [ + "Instance password.": [ "" ], - "Current password": [ + "Forgot password": [ "" ], - "Please complete the marked fields": [ + "Create new account": [ "" ], - "Access token created": [ + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ "" ], - "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "Testing environment": [ "" ], - "Token": [ + "This server is meant for testing features and configurations. Don't use your personal information here.": [ "" ], - "This token will never expire": [ + "Delete": [ "" ], - "This token will be available until %1$s": [ + "Add new instance": [ "" ], - "No 'admin' instance configured yet.": [ + "ID": [ "" ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ + "Name": [ "" ], - "Create access token": [ + "Edit": [ "" ], - "Load more devices before the first one": [ + "Change password": [ "" ], - "Load first page": [ + "Purge": [ "" ], - "Created at": [ + "There are no instances yet. Add one by pressing the '+' sign.": [ "" ], - "Expires at": [ + "delete instance": [ "" ], - "Never": [ + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ "" ], - "Remove this access token": [ + "Unauthorized.": [ "" ], - "Delete": [ + "Not found.": [ "" ], - "Load more devices after the last one": [ + "Conflict.": [ "" ], - "Load next page": [ + "Only show active instances": [ "" ], - "There are no active sessions yet, add one by pressing the + sign": [ + "Active": [ "" ], - "Forbidden.": [ + "Only show deleted instances": [ "" ], - "Delete access token": [ + "Deleted": [ "" ], - "Deleting an access token cannot be undone.": [ + "Show all instances": [ "" ], - "This is not a valid Bitcoin address.": [ + "All": [ "" ], - "This is not a valid Ethereum address.": [ + "Delete instance": [ "" ], - "This is not a valid host.": [ + "Delete the instance \"%1$s\"": [ "" ], - "IBANs usually have more than 4 digits.": [ + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ "" ], - "IBANs usually have fewer than 34 digits.": [ + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ "" ], - "The IBAN's country code could not be retrieved.": [ + "Deleting an instance %1$s": [ "" ], - "The IBAN is invalid because the checksum is wrong.": [ + "This cannot be undone!": [ "" ], - "This account is not allowed.": [ + "Purge the instance": [ "" ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ + "Purge the instance \"%1$s\"": [ "" ], - "Wire method": [ + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ "" ], - "Select the method you want to use to transfer your earnings to your business account.": [ + "The instance will disappear from your list and you will no longer be able to access its data.": [ "" ], - "Select a wire method...": [ + "Purging an instance %1$s": [ "" ], - "Routing": [ + "create access token": [ "" ], - "Routing number": [ + "Check the password.": [ "" ], - "Account": [ + "Instance not found.": [ "" ], - "Account number": [ + "Description": [ "" ], - "Code": [ + "Helps you remember where this access token is being used before deleting it.": [ "" ], - "Business Identifier Code": [ + "Duration": [ "" ], - "International Bank Account Number": [ + "Time the access token will be valid.": [ "" ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "Refreshable access tokens can pose a security risk!": [ "" ], - "Unified Payment Interface": [ + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ "" ], - "Bitcoin protocol": [ + "Scope": [ "" ], - "Ethereum protocol": [ + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ "" ], - "Interledger protocol": [ + "Allows all operations without limit.": [ "" ], - "Enter the data without a scheme. A subpath may be included:": [ + "Allows all operations to read information.": [ "" ], - "Cyclos host": [ + "Allows the creation of orders and checking of payment status.": [ "" ], - "cyclos account": [ + "Allows the creation of orders, checking of payment status and inventory locking.": [ "" ], - "Name of the account holder": [ + "Allows the creation of orders, checking of payment status and refunds.": [ "" ], - "John Doe": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ "" ], - "Legal name of the person holding the account.": [ + "Allows all operations to read information with extendable expiration time.": [ "" ], - "Invalid url": [ + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ "" ], - "URL must end with a '/'": [ + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ "" ], - "URL must not contain params": [ + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ "" ], - "URL must not hash param": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ "" ], - "Conflict": [ + "All (refreshable)": [ "" ], - "Server replied with \"bad request\".": [ + "Spa": [ "" ], - "Unauthorized, check credentials.": [ + "Spa (refreshable)": [ "" ], - "The endpoint does not seem to be a Taler Revenue API.": [ + "Choose one": [ "" ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "Read only": [ "" ], - "Unsupported type of account": [ + "Order simple": [ "" ], - "Account:": [ + "Order Point-of-Sale": [ "" ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Order management": [ "" ], - "Endpoint URL": [ + "Order full": [ "" ], - "From where the merchant can download information about incoming wire transfers to this account": [ + "Read only (refreshable)": [ "" ], - "Auth type": [ + "Order simple (refreshable)": [ "" ], - "Choose the authentication type for the account info URL": [ + "Order Point-of-Sale (refreshable)": [ "" ], - "Without authentication": [ + "Order management (refreshable)": [ "" ], - "With username and password": [ + "Order full (refreshable)": [ "" ], - "With token": [ + "Current password": [ "" ], - "Do not change": [ + "Please complete the marked fields": [ "" ], - "Username to access the account information.": [ + "Confirm operation": [ "" ], - "Password to access the account information.": [ + "Access token created": [ "" ], - "Access token to access the account information.": [ + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ "" ], - "Match": [ + "Token": [ "" ], - "Check where the information match against the server info.": [ + "This token will never expire": [ "" ], - "Compare info from server with account form": [ + "This token will be available until %1$s": [ "" ], - "Test": [ + "Create access token": [ "" ], - "Server didn't like the request we made.": [ + "Load more devices before the first one": [ "" ], - "Account details": [ + "Load first page": [ "" ], - "Check if the information matches the server info.": [ + "Created at": [ "" ], - "The bank account has been deleted.": [ + "Expires at": [ "" ], - "Delete account": [ + "Never": [ "" ], - "Delete the account \"%1$s\"": [ + "Remove this access token": [ "" ], - "Invalid payto: \"%1$s\"": [ + "Load more devices after the last one": [ "" ], - "If you delete the account with name %1$s its information will be lost": [ + "Load next page": [ "" ], - "Deleting an account can't be undone.": [ + "There are no active sessions yet, add one by pressing the + sign": [ "" ], - "Bank accounts": [ + "delete access token": [ "" ], - "Add new account": [ + "Forbidden.": [ "" ], - "Owner's name": [ + "New point-of-sale access": [ "" ], - "Delete selected accounts from the database": [ + "Delete access token": [ "" ], - "There are no accounts yet, add more pressing the + sign": [ + "Deleting an access token cannot be undone.": [ "" ], - "You must provide a bank account to receive payments.": [ + "Invalid. Please use only letters and numbers.": [ "" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ + "add category": [ "" ], - "Invalid. Please use only letters and numbers.": [ + "Not found": [ "" ], - "Name": [ + "Category name": [ "" ], - "Category name": [ + "delete category": [ "" ], "Category deleted": [ @@ -12935,9 +14567,6 @@ strings['he'] = { "Add new devices": [ "" ], - "ID": [ - "" - ], "Total products": [ "" ], @@ -12947,6 +14576,9 @@ strings['he'] = { "There are no categories yet, add more pressing the + sign": [ "" ], + "update category": [ + "" + ], "Id:": [ "" ], @@ -12965,34 +14597,46 @@ strings['he'] = { "There are no products in this category.": [ "" ], - "Account's KYC status": [ + "create product group": [ "" ], - "Exchange": [ + "delete product group": [ "" ], - "Status": [ + "Product group deleted": [ "" ], - "Ok": [ + "Add new group": [ "" ], - "Action required": [ + "Load more groups before the first one": [ "" ], - "Warning": [ + "Delete selected group from the database": [ "" ], - "Error": [ + "Load more groups after the last one": [ "" ], - "Bank account verification required.": [ + "There are no product groups yet, add more pressing the + sign": [ "" ], - "More information required.": [ + "Account's KYC status": [ "" ], - "Awaiting for account review.": [ + "Exchange": [ + "" + ], + "Status": [ + "" + ], + "Bank account verification required.": [ + "" + ], + "More information required.": [ + "" + ], + "Awaiting account review.": [ "" ], "Ready": [ @@ -13004,7 +14648,7 @@ strings['he'] = { "Payment service internal error. Contact administrator or check again later.": [ "" ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "" ], "Payment service timeout. Contact administrator or check again later.": [ @@ -13016,7 +14660,7 @@ strings['he'] = { "Incompatible core banking system.": [ "" ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "" ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -13028,25 +14672,31 @@ strings['he'] = { "No pending kyc verification!": [ "" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "" + ], + "The account for wire transfers is invalid.": [ "" ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "" ], - "No exchange keys": [ + "No contact with the payment service yet.": [ "" ], - "The backend service is still synchronizing with the payment service provider.": [ + "The server is still synchronizing with the payment service provider.": [ "" ], "No transfers can be made from this account": [ "" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "" + ], + "Test": [ "" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -13070,7 +14720,7 @@ strings['he'] = { "Logic bug": [ "" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "" ], "Internal error": [ @@ -13082,7 +14732,7 @@ strings['he'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "" ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -13091,13 +14741,16 @@ strings['he'] = { "Unsupported account": [ "" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "" ], - "Change value to unknown date": [ + "Change value to empty": [ + "" + ], + "Change value to never": [ "" ], "Enter description or id": [ @@ -13109,7 +14762,7 @@ strings['he'] = { "You must enter a valid product identifier.": [ "" ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -13124,7 +14777,10 @@ strings['he'] = { "How many products will be added": [ "" ], - "Add from inventory": [ + "Add it to the order": [ + "" + ], + "Invalid": [ "" ], "This product has %1$s applicable taxes configured.": [ @@ -13205,22 +14861,28 @@ strings['he'] = { "Either fulfillment url or fulfillment message must be specified.": [ "" ], - "is not a valid URL": [ + "Invalid URL": [ "" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ + "" + ], + "Conflict": [ "" ], "Product with ID \"%1$s\" is out of stock.": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "" ], "Manage products in order": [ "" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "" ], "Manage list of products in the order.": [ @@ -13301,7 +14963,7 @@ strings['he'] = { "Wire transfer time": [ "" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "" ], "Auto-refund time": [ @@ -13349,6 +15011,9 @@ strings['he'] = { "Custom field name": [ "" ], + "new extra field": [ + "" + ], "Disabled": [ "" ], @@ -13358,7 +15023,7 @@ strings['he'] = { "Deadline at %1$s": [ "" ], - "Select date to show nearby orders": [ + "get product details": [ "" ], "Only show unpaid orders": [ @@ -13391,10 +15056,7 @@ strings['he'] = { "Remove all filters": [ "" ], - "Clear date filter": [ - "" - ], - "Jump to date (%1$s)": [ + "authorize refund": [ "" ], "Gone.": [ @@ -13409,15 +15071,33 @@ strings['he'] = { "Order id": [ "" ], + "Clear date filter": [ + "" + ], + "Select date to show nearby orders": [ + "" + ], + "Jump to date (%1$s)": [ + "" + ], "Instance unknown": [ "" ], "Order unknown": [ "" ], + "This order is not refundable": [ + "" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -13451,12 +15131,15 @@ strings['he'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "" ], "refund": [ "" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "" ], @@ -13484,7 +15167,7 @@ strings['he'] = { "now": [ "" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -13496,6 +15179,9 @@ strings['he'] = { "This wire transfer has been notified by the payment service provider.": [ "" ], + "This wire transfer has been notified manually or by the banking system.": [ + "" + ], "This refund is waiting to be claimed by the customer.": [ "" ], @@ -13505,7 +15191,7 @@ strings['he'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -13544,19 +15230,19 @@ strings['he'] = { "Wire transfer deadline": [ "" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "" ], - "Time indicating when the order should be delivered": [ + "Auto-refund delay": [ "" ], - "Where the order will be delivered": [ + "How long the wallet should try to get an automatic refund for the purchase": [ "" ], - "Auto-refund delay": [ + "Time indicating when the order should be delivered": [ "" ], - "How long the wallet should try to get an automatic refund for the purchase": [ + "Where the order will be delivered": [ "" ], "Extra info": [ @@ -13601,37 +15287,43 @@ strings['he'] = { "Product list": [ "" ], + "The contract terms have a v1 order without choices_index.": [ + "" + ], + "The contract terms have a v1 order with a bad choices_index.": [ + "" + ], "refund missed: %1$s": [ "" ], - "refund missed: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "" ], "refund created: %1$s": [ "" ], - "refund created: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "" ], "refund taken: %1$s": [ "" ], - "refund taken: %1$s: %2$s": [ + "refund taken: %1$s : %2$s": [ "" ], - "The contract terms has a v1 order without choices_index.": [ + "wired %1$s": [ "" ], - "The contract terms has a v1 order with a bad choices_index.": [ + "wire deadline": [ "" ], - "wired %1$s": [ + "Related wire transfers": [ "" ], - "wire deadline": [ + "Unconfirmed": [ "" ], - "Wired": [ + "Confirmed": [ "" ], "Refund order": [ @@ -13640,6 +15332,12 @@ strings['he'] = { "Not refundable": [ "" ], + "No wire transfer reported": [ + "" + ], + "Check wire transfers": [ + "" + ], "Next event in": [ "" ], @@ -13661,7 +15359,7 @@ strings['he'] = { "Refund URI": [ "" ], - "Pay at": [ + "Payment link": [ "" ], "Order status URL": [ @@ -13673,15 +15371,36 @@ strings['he'] = { "Unknown order status. This is an error, please contact the administrator.": [ "" ], + "Back": [ + "" + ], + "never": [ + "" + ], + "unknown": [ + "" + ], + "confirmed": [ + "" + ], + "unconfirmed": [ + "" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "" ], - "Just letters and numbers from 2 to 7": [ + "Use only letters and digits (2–7).": [ "" ], "The size of the key must be 32 characters": [ "" ], + "add otp device": [ + "" + ], "Internal ID on the system": [ "" ], @@ -13715,6 +15434,9 @@ strings['he'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "" ], + "delete otp device": [ + "" + ], "OTP devices": [ "" ], @@ -13724,6 +15446,9 @@ strings['he'] = { "There are no devices to list yet, add more by pressing the + sign": [ "" ], + "update otp device": [ + "" + ], "Template id is unknown": [ "" ], @@ -13757,9 +15482,24 @@ strings['he'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "" + ], + "Next password to be used": [ + "" + ], + "Repeat password": [ + "" + ], + "Confirm the same password": [ + "" + ], "Confirm change": [ "" ], + "change password": [ + "" + ], "Testing password change": [ "" ], @@ -13769,16 +15509,76 @@ strings['he'] = { "The current password is wrong.": [ "" ], + "change instance password": [ + "" + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "" ], + "create money pot": [ + "" + ], + "There is already a money pot with the same id.": [ + "" + ], + "delete money pot": [ + "" + ], + "Money pot deleted": [ + "" + ], + "Add new pots": [ + "" + ], + "Load more pots before the first one": [ + "" + ], + "Total": [ + "" + ], + "Delete selected pots from the database": [ + "" + ], + "Load more pots after the last one": [ + "" + ], + "There are no money pots yet, add more pressing the + sign": [ + "" + ], "Add element to the list": [ "" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "" + ], + "Invalid amount \"%1$s\": %2$s": [ + "" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "" + ], + "Totals": [ + "" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "" ], "Manage stock": [ @@ -13793,13 +15593,13 @@ strings['he'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "" ], - "Incoming": [ + "Current": [ "" ], - "Lost": [ + "Incoming": [ "" ], - "Current": [ + "Lost": [ "" ], "Remove stock control for this product": [ @@ -13880,6 +15680,9 @@ strings['he'] = { "Search by group name or id": [ "" ], + "add product": [ + "" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -13895,6 +15698,9 @@ strings['he'] = { "Add product to inventory": [ "" ], + "update product": [ + "" + ], "Product not found.": [ "" ], @@ -13907,6 +15713,12 @@ strings['he'] = { "Sold": [ "" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "" + ], "Free": [ "" ], @@ -13949,6 +15761,9 @@ strings['he'] = { "There are no products to list yet, add more by pressing the + sign": [ "" ], + "delete product": [ + "" + ], "Product (ID: %1$s) has been deleted": [ "" ], @@ -13973,6 +15788,69 @@ strings['he'] = { "Product id:": [ "" ], + "It should start with /": [ + "" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "" + ], + "Description of the report. Possibly included in the report message": [ + "" + ], + "Where the report program should send the report": [ + "" + ], + "Source": [ + "" + ], + "Base URL to request the data from.": [ + "" + ], + "Type of the data source": [ + "" + ], + "Program": [ + "" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "" + ], + "Report frequency shift": [ + "" + ], + "delete scheduled report": [ + "" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "" + ], + "There are no reports yet, add more pressing the + sign": [ + "" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "" ], @@ -13982,9 +15860,6 @@ strings['he'] = { "Service unavailable": [ "" ], - "Select date from which to show statistics": [ - "" - ], "Show chart": [ "" ], @@ -13997,6 +15872,9 @@ strings['he'] = { "Orders table": [ "" ], + "Select date from which to show statistics": [ + "" + ], "Start from (%1$s)": [ "" ], @@ -14081,6 +15959,9 @@ strings['he'] = { "Too short": [ "" ], + "add template": [ + "" + ], "You don't have enough permissions.": [ "" ], @@ -14183,6 +16064,9 @@ strings['he'] = { "There are no templates to list yet, add more by pressing the + sign": [ "" ], + "delete template": [ + "" + ], "Jump to template with the given template ID": [ "" ], @@ -14195,7 +16079,7 @@ strings['he'] = { "Delete the template \"%1$s\"": [ "" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "" ], "Deleting a template cannot be undone.": [ @@ -14204,6 +16088,9 @@ strings['he'] = { "Print": [ "" ], + "update template": [ + "" + ], "The template configuration needs to be fixed.": [ "" ], @@ -14225,21 +16112,45 @@ strings['he'] = { "An order summary is required": [ "" ], - "No more stock for product with ID \"%1$s\".": [ + "create order from template": [ "" ], - "New order from template": [ + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], + "No more stock for product with ID \"%1$s\".": [ + "" + ], + "New order from template": [ "" ], "Amount of the order": [ "" ], + "Expiration should be after start date": [ + "" + ], + "Granularity can't be greater than duration.": [ + "" + ], + "create token family": [ + "" + ], + "There is another token family with this ID. Choose another one.": [ + "" + ], "Slug": [ "" ], "Token family slug to use in URLs (for internal use only)": [ "" ], + "User-readable token family name": [ + "" + ], + "Token family description for customers": [ + "" + ], "Kind": [ "" ], @@ -14252,7 +16163,7 @@ strings['he'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ @@ -14261,7 +16172,7 @@ strings['he'] = { "The last day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -14273,10 +16184,25 @@ strings['he'] = { "Validity Granularity": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ + "" + ], + "1 minute": [ + "" + ], + "1 hour": [ + "" + ], + "1 day": [ + "" + ], + "30 days": [ + "" + ], + "90 days": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ + "365 days": [ "" ], "Token Families": [ @@ -14297,6 +16223,9 @@ strings['he'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "" ], + "delete token family": [ + "" + ], "Token family has been deleted.": [ "" ], @@ -14315,85 +16244,88 @@ strings['he'] = { "can't be undone": [ "" ], + "update token family": [ + "" + ], "Token Family: %1$s": [ "" ], - "User-readable token family name": [ + "inform wire transfer": [ "" ], - "Token family description for customers": [ + "Wire transfer already confirmed.": [ "" ], - "Incoming wire transfers": [ + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ "" ], - "Load more wire transfers preceding the first one": [ + "The wire transfer has been confirmed.": [ "" ], - "Expected credit": [ + "Transaction details": [ "" ], - "Confirmed": [ + "Transfer ID": [ "" ], - "Validated": [ + "I have received the wire transfer": [ "" ], - "Executed on": [ + "Orders in this wire transfer": [ "" ], - "yes": [ + "Fee": [ "" ], - "no": [ + "Subtotals": [ "" ], - "never": [ + "Deposit fee": [ "" ], - "unknown": [ + "Wire fee": [ "" ], - "Load more transfers after the last one": [ + "not ready": [ "" ], - "Verified wire transfers": [ + "loading...": [ "" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "New wire transfers": [ "" ], - "All accounts": [ + "Load more wire transfers preceding the first one": [ "" ], - "Filter by account address": [ + "To be determined.": [ "" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ + "You confirm that the incoming wire transfer has arrived into your bank account.": [ "" ], - "Only show wire transfers confirmed by the merchant": [ + "Load more transfers after the last one": [ "" ], - "Verified": [ + "Confirmed wire transfers into bank account": [ "" ], - "Wire transfer already confirmed.": [ + "Show details about the incoming wire transfer.": [ "" ], - "I have received the wire transfer": [ + "There are no transfers to list yet": [ "" ], - "Confirm the wire transfer": [ + "All accounts": [ "" ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "Filter by account address": [ "" ], - "Time": [ + "Verified": [ "" ], - "Transfer ID": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], "It's not the same.": [ @@ -14402,13 +16334,13 @@ strings['he'] = { "You are deleting the instance with ID \"%1$s\"": [ "" ], - "Instance": [ + "delete current instance": [ "" ], - "Write the instance name to confirm the deletion": [ + "Instance": [ "" ], - "Purge": [ + "Write the instance name to confirm the deletion": [ "" ], "All the data will be fully deleted, otherwise only the access will be removed.": [ @@ -14417,9 +16349,36 @@ strings['he'] = { "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "" + ], + "Should start with +": [ + "" + ], + "A phone number consists of numbers only": [ + "" + ], + "Invalid phone number": [ + "" + ], + "Invalid value": [ + "" + ], + "Max 7 lines": [ + "" + ], + "update instance settings": [ + "" + ], "Instance id": [ "" ], + "URL": [ + "" + ], + "Cancel operation": [ + "" + ], "Delete this instance": [ "" ], @@ -14429,6 +16388,9 @@ strings['he'] = { "URL is invalid": [ "" ], + "add webhook": [ + "" + ], "Webhook ID to use": [ "" ], @@ -14480,9 +16442,6 @@ strings['he'] = { "Method used by the webhook": [ "" ], - "URL": [ - "" - ], "URL of the webhook where the customer will be redirected": [ "" ], @@ -14525,6 +16484,9 @@ strings['he'] = { "Body template used by the webhook.": [ "" ], + "delete webhook": [ + "" + ], "Webhook deleted successfully": [ "" ], @@ -14546,6 +16508,9 @@ strings['he'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "" ], + "update webhook": [ + "" + ], "Webhook updated": [ "" ], @@ -14558,6 +16523,12 @@ strings['he'] = { "Body template used by the webhook": [ "" ], + "Doesn't match": [ + "" + ], + "self provision instance": [ + "" + ], "There is another instance with this username.": [ "" ], @@ -14585,6 +16556,9 @@ strings['he'] = { "Create": [ "" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -14594,10 +16568,10 @@ strings['he'] = { "Resetting access to the instance \"%1$s\"": [ "" ], - "Reset": [ + "Language": [ "" ], - "Language": [ + "Force the language settings instead of using the browser": [ "" ], "Date format": [ @@ -14609,13 +16583,13 @@ strings['he'] = { "Merchant type": [ "" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "" ], - "Expert user": [ + "Beta tester": [ "" ], - "Taler developer": [ + "Expert user": [ "" ], "Unattended in-person offline vending": [ @@ -14630,229 +16604,274 @@ strings['he'] = { "E-commerce site": [ "" ], + "Developer tools": [ + "" + ], + "Enable UI tools for troubleshooting.": [ + "" + ], + "Testing features": [ + "" + ], + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ + "" + ], "Developer mode": [ "" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "Money pot deleted": [ + "create pos access token": [ "" ], - "Add new pots": [ + "Device name": [ "" ], - "Load more pots before the first one": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Total": [ + "Payment services status": [ "" ], - "Delete selected pots from the database": [ + "Base URL": [ "" ], - "Load more pots after the last one": [ + "Next update": [ "" ], - "There are no money pots yet, add more pressing the + sign": [ + "This payment service is ready to be used.": [ "" ], - "Missing currency name": [ + "This payment service can't be used due to an error. Contact the service provider.": [ "" ], - "Currency name must be only letters": [ + "Details of the status": [ "" ], - "Value can only by number": [ + "No payment services supported": [ "" ], - "The value is too high": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "The value is too precise": [ + "Ready until %1$s": [ "" ], - "Invalid amount \"%1$s\": %2$s": [ + "Next update will be at %1$s": [ "" ], - "Descripton": [ + "Error": [ "" ], - "Totals": [ + "This payment service is unavailable.": [ "" ], - "There is already a money pot with the same id.": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], - "Product group deleted": [ + "Welcome!": [ "" ], - "Add new group": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], - "Load more groups before the first one": [ + "You need to associate a bank account to receive revenue.": [ "" ], - "Delete selected group from the database": [ + "Without this the server will refuse to create new orders.": [ "" ], - "Load more groups after the last one": [ + "Hide for today": [ "" ], - "There are no product groups yet, add more pressing the + sign": [ + "KYC verification needed": [ "" ], - "Scheduled report deleted": [ + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "" ], - "Scheduled reports": [ + "No 'admin' instance configured yet.": [ "" ], - "Add new reports": [ + "Create an 'admin' instance to begin using the merchant portal.": [ "" ], - "Frequency": [ + "delete bank account": [ "" ], - "Delete selected scheduled report from the database": [ + "The bank account has been deleted.": [ "" ], - "There are no reports yet, add more pressing the + sign": [ + "Delete account": [ "" ], - "No report generator configured in the server": [ + "Delete the account \"%1$s\"": [ "" ], - "Contact the system administrator to create a report generator before scheduling one.": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Description of the report. Possibly included in the report message": [ + "If you delete the account with name %1$s its information will be lost": [ "" ], - "Where the report program should send the report": [ + "Deleting an account can't be undone.": [ "" ], - "Source": [ + "Bank accounts": [ "" ], - "Base URL to request the data from.": [ + "Add new account": [ "" ], - "Type of the data source": [ + "Owner's name": [ "" ], - "Program": [ + "Delete selected accounts from the database": [ "" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ + "There are no accounts yet, add more pressing the + sign": [ "" ], - "Report frequency": [ + "No bank account configured yet.": [ "" ], - "Welcome!": [ + "Without this information you cannot create new payment orders.": [ "" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "This account is not ready to be used.": [ "" ], - "You need to associate a bank account to receive revenue.": [ + "There are pending actions related to KYC.": [ "" ], - "Without this the merchant backend will refuse to create new orders.": [ + "More details.": [ "" ], - "Hide for today": [ + "You must complete kyc requirements to receive payments.": [ "" ], - "KYC verification needed": [ + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ "" ], - "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "Invalid url": [ "" ], - "The request reached a timeout, check your connection.": [ + "URL must end with a '/'": [ "" ], - "The request was cancelled.": [ + "URL must not contain params": [ "" ], - "Too many requests were made to the server, and this action was throttled.": [ + "URL must not hash param": [ "" ], - "The server's response was malformed.": [ + "change bank account": [ "" ], - "Could not complete the request due to a network problem.": [ + "test revenue api": [ "" ], - "Unexpected request error.": [ + "Server replied with \"bad request\".": [ "" ], - "Unexpected error.": [ + "Unauthorized, check credentials.": [ "" ], - "Add new instance": [ + "The endpoint does not seem to be a Taler Revenue API.": [ "" ], - "Edit": [ + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ "" ], - "Change password": [ + "Unsupported type of account": [ "" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ + "Account:": [ "" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "Account details": [ "" ], - "Only show active instances": [ + "Extra subject": [ "" ], - "Active": [ + "Additional text to include in the wire transfer subject when settling the payment": [ "" ], - "Only show deleted instances": [ + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ "" ], - "Deleted": [ + "Endpoint URL": [ "" ], - "Show all instances": [ + "From where the merchant can download information about incoming wire transfers to this account": [ "" ], - "Delete instance": [ + "Auth type": [ "" ], - "Delete the instance \"%1$s\"": [ + "Choose the authentication type for the account info URL": [ "" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Without authentication": [ "" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "With username and password": [ "" ], - "Deleting an instance %1$s": [ + "With token": [ "" ], - "This cannot be undone!": [ + "Do not change": [ "" ], - "Purge the instance": [ + "Username to access the account information.": [ "" ], - "Purge the instance \"%1$s\"": [ + "Password to access the account information.": [ "" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Access token to access the account information.": [ "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ + "Match": [ "" ], - "Purging an instance %1$s": [ + "Check where the information match against the server info.": [ + "" + ], + "Compare info from server with account form": [ + "" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "" + ], + "The instance does not exist.": [ + "" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "" + ], + "Check if the information matches the server info.": [ + "" + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "" + ], + "Instance created": [ + "" + ], + "Please complete the marked fields and choose authorization method": [ "" ], "checking compatibility with server...": [ @@ -14870,6 +16889,9 @@ strings['he'] = { "Business Name": [ "" ], + "update product group": [ + "" + ], "Available statistics": [ "" ], @@ -14963,7 +16985,10 @@ strings['he'] = { "title\u0004%1$s: New access token": [ "" ], - "title\u0004New instance": [ + "title\u0004%1$s: New POS access token": [ + "" + ], + "title\u0004New instance": [ "" ], "title\u0004Instances": [ @@ -15003,7 +17028,7 @@ strings['fr'] = { "Confirm": [ "Confirmer" ], - "Correct form": [ + "Correct the form": [ "Corriger le formulaire" ], "Comparing account details": [ @@ -15063,6 +17088,12 @@ strings['fr'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "Afin de prouver que vous êtes bien le bénéficiaire du compte bancaire, vous devez transférer un petit montant au compte bancaire spécifié avec le sujet suivant." ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Si votre application bancaire permet l'usage de codes QR pour effectuer des virements, vous pouvez scanner celui-ci :" + ], + "Bank app": [ + "Compte bancaire" + ], "Step 1:": [ "Étape 1 :" ], @@ -15093,522 +17124,1304 @@ strings['fr'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "Sélectionnez le montant le plus petit possible pour un virement bancaire dans votre application bancaire ou sur le site Web de votre banque en ligne." ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ - "Assurez-vous que L'ENSEMBLE des données sont correctes, y compris la " + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ + "Assurez-vous que L'ENSEMBLE des données sont correctes, y compris la référence, et que vous utilisez le compte bancaire sélectionné. Afin d'éviter les erreurs de frappe, vous pouvez utiliser l'URI « payto:// » ci-dessous, ou bien les boutons de copie (%1$s) pour chaque valeur." ], - "Verification code": [ - "Code de vérification" + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ + "Alternativement, si votre banque prend en charge les URIs de type PayTo, vous pouvez utiliser ce lien à la place : %1$s" ], - "It will expire at %1$s": [ - "Il expirera à %1$s" + "Operation in progress...": [ + "Opération en cours…" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ - "Le défi a expiré et ne peut plus être résolu mais vous pouvez revenir en arrière et recommencer." + "The operation will be automatically cancelled after %1$s seconds": [ + "L'opération sera automatiquement annulée après %1$s secondes" ], - "Back": [ - "Retour" + "days": [ + "jours" ], - "Verify": [ - "Vérifier" + "hours": [ + "heures" ], - "Failed to send the verification code.": [ - "Echec de l'envoi du code de vérification." + "minutes": [ + "minutes" ], - "The request was valid, but the server is refusing action.": [ - "La requête était valide, mais le serveur refuse de l'honorer." + "seconds": [ + "secondes" ], - "The backend is not aware of the specified MFA challenge.": [ - "Le système ne reconnaît pas ce facteur d'identification." + "Forever": [ + "Indéfiniment" ], - "Code transmission failed.": [ - "La transmission du code a échoué." + "%1$sM": [ + "%1$sM" ], - "Already solved.": [ - "Déjà résolu." + "%1$sY": [ + "%1$sY" ], - "It is too early to request another transmission of the challenge.": [ - "C'est trop tôt pour demander une nouvelle transmission de ce défi." + "%1$sd": [ + "%1$sd" ], - "Multi-factor authentication required.": [ - "L'identification multi-facteurs est requise." + "%1$sh": [ + "%1$sh" ], - "You need to complete all of this requirements.": [ - "Vous devez répondre à l'ensemble des exigences." + "%1$smin": [ + "%1$smin" ], - "You need to complete at least one of this requirements.": [ - "Vous devez répondre à au-moins l'une de ces exigences." + "%1$ssec": [ + "%1$ss" ], - "An SMS to the phone number ending with %1$s": [ - "Un SMS au numéro de téléphone se terminant par \"%1$s\"" + "Change the value to never": [ + "Choisir : jamais" ], - "An email to the address starting with %1$s": [ - "Un courriel à l'adresse commençant par \"%1$s\"" + "Change the value to empty": [ + "Choisir : vide" ], - "You have to wait until %1$s to send a new code.": [ - "Vous devez attendre jusqu'à %1$s pour envoyer un nouveau code." + "The file is not an image": [ + "" ], - "I have a code": [ - "J'ai un code" + "The image was normalized to be smaller than 1 MB": [ + "La taille de l'image doit être inférieure à 1 Mo" ], - "Send me a message": [ - "Envoyez-moi un message" + "Add": [ + "Ajouter" ], - "Logged in": [ - "Identifié" + "Remove": [ + "Retirer" ], - "Not found": [ - "Introuvable" + "Country": [ + "Pays" ], - "Login required": [ - "Identification requise" + "Building number": [ + "Numéro du bâtiment" ], - "Instance name.": [ - "Identifiant de la boutique." + "Building name": [ + "Nom du bâtiment" ], - "Instance password.": [ - "Mot de passe de la boutique." + "Street": [ + "Rue" ], - "Forgot password": [ - "J'ai oublié mon mot de passe" + "Post code": [ + "Code postal" ], - "Create new account": [ - "Créer un nouveau compte" + "Town location": [ + "Localisation de la ville" ], - "Invalid": [ - "Invalide" + "District": [ + "Quartier" ], - "Doesn't have the pattern of an email": [ - "Cela ne ressemble pas à une addresse de courriel" + "Country subdivision": [ + "Région" ], - "Should start with +": [ - "Le numéro international devrait commencer par +" + "Additional address lines": [ + "Informations complémentaires" ], - "A phone number consists of numbers only": [ - "Un numéro de téléphone n'est composé que de chiffres" + "Orders": [ + "Commandes" ], - "Invalid value": [ - "Valeur invalide" + "Inventory": [ + "Inventaire" ], - "Max 7 lines": [ - "Sept lignes au maximum" + "Categories": [ + "Catégories" ], - "Doesn't match": [ - "Ne correspond pas" + "Wire transfers": [ + "Virements bancaires" ], - "Instance created": [ - "La boutique a été créée" + "Templates": [ + "Modèles" ], - "Unauthorized.": [ - "Non autorisé." + "Product groups": [ + "Groupes de produits" ], - "Conflict.": [ - "Conflit." + "Money pots": [ + "Cagnottes" ], - "Not found.": [ - "Introuvable." + "Reports": [ + "Rapports" ], - "New password": [ - "Nouveau mot de passe" + "Statistics": [ + "Statistiques" ], - "Next password to be used": [ - "Prochain mot de passe à utiliser" + "Subscriptions and Discounts": [ + "Souscription et remises" ], - "Repeat password": [ - "Répéter le mot de passe" + "Configuration": [ + "Configuration" ], - "Confirm the same password": [ - "Confirmer ce mot de passe" + "KYC Status": [ + "Situation" ], - "Please complete the marked fields and choose authorization method": [ - "Merci de remplir les champs marqués et de choisir une méthode d'autorisation" + "OTP Devices": [ + "Dispositifs OTP" ], - "Confirm operation": [ - "Confirmer l'opération" + "Webhooks": [ + "Webhooks" ], - "Check the password.": [ - "Vérifier le mot de passe." + "Settings": [ + "Options" ], - "Instance not found.": [ - "La boutique est introuvable." + "Password": [ + "Mot de passe" ], - "Description": [ - "Description" + "Access tokens": [ + "Jeton d'accès" ], - "Helps you remember where this access token is being used before deleting it.": [ - "Cela vous aide à vous remémorer où ce jeton d'accès est utilisé avant de l'effacer." + "Connection": [ + "Connexion" ], - "Duration": [ - "Durée" + "Personalization": [ + "Personnalisation" ], - "Time the access token will be valid.": [ - "Durée de validité du jeton d'accès." + "Payment services": [ + "Devises prises en charge" ], - "Refreshable access tokens can pose a security risk!": [ - "Les jetons d'accès renouvelables peuvent poser un risque de sécurité !" + "Instances": [ + "Boutiques" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ - "La durée des jetons d'accès renouvelables peut être étendue avant leur expiration, ce qui procure à quiconque l'utilise un accès indéfini. N'utilisez cette méthode que si vous savez ce que vous faîtes et avez évalué les risques associés notamment aux permissions accordées dans ce contexte." + "New": [ + "Nouveau" ], - "Scope": [ - "Contexte" + "List": [ + "Lister" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ - "Le contexte définit un jeu de privilèges pour le jeton d'accès. Les jetons renouvelables possèdent le privilège d'étendre leur durée de vie." + "Log out": [ + "Déconnexion" ], - "Allows all operations without limit.": [ - "Permettre toutes les opérations sans limite." + "Select one...": [ + "Compte en banque" ], - "Allows all operations to read information.": [ - "Permettre toutes les opérations de lecture." + "Days": [ + "" ], - "Allows the creation of orders and checking of payment status.": [ - "Permettre la création de commandes et la vérification de l'état des paiements." + "Hours": [ + "heures" ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ - "Permettre la création des commandes, la vérification de l'état des paiements et le vérouillage des stocks." + "Minutes": [ + "minutes" ], - "Allows the creation of orders, checking of payment status and refunds.": [ - "Permettre la création des commandes, la vérification de l'état des paiements et des remboursements." + "Seconds": [ + "secondes" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ - "Permettre la création des commandes, la vérification de l'état des paiements, le vérouillage des stocks et des remboursements." + "Username": [ + "Identifiant" ], - "Allows all operations to read information with extendable expiration time.": [ - "" + "Name of the instance in URLs. The 'admin' instance is special in that it is used to administer other instances.": [ + "Nom de la boutique dans les URLs. La boutique 'principale' est particulière car elle sert à administrer les autres boutiques." ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ - "" + "Business name": [ + "Nom de l'entreprise" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ - "\n\n#. screenid: 29\n#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224\n#, c-format\nmsgid \n", - "Le serveur a renvoyé une réponse invalide : \"%1$s\"." + "Legal name of the business represented by this instance.": [ + "Nom légal de l'entreprise qui opère cette boutique." ], - "No exchange keys": [ - "Aucune clé d'échange" + "Email": [ + "Courriel" ], - "The backend service is still synchronizing with the payment service provider.": [ - "Le serveur est encore en cours de synchronisation avec le fournisseur de service de paiement." + "Contact email": [ + "Courriel de contact" ], - "No transfers can be made from this account": [ - "Aucun virement bancaire ne peut être effectué depuis ce compte." + "Phone number": [ + "Numéro de téléphone" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ - "Le système bancaire ne peut pas effectuer de virement entre les comptes du fournisseur de service de paiement et vos comptes en banque. Aussi vous ne " + "Contact phone": [ + "Téléphone de contact" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ - "" + "Website URL": [ + "URL du site web" ], - "The payment service provider requires more information.": [ - "Le prestataire du service de paiement requière une vérification du compte." + "URL.": [ + "URL." ], - "Click here to complete this step.": [ - "" + "Logo": [ + "Logo" ], - "We are waiting for the access token to be present. Check again later.": [ - "Vous définissez le jeton d'accès pour la nouvelle instance" + "Logo image.": [ + "Image du Logo." ], - "Awaiting AML review": [ - "" + "Pay transaction fee": [ + "Payer les frais de transaction" ], - "This account cannot be used. The payment service provider must verify the account information manually.": [ - "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" + "Cover the transaction cost or pass it on to the user.": [ + "Prendre en charge le coût de la transaction ou le répercuter sur le client." ], - "This account has been successfully configured for use with the payment service provider.": [ - "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" + "Physical location of the merchant.": [ + "Localisation physique du commerçant." ], - "Logic bug": [ - "" + "Jurisdiction": [ + "Juridiction" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ - "" + "Jurisdiction for legal disputes with the merchant.": [ + "Juridiction compétente pour les litiges avec le commerçant." ], - "Internal error": [ - "Interface" + "Default cut-off times": [ + "Heures limites de commande" ], - "The payment service provider detected an internal error, contact the system administrator or check again later.": [ - "" + "These values will be used if they are not overridden during order creation.": [ + "Ces valeurs seront utilisées si elles ne sont pas précisées lors de la commande." ], - "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ - "" + "Payment delay": [ + "Durée de validité du paiement" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ - "" + "Time customers have to pay an order before the offer expires by default.": [ + "Délai octroyé aux clients pour payer une commande avant son expiration." ], - "Unable to reach the payment service provider, contact the system administrator or check again later.": [ + "Change the value to the default value specified by the server.": [ "" ], - "Unsupported account": [ - "Devises prises en charge" - ], - "This exchange does not support the given account.": [ + "Reset": [ "" ], - "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ - "" + "Refund delay": [ + "Délai de remboursement" ], - "Change value to unknown date": [ - "Changer la valeur pour une date inconnue" + "Time merchants have to refund an order.": [ + "Délai pendant lequel le marchand peut effectuer un remboursement de la commande." ], - "Enter description or id": [ - "Entrez soit une description soit un identifiant" + "Wire transfer delay": [ + "Date limite pour les virements" ], - "No match found for that description or ID.": [ - "aucune correspondance de trouvée pour cette description ou cet identifiant" + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Durée maximale d'aggrégation des commandes auprès de l'Échange afin de réduire les frais de virement pour le marchand en virant d'un coup plusieurs paiements." ], - "You must enter a valid product identifier.": [ - "Vous devez entrer un identifiant de produit valide." + "Wire transfer rounding": [ + "Granularité des virements" ], - "Quantity must be greater than 0!": [ - "La quantité doit être supérieure à 0 !" + "Rounding interval for wire deadlines.": [ + "" ], - "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ - "Cette quantité dépasse le stock restant. Actuellement, il ne reste que %1$s unités non réservées en stock." + "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ + "Par exemple, si vous choisissez un intervalle quotidien, la date limite d'envoi sera placée à minuit." ], - "Search product": [ - "Recherche produit" + "No rounding": [ + "Aucune" ], - "Quantity": [ - "Quantité" + "To second": [ + "Chaque seconde" ], - "How many products will be added": [ - "Combien de produits seront ajoutés" + "To minute": [ + "Chaque minute" ], - "Add from inventory": [ - "Ajouter depuis l'inventaire" + "To hour": [ + "Horaire" ], - "This product has %1$s applicable taxes configured.": [ - "Ce produit a %1$s taxes applicables configurées." + "To day": [ + "Quotidienne" ], - "No taxes configured for this product.": [ - "Aucune taxe n'est configurée pour ce produit." + "To week": [ + "Hebdomadaire" ], - "Amount": [ - "Montant" + "To month": [ + "Mensuelle" ], - "Taxes can be in currencies that differ from the main currency used by the merchant.": [ - "Les taxes peuvent être libellées dans des monnaies différentes de la monnaie principale utilisée par le commerçant." + "To quarter": [ + "Trimestrielle" ], - "Enter the currency and value separated by a colon (e.g., "USD:2.3").": [ - "Saisissez la devise et la valeur séparées par deux points, par exemple "USD:2.3" ;." + "To year": [ + "Annuelle" ], - "Legal name of the tax, e.g. VAT or import duties.": [ - "Nom légal de la taxe, par exemple TVA ou droits d'importation." + "Can't paste this content. Please copy the 8 digits again.": [ + "" ], - "Add tax to the tax list": [ - "Ajouter une taxe à la liste des taxes" + "Resend code possible in %1$s seconds.": [ + "" ], - "Describe and add a product that is not in the inventory list": [ - "Décrire et ajouter un produit qui ne figure pas dans la liste d'inventaire" + "Resend code possible in less than one minute.": [ + "" ], - "Add custom product": [ - "Ajouter un produit personnalisé" + "Resend code possible in less than 5 minutes.": [ + "" ], - "Complete information of the product": [ - "Informations complètes sur le produit" + "Resend will be possible after %1$s": [ + "Il expirera à %1$s" ], - "Must be a number.": [ - "Doit être un nombre" + "Expired": [ + "Expiré" ], - "Must be greater than 0.": [ - "Doit être supérieur à 0" + "Required": [ + "Obligatoire" ], - "Photo of the product.": [ - "Photo du produit." + "verify code": [ + "Code de vérification" ], - "Full product description.": [ - "Description détaillée du produit." + "Unauthorized": [ + "Non autorisé" ], - "Unit name": [ - "Nom de l'unité" + "The code is not correct.": [ + "Ce code est incorrect." ], - "Name of the product unit.": [ - "Nom de l'unité du produit." + "The challenge is no longer valid.": [ + "Ce défi a expiré." ], - "Price per unit": [ - "Prix à l'unité" + "Too many attempts trying to solve the challenge.": [ + "Trop de tentatives pour résoudre ce défi." ], - "Amount in the current currency.": [ - "Montant dans la monnaie courante." + "send challenge": [ + "Mot de passe" ], - "How many products will be added.": [ - "Combien de produits seront ajoutés." + "Failed to send the verification code.": [ + "Echec de l'envoi du code de vérification." ], - "Taxes": [ - "Taxes" + "The request was valid, but the server is refusing action.": [ + "La requête était valide, mais le serveur refuse de l'honorer." ], - "Total price": [ - "Prix total" + "The server is not aware of the specified MFA challenge.": [ + "Le système ne reconnaît pas ce facteur d'identification." ], - "Must be greater than 0": [ - "Doit être supérieur à 0" + "Code transmission failed.": [ + "La transmission du code a échoué." ], - "Must have a refund deadline": [ - "Le délai de remboursement doit être fixé" + "Already solved.": [ + "Déjà résolu." ], - "Auto refund can't be after refund deadline": [ - "Le remboursement automatique ne peut pas être effectué après la date limite de remboursement" + "It is too early to request another transmission of the challenge.": [ + "C'est trop tôt pour demander une nouvelle transmission de ce défi." ], - "Must be in the future": [ - "Doit être dans le future" + "Validation code sent.": [ + "Un code de validation a été envoyé." ], - "Either fulfillment url or fulfillment message must be specified.": [ - "" + "The verification code sent to the phone \" %1$s\"": [ + "Le code de vérification envoyé au numéro de téléphone terminant par \"%1$s\"" ], - "is not a valid URL": [ - "Ceci n'est pas un serveur valide." + "The verification code sent to the phone number ending with \"%1$s\"": [ + "Le code de vérification envoyé au numéro de téléphone terminant par \"%1$s\"" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "The verification code sent to the email address \" %1$s\"": [ + "Le code de vérification envoyé à l'adresse de courriel commençant par \"%1$s\"" + ], + "The verification code sent to the email address starting with \"%1$s\"": [ + "Le code de vérification envoyé à l'adresse de courriel commençant par \"%1$s\"" + ], + "Verification code": [ + "Code de vérification" + ], + "Code expired.": [ + "Expiré" + ], + "Didn't received the code?": [ "" ], - "Product with ID \"%1$s\" is out of stock.": [ + "Resend": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ - "Aucun exchange ne pourra accepter le paiement en raison des exigences en matière de connaissance du client (procédure KYC)." + "Verify": [ + "Vérifier" ], - "Manage products in order": [ - "Gérer les produits dans l'ordre" + "The code transmission failed.": [ + "La transmission du code a échoué." ], - "%1$s products with a total price of %2$s.": [ - "%1$s produits pour un prix total de %2$s." + "The challenge is already solved.": [ + "Ce défi a expiré." ], - "Manage list of products in the order.": [ - "Gérer la liste des produits dans la commande." + "Multi-factor authentication required.": [ + "L'identification multi-facteurs est requise." ], - "Remove this product from the order.": [ - "Retirer ce produit de la commande." + "You must complete all of these requirements.": [ + "Vous devez répondre à l'ensemble des exigences." ], - "Products price sum": [ - "Liste des produits" + "You need to complete at least one of this requirements.": [ + "Vous devez répondre à au-moins l'une de ces exigences." ], - "Total product price added up": [ - "Prix total des produits additionnés" + "An SMS to the phone number ending with %1$s": [ + "Un SMS au numéro de téléphone se terminant par \"%1$s\"" ], - "Order price": [ - "Prix par article" + "An email to the address starting with %1$s": [ + "Un courriel à l'adresse commençant par \"%1$s\"" ], - "Amount to be paid by the customer": [ - "Montant à payer par le client" + "Complete": [ + "Transferé" ], - "Final order price": [ - "Prix final de la commande" + "This is not a valid Bitcoin address.": [ + "Ceci n'est pas une adresse Bitcoin valide." ], - "Summary": [ - "Résumé" + "This is not a valid Ethereum address.": [ + "Ceci n'est pas une adresse Ethereum valide." ], - "Title of the order to be shown to the customer": [ - "Titre de la commande à afficher au client" + "This is not a valid host.": [ + "Ceci n'est pas un serveur valide." ], - "Shipping and fulfillment": [ - "Expédition et traitement des commandes" + "IBANs usually have more than 4 digits.": [ + "Les numéros IBAN comportent généralement plus de 4 chiffres." ], - "Delivery date": [ - "Date de livraison" + "IBANs usually have fewer than 34 digits.": [ + "Les numéros IBAN comportent généralement moins de 34 chiffres." ], - "Deadline for physical delivery assured by the merchant.": [ - "Date limite de livraison physique assurée par le commerçant." + "The IBAN's country code could not be retrieved.": [ + "Le code pays de l'IBAN n'a pas été trouvé." ], - "Delivery location": [ - "Date de livraison" + "The IBAN is invalid because the checksum is wrong.": [ + "Le numéro IBAN est invalide car la somme de contrôle est erronée." ], - "Address where the products will be delivered": [ - "Adresse de livraison des produits" + "This account is not allowed.": [ + "Ce compte n'est pas autorisé." ], - "Fulfillment URL": [ - "URL du service de traitement des commandes" + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ + "Cette application ne supporte aucune des méthodes de transfert du serveur. Le serveur est configuré pour : %1$s" ], - "URL to which the user will be redirected after successful payment.": [ - "URL vers laquelle l'utilisateur sera redirigé après un paiement réussi." + "Wire method": [ + "Méthode de virement" ], - "Fulfillment message": [ - "URL du service de traitement des commandes" + "Select the method you want to use to transfer your earnings to your business account.": [ + "Sélectionner la méthode que vous voulez employer pour transférer vos gains vers votre compte professionnel." ], - "Message shown to the customer after paying for the order.": [ + "Select a wire method...": [ + "Sélectionner une méthode de transfert…" + ], + "Routing": [ "" ], - "Taler payment options": [ - "Options de paiement Taler" + "Routing number": [ + "" ], - "Override default Taler payment settings for this order": [ - "Remplacer les paramètres de paiement par défaut de Taler pour cette commande" + "Account": [ + "Compte" ], - "Payment time": [ - "Délai de paiement" + "Account number": [ + "Numéro de compte" ], - "Time for the customer to pay before the offer expires. Inventory products will be reserved until this deadline. The time starts after the order is created.": [ - "Délai accordé au client pour payer l'offre avant qu'elle n'expire. Les produits en stock seront réservés jusqu'à cette date. Le temps commence à courir après la création de la commande." + "Code": [ + "Code" ], - "Default": [ - "Par défaut" + "Business Identifier Code": [ + "Code BIC de la banque" ], - "Refund time": [ - "Délai de remboursement" + "International Bank Account Number": [ + "Code IBAN" ], - "Time while the order can be refunded by the merchant. Time starts after the order is created.": [ - "Délai pendant lequel la commande peut être remboursée par le commerçant. Le temps commence à la création de la commande." + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "votre numéro de compte bancaire au format international IBAN, p.e. CH12 0000 1111 2222 3333 00" ], - "Wire transfer time": [ - "Délai de virement" + "Unified Payment Interface": [ + "Interface unifiée de payments (UPI)" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ - "Temps nécessaire à l'exchange pour effectuer le virement. Le temps commence à la création de la commande." + "Bitcoin protocol": [ + "Protocole Bitcoin" ], - "Auto-refund time": [ - "Délai de remboursement automatique" + "Ethereum protocol": [ + "Protocole Ethereum" ], - "Time until which the wallet will automatically check for refunds without user interaction.": [ - "Délai jusqu'auquel le portefeuille vérifiera automatiquement les remboursements sans intervention de l'utilisateur." + "Interledger protocol": [ + "Protocole Interledger" ], - "Maximum fee": [ - "Frais maximums" + "Enter the data without a scheme. A subpath may be included:": [ + "Saisir les données sans le schéma. A chemin d'accès peut être inclus :" ], - "Maximum fees the merchant is willing to cover for this order. Higher deposit fees must be covered in full by the consumer.": [ - "Frais maximums que le commerçant est prêt à couvrir pour cette commande. Les frais de dépôt plus élevés doivent être intégralement pris en charge par le consommateur." + "Cyclos host": [ + "Hôte Cyclos" ], - "Create token": [ - "Créer un jeton" + "cyclos account": [ + "compte Cyclos" ], - "If the order ID is easy to guess, the token will prevent other users from claiming the order.": [ - "Si l'identifiant de la commande est facile à deviner, le jeton empêchera les utilisateurs de voler les commandes d'autres personnes." + "Name of the account holder": [ + "Nom de la personne titulaire du compte" ], - "Minimum age required": [ - "Âge minimum requis" + "John Doe": [ + "Dominique Martin" ], - "Any value greater than 0 will limit the coins able be used to pay this contract. If empty the age restriction will be defined by the products": [ - "Toute valeur supérieure à 0 limitera le type de pièces pouvant être utilisées pour payer ce contrat. Si la valeur est vide, la restriction d'âge sera définie par les produits" + "Legal name of the person holding the account.": [ + "Nom légal de la personne titulaire du compte." ], - "Minimum age defined by the products is %1$s": [ - "L'âge minimum défini par les produits est de %1$s" + "The request reached a timeout, check your connection.": [ + "La demande a dépassé le temps de traitement maximum, vérifiez votre connexion." ], - "No product with age restriction in this order": [ - "Aucun produit avec restriction d'âge dans cette commande" + "The request was cancelled.": [ + "La demande a été annulée." ], - "Additional information": [ - "Informations complémentaires" + "Too many requests were made to the server and this action was throttled.": [ + "Un grand nombre de demandes ont été adressées au même serveur et cette action a été ralentie." ], - "Custom information to be included in the contract for this order.": [ - "Informations personnalisées à inclure dans le contrat pour cette commande." + "The server's response was malformed, please report.": [ + "La réponse du serveur est malformée." ], - "You must enter a value in JavaScript Object Notation (JSON).": [ - "Vous devez saisir une valeur en JavaScript Object Notation (JSON)." + "Could not complete the request due to a network problem.": [ + "La demande n'a pas pu être traitée en raison d'un problème de réseau." ], - "remove": [ - "Effacer" + "Unexpected request error, please report.": [ + "Erreur inattendue sur la requête." ], - "Custom field name": [ - "Nom du champ personnalisé" + "Unexpected error.": [ + "Erreur inattendue." ], - "Disabled": [ - "Désactivé" + "login": [ + "" ], - "No deadline": [ + "Logged in": [ + "Identifié" + ], + "Wrong password.": [ + "J'ai oublié mon mot de passe" + ], + "The account doesn't exist.": [ + "Ce compte n'est pas autorisé." + ], + "Login required": [ + "Identification requise" + ], + "Instance name.": [ + "Identifiant de la boutique." + ], + "Instance password.": [ + "Mot de passe de la boutique." + ], + "Forgot password": [ + "J'ai oublié mon mot de passe" + ], + "Create new account": [ + "Créer un nouveau compte" + ], + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ + "" + ], + "Testing environment": [ + "" + ], + "This server is meant for testing features and configurations. Don't use your personal information here.": [ + "" + ], + "Delete": [ + "Supprimer" + ], + "Add new instance": [ + "Ajouter une nouvelle instance" + ], + "ID": [ + "Identifiant" + ], + "Name": [ + "Nom" + ], + "Edit": [ + "Editer" + ], + "Change password": [ + "Avec mot de passe" + ], + "Purge": [ + "Purger" + ], + "There are no instances yet. Add one by pressing the '+' sign.": [ + "Il n'y a pas encore d'instance, ajoutez-en une en appuyant sur le signe +" + ], + "delete instance": [ + "Suppression d'une instance %1$s ." + ], + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "L'instance \"%1$s\" (identifiant : %2$s) a été effacée" + ], + "Unauthorized.": [ + "Non autorisé." + ], + "Not found.": [ + "Introuvable." + ], + "Conflict.": [ + "Conflit." + ], + "Only show active instances": [ + "N'afficher que les instances actives" + ], + "Active": [ + "Actives" + ], + "Only show deleted instances": [ + "N'afficher que les instances effacées" + ], + "Deleted": [ + "Effacées" + ], + "Show all instances": [ + "Afficher toutes les instances" + ], + "All": [ + "Toutes" + ], + "Delete instance": [ + "Suppression d'une instance %1$s ." + ], + "Delete the instance \"%1$s\"": [ + "Suppression d'une instance %1$s ." + ], + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Si vous supprimez l'instance nommée %1$s (ID : %2$s), le commerçant ne sera plus en mesure de traiter les commandes ou les remboursements" + ], + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "Cette action supprime la clé privée de l'instance, mais préserve toutes les données de transaction. Vous pouvez toujours accéder à ces données après avoir supprimé l'instance." + ], + "Deleting an instance %1$s": [ + "Suppression d'une instance %1$s ." + ], + "This cannot be undone!": [ + "ne peut être annulé" + ], + "Purge the instance": [ + "Suppression d'une instance %1$s ." + ], + "Purge the instance \"%1$s\"": [ + "Purge d'une instance %1$s ." + ], + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Si vous purgez l'instance nommée %1$s (ID : %2$s), vous supprimerez également toutes ses données de transaction." + ], + "The instance will disappear from your list and you will no longer be able to access its data.": [ + "L'instance disparaîtra de votre liste et vous ne pourrez plus accéder à ses données." + ], + "Purging an instance %1$s": [ + "Purge d'une instance %1$s ." + ], + "create access token": [ + "Générer un jeton d'accès" + ], + "Check the password.": [ + "Vérifier le mot de passe." + ], + "Instance not found.": [ + "La boutique est introuvable." + ], + "Description": [ + "Description" + ], + "Helps you remember where this access token is being used before deleting it.": [ + "Cela vous aide à vous remémorer où ce jeton d'accès est utilisé avant de l'effacer." + ], + "Duration": [ + "Durée" + ], + "Time the access token will be valid.": [ + "Durée de validité du jeton d'accès." + ], + "Refreshable access tokens can pose a security risk!": [ + "Les jetons d'accès renouvelables peuvent poser un risque de sécurité !" + ], + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "La durée des jetons d'accès renouvelables peut être étendue avant leur expiration, ce qui procure à quiconque l'utilise un accès indéfini. N'utilisez cette méthode que si vous savez ce que vous faîtes et avez évalué les risques associés notamment aux permissions accordées dans ce contexte." + ], + "Scope": [ + "Contexte" + ], + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "Le contexte définit un jeu de privilèges pour le jeton d'accès. Les jetons renouvelables possèdent le privilège d'étendre leur durée de vie." + ], + "Allows all operations without limit.": [ + "Permettre toutes les opérations sans limite." + ], + "Allows all operations to read information.": [ + "Permettre toutes les opérations de lecture." + ], + "Allows the creation of orders and checking of payment status.": [ + "Permettre la création de commandes et la vérification de l'état des paiements." + ], + "Allows the creation of orders, checking of payment status and inventory locking.": [ + "Permettre la création des commandes, la vérification de l'état des paiements et le vérouillage des stocks." + ], + "Allows the creation of orders, checking of payment status and refunds.": [ + "Permettre la création des commandes, la vérification de l'état des paiements et des remboursements." + ], + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "Permettre la création des commandes, la vérification de l'état des paiements, le vérouillage des stocks et des remboursements." + ], + "Allows all operations to read information with extendable expiration time.": [ + "" + ], + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "" + ], + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "" + ], + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "" + ], + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "" + ], + "All (refreshable)": [ + "" + ], + "Spa": [ + "" + ], + "Spa (refreshable)": [ + "" + ], + "Choose one": [ + "Choisissez un ..." + ], + "Read only": [ + "" + ], + "Order simple": [ + "Identifiant de commande" + ], + "Order Point-of-Sale": [ + "" + ], + "Order management": [ + "" + ], + "Order full": [ + "Identifiant de commande" + ], + "Read only (refreshable)": [ + "" + ], + "Order simple (refreshable)": [ + "" + ], + "Order Point-of-Sale (refreshable)": [ + "" + ], + "Order management (refreshable)": [ + "" + ], + "Order full (refreshable)": [ + "" + ], + "Current password": [ + "Mot de passe actuel" + ], + "Please complete the marked fields": [ + "Merci de remplir les champs marqués" + ], + "Confirm operation": [ + "Confirmer l'opération" + ], + "Access token created": [ + "Un jeton d'accès a été créé" + ], + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "Prenez à présent note du jeton d'accès car il ne sera plus montré." + ], + "Token": [ + "Jeton" + ], + "This token will never expire": [ + "Ce jeton n'expirera jamais" + ], + "This token will be available until %1$s": [ + "Ce jeton sera disponible jusqu'au %1$s" + ], + "Create access token": [ + "Générer un jeton d'accès" + ], + "Load more devices before the first one": [ + "Insérer d'autres appareils avant le premier" + ], + "Load first page": [ + "Charger la première page" + ], + "Created at": [ + "Créé le" + ], + "Expires at": [ + "Expire le" + ], + "Never": [ + "Jamais" + ], + "Remove this access token": [ + "Supprimer ce jeton d'accès" + ], + "Load more devices after the last one": [ + "Ajouter d'autres appareils après le dernier" + ], + "Load next page": [ + "Charger la page suivante" + ], + "There are no active sessions yet, add one by pressing the + sign": [ + "Il n'y a pas encore de session active, ajoutez-en une en appuyant sur le signe +" + ], + "delete access token": [ + "Supprimer un jeton d'accès" + ], + "Forbidden.": [ + "Interdit." + ], + "New point-of-sale access": [ + "" + ], + "Delete access token": [ + "Supprimer un jeton d'accès" + ], + "Deleting an access token cannot be undone.": [ + "La suppression d'un jeton d'accès est irréversible." + ], + "Invalid. Please use only letters and numbers.": [ + "Invalide. Veuillez insérer uniquement des chiffres et des lettres." + ], + "add category": [ + "Nom de la catégorie" + ], + "Not found": [ + "Introuvable" + ], + "Category name": [ + "Nom de la catégorie" + ], + "delete category": [ + "Nom de la catégorie" + ], + "Category deleted": [ + "Catégorie supprimée" + ], + "Add new devices": [ + "Ajouter de nouveaux appareils" + ], + "Total products": [ + "Somme des produits" + ], + "Delete selected category from the database": [ + "Supprimer la catégorie sélectionnée de la base de données" + ], + "There are no categories yet, add more pressing the + sign": [ + "Il n'y a pas encore de catégorie, ajoutez-en en appuyant sur le signe +" + ], + "update category": [ + "Impossible de modifier la catégorie" + ], + "Id:": [ + "Identifiant :" + ], + "Name of the category": [ + "Nom de la catégorie" + ], + "Products": [ + "Produits" + ], + "Image": [ + "Image" + ], + "Load more products after the last one": [ + "Ajouter des produits après le dernier" + ], + "There are no products in this category.": [ + "Cette catégorie est vide." + ], + "create product group": [ + "Groupes de produits" + ], + "delete product group": [ + "Effacées" + ], + "Product group deleted": [ + "Liste des produits" + ], + "Add new group": [ + "Ajouter un nouveau compte" + ], + "Load more groups before the first one": [ + "Ajouter des webhooks avant le premier" + ], + "Delete selected group from the database": [ + "Supprimer les comptes sélectionnés de la base de données" + ], + "Load more groups after the last one": [ + "Ajouter des produits après le dernier" + ], + "There are no product groups yet, add more pressing the + sign": [ + "Il n'y a pas encore de produits, ajoutez-en en appuyant sur le signe +" + ], + "Account's KYC status": [ + "Situation KYC du compte" + ], + "Exchange": [ + "Échange" + ], + "Status": [ + "Situation" + ], + "Bank account verification required.": [ + "La vérification du compte bancaire est requise." + ], + "More information required.": [ + "Davantage d'information est nécessaire." + ], + "Awaiting account review.": [ + "En attente d'examen du compte." + ], + "Ready": [ + "Prêt" + ], + "Syncing...": [ + "Synchronisation en cours…" + ], + "Payment service internal error. Contact administrator or check again later.": [ + "Une erreur interne au service de paiement est survenue. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Server internal error. Contact the service administrator or check again later.": [ + "Une erreur interne au serveur est survenue. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Payment service timeout. Contact administrator or check again later.": [ + "Le service de paiement n'a pas répondu à temps. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Payment service unreachable. Contact administrator or check again later.": [ + "Le service de paiement est indisponible. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Incompatible core banking system.": [ + "Système bancaire central incompatble." + ], + "Server internal error. Contact administrator or check again later.": [ + "Une erreur interne au serveur est survenue. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Payment service response is invalid. Contact administrator or check again later.": [ + "La réponse du service de paiement est invalide. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Payment service provider can't make a wire transfer to this account.": [ + "Le fournisseur du service du paiement ne peut pas effectuer de virement bancaire vers ce compte." + ], + "No pending kyc verification!": [ + "Aucune vérification KYC en cours !" + ], + "Ok": [ + "D'accord" + ], + "The account for wire transfers is invalid.": [ + "Le compte pour les virements bancaires semble invalide." + ], + "The server responded with \"%1$s\" which is invalid.": [ + "Le serveur a renvoyé une réponse invalide : \"%1$s\"." + ], + "No contact with the payment service yet.": [ + "" + ], + "The server is still synchronizing with the payment service provider.": [ + "Le serveur est encore en cours de synchronisation avec le fournisseur de service de paiement." + ], + "No transfers can be made from this account": [ + "Aucun virement bancaire ne peut être effectué depuis ce compte." + ], + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "Le système bancaire ne peut pas effectuer de virement entre les comptes du fournisseur de service de paiement et vos comptes en banque. Aussi vous ne " + ], + "Test": [ + "Test" + ], + "Know Your Customer process is required.": [ + "" + ], + "The payment service provider requires more information.": [ + "Le prestataire du service de paiement requière une vérification du compte." + ], + "Click here to complete this step.": [ + "" + ], + "We are waiting for the access token to be present. Check again later.": [ + "Vous définissez le jeton d'accès pour la nouvelle instance" + ], + "Awaiting AML review": [ + "" + ], + "This account cannot be used. The payment service provider must verify the account information manually.": [ + "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" + ], + "This account has been successfully configured for use with the payment service provider.": [ + "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" + ], + "Logic bug": [ + "" + ], + "The server detected an internal error, contact the system administrator or check again later.": [ + "Une erreur interne au service de paiement est survenue. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Internal error": [ + "Interface" + ], + "The payment service provider detected an internal error, contact the system administrator or check again later.": [ + "" + ], + "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ + "" + ], + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "Le service de paiement n'a pas répondu à temps. Retenter ultérieurement ou contacter l'administration si le cas persiste." + ], + "Unable to reach the payment service provider, contact the system administrator or check again later.": [ + "" + ], + "Unsupported account": [ + "Devises prises en charge" + ], + "This payment service does not support the given account.": [ + "" + ], + "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ + "" + ], + "Change value to empty": [ + "Choisir : vide" + ], + "Change value to never": [ + "Choisir : jamais" + ], + "Enter description or id": [ + "Entrez soit une description soit un identifiant" + ], + "No match found for that description or ID.": [ + "aucune correspondance de trouvée pour cette description ou cet identifiant" + ], + "You must enter a valid product identifier.": [ + "Vous devez entrer un identifiant de produit valide." + ], + "Quantity must be greater than zero.": [ + "La quantité doit être supérieure à 0 !" + ], + "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ + "Cette quantité dépasse le stock restant. Actuellement, il ne reste que %1$s unités non réservées en stock." + ], + "Search product": [ + "Recherche produit" + ], + "Quantity": [ + "Quantité" + ], + "How many products will be added": [ + "Combien de produits seront ajoutés" + ], + "Add it to the order": [ + "Montant de la commande" + ], + "Invalid": [ + "Invalide" + ], + "This product has %1$s applicable taxes configured.": [ + "Ce produit a %1$s taxes applicables configurées." + ], + "No taxes configured for this product.": [ + "Aucune taxe n'est configurée pour ce produit." + ], + "Amount": [ + "Montant" + ], + "Taxes can be in currencies that differ from the main currency used by the merchant.": [ + "Les taxes peuvent être libellées dans des monnaies différentes de la monnaie principale utilisée par le commerçant." + ], + "Enter the currency and value separated by a colon (e.g., "USD:2.3").": [ + "Saisissez la devise et la valeur séparées par deux points, par exemple "USD:2.3" ;." + ], + "Legal name of the tax, e.g. VAT or import duties.": [ + "Nom légal de la taxe, par exemple TVA ou droits d'importation." + ], + "Add tax to the tax list": [ + "Ajouter une taxe à la liste des taxes" + ], + "Describe and add a product that is not in the inventory list": [ + "Décrire et ajouter un produit qui ne figure pas dans la liste d'inventaire" + ], + "Add custom product": [ + "Ajouter un produit personnalisé" + ], + "Complete information of the product": [ + "Informations complètes sur le produit" + ], + "Must be a number.": [ + "Doit être un nombre" + ], + "Must be greater than 0.": [ + "Doit être supérieur à 0" + ], + "Photo of the product.": [ + "Photo du produit." + ], + "Full product description.": [ + "Description détaillée du produit." + ], + "Unit name": [ + "Nom de l'unité" + ], + "Name of the product unit.": [ + "Nom de l'unité du produit." + ], + "Price per unit": [ + "Prix à l'unité" + ], + "Amount in the current currency.": [ + "Montant dans la monnaie courante." + ], + "How many products will be added.": [ + "Combien de produits seront ajoutés." + ], + "Taxes": [ + "Taxes" + ], + "Total price": [ + "Prix total" + ], + "Must be greater than 0": [ + "Doit être supérieur à 0" + ], + "Must have a refund deadline": [ + "Le délai de remboursement doit être fixé" + ], + "Auto refund can't be after refund deadline": [ + "Le remboursement automatique ne peut pas être effectué après la date limite de remboursement" + ], + "Must be in the future": [ + "Doit être dans le future" + ], + "Either fulfillment url or fulfillment message must be specified.": [ + "" + ], + "Invalid URL": [ + "Invalide" + ], + "create order": [ + "Créer une commande" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ + "" + ], + "Conflict": [ + "Conflit" + ], + "Product with ID \"%1$s\" is out of stock.": [ + "" + ], + "No payment service would accept a payment because of KYC requirements.": [ + "Aucun exchange ne pourra accepter le paiement en raison des exigences en matière de connaissance du client (procédure KYC)." + ], + "Manage products in order": [ + "Gérer les produits dans l'ordre" + ], + "%1$s products with a total price of %2$s .": [ + "%1$s produits pour un prix total de %2$s." + ], + "Manage list of products in the order.": [ + "Gérer la liste des produits dans la commande." + ], + "Remove this product from the order.": [ + "Retirer ce produit de la commande." + ], + "Products price sum": [ + "Liste des produits" + ], + "Total product price added up": [ + "Prix total des produits additionnés" + ], + "Order price": [ + "Prix par article" + ], + "Amount to be paid by the customer": [ + "Montant à payer par le client" + ], + "Final order price": [ + "Prix final de la commande" + ], + "Summary": [ + "Résumé" + ], + "Title of the order to be shown to the customer": [ + "Titre de la commande à afficher au client" + ], + "Shipping and fulfillment": [ + "Expédition et traitement des commandes" + ], + "Delivery date": [ + "Date de livraison" + ], + "Deadline for physical delivery assured by the merchant.": [ + "Date limite de livraison physique assurée par le commerçant." + ], + "Delivery location": [ + "Date de livraison" + ], + "Address where the products will be delivered": [ + "Adresse de livraison des produits" + ], + "Fulfillment URL": [ + "URL du service de traitement des commandes" + ], + "URL to which the user will be redirected after successful payment.": [ + "URL vers laquelle l'utilisateur sera redirigé après un paiement réussi." + ], + "Fulfillment message": [ + "URL du service de traitement des commandes" + ], + "Message shown to the customer after paying for the order.": [ + "" + ], + "Taler payment options": [ + "Options de paiement Taler" + ], + "Override default Taler payment settings for this order": [ + "Remplacer les paramètres de paiement par défaut de Taler pour cette commande" + ], + "Payment time": [ + "Délai de paiement" + ], + "Time for the customer to pay before the offer expires. Inventory products will be reserved until this deadline. The time starts after the order is created.": [ + "Délai accordé au client pour payer l'offre avant qu'elle n'expire. Les produits en stock seront réservés jusqu'à cette date. Le temps commence à courir après la création de la commande." + ], + "Default": [ + "Par défaut" + ], + "Refund time": [ + "Délai de remboursement" + ], + "Time while the order can be refunded by the merchant. Time starts after the order is created.": [ + "Délai pendant lequel la commande peut être remboursée par le commerçant. Le temps commence à la création de la commande." + ], + "Wire transfer time": [ + "Délai de virement" + ], + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ + "Temps nécessaire à l'exchange pour effectuer le virement. Le temps commence à la création de la commande." + ], + "Auto-refund time": [ + "Délai de remboursement automatique" + ], + "Time until which the wallet will automatically check for refunds without user interaction.": [ + "Délai jusqu'auquel le portefeuille vérifiera automatiquement les remboursements sans intervention de l'utilisateur." + ], + "Maximum fee": [ + "Frais maximums" + ], + "Maximum fees the merchant is willing to cover for this order. Higher deposit fees must be covered in full by the consumer.": [ + "Frais maximums que le commerçant est prêt à couvrir pour cette commande. Les frais de dépôt plus élevés doivent être intégralement pris en charge par le consommateur." + ], + "Create token": [ + "Créer un jeton" + ], + "If the order ID is easy to guess, the token will prevent other users from claiming the order.": [ + "Si l'identifiant de la commande est facile à deviner, le jeton empêchera les utilisateurs de voler les commandes d'autres personnes." + ], + "Minimum age required": [ + "Âge minimum requis" + ], + "Any value greater than 0 will limit the coins able be used to pay this contract. If empty the age restriction will be defined by the products": [ + "Toute valeur supérieure à 0 limitera le type de pièces pouvant être utilisées pour payer ce contrat. Si la valeur est vide, la restriction d'âge sera définie par les produits" + ], + "Minimum age defined by the products is %1$s": [ + "L'âge minimum défini par les produits est de %1$s" + ], + "No product with age restriction in this order": [ + "Aucun produit avec restriction d'âge dans cette commande" + ], + "Additional information": [ + "Informations complémentaires" + ], + "Custom information to be included in the contract for this order.": [ + "Informations personnalisées à inclure dans le contrat pour cette commande." + ], + "You must enter a value in JavaScript Object Notation (JSON).": [ + "Vous devez saisir une valeur en JavaScript Object Notation (JSON)." + ], + "remove": [ + "Effacer" + ], + "Custom field name": [ + "Nom du champ personnalisé" + ], + "new extra field": [ + "" + ], + "Disabled": [ + "Désactivé" + ], + "No deadline": [ "Aucune date limite" ], "Deadline at %1$s": [ "Date limite à %1$s" ], - "Select date to show nearby orders": [ - "Sélectionnez la date pour afficher les commandes proches" + "get product details": [ + "Détails du compte" ], "Only show unpaid orders": [ "Afficher uniquement les commandes payées" @@ -15640,11 +18453,8 @@ strings['fr'] = { "Remove all filters": [ "Effacer tous les filtres" ], - "Clear date filter": [ - "Effacer le filtre de date" - ], - "Jump to date (%1$s)": [ - "Aller à la date (%1$s)" + "authorize refund": [ + "Non autorisé" ], "Gone.": [ "" @@ -15658,15 +18468,33 @@ strings['fr'] = { "Order id": [ "Identifiant de commande" ], + "Clear date filter": [ + "Effacer le filtre de date" + ], + "Select date to show nearby orders": [ + "Sélectionnez la date pour afficher les commandes proches" + ], + "Jump to date (%1$s)": [ + "Aller à la date (%1$s)" + ], "Instance unknown": [ "Identifiant d'instance" ], "Order unknown": [ "inconnu" ], + "This order is not refundable": [ + "Pourquoi cette commande est-elle remboursée" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "Créer une commande" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -15700,12 +18528,15 @@ strings['fr'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "Des exigences en matière de connaissance du client (KYC) sont en suspens." ], "refund": [ "Remboursement" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "Référence" ], @@ -15733,7 +18564,7 @@ strings['fr'] = { "now": [ "non" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -15745,6 +18576,9 @@ strings['fr'] = { "This wire transfer has been notified by the payment service provider.": [ "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" ], + "This wire transfer has been notified manually or by the banking system.": [ + "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" + ], "This refund is waiting to be claimed by the customer.": [ "Montant à payer par le client" ], @@ -15754,7 +18588,7 @@ strings['fr'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -15793,21 +18627,21 @@ strings['fr'] = { "Wire transfer deadline": [ "Date limite pour les virements" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "Date limite de transfert pour l'exchange" ], - "Time indicating when the order should be delivered": [ - "Date à laquelle la commande doit être livrée" - ], - "Where the order will be delivered": [ - "Lieu de livraison de la commande" - ], "Auto-refund delay": [ "Délai de remboursement automatique" ], "How long the wallet should try to get an automatic refund for the purchase": [ "Combien de temps le portefeuille doit-il essayer d'obtenir un remboursement automatique de l'achat" ], + "Time indicating when the order should be delivered": [ + "Date à laquelle la commande doit être livrée" + ], + "Where the order will be delivered": [ + "Lieu de livraison de la commande" + ], "Extra info": [ "Infos supplémentaires" ], @@ -15850,38 +18684,44 @@ strings['fr'] = { "Product list": [ "Liste des produits" ], - "refund missed: %1$s": [ + "The contract terms have a v1 order without choices_index.": [ + "" + ], + "The contract terms have a v1 order with a bad choices_index.": [ "" ], - "refund missed: %1$s: %2$s": [ + "refund missed: %1$s": [ "" ], + "refund missed: %1$s : %2$s": [ + "Création réussie du remboursement" + ], "refund created: %1$s": [ "Création réussie du remboursement" ], - "refund created: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "Création réussie du remboursement" ], "refund taken: %1$s": [ "Remboursement pris" ], - "refund taken: %1$s: %2$s": [ + "refund taken: %1$s : %2$s": [ "Remboursement pris" ], - "The contract terms has a v1 order without choices_index.": [ - "" - ], - "The contract terms has a v1 order with a bad choices_index.": [ - "" - ], "wired %1$s": [ "" ], "wire deadline": [ "Aucune date limite" ], - "Wired": [ - "Virement effectué" + "Related wire transfers": [ + "Virements bancaires" + ], + "Unconfirmed": [ + "Confirmé" + ], + "Confirmed": [ + "Confirmé" ], "Refund order": [ "Rembourser la commande" @@ -15889,6 +18729,12 @@ strings['fr'] = { "Not refundable": [ "Non remboursable" ], + "No wire transfer reported": [ + "Délai de virement" + ], + "Check wire transfers": [ + "Virements bancaires" + ], "Next event in": [ "Nouvel évènement dans" ], @@ -15910,8 +18756,8 @@ strings['fr'] = { "Refund URI": [ "URI de remboursement" ], - "Pay at": [ - "URL de paiement" + "Payment link": [ + "Date limite de paiement" ], "Order status URL": [ "URL de l'état de la commande" @@ -15922,15 +18768,36 @@ strings['fr'] = { "Unknown order status. This is an error, please contact the administrator.": [ "Statut de la commande inconnu. Il s'agit d'une erreur, veuillez contacter l'administrateur." ], + "Back": [ + "Retour" + ], + "never": [ + "jamais" + ], + "unknown": [ + "inconnu" + ], + "confirmed": [ + "Confirmé" + ], + "unconfirmed": [ + "Confirmé" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "Invalide. Veuillez n'insérer que des caractères et des chiffres" ], - "Just letters and numbers from 2 to 7": [ - "Juste des lettres et des chiffres de 2 à 7" + "Use only letters and digits (2–7).": [ + "" ], "The size of the key must be 32 characters": [ "La clé doit comporter exactement 32 caractères" ], + "add otp device": [ + "Aucun appareil" + ], "Internal ID on the system": [ "Identifiant interne au système" ], @@ -15964,6 +18831,9 @@ strings['fr'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "Vous pouvez scanner le code QR suivant avec votre appareil ou enregistrer la clé avant de continuer." ], + "delete otp device": [ + "Aucun appareil" + ], "OTP devices": [ "Appareils OTP" ], @@ -15973,6 +18843,9 @@ strings['fr'] = { "There are no devices to list yet, add more by pressing the + sign": [ "Il n'y a pas encore d'appareil, ajoutez-en un en appuyant sur le signe +" ], + "update otp device": [ + "Appareil OTP" + ], "Template id is unknown": [ "Identifiant du modèle inconnu" ], @@ -16006,9 +18879,24 @@ strings['fr'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "Nouveau mot de passe" + ], + "Next password to be used": [ + "Prochain mot de passe à utiliser" + ], + "Repeat password": [ + "Répéter le mot de passe" + ], + "Confirm the same password": [ + "Confirmer ce mot de passe" + ], "Confirm change": [ "Confirmer le changement" ], + "change password": [ + "Avec mot de passe" + ], "Testing password change": [ "Mot de passe" ], @@ -16018,16 +18906,76 @@ strings['fr'] = { "The current password is wrong.": [ "Avec mot de passe" ], + "change instance password": [ + "Mot de passe de la boutique." + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "Identifiant du produit" ], + "create money pot": [ + "Créer un nouveau compte" + ], + "There is already a money pot with the same id.": [ + "Affiche plus d'options dans le formulaire de configuration de l'instance" + ], + "delete money pot": [ + "Cagnottes" + ], + "Money pot deleted": [ + "Inventaire" + ], + "Add new pots": [ + "Ajouter de nouveaux modèles" + ], + "Load more pots before the first one": [ + "Ajouter de nouveaux modèles avant le premier" + ], + "Total": [ + "Prix total" + ], + "Delete selected pots from the database": [ + "Supprimer les comptes sélectionnés de la base de données" + ], + "Load more pots after the last one": [ + "Ajouter des produits après le dernier" + ], + "There are no money pots yet, add more pressing the + sign": [ + "Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" + ], "Add element to the list": [ "Ajouter l'élément à la liste" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "Changer la valeur pour jamais" + ], + "Invalid amount \"%1$s\": %2$s": [ + "Montant invalide" + ], + "update money pot": [ + "Cagnottes" + ], + "Descripton": [ + "Description" + ], + "Totals": [ + "Total des produits" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "Cliquez ici pour configurer le stock du produit, laissez-le tel quel et le backend ne contrôlera pas le stock." ], "Manage stock": [ @@ -16042,15 +18990,15 @@ strings['fr'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "Le retrait ne peut pas dépasser le stock actuel plus les quantitées entrantes (maximum %1$s)" ], + "Current": [ + "Courant" + ], "Incoming": [ "Arrivées" ], "Lost": [ "Perte" ], - "Current": [ - "Courant" - ], "Remove stock control for this product": [ "Supprimer le contrôle des stocks pour ce produit" ], @@ -16129,6 +19077,9 @@ strings['fr'] = { "Search by group name or id": [ "Recherche par description ou identifiant de produit" ], + "add product": [ + "Somme des produits" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -16144,6 +19095,9 @@ strings['fr'] = { "Add product to inventory": [ "Ajouter le produit à l'inventaire" ], + "update product": [ + "Modification du produit impossible" + ], "Product not found.": [ "Identifiant du produit" ], @@ -16156,6 +19110,12 @@ strings['fr'] = { "Sold": [ "Vendu" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "Infini" + ], "Free": [ "Libre" ], @@ -16198,6 +19158,9 @@ strings['fr'] = { "There are no products to list yet, add more by pressing the + sign": [ "Il n'y a pas encore de produits, ajoutez-en en appuyant sur le signe +" ], + "delete product": [ + "Effacées" + ], "Product (ID: %1$s) has been deleted": [ "Le produit (identifiant : %1$s) a été modifié" ], @@ -16222,6 +19185,69 @@ strings['fr'] = { "Product id:": [ "Identifiant du produit :" ], + "It should start with /": [ + "Le numéro international devrait commencer par +" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "" + ], + "Description of the report. Possibly included in the report message": [ + "" + ], + "Where the report program should send the report": [ + "" + ], + "Source": [ + "" + ], + "Base URL to request the data from.": [ + "" + ], + "Type of the data source": [ + "Nom de la catégorie" + ], + "Program": [ + "" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "" + ], + "Report frequency shift": [ + "" + ], + "delete scheduled report": [ + "Supprimer la catégorie sélectionnée de la base de données" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "Ajouter de nouveaux modèles" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "Supprimer la catégorie sélectionnée de la base de données" + ], + "There are no reports yet, add more pressing the + sign": [ + "Il n'y a pas encore de catégorie, ajoutez-en en appuyant sur le signe +" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "" ], @@ -16231,9 +19257,6 @@ strings['fr'] = { "Service unavailable": [ "" ], - "Select date from which to show statistics": [ - "" - ], "Show chart": [ "" ], @@ -16246,6 +19269,9 @@ strings['fr'] = { "Orders table": [ "Statut de la commande" ], + "Select date from which to show statistics": [ + "" + ], "Start from (%1$s)": [ "" ], @@ -16330,6 +19356,9 @@ strings['fr'] = { "Too short": [ "Trop court" ], + "add template": [ + "Ajouter de nouveaux modèles" + ], "You don't have enough permissions.": [ "" ], @@ -16432,6 +19461,9 @@ strings['fr'] = { "There are no templates to list yet, add more by pressing the + sign": [ "Il n'y a pas encore de modèles, ajoutez-en en appuyant sur le signe +" ], + "delete template": [ + "Suppression d'un modèle" + ], "Jump to template with the given template ID": [ "Aller directement au modèle avec cet identifiant" ], @@ -16444,7 +19476,7 @@ strings['fr'] = { "Delete the template \"%1$s\"": [ "Suppression d'un modèle" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "Si vous effacez le modèle %1$s (identifiant : %2$s) vous pourriez perdre des informations" ], "Deleting a template cannot be undone.": [ @@ -16453,6 +19485,9 @@ strings['fr'] = { "Print": [ "Imprimer" ], + "update template": [ + "Utiliser le modèle" + ], "The template configuration needs to be fixed.": [ "" ], @@ -16474,6 +19509,12 @@ strings['fr'] = { "An order summary is required": [ "Un résumé de la commande est obligatoire" ], + "create order from template": [ + "Nouvelle commande à partir d'un modèle" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "Il n'y a plus de stock pour le produit dont l'identifiant est \"%1$s\"." ], @@ -16483,12 +19524,30 @@ strings['fr'] = { "Amount of the order": [ "Montant de la commande" ], + "Expiration should be after start date": [ + "" + ], + "Granularity can't be greater than duration.": [ + "La quantité doit être supérieure à 0 !" + ], + "create token family": [ + "Échec de la suppression de la famille de jetons" + ], + "There is another token family with this ID. Choose another one.": [ + "Affiche plus d'options dans le formulaire de configuration de l'instance" + ], "Slug": [ "Type" ], "Token family slug to use in URLs (for internal use only)": [ "Type de famille de jetons à utiliser dans les URL (à usage interne uniquement)" ], + "User-readable token family name": [ + "Nom de famille du jeton compréhensible par l'utilisateur" + ], + "Token family description for customers": [ + "Description de la famille de jetons pour les clients" + ], "Kind": [ "Type" ], @@ -16501,7 +19560,7 @@ strings['fr'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ @@ -16510,7 +19569,7 @@ strings['fr'] = { "The last day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -16522,11 +19581,26 @@ strings['fr'] = { "Validity Granularity": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ - "" + "1 minute": [ + "Chaque minute" + ], + "1 hour": [ + "heures" + ], + "1 day": [ + "Quotidienne" + ], + "30 days": [ + "jours" + ], + "90 days": [ + "jours" + ], + "365 days": [ + "jours" ], "Token Families": [ "Familles de jetons" @@ -16546,6 +19620,9 @@ strings['fr'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "Il n'y a pas encore de familles de jetons, ajoutez la première en appuyant sur le signe +." ], + "delete token family": [ + "Échec de la suppression de la famille de jetons" + ], "Token family has been deleted.": [ "Famille de jetons \"%1$s\" (type : %2$s) a été effacée" ], @@ -16564,52 +19641,76 @@ strings['fr'] = { "can't be undone": [ "ne peut être annulé" ], + "update token family": [ + "Impossible de mettre à jour la famille de jetons" + ], "Token Family: %1$s": [ "Famille de jetons : %1$s" ], - "User-readable token family name": [ - "Nom de famille du jeton compréhensible par l'utilisateur" + "inform wire transfer": [ + "Confirmez le même jeton d'accès" ], - "Token family description for customers": [ - "Description de la famille de jetons pour les clients" + "Wire transfer already confirmed.": [ + "Date limite pour les virements" + ], + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "" ], - "Incoming wire transfers": [ + "The wire transfer has been confirmed.": [ + "Date limite pour les virements" + ], + "Transaction details": [ + "Détails du compte" + ], + "Transfer ID": [ + "Virements" + ], + "I have received the wire transfer": [ + "" + ], + "Orders in this wire transfer": [ "Virements bancaires" ], - "Load more wire transfers preceding the first one": [ - "Charger des virements avant le premier" + "Fee": [ + "Libre" ], - "Expected credit": [ - "Exécuté le" + "Subtotals": [ + "Total des produits" ], - "Confirmed": [ - "Confirmé" + "Deposit fee": [ + "" ], - "Validated": [ - "Valide à partir de" + "Wire fee": [ + "Virements bancaires" ], - "Executed on": [ - "Exécuté le" + "not ready": [ + "" ], - "yes": [ - "oui" + "loading...": [ + "Synchronisation en cours…" ], - "no": [ - "non" + "New wire transfers": [ + "Virements bancaires" ], - "never": [ - "jamais" + "Load more wire transfers preceding the first one": [ + "Charger des virements avant le premier" ], - "unknown": [ - "inconnu" + "To be determined.": [ + "" + ], + "You confirm that the incoming wire transfer has arrived into your bank account.": [ + "" ], "Load more transfers after the last one": [ "Ajouter des virements après le dernier" ], - "Verified wire transfers": [ + "Confirmed wire transfers into bank account": [ + "Confirmez le même jeton d'accès" + ], + "Show details about the incoming wire transfer.": [ "Virements bancaires" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "There are no transfers to list yet": [ "Il n'y a pas encore de virements, ajoutez-en en appuyant sur le signe +" ], "All accounts": [ @@ -16618,57 +19719,63 @@ strings['fr'] = { "Filter by account address": [ "Filtre sur l'adresse du compte" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ - "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" - ], - "Only show wire transfers confirmed by the merchant": [ - "Afficher uniquement les virements bancaires confirmés par le commerçant" - ], "Verified": [ "Vérifié" ], - "Wire transfer already confirmed.": [ - "Date limite pour les virements" - ], - "I have received the wire transfer": [ - "" - ], - "Confirm the wire transfer": [ - "Confirmez le même jeton d'accès" - ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], - "Time": [ - "Calendrier" - ], - "Transfer ID": [ - "Virements" - ], "It's not the same.": [ "N'est pas le même" ], "You are deleting the instance with ID \"%1$s\"": [ "Vous modifiez le jeton d'accès de l'instance dont l'identifiant est \"%1$s\"" ], + "delete current instance": [ + "Suppression d'une instance %1$s ." + ], "Instance": [ "Instances" ], "Write the instance name to confirm the deletion": [ "" ], - "Purge": [ - "Purger" - ], "All the data will be fully deleted, otherwise only the access will be removed.": [ "" ], "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "Cela ne ressemble pas à une addresse de courriel" + ], + "Should start with +": [ + "Le numéro international devrait commencer par +" + ], + "A phone number consists of numbers only": [ + "Un numéro de téléphone n'est composé que de chiffres" + ], + "Invalid phone number": [ + "Email de contact" + ], + "Invalid value": [ + "Valeur invalide" + ], + "Max 7 lines": [ + "Sept lignes au maximum" + ], + "update instance settings": [ + "" + ], "Instance id": [ "Identifiant d'instance" ], + "URL": [ + "URL" + ], + "Cancel operation": [ + "Confirmer l'opération" + ], "Delete this instance": [ "Suppression d'une instance %1$s ." ], @@ -16678,6 +19785,9 @@ strings['fr'] = { "URL is invalid": [ "La chaine JSON est invalide" ], + "add webhook": [ + "Ajouter de nouveaux webhooks" + ], "Webhook ID to use": [ "Identifiant du Webhook à utiliser" ], @@ -16729,9 +19839,6 @@ strings['fr'] = { "Method used by the webhook": [ "Méthode utilisée par le webhook" ], - "URL": [ - "URL" - ], "URL of the webhook where the customer will be redirected": [ "URL du webhook où le client sera redirigé" ], @@ -16774,6 +19881,9 @@ strings['fr'] = { "Body template used by the webhook.": [ "Modèle de body pour le webhook" ], + "delete webhook": [ + "Ajouter de nouveaux webhooks" + ], "Webhook deleted successfully": [ "Suppression réussie du webhook" ], @@ -16795,6 +19905,9 @@ strings['fr'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "Il n'y a pas encore de webhook, ajoutez-en en appuyant sur le signe +" ], + "update webhook": [ + "Impossible de modifier le webhook" + ], "Webhook updated": [ "Webhook modifié" ], @@ -16807,6 +19920,12 @@ strings['fr'] = { "Body template used by the webhook": [ "Modèle de body pour le webhook" ], + "Doesn't match": [ + "Ne correspond pas" + ], + "self provision instance": [ + "Suppression d'une instance %1$s ." + ], "There is another instance with this username.": [ "Affiche plus d'options dans le formulaire de configuration de l'instance" ], @@ -16834,6 +19953,9 @@ strings['fr'] = { "Create": [ "Créé à" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -16843,12 +19965,12 @@ strings['fr'] = { "Resetting access to the instance \"%1$s\"": [ "Vous définissez le jeton d'accès pour la nouvelle instance" ], - "Reset": [ - "" - ], "Language": [ "Langue" ], + "Force the language settings instead of using the browser": [ + "" + ], "Date format": [ "Format de la date" ], @@ -16856,159 +19978,105 @@ strings['fr'] = { "Comment la date sera affichée" ], "Merchant type": [ - "Type d'évènement" - ], - "Simplify UI based on the user usage.": [ - "" - ], - "Expert user": [ - "" - ], - "Taler developer": [ - "" - ], - "Unattended in-person offline vending": [ - "" - ], - "In-person online point-of-sale with inventory": [ - "" - ], - "Digital publishing": [ - "" - ], - "E-commerce site": [ - "" - ], - "Developer mode": [ - "Mode dévelopeur" - ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ - "" - ], - "Money pot deleted": [ - "Inventaire" - ], - "Add new pots": [ - "Ajouter de nouveaux modèles" - ], - "Load more pots before the first one": [ - "Ajouter de nouveaux modèles avant le premier" - ], - "Total": [ - "Prix total" - ], - "Delete selected pots from the database": [ - "Supprimer les comptes sélectionnés de la base de données" - ], - "Load more pots after the last one": [ - "Ajouter des produits après le dernier" - ], - "There are no money pots yet, add more pressing the + sign": [ - "Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" + "Type d'évènement" ], - "Missing currency name": [ + "Simplify the UI based on use case.": [ "" ], - "Currency name must be only letters": [ + "Beta tester": [ "" ], - "Value can only by number": [ + "Expert user": [ "" ], - "The value is too high": [ + "Unattended in-person offline vending": [ "" ], - "The value is too precise": [ - "Changer la valeur pour jamais" - ], - "Invalid amount \"%1$s\": %2$s": [ - "Montant invalide" - ], - "Descripton": [ - "Description" - ], - "Totals": [ - "Total des produits" + "In-person online point-of-sale with inventory": [ + "" ], - "There is already a money pot with the same id.": [ - "Affiche plus d'options dans le formulaire de configuration de l'instance" + "Digital publishing": [ + "" ], - "Product group deleted": [ - "Liste des produits" + "E-commerce site": [ + "" ], - "Add new group": [ - "Ajouter un nouveau compte" + "Developer tools": [ + "Mode dévelopeur" ], - "Load more groups before the first one": [ - "Ajouter des webhooks avant le premier" + "Enable UI tools for troubleshooting.": [ + "" ], - "Delete selected group from the database": [ - "Supprimer les comptes sélectionnés de la base de données" + "Testing features": [ + "" ], - "Load more groups after the last one": [ - "Ajouter des produits après le dernier" + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ + "" ], - "There are no product groups yet, add more pressing the + sign": [ - "Il n'y a pas encore de produits, ajoutez-en en appuyant sur le signe +" + "Developer mode": [ + "Mode dévelopeur" ], - "Scheduled report deleted": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "Scheduled reports": [ - "" + "create pos access token": [ + "Générer un jeton d'accès" ], - "Add new reports": [ - "Ajouter de nouveaux modèles" + "Device name": [ + "Clé de l'appareil" ], - "Frequency": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Delete selected scheduled report from the database": [ - "Supprimer la catégorie sélectionnée de la base de données" + "Payment services status": [ + "Devises prises en charge" ], - "There are no reports yet, add more pressing the + sign": [ - "Il n'y a pas encore de catégorie, ajoutez-en en appuyant sur le signe +" + "Base URL": [ + "URL de l'état" ], - "No report generator configured in the server": [ - "" + "Next update": [ + "Inventaire" ], - "Contact the system administrator to create a report generator before scheduling one.": [ - "" + "This payment service is ready to be used.": [ + "Ce compte n'est pas autorisé." ], - "Description of the report. Possibly included in the report message": [ - "" + "This payment service can't be used due to an error. Contact the service provider.": [ + "Afficher uniquement les commandes qui ont déjà été transférées par le prestataire de services de paiement" ], - "Where the report program should send the report": [ + "Details of the status": [ "" ], - "Source": [ - "" + "No payment services supported": [ + "Aucune clé d'échange" ], - "Base URL to request the data from.": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "Type of the data source": [ - "Nom de la catégorie" + "Ready until %1$s": [ + "Date limite à %1$s" ], - "Program": [ - "" + "Next update will be at %1$s": [ + "Il expirera à %1$s" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ + "Error": [ + "Erreur" + ], + "This payment service is unavailable.": [ "" ], - "Report frequency": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], "Welcome!": [ "" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], "You need to associate a bank account to receive revenue.": [ "Vous devez associer un compte bancaire pour recevoir des fonds." ], - "Without this the merchant backend will refuse to create new orders.": [ + "Without this the server will refuse to create new orders.": [ "Sans cela, le backend du commerçant refusera de créer de nouvelles commandes." ], "Hide for today": [ @@ -17020,89 +20088,188 @@ strings['fr'] = { "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "Certains transferts sont suspendus jusqu'à ce que la procédure de vérification de l'identité du client (KYC) soit achevée. Pour plus d'informations, consultez la section KYC dans le panneau de gauche" ], - "The request reached a timeout, check your connection.": [ - "La demande a dépassé le temps de traitement maximum, vérifiez votre connexion." + "No 'admin' instance configured yet.": [ + "Aucune boutique 'principale' n'a encore été configurée." ], - "The request was cancelled.": [ - "La demande a été annulée." + "Create an 'admin' instance to begin using the merchant portal.": [ + "Créer une boutique 'principale' pour commencer à utiliser l'interface d'administration du marchand." ], - "Too many requests were made to the server, and this action was throttled.": [ - "Un grand nombre de demandes ont été adressées au même serveur et cette action a été ralentie." + "delete bank account": [ + "Supprimer ce compte" ], - "The server's response was malformed.": [ - "La réponse du serveur est malformée." + "The bank account has been deleted.": [ + "Le compte bancaire a été supprimé avec succès." ], - "Could not complete the request due to a network problem.": [ - "La demande n'a pas pu être traitée en raison d'un problème de réseau." + "Delete account": [ + "Supprimer ce compte" ], - "Unexpected request error.": [ - "Erreur inattendue sur la requête." + "Delete the account \"%1$s\"": [ + "Supprimer le compte \"%1$s\"" ], - "Unexpected error.": [ - "Erreur inattendue." + "Invalid payto: \"%1$s\"": [ + "PayTo invalide : \"%1$s\"" ], - "Add new instance": [ - "Ajouter une nouvelle instance" + "If you delete the account with name %1$s its information will be lost": [ + "Si vous effacez le compte nommé %1$s (identifiant : %2$s), le stock et toutes les informations liées seront perdus" ], - "Edit": [ - "Editer" + "Deleting an account can't be undone.": [ + "La suppression d'un compte est irréversible." ], - "Change password": [ - "Avec mot de passe" + "Bank accounts": [ + "Comptes bancaires" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ - "Il n'y a pas encore d'instance, ajoutez-en une en appuyant sur le signe +" + "Add new account": [ + "Ajouter un nouveau compte" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ - "L'instance \"%1$s\" (identifiant : %2$s) a été effacée" + "Owner's name": [ + "Nom de la personne titulaire" ], - "Only show active instances": [ - "N'afficher que les instances actives" + "Delete selected accounts from the database": [ + "Supprimer les comptes sélectionnés de la base de données" ], - "Active": [ - "Actives" + "There are no accounts yet, add more pressing the + sign": [ + "Il n'y a pas encore de compte, ajoutez-en un en appuyant sur le signe +" ], - "Only show deleted instances": [ - "N'afficher que les instances effacées" + "No bank account configured yet.": [ + "Aucune boutique 'principale' n'a encore été configurée." ], - "Deleted": [ - "Effacées" + "Without this information you cannot create new payment orders.": [ + "Sans cette information, vous ne pouvez pas générer d'ordre de paiement à transférer vers un compte en banque." ], - "Show all instances": [ - "Afficher toutes les instances" + "This account is not ready to be used.": [ + "Ce compte n'est pas autorisé." ], - "Delete instance": [ - "Suppression d'une instance %1$s ." + "There are pending actions related to KYC.": [ + "Cette catégorie est vide." ], - "Delete the instance \"%1$s\"": [ - "Suppression d'une instance %1$s ." + "More details.": [ + "Modalités de paiement" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ - "Si vous supprimez l'instance nommée %1$s (ID : %2$s), le commerçant ne sera plus en mesure de traiter les commandes ou les remboursements" + "You must complete kyc requirements to receive payments.": [ + "Vous devez associer un compte bancaire pour recevoir des fonds." ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ - "Cette action supprime la clé privée de l'instance, mais préserve toutes les données de transaction. Vous pouvez toujours accéder à ces données après avoir supprimé l'instance." + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ + "" ], - "Deleting an instance %1$s": [ - "Suppression d'une instance %1$s ." + "Invalid url": [ + "URL invalide" ], - "This cannot be undone!": [ - "ne peut être annulé" + "URL must end with a '/'": [ + "L'URL doit terminer avec une '/'" ], - "Purge the instance": [ - "Suppression d'une instance %1$s ." + "URL must not contain params": [ + "L'URL ne doit pas contenir de requête" ], - "Purge the instance \"%1$s\"": [ - "Purge d'une instance %1$s ." + "URL must not hash param": [ + "L'URL ne doit pas comporter d'ancre" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ - "Si vous purgez l'instance nommée %1$s (ID : %2$s), vous supprimerez également toutes ses données de transaction." + "change bank account": [ + "Compte bancaire" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ - "L'instance disparaîtra de votre liste et vous ne pourrez plus accéder à ses données." + "test revenue api": [ + "Nouvel évènement dans" ], - "Purging an instance %1$s": [ - "Purge d'une instance %1$s ." + "Server replied with \"bad request\".": [ + "La syntaxe de la requête est erronée (réponse du serveur : \"400 bad request\")." + ], + "Unauthorized, check credentials.": [ + "Non autorisé, vérifiez les données d'identification." + ], + "The endpoint does not seem to be a Taler Revenue API.": [ + "Ce point d'accès ne semble pas appartenir à l'API Taler Revenue." + ], + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "La requête a abouti mais le serveur de la banque n'a pas répondu avec la valeur appropriée pour le champ 'credit_account' et nous ne pouvons donc pas confirmer qu'il s'agit du même compte bancaire." + ], + "Unsupported type of account": [ + "Ce type de compte n'est pas supporté" + ], + "Account:": [ + "Compte :" + ], + "Account details": [ + "Détails du compte" + ], + "Extra subject": [ + "Référence" + ], + "Additional text to include in the wire transfer subject when settling the payment": [ + "" + ], + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Si la banque supporte l'API Taler Revenue, vous pouvez ajouter ci-dessous l'URL du point d'accès pour synchroniser les informations sur les revenus." + ], + "Endpoint URL": [ + "URL du point d'accès" + ], + "From where the merchant can download information about incoming wire transfers to this account": [ + "Endroit d'où le commerçant peut récupérer l'information des virements bancaires entrants sur ce compte" + ], + "Auth type": [ + "Type d'identification" + ], + "Choose the authentication type for the account info URL": [ + "Choisir le type d'identification pour l'URL d'information sur le compte" + ], + "Without authentication": [ + "Aucune identification" + ], + "With username and password": [ + "Avec identifiant et mot de passe" + ], + "With token": [ + "Avec jeton d'accès" + ], + "Do not change": [ + "Ne pas changer" + ], + "Username to access the account information.": [ + "Identifiant pour accéder aux informations du compte." + ], + "Password to access the account information.": [ + "Mot de passe pour accéder aux informations du compte." + ], + "Access token to access the account information.": [ + "Jeton d'accès pour accéder aux informations du compte." + ], + "Match": [ + "Correspondance" + ], + "Check where the information match against the server info.": [ + "Vérifier la correspondance des informations locales avec celles du serveur." + ], + "Compare info from server with account form": [ + "Comparer les informations du serveur avec celles du formulaire" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "Compte bancaire" + ], + "The instance does not exist.": [ + "Votre instance n'a pas été trouvée" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "Le serveur n'a pas aimé notre requête." + ], + "Check if the information matches the server info.": [ + "Vérifier si les informations correspondent à celles du serveur." + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "Suppression d'une instance %1$s ." + ], + "Instance created": [ + "La boutique a été créée" + ], + "Please complete the marked fields and choose authorization method": [ + "Merci de remplir les champs marqués et de choisir une méthode d'autorisation" ], "checking compatibility with server...": [ "vérification de la compatibilité avec le serveur..." @@ -17119,6 +20286,9 @@ strings['fr'] = { "Business Name": [ "Nom de l'entreprise" ], + "update product group": [ + "Groupes de produits" + ], "Available statistics": [ "" ], @@ -17212,6 +20382,9 @@ strings['fr'] = { "title\u0004%1$s: New access token": [ "Nouveau jeton d'accès" ], + "title\u0004%1$s: New POS access token": [ + "Nouveau jeton d'accès" + ], "title\u0004New instance": [ "Ajouter une nouvelle boutique" ], @@ -17223,7 +20396,7 @@ strings['fr'] = { "domain": "messages", "plural_forms": "nplurals=2; plural=(n!=1);", "lang": "fr", - "completeness": 82 + "completeness": 83 }; strings['es'] = { @@ -17252,7 +20425,7 @@ strings['es'] = { "Confirm": [ "Confirmar" ], - "Correct form": [ + "Correct the form": [ "Formulario correcto" ], "Comparing account details": [ @@ -17268,7 +20441,7 @@ strings['es'] = { "En el formulario" ], "Reported": [ - "Reportado" + "Informado" ], "Type": [ "Tipo" @@ -17312,6 +20485,12 @@ strings['es'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "Para demostrar que sos el titular beneficiario de la cuenta bancaria, debés realizar una transferencia de un monto pequeño a la cuenta indicada con el asunto que figura a continuación." ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Si tu aplicación bancaria permite realizar transferencias mediante códigos QR estándar, intentá escanear el siguiente:" + ], + "Bank app": [ + "Cuenta bancaria" + ], "Step 1:": [ "Paso 1:" ], @@ -17342,13 +20521,10 @@ strings['es'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "Seleccioná el monto mínimo posible para una transferencia bancaria en tu aplicación bancaria o sitio web de banca en línea." ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "Asegurate de que TODOS los datos sean correctos, especialmente el asunto, y que estés eligiendo la cuenta bancaria desde la que realmente querés realizar la transferencia. Podés usar los botones de copiar (%1$s) para evitar errores de tipeo, o usar el URI \"payto://\" de más abajo para copiar un único valor." ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ - "Si tu aplicación bancaria permite realizar transferencias mediante códigos QR estándar, intentá escanear el siguiente:" - ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "Como alternativa, si tu banco ya soporta el estándar 'PayTo URI', podés usar este enlace %1$s en su lugar" ], "Operation in progress...": [ @@ -17390,13 +20566,16 @@ strings['es'] = { "%1$ssec": [ "%1$sseg" ], - "Change value to never": [ + "Change the value to never": [ "Cambiar valor a nunca" ], - "Change value to empty": [ + "Change the value to empty": [ "Cambiar valor a vacío" ], - "Image must be smaller than 1 MB": [ + "The file is not an image": [ + "El valor es demasiado alto" + ], + "The image was normalized to be smaller than 1 MB": [ "La imagen debe ser menor a 1 MB" ], "Add": [ @@ -17465,6 +20644,9 @@ strings['es'] = { "Configuration": [ "Configuración" ], + "KYC Status": [ + "Estado KYC" + ], "OTP Devices": [ "Dispositivos OTP" ], @@ -17486,6 +20668,9 @@ strings['es'] = { "Personalization": [ "Personalización" ], + "Payment services": [ + "Servicios de pago" + ], "Instances": [ "Instancias" ], @@ -17498,6 +20683,21 @@ strings['es'] = { "Log out": [ "Cerrar sesión" ], + "Select one...": [ + "Seleccioná uno" + ], + "Days": [ + "Días" + ], + "Hours": [ + "horas" + ], + "Minutes": [ + "minutos" + ], + "Seconds": [ + "segundos" + ], "Username": [ "Usuario" ], @@ -17552,7 +20752,7 @@ strings['es'] = { "Default cut-off times": [ "Plazos predeterminados" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "Estos valores se usarán si no se sobreescriben al crear una orden." ], "Payment delay": [ @@ -17561,6 +20761,12 @@ strings['es'] = { "Time customers have to pay an order before the offer expires by default.": [ "Tiempo que tienen los clientes para pagar una orden antes de que la oferta expire de forma predeterminada." ], + "Change the value to the default value specified by the server.": [ + "Cambiar el valor por omisión indicado por el servidor." + ], + "Reset": [ + "Restablecer" + ], "Refund delay": [ "Plazo de reembolso" ], @@ -17570,14 +20776,14 @@ strings['es'] = { "Wire transfer delay": [ "Plazo de transferencia bancaria" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "Tiempo máximo que un proveedor puede demorar en transferir fondos al comerciante, lo que le permite agrupar pagos menores en transferencias más grandes y reducir las comisiones." ], "Wire transfer rounding": [ "Redondeo de transferencia bancaria" ], - "Interval to which wire deadlines should be rounded up to.": [ - "Intervalo al que deben redondearse los plazos de transferencia." + "Rounding interval for wire deadlines.": [ + "Invervalo de redondeo para las transferencias bancarias." ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ "Por ejemplo, si establecés el intervalo en día, el plazo de transferencia se redondeará a medianoche." @@ -17609,47 +20815,44 @@ strings['es'] = { "To year": [ "Al año" ], + "Can't paste this content. Please copy the 8 digits again.": [ + "No se puede pegar este contenido. Por favor copiá los 8 dígitos otra vez." + ], + "Resend code possible in %1$s seconds.": [ + "Reenviar el código será posible en %1$s segundos." + ], + "Resend code possible in less than one minute.": [ + "Reenviar el código sera posible en menos de un minuto." + ], + "Resend code possible in less than 5 minutes.": [ + "Reenviar el código sera posible en menos de 5 minutos." + ], + "Resend will be possible after %1$s": [ + "Vencerá el %1$s" + ], "Expired": [ "Vencido" ], "Required": [ "Requerido" ], + "verify code": [ + "Código de verificación" + ], "Unauthorized": [ "No autorizado" ], "The code is not correct.": [ "El código no es correcto." ], - "The challenge is not known anymore.": [ + "The challenge is no longer valid.": [ "El desafío ya no es reconocido." ], "Too many attempts trying to solve the challenge.": [ "Demasiados intentos para resolver el desafío." ], - "Validation code sent.": [ - "Código de validación enviado." - ], - "The verification code sent to the phone number ending with \"%1$s\"": [ - "El código de verificación enviado al número de teléfono que termina en \"%1$s\"" - ], - "The verification code sent to the email address starting with \"%1$s\"": [ - "El código de verificación enviado a la dirección de correo que comienza con \"%1$s\"" - ], - "Verification code": [ - "Código de verificación" - ], - "It will expire at %1$s": [ - "Vencerá el %1$s" - ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ - "El desafío venció y no puede resolverse, pero podés volver atrás y crear uno nuevo." - ], - "Back": [ - "Volver" - ], - "Verify": [ - "Verificar" + "send challenge": [ + "Contraseña cambiada" ], "Failed to send the verification code.": [ "No se pudo enviar el código de verificación." @@ -17657,8 +20860,8 @@ strings['es'] = { "The request was valid, but the server is refusing action.": [ "La solicitud fue válida, pero el servidor rechazó la acción." ], - "The backend is not aware of the specified MFA challenge.": [ - "El backend no reconoce el desafío MFA especificado." + "The server is not aware of the specified MFA challenge.": [ + "El server no reconoce el desafío MFA especificado." ], "Code transmission failed.": [ "Falló la transmisión del código." @@ -17669,278 +20872,59 @@ strings['es'] = { "It is too early to request another transmission of the challenge.": [ "Es demasiado pronto para solicitar otro envío del desafío." ], - "Multi-factor authentication required.": [ - "Se requiere autenticación multifactor." - ], - "You need to complete all of this requirements.": [ - "Tenés que completar todos estos requisitos." - ], - "You need to complete at least one of this requirements.": [ - "Tenés que completar al menos uno de estos requisitos." - ], - "An SMS to the phone number ending with %1$s": [ - "Un SMS al número de teléfono que termina en %1$s" - ], - "An email to the address starting with %1$s": [ - "Un correo electrónico a la dirección que comienza con %1$s" - ], - "You have to wait until %1$s to send a new code.": [ - "Tenés que esperar hasta %1$s para enviar un nuevo código." - ], - "I have a code": [ - "Tengo un código" - ], - "Send me a message": [ - "Enviarme un mensaje" - ], - "Logged in": [ - "Sesión iniciada" - ], - "Not found": [ - "No encontrado" - ], - "Login required": [ - "Se requiere iniciar sesión" - ], - "Instance name.": [ - "Nombre de la instancia." - ], - "Instance password.": [ - "Contraseña de la instancia." - ], - "Forgot password": [ - "Olvidé mi contraseña" - ], - "Create new account": [ - "Crear nueva cuenta" - ], - "Invalid": [ - "No válido" - ], - "Doesn't have the pattern of an email": [ - "No tiene el formato de un correo electrónico" - ], - "Should start with +": [ - "Debe comenzar con +" - ], - "A phone number consists of numbers only": [ - "Un número de teléfono contiene únicamente dígitos" - ], - "Invalid value": [ - "Valor no válido" - ], - "Max 7 lines": [ - "Máximo 7 líneas" - ], - "Doesn't match": [ - "No coincide" - ], - "Instance created": [ - "Instancia creada" - ], - "Unauthorized.": [ - "No autorizado." - ], - "Conflict.": [ - "Conflicto." - ], - "Not found.": [ - "No encontrado." - ], - "New password": [ - "Nueva contraseña" - ], - "Next password to be used": [ - "Próxima contraseña a utilizar" - ], - "Repeat password": [ - "Repetir contraseña" - ], - "Confirm the same password": [ - "Confirmá la misma contraseña" - ], - "Please complete the marked fields and choose authorization method": [ - "Por favor completá los campos marcados y elegí un método de autorización" - ], - "Confirm operation": [ - "Confirmar operación" - ], - "Check the password.": [ - "Verificá la contraseña." - ], - "Instance not found.": [ - "Instancia no encontrada." - ], - "Description": [ - "Descripción" - ], - "Helps you remember where this access token is being used before deleting it.": [ - "Te ayuda a recordar dónde se está usando este token de acceso antes de eliminarlo." - ], - "Duration": [ - "Duración" - ], - "Time the access token will be valid.": [ - "Tiempo durante el cual el token de acceso será válido." - ], - "Refreshable access tokens can pose a security risk!": [ - "¡Los tokens de acceso renovables pueden representar un riesgo de seguridad!" - ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ - "Los tokens de acceso renovables pueden actualizarse antes de que venza su tiempo de vida, otorgando acceso ilimitado a quien los posea. Usá esta opción solo si sabés lo que estás haciendo y evaluaste los riesgos asociados, especialmente respecto a los permisos otorgados por el alcance." - ], - "Scope": [ - "Alcance" - ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ - "El alcance define el conjunto de permisos del token de acceso. Los tokens renovables tienen permiso para extender el tiempo de vencimiento." - ], - "Allows all operations without limit.": [ - "Permite todas las operaciones sin restricción." - ], - "Allows all operations to read information.": [ - "Permite todas las operaciones de lectura de información." - ], - "Allows the creation of orders and checking of payment status.": [ - "Permite crear órdenes y consultar el estado de pago." - ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ - "Permite crear órdenes, consultar el estado de pago y bloquear inventario." - ], - "Allows the creation of orders, checking of payment status and refunds.": [ - "Permite crear órdenes, consultar el estado de pago y gestionar reembolsos." - ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ - "Permite crear órdenes, consultar el estado de pago, bloquear inventario y gestionar reembolsos." - ], - "Allows all operations to read information with extendable expiration time.": [ - "Permite todas las operaciones de lectura con tiempo de vencimiento extendible." - ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ - "Permite crear órdenes y consultar el estado de pago con tiempo de vencimiento extendible." - ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ - "Permite crear órdenes, consultar el estado de pago y bloquear inventario con tiempo de vencimiento extendible." - ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ - "Permite crear órdenes, consultar el estado de pago y gestionar reembolsos con tiempo de vencimiento extendible." - ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ - "Permite crear órdenes, consultar el estado de pago, bloquear inventario y gestionar reembolsos con tiempo de vencimiento extendible." - ], - "All (refreshable)": [ - "Todo (renovable)" - ], - "Spa": [ - "Spa" - ], - "Spa (refreshable)": [ - "Spa (renovable)" - ], - "Choose one": [ - "Elegir uno" - ], - "Read only": [ - "Solo lectura" - ], - "All": [ - "Todo" - ], - "Order simple": [ - "Orden simple" - ], - "Order Point-of-Sale": [ - "Orden punto de venta" - ], - "Order management": [ - "Gestión de órdenes" - ], - "Order full": [ - "Orden completa" - ], - "Read only (refreshable)": [ - "Solo lectura (renovable)" - ], - "Order simple (refreshable)": [ - "Orden simple (renovable)" - ], - "Order Point-of-Sale (refreshable)": [ - "Orden punto de venta (renovable)" - ], - "Order management (refreshable)": [ - "Gestión de órdenes (renovable)" - ], - "Order full (refreshable)": [ - "Orden completa (renovable)" - ], - "Current password": [ - "Contraseña actual" - ], - "Please complete the marked fields": [ - "Por favor completá los campos marcados" - ], - "Access token created": [ - "Token de acceso creado" - ], - "Copy the value of the access token and save it, as you cannot retrieve it again.": [ - "Copiá el valor del token de acceso y guardalo, ya que no podrás recuperarlo más adelante." - ], - "Token": [ - "Token" - ], - "This token will never expire": [ - "Este token nunca vencerá" + "Validation code sent.": [ + "Código de validación enviado." ], - "This token will be available until %1$s": [ - "Este token estará disponible hasta el %1$s" + "The verification code sent to the phone \" %1$s\"": [ + "El código de verificación enviado al número de teléfono que termina en \"%1$s\"" ], - "No 'admin' instance configured yet.": [ - "Aún no se configuró ninguna instancia 'admin'." + "The verification code sent to the phone number ending with \"%1$s\"": [ + "El código de verificación enviado al número de teléfono que termina en \"%1$s\"" ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ - "Creá una instancia 'admin' para comenzar a usar el backoffice del comerciante." + "The verification code sent to the email address \" %1$s\"": [ + "El código de verificación enviado a la dirección de correo que comienza con \"%1$s\"" ], - "Create access token": [ - "Crear token de acceso" + "The verification code sent to the email address starting with \"%1$s\"": [ + "El código de verificación enviado a la dirección de correo que comienza con \"%1$s\"" ], - "Load more devices before the first one": [ - "Cargar más dispositivos antes del primero" + "Verification code": [ + "Código de verificación" ], - "Load first page": [ - "Cargar primera página" + "Code expired.": [ + "Vencido" ], - "Created at": [ - "Creado el" + "Didn't received the code?": [ + "No recibiste el código?" ], - "Expires at": [ - "Vence el" + "Resend": [ + "Restablecer" ], - "Never": [ - "Nunca" + "Verify": [ + "Verificar" ], - "Remove this access token": [ - "Eliminar este token de acceso" + "The code transmission failed.": [ + "Falló la transmisión del código." ], - "Delete": [ - "Borrar" + "The challenge is already solved.": [ + "El desafío ya no es reconocido." ], - "Load more devices after the last one": [ - "Cargar más dispositivos después del último" + "Multi-factor authentication required.": [ + "Se requiere autenticación multifactor." ], - "Load next page": [ - "Cargar siguiente página" + "You must complete all of these requirements.": [ + "Tenés que completar todos estos requisitos." ], - "There are no active sessions yet, add one by pressing the + sign": [ - "Aún no hay sesiones activas, agregá una presionando el signo +" + "You need to complete at least one of this requirements.": [ + "Tenés que completar al menos uno de estos requisitos." ], - "Forbidden.": [ - "Acceso denegado." + "An SMS to the phone number ending with %1$s": [ + "Un SMS al número de teléfono que termina en %1$s" ], - "Delete access token": [ - "Eliminar token de acceso" + "An email to the address starting with %1$s": [ + "Un correo electrónico a la dirección que comienza con %1$s" ], - "Deleting an access token cannot be undone.": [ - "La eliminación de un token de acceso no puede deshacerse." + "Complete": [ + "Completado" ], "This is not a valid Bitcoin address.": [ "Esta no es una dirección de Bitcoin válida." @@ -17966,7 +20950,7 @@ strings['es'] = { "This account is not allowed.": [ "Esta cuenta no está permitida." ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ "Ninguno de los métodos de transferencia soportados por el servidor es compatible con esta aplicación. Configuración del servidor: %1$s" ], "Wire method": [ @@ -18032,153 +21016,351 @@ strings['es'] = { "Legal name of the person holding the account.": [ "Nombre legal de la persona titular de la cuenta." ], - "Invalid url": [ - "URL no válida" + "The request reached a timeout, check your connection.": [ + "El pedido alcanzó un tiempo máximo, verificá tu conexión." ], - "URL must end with a '/'": [ - "La URL debe terminar con '/'" + "The request was cancelled.": [ + "La orden fue transferida." ], - "URL must not contain params": [ - "La URL no debe contener parámetros" + "Too many requests were made to the server and this action was throttled.": [ + "Demasiados pedidos foeron hechos al servidor y esta acción sera limitada." ], - "URL must not hash param": [ - "La URL no debe contener parámetro de hash" + "The server's response was malformed, please report.": [ + "La respuesta del servidor esta mal formada, por favor reportalo." ], - "Conflict": [ - "Conflicto" + "Could not complete the request due to a network problem.": [ + "No sep uede completar el pedido debido a un problema de red." ], - "Server replied with \"bad request\".": [ - "El servidor respondió con un error de solicitud incorrecta." + "Unexpected request error, please report.": [ + "Error inesperado en el pedido, por favor reportalo." ], - "Unauthorized, check credentials.": [ - "No autorizado, verificá las credenciales." + "Unexpected error.": [ + "Error inesperado." ], - "The endpoint does not seem to be a Taler Revenue API.": [ - "El endpoint no parece ser un API Taler Revenue." + "login": [ + "iniciar sesión" ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ - "La solicitud fue correcta, pero el servidor del banco no respondió con el valor apropiado para 'credit_account', por lo que no podemos confirmar que sea la misma cuenta bancaria." + "Logged in": [ + "Sesión iniciada" ], - "Unsupported type of account": [ - "Tipo de cuenta no soportado" + "Wrong password.": [ + "Olvidé mi contraseña" ], - "Account:": [ - "Cuenta:" + "The account doesn't exist.": [ + "La orden no existe" ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ - "Si el banco soporta el API Taler Revenue, podés agregar la URL del endpoint a continuación para mantener la información de ingresos sincronizada." + "Login required": [ + "Se requiere iniciar sesión" ], - "Endpoint URL": [ - "URL del endpoint" + "Instance name.": [ + "Nombre de la instancia." + ], + "Instance password.": [ + "Contraseña de la instancia." + ], + "Forgot password": [ + "Olvidé mi contraseña" + ], + "Create new account": [ + "Crear nueva cuenta" + ], + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ + "Sigue este link para encontrar videos tutoriales sobre como puedes usar los components GNU Taler." + ], + "Testing environment": [ + "Ambiente de pruebas" + ], + "This server is meant for testing features and configurations. Don't use your personal information here.": [ + "Este servidor esta pensado para probar caracteristicas y configuraciones. No lo uses con tu información personal." + ], + "Delete": [ + "Borrar" + ], + "Add new instance": [ + "Agregar nuevo instancia" + ], + "ID": [ + "ID" + ], + "Name": [ + "Nombre" + ], + "Edit": [ + "Editar" + ], + "Change password": [ + "Nueva contraseña" + ], + "Purge": [ + "Purgar" + ], + "There are no instances yet. Add one by pressing the '+' sign.": [ + "Aún no hay sesiones activas, agregá una presionando el signo +" + ], + "delete instance": [ + "Eliminar esta instancia" + ], + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "El producto (ID: %1$s) fue eliminado" + ], + "Unauthorized.": [ + "No autorizado." + ], + "Not found.": [ + "No encontrado." + ], + "Conflict.": [ + "Conflicto." + ], + "Only show active instances": [ + "Mostrar solo órdenes pagas" + ], + "Active": [ + "Activo" + ], + "Only show deleted instances": [ + "Mostrar solo órdenes con reembolsos" + ], + "Deleted": [ + "Borrar" + ], + "Show all instances": [ + "Mostrar todas las intancias" + ], + "All": [ + "Todo" + ], + "Delete instance": [ + "Eliminar esta instancia" + ], + "Delete the instance \"%1$s\"": [ + "Eliminar la plantilla \"%1$s\"" + ], + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Si eliminás el producto llamado %1$s (ID: %2$s), se perderán el stock y la información relacionada" + ], + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "Esta acción elimina la clave privada de la instancia, pero preserva toda la información transaccional. Aún podés acceder a la información transaccional luego de haber eliminado la instancia." + ], + "Deleting an instance %1$s": [ + "Eliminando la instancia \"%1$s\"" + ], + "This cannot be undone!": [ + "Esto NO puede deshacerse!" + ], + "Purge the instance": [ + "Purgar la instancia" + ], + "Purge the instance \"%1$s\"": [ + "Purgar la instancia \"%1$s\"" + ], + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Si purgás la instancia con nombre %1$s (ID: %2$s) podrías perder información" + ], + "The instance will disappear from your list and you will no longer be able to access its data.": [ + "La instancia desaparecerá de tu lista and no te será posible acceder a esta información." + ], + "Purging an instance %1$s": [ + "Purgando una instancia %1$s" + ], + "create access token": [ + "crear token de acceso" + ], + "Check the password.": [ + "Verificá la contraseña." + ], + "Instance not found.": [ + "Instancia no encontrada." + ], + "Description": [ + "Descripción" + ], + "Helps you remember where this access token is being used before deleting it.": [ + "Te ayuda a recordar dónde se está usando este token de acceso antes de eliminarlo." + ], + "Duration": [ + "Duración" + ], + "Time the access token will be valid.": [ + "Tiempo durante el cual el token de acceso será válido." + ], + "Refreshable access tokens can pose a security risk!": [ + "¡Los tokens de acceso renovables pueden representar un riesgo de seguridad!" + ], + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "Los tokens de acceso renovables pueden actualizarse antes de que venza su tiempo de vida, otorgando acceso ilimitado a quien los posea. Usá esta opción solo si sabés lo que estás haciendo y evaluaste los riesgos asociados, especialmente respecto a los permisos otorgados por el alcance." + ], + "Scope": [ + "Alcance" + ], + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "El alcance define el conjunto de permisos del token de acceso. Los tokens renovables tienen permiso para extender el tiempo de vencimiento." + ], + "Allows all operations without limit.": [ + "Permite todas las operaciones sin restricción." + ], + "Allows all operations to read information.": [ + "Permite todas las operaciones de lectura de información." + ], + "Allows the creation of orders and checking of payment status.": [ + "Permite crear órdenes y consultar el estado de pago." + ], + "Allows the creation of orders, checking of payment status and inventory locking.": [ + "Permite crear órdenes, consultar el estado de pago y bloquear inventario." + ], + "Allows the creation of orders, checking of payment status and refunds.": [ + "Permite crear órdenes, consultar el estado de pago y gestionar reembolsos." + ], + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "Permite crear órdenes, consultar el estado de pago, bloquear inventario y gestionar reembolsos." + ], + "Allows all operations to read information with extendable expiration time.": [ + "Permite todas las operaciones de lectura con tiempo de vencimiento extendible." + ], + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "Permite crear órdenes y consultar el estado de pago con tiempo de vencimiento extendible." + ], + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "Permite crear órdenes, consultar el estado de pago y bloquear inventario con tiempo de vencimiento extendible." + ], + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "Permite crear órdenes, consultar el estado de pago y gestionar reembolsos con tiempo de vencimiento extendible." + ], + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "Permite crear órdenes, consultar el estado de pago, bloquear inventario y gestionar reembolsos con tiempo de vencimiento extendible." + ], + "All (refreshable)": [ + "Todo (renovable)" + ], + "Spa": [ + "Spa" + ], + "Spa (refreshable)": [ + "Spa (renovable)" + ], + "Choose one": [ + "Elegir uno" + ], + "Read only": [ + "Solo lectura" + ], + "Order simple": [ + "Orden simple" ], - "From where the merchant can download information about incoming wire transfers to this account": [ - "Desde dónde el comerciante puede descargar información sobre las transferencias bancarias entrantes a esta cuenta" + "Order Point-of-Sale": [ + "Orden punto de venta" ], - "Auth type": [ - "Tipo de autenticación" + "Order management": [ + "Gestión de órdenes" ], - "Choose the authentication type for the account info URL": [ - "Elegí el tipo de autenticación para la URL de información de cuenta" + "Order full": [ + "Orden completa" ], - "Without authentication": [ - "Sin autenticación" + "Read only (refreshable)": [ + "Solo lectura (renovable)" ], - "With username and password": [ - "Con usuario y contraseña" + "Order simple (refreshable)": [ + "Orden simple (renovable)" ], - "With token": [ - "Con token" + "Order Point-of-Sale (refreshable)": [ + "Orden punto de venta (renovable)" ], - "Do not change": [ - "No modificar" + "Order management (refreshable)": [ + "Gestión de órdenes (renovable)" ], - "Username to access the account information.": [ - "Usuario para acceder a la información de la cuenta." + "Order full (refreshable)": [ + "Orden completa (renovable)" ], - "Password to access the account information.": [ - "Contraseña para acceder a la información de la cuenta." + "Current password": [ + "Contraseña actual" ], - "Access token to access the account information.": [ - "Token de acceso para acceder a la información de la cuenta." + "Please complete the marked fields": [ + "Por favor completá los campos marcados" ], - "Match": [ - "Coincidencia" + "Confirm operation": [ + "Confirmar operación" ], - "Check where the information match against the server info.": [ - "Verificá si la información coincide con la del servidor." + "Access token created": [ + "Token de acceso creado" ], - "Compare info from server with account form": [ - "Comparar la información del servidor con el formulario de la cuenta" + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "Copiá el valor del token de acceso y guardalo, ya que no podrás recuperarlo más adelante." ], - "Test": [ - "Probar" + "Token": [ + "Token" ], - "Server didn't like the request we made.": [ - "El servidor rechazó la solicitud realizada." + "This token will never expire": [ + "Este token nunca vencerá" ], - "Account details": [ - "Detalles de la cuenta" + "This token will be available until %1$s": [ + "Este token estará disponible hasta el %1$s" ], - "Check if the information matches the server info.": [ - "Verificá si la información coincide con la del servidor." + "Create access token": [ + "Crear token de acceso" ], - "The bank account has been deleted.": [ - "La cuenta bancaria fue eliminada." + "Load more devices before the first one": [ + "Cargar más dispositivos antes del primero" ], - "Delete account": [ - "Eliminar cuenta" + "Load first page": [ + "Cargar primera página" ], - "Delete the account \"%1$s\"": [ - "Eliminar la cuenta \"%1$s\"" + "Created at": [ + "Creado el" ], - "Invalid payto: \"%1$s\"": [ - "Payto no válido: \"%1$s\"" + "Expires at": [ + "Vence el" ], - "If you delete the account with name %1$s its information will be lost": [ - "Si eliminás la cuenta con nombre %1$s se perderá toda su información" + "Never": [ + "Nunca" ], - "Deleting an account can't be undone.": [ - "La eliminación de una cuenta no puede deshacerse." + "Remove this access token": [ + "Eliminar este token de acceso" ], - "Bank accounts": [ - "Cuentas bancarias" + "Load more devices after the last one": [ + "Cargar más dispositivos después del último" ], - "Add new account": [ - "Agregar nueva cuenta" + "Load next page": [ + "Cargar siguiente página" ], - "Owner's name": [ - "Nombre del titular" + "There are no active sessions yet, add one by pressing the + sign": [ + "Aún no hay sesiones activas, agregá una presionando el signo +" ], - "Delete selected accounts from the database": [ - "Eliminar las cuentas seleccionadas de la base de datos" + "delete access token": [ + "Eliminar token de acceso" ], - "There are no accounts yet, add more pressing the + sign": [ - "Aún no hay cuentas, agregá más presionando el signo +" + "Forbidden.": [ + "Acceso denegado." ], - "You must provide a bank account to receive payments.": [ - "Debés configurar una cuenta bancaria para recibir pagos." + "New point-of-sale access": [ + "Orden punto de venta" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ - "Sin esta información, no podrás crear nuevas órdenes de pago que se transfieran a una cuenta bancaria." + "Delete access token": [ + "Eliminar token de acceso" + ], + "Deleting an access token cannot be undone.": [ + "La eliminación de un token de acceso no puede deshacerse." ], "Invalid. Please use only letters and numbers.": [ "No válido. Usá únicamente letras y números." ], - "Name": [ - "Nombre" + "add category": [ + "Nombre de la categoría" + ], + "Not found": [ + "No encontrado" ], "Category name": [ "Nombre de la categoría" ], + "delete category": [ + "Nombre de la categoría" + ], "Category deleted": [ "Categoría eliminada" ], "Add new devices": [ "Agregar nuevos dispositivos" ], - "ID": [ - "ID" - ], "Total products": [ "Total de productos" ], @@ -18188,6 +21370,9 @@ strings['es'] = { "There are no categories yet, add more pressing the + sign": [ "Aún no hay categorías, agregá más presionando el signo +" ], + "update category": [ + "Nombre de la categoría" + ], "Id:": [ "ID:" ], @@ -18206,6 +21391,30 @@ strings['es'] = { "There are no products in this category.": [ "No hay productos en esta categoría." ], + "create product group": [ + "Grupos de productos" + ], + "delete product group": [ + "Eliminar producto" + ], + "Product group deleted": [ + "Grupo de productos eliminado" + ], + "Add new group": [ + "Agregar nuevo grupo" + ], + "Load more groups before the first one": [ + "Cargar más grupos antes del primero" + ], + "Delete selected group from the database": [ + "Eliminar el grupo seleccionado de la base de datos" + ], + "Load more groups after the last one": [ + "Cargar más grupos después del último" + ], + "There are no product groups yet, add more pressing the + sign": [ + "Aún no hay grupos de productos, agregá más presionando el signo +" + ], "Account's KYC status": [ "Estado KYC de la cuenta" ], @@ -18215,25 +21424,13 @@ strings['es'] = { "Status": [ "Estado" ], - "Ok": [ - "Ok" - ], - "Action required": [ - "Se requiere acción" - ], - "Warning": [ - "Advertencia" - ], - "Error": [ - "Error" - ], "Bank account verification required.": [ "Se requiere verificación de cuenta bancaria." ], "More information required.": [ "Se requiere más información." ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "Esperando revisión de la cuenta." ], "Ready": [ @@ -18245,8 +21442,8 @@ strings['es'] = { "Payment service internal error. Contact administrator or check again later.": [ "Error interno del servicio de pago. Contactá al administrador o intentá más tarde." ], - "Merchant backend internal error. Contact administrator or check again later.": [ - "Error interno del backend del comerciante. Contactá al administrador o intentá más tarde." + "Server internal error. Contact the service administrator or check again later.": [ + "Error interno del servidor. Contactá al administrador o intentá más tarde." ], "Payment service timeout. Contact administrator or check again later.": [ "Tiempo de espera agotado del servicio de pago. Contactá al administrador o intentá más tarde." @@ -18257,8 +21454,8 @@ strings['es'] = { "Incompatible core banking system.": [ "Sistema bancario central incompatible." ], - "Backend internal error. Contact administrator or check again later.": [ - "Error interno del backend. Contactá al administrador o intentá más tarde." + "Server internal error. Contact administrator or check again later.": [ + "Error interno del servidor. Contactá al administrador o intentá más tarde." ], "Payment service response is invalid. Contact administrator or check again later.": [ "La respuesta del servicio de pago no es válida. Contactá al administrador o intentá más tarde." @@ -18269,26 +21466,32 @@ strings['es'] = { "No pending kyc verification!": [ "¡No hay verificaciones KYC pendientes!" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "Ok" + ], + "The account for wire transfers is invalid.": [ "La cuenta para transferencias bancarias no parece ser válida" ], - "The backend service responded with \"%1$s\" which is invalid.": [ - "El servicio backend respondió con \"%1$s\", lo cual no es válido." + "The server responded with \"%1$s\" which is invalid.": [ + "El servidor respondió con \"%1$s\", lo cual no es válido." ], - "No exchange keys": [ - "Sin claves de exchange" + "No contact with the payment service yet.": [ + "No hubo contacto con el servicio de pagos todavía." ], - "The backend service is still synchronizing with the payment service provider.": [ - "El servicio backend aún se está sincronizando con el proveedor de servicios de pago." + "The server is still synchronizing with the payment service provider.": [ + "El servidor aún se está sincronizando con el proveedor de servicios de pago." ], "No transfers can be made from this account": [ "No se pueden realizar transferencias desde esta cuenta" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ - "El sistema bancario central no puede realizar transferencias entre las cuentas del proveedor de servicios de pago y tus cuentas bancarias. Por lo tanto, no podés usar este proveedor. Atentamente, el Exchange de Taler." + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "Este sistema bancario no puede enviar transferencias entre la cuenta del proveedor de servicio de pagos y su cuenta bancaria." + ], + "Test": [ + "Probar" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ - "Debés completar un proceso KYC (Conocé a tu Cliente) según lo exigen las regulaciones o leyes financieras" + "Know Your Customer process is required.": [ + "Un proceso de Identificación de Cliente (KYC) es obligatorio." ], "The payment service provider requires more information.": [ "El proveedor de servicios de pago requiere más información." @@ -18311,8 +21514,8 @@ strings['es'] = { "Logic bug": [ "Error de lógica" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ - "El servicio backend detectó un error interno. Contactá al administrador del sistema o intentá más tarde." + "The server detected an internal error, contact the system administrator or check again later.": [ + "El servidor detectó un error interno. Contactá al administrador del sistema o intentá más tarde." ], "Internal error": [ "Error interno" @@ -18323,8 +21526,8 @@ strings['es'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "El proveedor de servicios del comerciante detectó un error interno. Contactá al administrador del sistema o intentá más tarde." ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ - "El servicio backend no pudo contactar al proveedor de servicios de pago por un tiempo de espera agotado. Contactá al administrador o intentá más tarde." + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "El servidor no pudo contactar al proveedor de servicios de pago por un tiempo de espera agotado. Contactá al administrador o intentá más tarde." ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ "No se pudo contactar al proveedor de servicios de pago. Contactá al administrador del sistema o intentá más tarde." @@ -18332,14 +21535,17 @@ strings['es'] = { "Unsupported account": [ "Cuenta no soportada" ], - "This exchange does not support the given account.": [ - "Este exchange no soporta la cuenta indicada." + "This payment service does not support the given account.": [ + "Este servicio de pago no admite la cuenta indicada." ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "El proveedor de servicios de pago respondió con un estado no válido. Contactá al administrador del sistema o intentá más tarde." ], - "Change value to unknown date": [ - "Cambiar valor a fecha desconocida" + "Change value to empty": [ + "Cambiar valor a vacío" + ], + "Change value to never": [ + "Cambiar valor a nunca" ], "Enter description or id": [ "Ingresá una descripción o ID" @@ -18350,7 +21556,7 @@ strings['es'] = { "You must enter a valid product identifier.": [ "Debés ingresar un identificador de producto válido." ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "¡La cantidad debe ser mayor que 0!" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -18365,8 +21571,11 @@ strings['es'] = { "How many products will be added": [ "Cuántos productos se agregarán" ], - "Add from inventory": [ - "Agregar del inventario" + "Add it to the order": [ + "Monto de la orden" + ], + "Invalid": [ + "No válido" ], "This product has %1$s applicable taxes configured.": [ "Este producto tiene %1$s impuestos aplicables configurados." @@ -18446,22 +21655,28 @@ strings['es'] = { "Either fulfillment url or fulfillment message must be specified.": [ "Debe especificarse una URL de cumplimiento o un mensaje de cumplimiento." ], - "is not a valid URL": [ - "no es una URL válida" + "Invalid URL": [ + "No válido" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ + "Crear orden" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ "No hay cuentas bancarias activas configuradas. Debe haber al menos una cuenta bancaria disponible para crear nuevas órdenes" ], + "Conflict": [ + "Conflicto" + ], "Product with ID \"%1$s\" is out of stock.": [ "El producto con ID \"%1$s\" está agotado." ], - "No exchange would accept a payment because of KYC requirements.": [ - "Ningún exchange aceptará pagos debido a requisitos de KYC." + "No payment service would accept a payment because of KYC requirements.": [ + "Ningún servicio de pago aceptará pagos debido a requisitos de KYC." ], "Manage products in order": [ "Gestionar productos en la orden" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "%1$s productos con un precio total de %2$s." ], "Manage list of products in the order.": [ @@ -18542,8 +21757,8 @@ strings['es'] = { "Wire transfer time": [ "Tiempo de transferencia bancaria" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ - "Tiempo que tiene el exchange para realizar la transferencia bancaria. El tiempo comienza a contar desde la creación de la orden." + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ + "Tiempo que tiene el servicio de pago para realizar la transferencia bancaria. El tiempo comienza a contar desde la creación de la orden." ], "Auto-refund time": [ "Tiempo de reembolso automático" @@ -18590,6 +21805,9 @@ strings['es'] = { "Custom field name": [ "Nombre del campo personalizado" ], + "new extra field": [ + "nuevo campo extra" + ], "Disabled": [ "Deshabilitado" ], @@ -18599,8 +21817,8 @@ strings['es'] = { "Deadline at %1$s": [ "Plazo el %1$s" ], - "Select date to show nearby orders": [ - "Seleccioná una fecha para mostrar órdenes cercanas" + "get product details": [ + "Detalles de la cuenta" ], "Only show unpaid orders": [ "Mostrar solo órdenes sin pagar" @@ -18632,11 +21850,8 @@ strings['es'] = { "Remove all filters": [ "Eliminar todos los filtros" ], - "Clear date filter": [ - "Borrar filtro de fecha" - ], - "Jump to date (%1$s)": [ - "Ir a la fecha (%1$s)" + "authorize refund": [ + "No autorizado" ], "Gone.": [ "Eliminado." @@ -18650,15 +21865,33 @@ strings['es'] = { "Order id": [ "ID de orden" ], + "Clear date filter": [ + "Borrar filtro de fecha" + ], + "Select date to show nearby orders": [ + "Seleccioná una fecha para mostrar órdenes cercanas" + ], + "Jump to date (%1$s)": [ + "Ir a la fecha (%1$s)" + ], "Instance unknown": [ "Instancia desconocida" ], "Order unknown": [ "Orden desconocida" ], + "This order is not refundable": [ + "Por qué se está reembolsando esta orden" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "El estado de la orden no es \"pagado\" y por eso no se puede emitir reembolso" + ], "Create order": [ "Crear orden" ], + "copy order URL": [ + "copiar URL de la orden" + ], "The instance doesn't exist": [ "La instancia no existe" ], @@ -18692,12 +21925,15 @@ strings['es'] = { "Gone": [ "Eliminado" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "Hay requisitos de KYC pendientes." ], "refund": [ "reembolsar" ], + "%1$s was already refunded": [ + "%1$s ya fue reembolsado" + ], "Reason": [ "Motivo" ], @@ -18725,7 +21961,7 @@ strings['es'] = { "now": [ "ahora" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "Este es el momento en que venció el plazo para realizar el reembolso." ], "This is when the time for making the payment has been expired.": [ @@ -18737,6 +21973,9 @@ strings['es'] = { "This wire transfer has been notified by the payment service provider.": [ "Esta transferencia bancaria fue notificada por el proveedor de servicios de pago." ], + "This wire transfer has been notified manually or by the banking system.": [ + "Esta transferencia bancaria fue notificada por el proveedor de servicios de pago." + ], "This refund is waiting to be claimed by the customer.": [ "Este reembolso está esperando a ser reclamado por el cliente." ], @@ -18746,7 +21985,7 @@ strings['es'] = { "The current moment in time.": [ "El momento actual." ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "Este reembolso no puede reclamarse porque la transferencia bancaria ya fue realizada." ], "Contract terms": [ @@ -18785,14 +22024,8 @@ strings['es'] = { "Wire transfer deadline": [ "Plazo de transferencia bancaria" ], - "Transfer deadline for the exchange": [ - "Plazo de transferencia para el exchange" - ], - "Time indicating when the order should be delivered": [ - "Fecha indicativa de entrega de la orden" - ], - "Where the order will be delivered": [ - "Dónde se entregará la orden" + "Transfer deadline for the payment service": [ + "Plazo de transferencia para el servicio de pago" ], "Auto-refund delay": [ "Plazo de reembolso automático" @@ -18800,6 +22033,12 @@ strings['es'] = { "How long the wallet should try to get an automatic refund for the purchase": [ "Cuánto tiempo debe intentar la billetera obtener un reembolso automático para la compra" ], + "Time indicating when the order should be delivered": [ + "Fecha indicativa de entrega de la orden" + ], + "Where the order will be delivered": [ + "Dónde se entregará la orden" + ], "Extra info": [ "Información extra" ], @@ -18842,38 +22081,44 @@ strings['es'] = { "Product list": [ "Lista de productos" ], + "The contract terms have a v1 order without choices_index.": [ + "Los términos del contrato tienen una orden v1 sin choices_index." + ], + "The contract terms have a v1 order with a bad choices_index.": [ + "Los términos del contrato tienen una orden v1 con un choices_index inválido." + ], "refund missed: %1$s": [ "reembolso no realizado: %1$s" ], - "refund missed: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "reembolso no realizado: %1$s: %2$s" ], "refund created: %1$s": [ "reembolso creado: %1$s" ], - "refund created: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "reembolso creado: %1$s: %2$s" ], "refund taken: %1$s": [ "reembolso cobrado: %1$s" ], - "refund taken: %1$s: %2$s": [ + "refund taken: %1$s : %2$s": [ "reembolso cobrado: %1$s: %2$s" ], - "The contract terms has a v1 order without choices_index.": [ - "Los términos del contrato tienen una orden v1 sin choices_index." - ], - "The contract terms has a v1 order with a bad choices_index.": [ - "Los términos del contrato tienen una orden v1 con un choices_index inválido." - ], "wired %1$s": [ "transferido %1$s" ], "wire deadline": [ "plazo de transferencia" ], - "Wired": [ - "Transferido" + "Related wire transfers": [ + "Transferencias bancarias verificadas" + ], + "Unconfirmed": [ + "Confirmado" + ], + "Confirmed": [ + "Confirmado" ], "Refund order": [ "Reembolsar orden" @@ -18881,6 +22126,12 @@ strings['es'] = { "Not refundable": [ "No reembolsable" ], + "No wire transfer reported": [ + "Sin transferencia bancaria informada" + ], + "Check wire transfers": [ + "Transferencias bancarias" + ], "Next event in": [ "Próximo evento en" ], @@ -18902,8 +22153,8 @@ strings['es'] = { "Refund URI": [ "URI de reembolso" ], - "Pay at": [ - "Pagar en" + "Payment link": [ + "Plazo de pago" ], "Order status URL": [ "URL de estado de la orden" @@ -18914,14 +22165,35 @@ strings['es'] = { "Unknown order status. This is an error, please contact the administrator.": [ "Estado de orden desconocido. Esto es un error, por favor contactá al administrador." ], + "Back": [ + "Volver" + ], + "never": [ + "nunca" + ], + "unknown": [ + "desconocido" + ], + "confirmed": [ + "Confirmado" + ], + "unconfirmed": [ + "Confirmado" + ], + "Details": [ + "Detalles" + ], "Invalid. Please enter letters and numbers only.": [ "No válido. Ingresá únicamente letras y números." ], - "Just letters and numbers from 2 to 7": [ - "Solo letras y números del 2 al 7" + "Use only letters and digits (2–7).": [ + "Sólo usa letras y dígitos (2-7)" ], "The size of the key must be 32 characters": [ - "La clave debe tener 32 caracteres" + "La longitud de la clave debe tener 32 caracteres" + ], + "add otp device": [ + "Sin dispositivo" ], "Internal ID on the system": [ "ID interno en el sistema" @@ -18956,6 +22228,9 @@ strings['es'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "Podés escanear el siguiente código QR con tu dispositivo o guardar la clave antes de continuar." ], + "delete otp device": [ + "Sin dispositivo" + ], "OTP devices": [ "Dispositivos OTP" ], @@ -18965,6 +22240,9 @@ strings['es'] = { "There are no devices to list yet, add more by pressing the + sign": [ "Aún no hay dispositivos, agregá más presionando el signo +" ], + "update otp device": [ + "Sin dispositivo" + ], "Template id is unknown": [ "El ID de la plantilla es desconocido" ], @@ -18998,9 +22276,24 @@ strings['es'] = { "In order to verify that you have access.": [ "Para verificar que tenés acceso." ], + "New password": [ + "Nueva contraseña" + ], + "Next password to be used": [ + "Próxima contraseña a utilizar" + ], + "Repeat password": [ + "Repetir contraseña" + ], + "Confirm the same password": [ + "Confirmá la misma contraseña" + ], "Confirm change": [ "Confirmar cambio" ], + "change password": [ + "Nueva contraseña" + ], "Testing password change": [ "Verificando cambio de contraseña" ], @@ -19010,17 +22303,77 @@ strings['es'] = { "The current password is wrong.": [ "La contraseña actual es incorrecta." ], + "change instance password": [ + "Contraseña de la instancia." + ], "No enough rights to change the password.": [ "No tenés permisos suficientes para cambiar la contraseña." ], "Account not found.": [ "Cuenta no encontrada." ], + "create money pot": [ + "Crear nueva cuenta" + ], + "There is already a money pot with the same id.": [ + "Ya existe un fondo con el mismo ID." + ], + "delete money pot": [ + "Fondo" + ], + "Money pot deleted": [ + "Fondo eliminado" + ], + "Add new pots": [ + "Agregar nuevos fondos" + ], + "Load more pots before the first one": [ + "Cargar más fondos antes del primero" + ], + "Total": [ + "Total" + ], + "Delete selected pots from the database": [ + "Eliminar los fondos seleccionados de la base de datos" + ], + "Load more pots after the last one": [ + "Cargar más fondos después del último" + ], + "There are no money pots yet, add more pressing the + sign": [ + "Aún no hay fondos, agregá más presionando el signo +" + ], "Add element to the list": [ "Agregar elemento a la lista" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ - "Hacé clic aquí para configurar el stock del producto. Si se deja así, el backend no controlará el stock." + "Missing currency name": [ + "Falta el nombre de la moneda" + ], + "Currency name must be only letters": [ + "El nombre de la moneda debe contener solo letras" + ], + "Value can only by number": [ + "El valor solo puede ser numérico" + ], + "The value is too high": [ + "El valor es demasiado alto" + ], + "The value is too precise": [ + "El valor tiene demasiada precisión decimal" + ], + "Invalid amount \"%1$s\": %2$s": [ + "Monto no válido \"%1$s\": %2$s" + ], + "update money pot": [ + "Fondo" + ], + "Descripton": [ + "Descripción" + ], + "Totals": [ + "Totales" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ + "Hacé clic aquí para configurar el stock del producto. Si se deja así, el servidor no controlará el stock." ], "Manage stock": [ "Gestionar stock" @@ -19034,15 +22387,15 @@ strings['es'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "La merma no puede superar el stock actual y las entradas pendientes (máximo %1$s)" ], + "Current": [ + "Actual" + ], "Incoming": [ "Entrante" ], "Lost": [ "Perdido" ], - "Current": [ - "Actual" - ], "Remove stock control for this product": [ "Quitar el control de stock para este producto" ], @@ -19121,6 +22474,9 @@ strings['es'] = { "Search by group name or id": [ "Buscar por nombre o ID de grupo" ], + "add product": [ + "Total de productos" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "La instancia no existe. Es posible que haya sido eliminada mientras se agregaba el producto." ], @@ -19136,6 +22492,9 @@ strings['es'] = { "Add product to inventory": [ "Agregar producto al inventario" ], + "update product": [ + "Eliminar producto" + ], "Product not found.": [ "Producto no encontrado." ], @@ -19148,6 +22507,12 @@ strings['es'] = { "Sold": [ "Vendido" ], + "restock at %1$s": [ + "recarga al %1$s" + ], + "infinite": [ + "Ilimitado" + ], "Free": [ "Gratis" ], @@ -19190,6 +22555,9 @@ strings['es'] = { "There are no products to list yet, add more by pressing the + sign": [ "Aún no hay productos, agregá más presionando el signo +" ], + "delete product": [ + "Eliminar producto" + ], "Product (ID: %1$s) has been deleted": [ "El producto (ID: %1$s) fue eliminado" ], @@ -19214,6 +22582,69 @@ strings['es'] = { "Product id:": [ "ID de producto:" ], + "It should start with /": [ + "Debe comenzar con +" + ], + "create scheduled report": [ + "Informes programados" + ], + "No report generator configured in the server": [ + "No hay ningún generador de informes configurado en el servidor" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "Contactá al administrador del sistema para crear un generador de informes antes de programar uno." + ], + "Description of the report. Possibly included in the report message": [ + "Descipción del informe. Posiblemente incluído en el mensaje a enviar." + ], + "Where the report program should send the report": [ + "A donde el programa debe enviar el informe" + ], + "Source": [ + "Fuente" + ], + "Base URL to request the data from.": [ + "URL base de donde pedir la información." + ], + "Type of the data source": [ + "Nombre de la categoría" + ], + "Program": [ + "Programa" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "Nombre del programa a usar para transmitir el informe definido por la confugración del servidor." + ], + "Report frequency": [ + "Frecuencia del informe" + ], + "Report frequency shift": [ + "Cambio de frecuencia de informe" + ], + "delete scheduled report": [ + "eliminar informes programados" + ], + "Scheduled report deleted": [ + "Informe programado eliminado" + ], + "Scheduled reports": [ + "Informes programados" + ], + "Add new reports": [ + "Agregar nuevos informes" + ], + "Frequency": [ + "Frecuencia" + ], + "Delete selected scheduled report from the database": [ + "Eliminar el informe programado seleccionado de la base de datos" + ], + "There are no reports yet, add more pressing the + sign": [ + "Aún no hay informes, agregá más presionando el signo +" + ], + "update scheduled report": [ + "Informes programados" + ], "Your browser does not support the canvas element.": [ "Tu navegador no soporta el elemento canvas." ], @@ -19223,9 +22654,6 @@ strings['es'] = { "Service unavailable": [ "Servicio no disponible" ], - "Select date from which to show statistics": [ - "Seleccioná la fecha desde la que mostrar estadísticas" - ], "Show chart": [ "Mostrar gráfico" ], @@ -19238,6 +22666,9 @@ strings['es'] = { "Orders table": [ "Tabla de órdenes" ], + "Select date from which to show statistics": [ + "Seleccioná la fecha desde la que mostrar estadísticas" + ], "Start from (%1$s)": [ "Desde (%1$s)" ], @@ -19322,6 +22753,9 @@ strings['es'] = { "Too short": [ "Demasiado corto" ], + "add template": [ + "Agregar nuevas plantillas" + ], "You don't have enough permissions.": [ "No tenés permisos suficientes." ], @@ -19424,6 +22858,9 @@ strings['es'] = { "There are no templates to list yet, add more by pressing the + sign": [ "Aún no hay plantillas, agregá más presionando el signo +" ], + "delete template": [ + "Eliminar plantilla" + ], "Jump to template with the given template ID": [ "Ir a la plantilla con el ID indicado" ], @@ -19436,7 +22873,7 @@ strings['es'] = { "Delete the template \"%1$s\"": [ "Eliminar la plantilla \"%1$s\"" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "Si eliminás la plantilla %1$s (ID: %2$s) podrías perder información" ], "Deleting a template cannot be undone.": [ @@ -19445,6 +22882,9 @@ strings['es'] = { "Print": [ "Imprimir" ], + "update template": [ + "Eliminar plantilla" + ], "The template configuration needs to be fixed.": [ "La configuración de la plantilla debe ser corregida." ], @@ -19466,6 +22906,12 @@ strings['es'] = { "An order summary is required": [ "Se requiere un resumen de la orden" ], + "create order from template": [ + "Nueva orden desde plantilla" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "No hay cuentas bancarias activas configuradas. Debe haber al menos una cuenta bancaria disponible para crear nuevas órdenes" + ], "No more stock for product with ID \"%1$s\".": [ "Sin stock para el producto con ID \"%1$s\"." ], @@ -19475,12 +22921,30 @@ strings['es'] = { "Amount of the order": [ "Monto de la orden" ], + "Expiration should be after start date": [ + "La expiración debe ser despues de la fecha de inicio" + ], + "Granularity can't be greater than duration.": [ + "¡La cantidad debe ser mayor que 0!" + ], + "create token family": [ + "Eliminar familia de tokens" + ], + "There is another token family with this ID. Choose another one.": [ + "Ya existe una plantilla con este identificador, por favor elegí otro." + ], "Slug": [ "Slug" ], "Token family slug to use in URLs (for internal use only)": [ "Slug de la familia de tokens para usar en las URL (solo para uso interno)" ], + "User-readable token family name": [ + "Nombre de la familia de tokens legible por el usuario" + ], + "Token family description for customers": [ + "Descripción de la familia de tokens para los clientes" + ], "Kind": [ "Tipo" ], @@ -19493,7 +22957,7 @@ strings['es'] = { "The first day the coupon/subscription can be used.": [ "El primer día en que el cupón/suscripción puede usarse." ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ " Si se establece en %1$s, no podrá usarse antes de esa fecha." ], "Expiration Date": [ @@ -19502,7 +22966,7 @@ strings['es'] = { "The last day the coupon/subscription can be used.": [ "El último día en que el cupón/suscripción puede usarse." ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ " Si se establece en %1$s, dejarán de ser válidos a partir de %2$s." ], "How long the coupon/subscription remains valid after being activated.": [ @@ -19514,11 +22978,26 @@ strings['es'] = { "Validity Granularity": [ "Granularidad de validez" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ "Redondea la validez a una unidad de tiempo específica (como día, hora, minuto)." ], - " If set to ": [ - " Si se establece en \"1 día\", un pase de 30 días comprado el %1$s es válido hasta el final del %2$s, no exactamente a la misma hora en que fue comprado." + "1 minute": [ + "Al minuto" + ], + "1 hour": [ + "hora" + ], + "1 day": [ + "Al día" + ], + "30 days": [ + "días" + ], + "90 days": [ + "días" + ], + "365 days": [ + "días" ], "Token Families": [ "Familias de tokens" @@ -19538,6 +23017,9 @@ strings['es'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "Aún no hay familias de tokens, agregá la primera presionando el signo +." ], + "delete token family": [ + "Eliminar familia de tokens" + ], "Token family has been deleted.": [ "La familia de tokens fue eliminada." ], @@ -19556,53 +23038,77 @@ strings['es'] = { "can't be undone": [ "no puede deshacerse" ], + "update token family": [ + "Agregar familia de tokens" + ], "Token Family: %1$s": [ "Familia de tokens: %1$s" ], - "User-readable token family name": [ - "Nombre de la familia de tokens legible por el usuario" + "inform wire transfer": [ + "Confirmar la transferencia bancaria" ], - "Token family description for customers": [ - "Descripción de la familia de tokens para los clientes" + "Wire transfer already confirmed.": [ + "La transferencia bancaria ya fue confirmada." ], - "Incoming wire transfers": [ - "Transferencias bancarias entrantes" + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "La transferencia bancaria fue enviada y debería acreditarse en tu cuenta en cualquier momento. Podés confirmar manualmente la recepción usando la información de abajo." ], - "Load more wire transfers preceding the first one": [ - "Cargar más transferencias bancarias antes de la primera" + "The wire transfer has been confirmed.": [ + "La transferencia bancaria ya fue confirmada." ], - "Expected credit": [ - "Crédito esperado" + "Transaction details": [ + "Detalles de la cuenta" ], - "Confirmed": [ - "Confirmado" + "Transfer ID": [ + "ID de transferencia" ], - "Validated": [ - "Validado" + "I have received the wire transfer": [ + "Recibí la transferencia bancaria" ], - "Executed on": [ - "Ejecutado el" + "Orders in this wire transfer": [ + "Transferencias bancarias verificadas" ], - "yes": [ - "sí" + "Fee": [ + "Gratis" ], - "no": [ - "no" + "Subtotals": [ + "Totales" ], - "never": [ - "nunca" + "Deposit fee": [ + "Comisión de deposito" ], - "unknown": [ - "desconocido" + "Wire fee": [ + "Transferencias bancarias" + ], + "not ready": [ + "no listo" + ], + "loading...": [ + "cargando..." + ], + "New wire transfers": [ + "Nueva transferencia bancaria" + ], + "Load more wire transfers preceding the first one": [ + "Cargar más transferencias bancarias antes de la primera" + ], + "To be determined.": [ + "Por ser determinado." + ], + "You confirm that the incoming wire transfer has arrived into your bank account.": [ + "Confirmarás que la transacción bancaría entrante ah llegado a tu cuenta de banco." ], "Load more transfers after the last one": [ "Cargar más transferencias después de la última" ], - "Verified wire transfers": [ - "Transferencias bancarias verificadas" + "Confirmed wire transfers into bank account": [ + "Confirmar la transferencia bancaria" ], - "There are no transfers to list yet, add more by pressing the + sign": [ - "Aún no hay transferencias, agregá más presionando el signo +" + "Show details about the incoming wire transfer.": [ + "Transferencias bancarias entrantes" + ], + "There are no transfers to list yet": [ + "No hay estadísticas en la lista" ], "All accounts": [ "Todas las cuentas" @@ -19610,32 +23116,11 @@ strings['es'] = { "Filter by account address": [ "Filtrar por dirección de cuenta" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ - "Mostrar solo las transferencias que el proveedor de servicios de pago ya acreditó en tu cuenta bancaria." - ], - "Only show wire transfers confirmed by the merchant": [ - "Mostrar solo las transferencias confirmadas por el comerciante" - ], "Verified": [ "Verificado" ], - "Wire transfer already confirmed.": [ - "La transferencia bancaria ya fue confirmada." - ], - "I have received the wire transfer": [ - "Recibí la transferencia bancaria" - ], - "Confirm the wire transfer": [ - "Confirmar la transferencia bancaria" - ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ - "La transferencia bancaria fue enviada y debería acreditarse en tu cuenta en cualquier momento. Podés confirmar manualmente la recepción usando la información de abajo." - ], - "Time": [ - "Hora" - ], - "Transfer ID": [ - "ID de transferencia" + "A wire transfer is verified if match the amount of all orders being settled.": [ + "Una transferencia bancaría esta verificada si coinciden los montos de todas las ordenes liquidadas." ], "It's not the same.": [ "No coincide." @@ -19643,24 +23128,51 @@ strings['es'] = { "You are deleting the instance with ID \"%1$s\"": [ "Estás eliminando la instancia con ID \"%1$s\"" ], + "delete current instance": [ + "Eliminar esta instancia" + ], "Instance": [ "Instancia" ], "Write the instance name to confirm the deletion": [ "Escribí el nombre de la instancia para confirmar la eliminación" ], - "Purge": [ - "Purgar" + "All the data will be fully deleted, otherwise only the access will be removed.": [ + "Todos los datos serán eliminados permanentemente; de lo contrario, solo se revocará el acceso." + ], + "DELETE": [ + "ELIMINAR" + ], + "Doesn't have the pattern of an email": [ + "No tiene el formato de un correo electrónico" + ], + "Should start with +": [ + "Debe comenzar con +" + ], + "A phone number consists of numbers only": [ + "Un número de teléfono contiene únicamente dígitos" + ], + "Invalid phone number": [ + "Número de teléfono de contacto" + ], + "Invalid value": [ + "Valor no válido" ], - "All the data will be fully deleted, otherwise only the access will be removed.": [ - "Todos los datos serán eliminados permanentemente; de lo contrario, solo se revocará el acceso." + "Max 7 lines": [ + "Máximo 7 líneas" ], - "DELETE": [ - "ELIMINAR" + "update instance settings": [ + "La instancia no existe" ], "Instance id": [ "ID de instancia" ], + "URL": [ + "URL" + ], + "Cancel operation": [ + "Confirmar operación" + ], "Delete this instance": [ "Eliminar esta instancia" ], @@ -19670,6 +23182,9 @@ strings['es'] = { "URL is invalid": [ "La URL no es válida" ], + "add webhook": [ + "Agregar nuevos webhooks" + ], "Webhook ID to use": [ "ID del webhook a utilizar" ], @@ -19721,9 +23236,6 @@ strings['es'] = { "Method used by the webhook": [ "Método utilizado por el webhook" ], - "URL": [ - "URL" - ], "URL of the webhook where the customer will be redirected": [ "URL del webhook a la que se redirigirá al cliente" ], @@ -19766,6 +23278,9 @@ strings['es'] = { "Body template used by the webhook.": [ "Plantilla de cuerpo utilizada por el webhook." ], + "delete webhook": [ + "Agregar nuevos webhooks" + ], "Webhook deleted successfully": [ "Webhook eliminado correctamente" ], @@ -19787,6 +23302,9 @@ strings['es'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "Aún no hay webhooks, agregá más presionando el signo +" ], + "update webhook": [ + "Agregar nuevos webhooks" + ], "Webhook updated": [ "Webhook actualizado" ], @@ -19799,6 +23317,12 @@ strings['es'] = { "Body template used by the webhook": [ "Plantilla de cuerpo utilizada por el webhook" ], + "Doesn't match": [ + "No coincide" + ], + "self provision instance": [ + "Autogestión" + ], "There is another instance with this username.": [ "Ya existe otra instancia con este nombre de usuario." ], @@ -19826,6 +23350,9 @@ strings['es'] = { "Create": [ "Crear" ], + "reset password for self provision": [ + "restablecer contraseña para auto-abastecimiento" + ], "The instance is not properly configured to allow MFA.": [ "La instancia no está correctamente configurada para permitir MFA." ], @@ -19835,12 +23362,12 @@ strings['es'] = { "Resetting access to the instance \"%1$s\"": [ "Restableciendo el acceso a la instancia \"%1$s\"" ], - "Reset": [ - "Restablecer" - ], "Language": [ "Idioma" ], + "Force the language settings instead of using the browser": [ + "Impone la configuración de idioma en lugar de usar el navegador" + ], "Date format": [ "Formato de fecha" ], @@ -19850,15 +23377,15 @@ strings['es'] = { "Merchant type": [ "Tipo de comerciante" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "Simplificar la interfaz según el uso del usuario." ], + "Beta tester": [ + "Probador de versión BETA" + ], "Expert user": [ "Usuario experto" ], - "Taler developer": [ - "Desarrollador de Taler" - ], "Unattended in-person offline vending": [ "Venta presencial desatendida sin conexión" ], @@ -19871,101 +23398,395 @@ strings['es'] = { "E-commerce site": [ "Sitio de comercio electrónico" ], + "Developer tools": [ + "Modo desarrollador" + ], + "Enable UI tools for troubleshooting.": [ + "Habilita herramientas de interfaz de usuario para solución de problemas." + ], + "Testing features": [ + "Características de prueba" + ], + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ + "Usá el modo desarrollador solo si conocés el funcionamiento de la aplicación. Algunas funciones habilitadas en este modo aún están en fase de pruebas." + ], "Developer mode": [ "Modo desarrollador" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ - "Usá el modo desarrollador solo si conocés el funcionamiento de la aplicación. Algunas funciones habilitadas en este modo aún están en fase de pruebas." + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ + "Solamente usá el modo desarrollador is sabes lo que estás haciendo. Herramientas habilitadas en este modo están pensadas para arreglar problemas o obtener mas información sobre la ejecución. PUEDES PERDER INFORMACIÓN." + ], + "create pos access token": [ + "crear token de acceso POS" + ], + "Device name": [ + "Nombre del dispositivo" + ], + "Scan this QR with the Taler POS app.": [ + "Escaneá este código QR con la aplicación Taler POS." + ], + "Payment services status": [ + "Estado de los servicios de pago" + ], + "Base URL": [ + "URL base" + ], + "Next update": [ + "Próxima actualización" + ], + "This payment service is ready to be used.": [ + "Este cambio se realizó sin información desactualizada." + ], + "This payment service can't be used due to an error. Contact the service provider.": [ + "Esta transferencia bancaria fue notificada por el proveedor de servicios de pago." + ], + "Details of the status": [ + "Detalles del estado" + ], + "No payment services supported": [ + "Sin servicio de pagos admitido" + ], + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ + "Actualmente la lista de servicio de pago en la configuración esta vacía. Sin esto este servicio no puede procesar ningún pago." + ], + "Ready until %1$s": [ + "Plazo el %1$s" + ], + "Next update will be at %1$s": [ + "Vencerá el %1$s" + ], + "Error": [ + "Error" + ], + "This payment service is unavailable.": [ + "Servicio no disponible" + ], + "Last HTTP status was %1$s: %2$s (#%3$s )": [ + "Último HTTP status fue %1$s: %2$s (#%3$s )" + ], + "Welcome!": [ + "Hola!" + ], + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "La aplicación se encuentra en un estado inesperado y no puede recuperarse desde aquí. Podés informar del problema a los desarrolladores en %1$s" + ], + "You need to associate a bank account to receive revenue.": [ + "Debés configurar una cuenta bancaria para recibir pagos." + ], + "Without this the server will refuse to create new orders.": [ + "Sin esto el servidor se negará a crear nuevas ordenes." + ], + "Hide for today": [ + "Ocultar por hoy" + ], + "KYC verification needed": [ + "Código de verificación" + ], + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "Algunas transferencias están en espera hasta que se complete el proceso de KYC. Visite la sección de KYC en el menu de la izquierda para obtener mas información." + ], + "No 'admin' instance configured yet.": [ + "Aún no se configuró ninguna instancia 'admin'." + ], + "Create an 'admin' instance to begin using the merchant portal.": [ + "Creá una instancia 'admin' para comenzar a usar el backoffice del comerciante." + ], + "delete bank account": [ + "Eliminar cuenta" + ], + "The bank account has been deleted.": [ + "La cuenta bancaria fue eliminada." + ], + "Delete account": [ + "Eliminar cuenta" + ], + "Delete the account \"%1$s\"": [ + "Eliminar la cuenta \"%1$s\"" + ], + "Invalid payto: \"%1$s\"": [ + "Payto no válido: \"%1$s\"" + ], + "If you delete the account with name %1$s its information will be lost": [ + "Si eliminás la cuenta con nombre %1$s se perderá toda su información" + ], + "Deleting an account can't be undone.": [ + "La eliminación de una cuenta no puede deshacerse." + ], + "Bank accounts": [ + "Cuentas bancarias" + ], + "Add new account": [ + "Agregar nueva cuenta" + ], + "Owner's name": [ + "Nombre del titular" + ], + "Delete selected accounts from the database": [ + "Eliminar las cuentas seleccionadas de la base de datos" + ], + "There are no accounts yet, add more pressing the + sign": [ + "Aún no hay cuentas, agregá más presionando el signo +" + ], + "No bank account configured yet.": [ + "Aún no se configuró ninguna instancia 'admin'." + ], + "Without this information you cannot create new payment orders.": [ + "Sin esta información, no podrás crear nuevas órdenes de pago que se transfieran a una cuenta bancaria." + ], + "This account is not ready to be used.": [ + "Esta cuenta no está permitida." + ], + "There are pending actions related to KYC.": [ + "Hay acciones pendientes relacionados a KYC. %1$s" + ], + "More details.": [ + "Detalles del pago" + ], + "You must complete kyc requirements to receive payments.": [ + "Debés configurar una cuenta bancaria para recibir pagos." + ], + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ + "La información extra deberia contener entre 1 y 40 carácteres de letras, números, punto, guión y punto y coma." + ], + "Invalid url": [ + "URL no válida" + ], + "URL must end with a '/'": [ + "La URL debe terminar con '/'" + ], + "URL must not contain params": [ + "La URL no debe contener parámetros" + ], + "URL must not hash param": [ + "La URL no debe contener parámetro de hash" + ], + "change bank account": [ + "Cuenta bancaria" + ], + "test revenue api": [ + "Próximo evento en" + ], + "Server replied with \"bad request\".": [ + "El servidor respondió con un error de solicitud incorrecta." + ], + "Unauthorized, check credentials.": [ + "No autorizado, verificá las credenciales." + ], + "The endpoint does not seem to be a Taler Revenue API.": [ + "El endpoint no parece ser un API Taler Revenue." + ], + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "La solicitud fue correcta, pero el servidor del banco no respondió con el valor apropiado para 'credit_account', por lo que no podemos confirmar que sea la misma cuenta bancaria." + ], + "Unsupported type of account": [ + "Tipo de cuenta no soportado" + ], + "Account:": [ + "Cuenta:" + ], + "Account details": [ + "Detalles de la cuenta" + ], + "Extra subject": [ + "Asunto extra" + ], + "Additional text to include in the wire transfer subject when settling the payment": [ + "Texto adicional para incluir en el asunto de la transferencia bancaria cuando al liquidar el pago" + ], + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Si el banco soporta el API Taler Revenue, podés agregar la URL del endpoint a continuación para mantener la información de ingresos sincronizada." + ], + "Endpoint URL": [ + "URL del endpoint" + ], + "From where the merchant can download information about incoming wire transfers to this account": [ + "Desde dónde el comerciante puede descargar información sobre las transferencias bancarias entrantes a esta cuenta" + ], + "Auth type": [ + "Tipo de autenticación" + ], + "Choose the authentication type for the account info URL": [ + "Elegí el tipo de autenticación para la URL de información de cuenta" + ], + "Without authentication": [ + "Sin autenticación" + ], + "With username and password": [ + "Con usuario y contraseña" + ], + "With token": [ + "Con token" + ], + "Do not change": [ + "No modificar" + ], + "Username to access the account information.": [ + "Usuario para acceder a la información de la cuenta." + ], + "Password to access the account information.": [ + "Contraseña para acceder a la información de la cuenta." + ], + "Access token to access the account information.": [ + "Token de acceso para acceder a la información de la cuenta." + ], + "Match": [ + "Coincidencia" + ], + "Check where the information match against the server info.": [ + "Verificá si la información coincide con la del servidor." + ], + "Compare info from server with account form": [ + "Comparar la información del servidor con el formulario de la cuenta" + ], + "parse revenue payto": [ + "analizar el Payto-URI" + ], + "add bank account": [ + "Cuenta bancaria" + ], + "The instance does not exist.": [ + "La instancia no existe" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "La cuenta de banco ya existe pero con diferente information. Es el nombredel propietario de la cuenta correcta?" + ], + "Server didn't like the request we made.": [ + "El servidor rechazó la solicitud realizada." + ], + "Check if the information matches the server info.": [ + "Verificá si la información coincide con la del servidor." + ], + "Verify details with server": [ + "Verificar detalles del servidor" + ], + "create instance and login": [ + "crear instancia e iniciar sesión" + ], + "Instance created": [ + "Instancia creada" + ], + "Please complete the marked fields and choose authorization method": [ + "Por favor completá los campos marcados y elegí un método de autorización" + ], + "checking compatibility with server...": [ + "verificando compatibilidad con el servidor..." + ], + "Contacting the server failed": [ + "Falló la conexión con el servidor" + ], + "The server version is not supported": [ + "La versión del servidor no es compatible" + ], + "Supported version \"%1$s\", server version \"%2$s\".": [ + "Versión compatible \"%1$s\", versión de lserver \"%2$s\"." + ], + "Business Name": [ + "Nombre del negocio" + ], + "update product group": [ + "actualizar grupo de productos" + ], + "Available statistics": [ + "Estadísticas disponibles" + ], + "There are no statistics to list": [ + "No hay estadísticas en la lista" + ], + "title\u0004%1$s: Settings": [ + "Configuración" + ], + "title\u0004%1$s: New bank account": [ + "Cuenta bancaria" ], - "Money pot deleted": [ - "Fondo eliminado" + "title\u0004%1$s: Bank accounts": [ + "Cuentas bancarias" ], - "Add new pots": [ - "Agregar nuevos fondos" + "title\u0004%1$s: Update bank Account": [ + "Validar cuenta bancaria: %1$s" ], - "Load more pots before the first one": [ - "Cargar más fondos antes del primero" + "title\u0004%1$s: Orders": [ + "Órdenes" ], - "Total": [ - "Total" + "title\u0004%1$s: New order": [ + "%1$s: Nueva orden" ], - "Delete selected pots from the database": [ - "Eliminar los fondos seleccionados de la base de datos" + "title\u0004%1$s: Inventory": [ + "Inventario" ], - "Load more pots after the last one": [ - "Cargar más fondos después del último" + "title\u0004%1$s: New product": [ + "%1$s: Nuevo producto" ], - "There are no money pots yet, add more pressing the + sign": [ - "Aún no hay fondos, agregá más presionando el signo +" + "title\u0004%1$s: Update product": [ + "%1$s: Actualizar producto" ], - "Missing currency name": [ - "Falta el nombre de la moneda" + "title\u0004%1$s: Category": [ + "%1$s: Categoría" ], - "Currency name must be only letters": [ - "El nombre de la moneda debe contener solo letras" + "title\u0004%1$s: New category": [ + "%1$s: Nueva categoría" ], - "Value can only by number": [ - "El valor solo puede ser numérico" + "title\u0004%1$s: Update category": [ + "%1$s: Actualizar categoría" ], - "The value is too high": [ - "El valor es demasiado alto" + "title\u0004%1$s: Wire transfers": [ + "%1$s: Transferencias bancarias" ], - "The value is too precise": [ - "El valor tiene demasiada precisión decimal" + "title\u0004%1$s: Webhooks": [ + "%1$s: Webhooks" ], - "Invalid amount \"%1$s\": %2$s": [ - "Monto no válido \"%1$s\": %2$s" + "title\u0004%1$s: New webhook": [ + "%1$s: Nuevo webhooks" ], - "Descripton": [ - "Descripción" + "title\u0004%1$s: Update webhook": [ + "%1$s: Actualizar webhook" ], - "Totals": [ - "Totales" + "title\u0004%1$s: OTP devices": [ + "%1$s: Dispositivos OTP" ], - "There is already a money pot with the same id.": [ - "Ya existe un fondo con el mismo ID." + "title\u0004%1$s: New OTP device": [ + "%1$s: Nuevo dispositivo OTP" ], - "Product group deleted": [ - "Grupo de productos eliminado" + "title\u0004%1$s: Update OTP device": [ + "%1$s: Actualizar dispositivo OTP" ], - "Add new group": [ - "Agregar nuevo grupo" + "title\u0004%1$s: New template": [ + "%1$s: Nueva plantilla" ], - "Load more groups before the first one": [ - "Cargar más grupos antes del primero" + "title\u0004%1$s: Update template": [ + "Eliminar plantilla" ], - "Delete selected group from the database": [ - "Eliminar el grupo seleccionado de la base de datos" + "title\u0004%1$s: Templates": [ + "Plantillas" ], - "Load more groups after the last one": [ - "Cargar más grupos después del último" + "title\u0004%1$s: Use template": [ + "Agregar nuevas plantillas" ], - "There are no product groups yet, add more pressing the + sign": [ - "Aún no hay grupos de productos, agregá más presionando el signo +" + "title\u0004%1$s: Personalization": [ + "Personalización" ], - "Scheduled report deleted": [ - "Informe programado eliminado" + "title\u0004%1$s: Discounts & Suscriptions": [ + "%1$s: Descuento y suscripciones" ], - "Scheduled reports": [ - "Informes programados" + "title\u0004%1$s: New token family": [ + "%1$s: Nueva familia de tokens" ], - "Add new reports": [ - "Agregar nuevos informes" + "title\u0004%1$s: Update token family": [ + "%1$s: Actualizar familia de tokens" ], - "Frequency": [ - "Frecuencia" + "title\u0004%1$s: Access tokens": [ + "Tokens de acceso" ], - "Delete selected scheduled report from the database": [ - "Eliminar el informe programado seleccionado de la base de datos" + "title\u0004%1$s: New access token": [ + "Crear token de acceso" ], - "There are no reports yet, add more pressing the + sign": [ - "Aún no hay informes, agregá más presionando el signo +" + "title\u0004%1$s: New POS access token": [ + "Crear token de acceso" ], - "No report generator configured in the server": [ - "No hay ningún generador de informes configurado en el servidor" + "title\u0004New instance": [ + "Instancia" ], - "Contact the system administrator to create a report generator before scheduling one.": [ - "Contactá al administrador del sistema para crear un generador de informes antes de programar uno." + "title\u0004Instances": [ + "Instancias" ] } }, @@ -20001,7 +23822,7 @@ strings['en'] = { "Confirm": [ "" ], - "Correct form": [ + "Correct the form": [ "" ], "Comparing account details": [ @@ -20061,6 +23882,12 @@ strings['en'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "" ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "" + ], + "Bank app": [ + "" + ], "Step 1:": [ "" ], @@ -20091,13 +23918,10 @@ strings['en'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "" ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "" ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ - "" - ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "" ], "Operation in progress...": [ @@ -20139,13 +23963,16 @@ strings['en'] = { "%1$ssec": [ "" ], - "Change value to never": [ + "Change the value to never": [ "" ], - "Change value to empty": [ + "Change the value to empty": [ + "" + ], + "The file is not an image": [ "" ], - "Image must be smaller than 1 MB": [ + "The image was normalized to be smaller than 1 MB": [ "" ], "Add": [ @@ -20214,6 +24041,9 @@ strings['en'] = { "Configuration": [ "" ], + "KYC Status": [ + "" + ], "OTP Devices": [ "" ], @@ -20235,6 +24065,9 @@ strings['en'] = { "Personalization": [ "" ], + "Payment services": [ + "" + ], "Instances": [ "" ], @@ -20247,6 +24080,21 @@ strings['en'] = { "Log out": [ "" ], + "Select one...": [ + "" + ], + "Days": [ + "" + ], + "Hours": [ + "" + ], + "Minutes": [ + "" + ], + "Seconds": [ + "" + ], "Username": [ "" ], @@ -20301,7 +24149,7 @@ strings['en'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -20310,6 +24158,12 @@ strings['en'] = { "Time customers have to pay an order before the offer expires by default.": [ "" ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "" + ], "Refund delay": [ "" ], @@ -20319,13 +24173,13 @@ strings['en'] = { "Wire transfer delay": [ "" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "" ], "Wire transfer rounding": [ "" ], - "Interval to which wire deadlines should be rounded up to.": [ + "Rounding interval for wire deadlines.": [ "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ @@ -20358,46 +24212,43 @@ strings['en'] = { "To year": [ "" ], - "Expired": [ - "" - ], - "Required": [ + "Can't paste this content. Please copy the 8 digits again.": [ "" ], - "Unauthorized": [ + "Resend code possible in %1$s seconds.": [ "" ], - "The code is not correct.": [ + "Resend code possible in less than one minute.": [ "" ], - "The challenge is not known anymore.": [ + "Resend code possible in less than 5 minutes.": [ "" ], - "Too many attempts trying to solve the challenge.": [ + "Resend will be possible after %1$s": [ "" ], - "Validation code sent.": [ + "Expired": [ "" ], - "The verification code sent to the phone number ending with \"%1$s\"": [ + "Required": [ "" ], - "The verification code sent to the email address starting with \"%1$s\"": [ + "verify code": [ "" ], - "Verification code": [ + "Unauthorized": [ "" ], - "It will expire at %1$s": [ + "The code is not correct.": [ "" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ + "The challenge is no longer valid.": [ "" ], - "Back": [ + "Too many attempts trying to solve the challenge.": [ "" ], - "Verify": [ + "send challenge": [ "" ], "Failed to send the verification code.": [ @@ -20406,7 +24257,7 @@ strings['en'] = { "The request was valid, but the server is refusing action.": [ "" ], - "The backend is not aware of the specified MFA challenge.": [ + "The server is not aware of the specified MFA challenge.": [ "" ], "Code transmission failed.": [ @@ -20418,514 +24269,493 @@ strings['en'] = { "It is too early to request another transmission of the challenge.": [ "" ], - "Multi-factor authentication required.": [ - "" - ], - "You need to complete all of this requirements.": [ - "" - ], - "You need to complete at least one of this requirements.": [ - "" - ], - "An SMS to the phone number ending with %1$s": [ - "" - ], - "An email to the address starting with %1$s": [ - "" - ], - "You have to wait until %1$s to send a new code.": [ - "" - ], - "I have a code": [ - "" - ], - "Send me a message": [ - "" - ], - "Logged in": [ + "Validation code sent.": [ "" ], - "Not found": [ + "The verification code sent to the phone \" %1$s\"": [ "" ], - "Login required": [ + "The verification code sent to the phone number ending with \"%1$s\"": [ "" ], - "Instance name.": [ + "The verification code sent to the email address \" %1$s\"": [ "" ], - "Instance password.": [ + "The verification code sent to the email address starting with \"%1$s\"": [ "" ], - "Forgot password": [ + "Verification code": [ "" ], - "Create new account": [ + "Code expired.": [ "" ], - "Invalid": [ + "Didn't received the code?": [ "" ], - "Doesn't have the pattern of an email": [ + "Resend": [ "" ], - "Should start with +": [ + "Verify": [ "" ], - "A phone number consists of numbers only": [ + "The code transmission failed.": [ "" ], - "Invalid value": [ + "The challenge is already solved.": [ "" ], - "Max 7 lines": [ + "Multi-factor authentication required.": [ "" ], - "Doesn't match": [ + "You must complete all of these requirements.": [ "" ], - "Instance created": [ + "You need to complete at least one of this requirements.": [ "" ], - "Unauthorized.": [ + "An SMS to the phone number ending with %1$s": [ "" ], - "Conflict.": [ + "An email to the address starting with %1$s": [ "" ], - "Not found.": [ + "Complete": [ "" ], - "New password": [ + "This is not a valid Bitcoin address.": [ "" ], - "Next password to be used": [ + "This is not a valid Ethereum address.": [ "" ], - "Repeat password": [ + "This is not a valid host.": [ "" ], - "Confirm the same password": [ + "IBANs usually have more than 4 digits.": [ "" ], - "Please complete the marked fields and choose authorization method": [ + "IBANs usually have fewer than 34 digits.": [ "" ], - "Confirm operation": [ + "The IBAN's country code could not be retrieved.": [ "" ], - "Check the password.": [ + "The IBAN is invalid because the checksum is wrong.": [ "" ], - "Instance not found.": [ + "This account is not allowed.": [ "" ], - "Description": [ + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ "" ], - "Helps you remember where this access token is being used before deleting it.": [ + "Wire method": [ "" ], - "Duration": [ + "Select the method you want to use to transfer your earnings to your business account.": [ "" ], - "Time the access token will be valid.": [ + "Select a wire method...": [ "" ], - "Refreshable access tokens can pose a security risk!": [ + "Routing": [ "" ], - "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ + "Routing number": [ "" ], - "Scope": [ + "Account": [ "" ], - "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ + "Account number": [ "" ], - "Allows all operations without limit.": [ + "Code": [ "" ], - "Allows all operations to read information.": [ + "Business Identifier Code": [ "" ], - "Allows the creation of orders and checking of payment status.": [ + "International Bank Account Number": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking.": [ + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ "" ], - "Allows the creation of orders, checking of payment status and refunds.": [ + "Unified Payment Interface": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ + "Bitcoin protocol": [ "" ], - "Allows all operations to read information with extendable expiration time.": [ + "Ethereum protocol": [ "" ], - "Allows the creation of orders and checking of payment status with extendable expiration time.": [ + "Interledger protocol": [ "" ], - "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ + "Enter the data without a scheme. A subpath may be included:": [ "" ], - "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ + "Cyclos host": [ "" ], - "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ + "cyclos account": [ "" ], - "All (refreshable)": [ + "Name of the account holder": [ "" ], - "Spa": [ + "John Doe": [ "" ], - "Spa (refreshable)": [ + "Legal name of the person holding the account.": [ "" ], - "Choose one": [ + "The request reached a timeout, check your connection.": [ "" ], - "Read only": [ + "The request was cancelled.": [ "" ], - "All": [ + "Too many requests were made to the server and this action was throttled.": [ "" ], - "Order simple": [ + "The server's response was malformed, please report.": [ "" ], - "Order Point-of-Sale": [ + "Could not complete the request due to a network problem.": [ "" ], - "Order management": [ + "Unexpected request error, please report.": [ "" ], - "Order full": [ + "Unexpected error.": [ "" ], - "Read only (refreshable)": [ + "login": [ "" ], - "Order simple (refreshable)": [ + "Logged in": [ "" ], - "Order Point-of-Sale (refreshable)": [ + "Wrong password.": [ "" ], - "Order management (refreshable)": [ + "The account doesn't exist.": [ "" ], - "Order full (refreshable)": [ + "Login required": [ "" ], - "Current password": [ + "Instance name.": [ "" ], - "Please complete the marked fields": [ + "Instance password.": [ "" ], - "Access token created": [ + "Forgot password": [ "" ], - "Copy the value of the access token and save it, as you cannot retrieve it again.": [ + "Create new account": [ "" ], - "Token": [ + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ "" ], - "This token will never expire": [ + "Testing environment": [ "" ], - "This token will be available until %1$s": [ + "This server is meant for testing features and configurations. Don't use your personal information here.": [ "" ], - "No 'admin' instance configured yet.": [ + "Delete": [ "" ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ + "Add new instance": [ "" ], - "Create access token": [ + "ID": [ "" ], - "Load more devices before the first one": [ + "Name": [ "" ], - "Load first page": [ + "Edit": [ "" ], - "Created at": [ + "Change password": [ "" ], - "Expires at": [ + "Purge": [ "" ], - "Never": [ + "There are no instances yet. Add one by pressing the '+' sign.": [ "" ], - "Remove this access token": [ + "delete instance": [ "" ], - "Delete": [ + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ "" ], - "Load more devices after the last one": [ + "Unauthorized.": [ "" ], - "Load next page": [ + "Not found.": [ "" ], - "There are no active sessions yet, add one by pressing the + sign": [ + "Conflict.": [ "" ], - "Forbidden.": [ + "Only show active instances": [ "" ], - "Delete access token": [ + "Active": [ "" ], - "Deleting an access token cannot be undone.": [ + "Only show deleted instances": [ "" ], - "This is not a valid Bitcoin address.": [ + "Deleted": [ "" ], - "This is not a valid Ethereum address.": [ + "Show all instances": [ "" ], - "This is not a valid host.": [ + "All": [ "" ], - "IBANs usually have more than 4 digits.": [ + "Delete instance": [ "" ], - "IBANs usually have fewer than 34 digits.": [ + "Delete the instance \"%1$s\"": [ "" ], - "The IBAN's country code could not be retrieved.": [ + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ "" ], - "The IBAN is invalid because the checksum is wrong.": [ + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ "" ], - "This account is not allowed.": [ + "Deleting an instance %1$s": [ "" ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ + "This cannot be undone!": [ "" ], - "Wire method": [ + "Purge the instance": [ "" ], - "Select the method you want to use to transfer your earnings to your business account.": [ + "Purge the instance \"%1$s\"": [ "" ], - "Select a wire method...": [ + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ "" ], - "Routing": [ + "The instance will disappear from your list and you will no longer be able to access its data.": [ "" ], - "Routing number": [ + "Purging an instance %1$s": [ "" ], - "Account": [ + "create access token": [ "" ], - "Account number": [ + "Check the password.": [ "" ], - "Code": [ + "Instance not found.": [ "" ], - "Business Identifier Code": [ + "Description": [ "" ], - "International Bank Account Number": [ + "Helps you remember where this access token is being used before deleting it.": [ "" ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "Duration": [ "" ], - "Unified Payment Interface": [ + "Time the access token will be valid.": [ "" ], - "Bitcoin protocol": [ + "Refreshable access tokens can pose a security risk!": [ "" ], - "Ethereum protocol": [ + "Refreshable access tokens can be refreshed before their lifetime ends, effectively giving any bearer access without expiration. Only use this if you know what you are doing and you have evaluated associated risks especially in respect to the permissions granted by the scope.": [ "" ], - "Interledger protocol": [ + "Scope": [ "" ], - "Enter the data without a scheme. A subpath may be included:": [ + "The scope defines the set of permissions for the access token. Refreshable tokens has the permission to extend the expiration time.": [ "" ], - "Cyclos host": [ + "Allows all operations without limit.": [ "" ], - "cyclos account": [ + "Allows all operations to read information.": [ "" ], - "Name of the account holder": [ + "Allows the creation of orders and checking of payment status.": [ "" ], - "John Doe": [ + "Allows the creation of orders, checking of payment status and inventory locking.": [ "" ], - "Legal name of the person holding the account.": [ + "Allows the creation of orders, checking of payment status and refunds.": [ "" ], - "Invalid url": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds.": [ "" ], - "URL must end with a '/'": [ + "Allows all operations to read information with extendable expiration time.": [ "" ], - "URL must not contain params": [ + "Allows the creation of orders and checking of payment status with extendable expiration time.": [ "" ], - "URL must not hash param": [ + "Allows the creation of orders, checking of payment status and inventory locking with extendable expiration time.": [ "" ], - "Conflict": [ + "Allows the creation of orders, checking of payment status and refunds with extendable expiration time.": [ "" ], - "Server replied with \"bad request\".": [ + "Allows the creation of orders, checking of payment status, inventory locking and refunds with extendable expiration time.": [ "" ], - "Unauthorized, check credentials.": [ + "All (refreshable)": [ "" ], - "The endpoint does not seem to be a Taler Revenue API.": [ + "Spa": [ "" ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "Spa (refreshable)": [ "" ], - "Unsupported type of account": [ + "Choose one": [ "" ], - "Account:": [ + "Read only": [ "" ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Order simple": [ "" ], - "Endpoint URL": [ + "Order Point-of-Sale": [ "" ], - "From where the merchant can download information about incoming wire transfers to this account": [ + "Order management": [ "" ], - "Auth type": [ + "Order full": [ "" ], - "Choose the authentication type for the account info URL": [ + "Read only (refreshable)": [ "" ], - "Without authentication": [ + "Order simple (refreshable)": [ "" ], - "With username and password": [ + "Order Point-of-Sale (refreshable)": [ "" ], - "With token": [ + "Order management (refreshable)": [ "" ], - "Do not change": [ + "Order full (refreshable)": [ "" ], - "Username to access the account information.": [ + "Current password": [ "" ], - "Password to access the account information.": [ + "Please complete the marked fields": [ "" ], - "Access token to access the account information.": [ + "Confirm operation": [ "" ], - "Match": [ + "Access token created": [ "" ], - "Check where the information match against the server info.": [ + "Copy the value of the access token and save it, as you cannot retrieve it again.": [ "" ], - "Compare info from server with account form": [ + "Token": [ "" ], - "Test": [ + "This token will never expire": [ "" ], - "Server didn't like the request we made.": [ + "This token will be available until %1$s": [ "" ], - "Account details": [ + "Create access token": [ "" ], - "Check if the information matches the server info.": [ + "Load more devices before the first one": [ "" ], - "The bank account has been deleted.": [ + "Load first page": [ "" ], - "Delete account": [ + "Created at": [ "" ], - "Delete the account \"%1$s\"": [ + "Expires at": [ "" ], - "Invalid payto: \"%1$s\"": [ + "Never": [ "" ], - "If you delete the account with name %1$s its information will be lost": [ + "Remove this access token": [ "" ], - "Deleting an account can't be undone.": [ + "Load more devices after the last one": [ "" ], - "Bank accounts": [ + "Load next page": [ "" ], - "Add new account": [ + "There are no active sessions yet, add one by pressing the + sign": [ "" ], - "Owner's name": [ + "delete access token": [ "" ], - "Delete selected accounts from the database": [ + "Forbidden.": [ "" ], - "There are no accounts yet, add more pressing the + sign": [ + "New point-of-sale access": [ "" ], - "You must provide a bank account to receive payments.": [ + "Delete access token": [ "" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ + "Deleting an access token cannot be undone.": [ "" ], "Invalid. Please use only letters and numbers.": [ "" ], - "Name": [ + "add category": [ + "" + ], + "Not found": [ "" ], "Category name": [ "" ], - "Category deleted": [ + "delete category": [ "" ], - "Add new devices": [ + "Category deleted": [ "" ], - "ID": [ + "Add new devices": [ "" ], "Total products": [ @@ -20937,6 +24767,9 @@ strings['en'] = { "There are no categories yet, add more pressing the + sign": [ "" ], + "update category": [ + "" + ], "Id:": [ "" ], @@ -20955,25 +24788,37 @@ strings['en'] = { "There are no products in this category.": [ "" ], - "Account's KYC status": [ + "create product group": [ "" ], - "Exchange": [ + "delete product group": [ "" ], - "Status": [ + "Product group deleted": [ "" ], - "Ok": [ + "Add new group": [ + "" + ], + "Load more groups before the first one": [ "" ], - "Action required": [ + "Delete selected group from the database": [ "" ], - "Warning": [ + "Load more groups after the last one": [ "" ], - "Error": [ + "There are no product groups yet, add more pressing the + sign": [ + "" + ], + "Account's KYC status": [ + "" + ], + "Exchange": [ + "" + ], + "Status": [ "" ], "Bank account verification required.": [ @@ -20982,7 +24827,7 @@ strings['en'] = { "More information required.": [ "" ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "" ], "Ready": [ @@ -20994,7 +24839,7 @@ strings['en'] = { "Payment service internal error. Contact administrator or check again later.": [ "" ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "" ], "Payment service timeout. Contact administrator or check again later.": [ @@ -21006,7 +24851,7 @@ strings['en'] = { "Incompatible core banking system.": [ "" ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "" ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -21018,25 +24863,31 @@ strings['en'] = { "No pending kyc verification!": [ "" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "" + ], + "The account for wire transfers is invalid.": [ "" ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "" ], - "No exchange keys": [ + "No contact with the payment service yet.": [ "" ], - "The backend service is still synchronizing with the payment service provider.": [ + "The server is still synchronizing with the payment service provider.": [ "" ], "No transfers can be made from this account": [ "" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ + "" + ], + "Test": [ "" ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -21060,7 +24911,7 @@ strings['en'] = { "Logic bug": [ "" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "" ], "Internal error": [ @@ -21072,7 +24923,7 @@ strings['en'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "" ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "" ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -21081,13 +24932,16 @@ strings['en'] = { "Unsupported account": [ "" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "" ], - "Change value to unknown date": [ + "Change value to empty": [ + "" + ], + "Change value to never": [ "" ], "Enter description or id": [ @@ -21099,7 +24953,7 @@ strings['en'] = { "You must enter a valid product identifier.": [ "" ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -21114,7 +24968,10 @@ strings['en'] = { "How many products will be added": [ "" ], - "Add from inventory": [ + "Add it to the order": [ + "" + ], + "Invalid": [ "" ], "This product has %1$s applicable taxes configured.": [ @@ -21195,22 +25052,28 @@ strings['en'] = { "Either fulfillment url or fulfillment message must be specified.": [ "" ], - "is not a valid URL": [ + "Invalid URL": [ "" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ + "" + ], + "Conflict": [ "" ], "Product with ID \"%1$s\" is out of stock.": [ "" ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "" ], "Manage products in order": [ "" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "" ], "Manage list of products in the order.": [ @@ -21291,7 +25154,7 @@ strings['en'] = { "Wire transfer time": [ "" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "" ], "Auto-refund time": [ @@ -21339,6 +25202,9 @@ strings['en'] = { "Custom field name": [ "" ], + "new extra field": [ + "" + ], "Disabled": [ "" ], @@ -21348,7 +25214,7 @@ strings['en'] = { "Deadline at %1$s": [ "" ], - "Select date to show nearby orders": [ + "get product details": [ "" ], "Only show unpaid orders": [ @@ -21381,10 +25247,7 @@ strings['en'] = { "Remove all filters": [ "" ], - "Clear date filter": [ - "" - ], - "Jump to date (%1$s)": [ + "authorize refund": [ "" ], "Gone.": [ @@ -21399,15 +25262,33 @@ strings['en'] = { "Order id": [ "" ], + "Clear date filter": [ + "" + ], + "Select date to show nearby orders": [ + "" + ], + "Jump to date (%1$s)": [ + "" + ], "Instance unknown": [ "" ], "Order unknown": [ "" ], + "This order is not refundable": [ + "" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "" ], @@ -21441,12 +25322,15 @@ strings['en'] = { "Gone": [ "" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "" ], "refund": [ "" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "" ], @@ -21474,7 +25358,7 @@ strings['en'] = { "now": [ "" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "" ], "This is when the time for making the payment has been expired.": [ @@ -21486,6 +25370,9 @@ strings['en'] = { "This wire transfer has been notified by the payment service provider.": [ "" ], + "This wire transfer has been notified manually or by the banking system.": [ + "" + ], "This refund is waiting to be claimed by the customer.": [ "" ], @@ -21495,7 +25382,7 @@ strings['en'] = { "The current moment in time.": [ "" ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "" ], "Contract terms": [ @@ -21534,19 +25421,19 @@ strings['en'] = { "Wire transfer deadline": [ "" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "" ], - "Time indicating when the order should be delivered": [ + "Auto-refund delay": [ "" ], - "Where the order will be delivered": [ + "How long the wallet should try to get an automatic refund for the purchase": [ "" ], - "Auto-refund delay": [ + "Time indicating when the order should be delivered": [ "" ], - "How long the wallet should try to get an automatic refund for the purchase": [ + "Where the order will be delivered": [ "" ], "Extra info": [ @@ -21591,37 +25478,43 @@ strings['en'] = { "Product list": [ "" ], + "The contract terms have a v1 order without choices_index.": [ + "" + ], + "The contract terms have a v1 order with a bad choices_index.": [ + "" + ], "refund missed: %1$s": [ "" ], - "refund missed: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "" ], "refund created: %1$s": [ "" ], - "refund created: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "" ], "refund taken: %1$s": [ "" ], - "refund taken: %1$s: %2$s": [ + "refund taken: %1$s : %2$s": [ "" ], - "The contract terms has a v1 order without choices_index.": [ + "wired %1$s": [ "" ], - "The contract terms has a v1 order with a bad choices_index.": [ + "wire deadline": [ "" ], - "wired %1$s": [ + "Related wire transfers": [ "" ], - "wire deadline": [ + "Unconfirmed": [ "" ], - "Wired": [ + "Confirmed": [ "" ], "Refund order": [ @@ -21630,6 +25523,12 @@ strings['en'] = { "Not refundable": [ "" ], + "No wire transfer reported": [ + "" + ], + "Check wire transfers": [ + "" + ], "Next event in": [ "" ], @@ -21651,7 +25550,7 @@ strings['en'] = { "Refund URI": [ "" ], - "Pay at": [ + "Payment link": [ "" ], "Order status URL": [ @@ -21663,15 +25562,36 @@ strings['en'] = { "Unknown order status. This is an error, please contact the administrator.": [ "" ], + "Back": [ + "" + ], + "never": [ + "" + ], + "unknown": [ + "" + ], + "confirmed": [ + "" + ], + "unconfirmed": [ + "" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "" ], - "Just letters and numbers from 2 to 7": [ + "Use only letters and digits (2–7).": [ "" ], "The size of the key must be 32 characters": [ "" ], + "add otp device": [ + "" + ], "Internal ID on the system": [ "" ], @@ -21705,6 +25625,9 @@ strings['en'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "" ], + "delete otp device": [ + "" + ], "OTP devices": [ "" ], @@ -21714,6 +25637,9 @@ strings['en'] = { "There are no devices to list yet, add more by pressing the + sign": [ "" ], + "update otp device": [ + "" + ], "Template id is unknown": [ "" ], @@ -21747,9 +25673,24 @@ strings['en'] = { "In order to verify that you have access.": [ "" ], + "New password": [ + "" + ], + "Next password to be used": [ + "" + ], + "Repeat password": [ + "" + ], + "Confirm the same password": [ + "" + ], "Confirm change": [ "" ], + "change password": [ + "" + ], "Testing password change": [ "" ], @@ -21759,16 +25700,76 @@ strings['en'] = { "The current password is wrong.": [ "" ], + "change instance password": [ + "" + ], "No enough rights to change the password.": [ "" ], "Account not found.": [ "" ], + "create money pot": [ + "" + ], + "There is already a money pot with the same id.": [ + "" + ], + "delete money pot": [ + "" + ], + "Money pot deleted": [ + "" + ], + "Add new pots": [ + "" + ], + "Load more pots before the first one": [ + "" + ], + "Total": [ + "" + ], + "Delete selected pots from the database": [ + "" + ], + "Load more pots after the last one": [ + "" + ], + "There are no money pots yet, add more pressing the + sign": [ + "" + ], "Add element to the list": [ "" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "" + ], + "Invalid amount \"%1$s\": %2$s": [ + "" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "" + ], + "Totals": [ + "" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "" ], "Manage stock": [ @@ -21783,13 +25784,13 @@ strings['en'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "" ], - "Incoming": [ + "Current": [ "" ], - "Lost": [ + "Incoming": [ "" ], - "Current": [ + "Lost": [ "" ], "Remove stock control for this product": [ @@ -21870,6 +25871,9 @@ strings['en'] = { "Search by group name or id": [ "" ], + "add product": [ + "" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -21885,6 +25889,9 @@ strings['en'] = { "Add product to inventory": [ "" ], + "update product": [ + "" + ], "Product not found.": [ "" ], @@ -21897,6 +25904,12 @@ strings['en'] = { "Sold": [ "" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "" + ], "Free": [ "" ], @@ -21939,6 +25952,9 @@ strings['en'] = { "There are no products to list yet, add more by pressing the + sign": [ "" ], + "delete product": [ + "" + ], "Product (ID: %1$s) has been deleted": [ "" ], @@ -21963,6 +25979,69 @@ strings['en'] = { "Product id:": [ "" ], + "It should start with /": [ + "" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "" + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "" + ], + "Description of the report. Possibly included in the report message": [ + "" + ], + "Where the report program should send the report": [ + "" + ], + "Source": [ + "" + ], + "Base URL to request the data from.": [ + "" + ], + "Type of the data source": [ + "" + ], + "Program": [ + "" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "" + ], + "Report frequency shift": [ + "" + ], + "delete scheduled report": [ + "" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "" + ], + "There are no reports yet, add more pressing the + sign": [ + "" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "" ], @@ -21972,9 +26051,6 @@ strings['en'] = { "Service unavailable": [ "" ], - "Select date from which to show statistics": [ - "" - ], "Show chart": [ "" ], @@ -21987,6 +26063,9 @@ strings['en'] = { "Orders table": [ "" ], + "Select date from which to show statistics": [ + "" + ], "Start from (%1$s)": [ "" ], @@ -22071,6 +26150,9 @@ strings['en'] = { "Too short": [ "" ], + "add template": [ + "" + ], "You don't have enough permissions.": [ "" ], @@ -22173,6 +26255,9 @@ strings['en'] = { "There are no templates to list yet, add more by pressing the + sign": [ "" ], + "delete template": [ + "" + ], "Jump to template with the given template ID": [ "" ], @@ -22185,7 +26270,7 @@ strings['en'] = { "Delete the template \"%1$s\"": [ "" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "" ], "Deleting a template cannot be undone.": [ @@ -22194,6 +26279,9 @@ strings['en'] = { "Print": [ "" ], + "update template": [ + "" + ], "The template configuration needs to be fixed.": [ "" ], @@ -22215,6 +26303,12 @@ strings['en'] = { "An order summary is required": [ "" ], + "create order from template": [ + "" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "" ], @@ -22224,12 +26318,30 @@ strings['en'] = { "Amount of the order": [ "" ], + "Expiration should be after start date": [ + "" + ], + "Granularity can't be greater than duration.": [ + "" + ], + "create token family": [ + "" + ], + "There is another token family with this ID. Choose another one.": [ + "" + ], "Slug": [ "" ], "Token family slug to use in URLs (for internal use only)": [ "" ], + "User-readable token family name": [ + "" + ], + "Token family description for customers": [ + "" + ], "Kind": [ "" ], @@ -22242,31 +26354,46 @@ strings['en'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ "" ], - "The last day the coupon/subscription can be used.": [ + "The last day the coupon/subscription can be used.": [ + "" + ], + "If set to %1$s, they are no longer valid from %2$s.": [ + "" + ], + "How long the coupon/subscription remains valid after being activated.": [ + "" + ], + "If you activate it on %1$s with duration of 30 days, it remains valid until %2$s.": [ + "" + ], + "Validity Granularity": [ + "" + ], + "Rounds the validity to a specific unit of time.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "1 minute": [ "" ], - "How long the coupon/subscription remains valid after being activated.": [ + "1 hour": [ "" ], - "If you activate it on %1$s with duration of 30 days, it remains valid until %2$s.": [ + "1 day": [ "" ], - "Validity Granularity": [ + "30 days": [ "" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "90 days": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ + "365 days": [ "" ], "Token Families": [ @@ -22287,6 +26414,9 @@ strings['en'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "" ], + "delete token family": [ + "" + ], "Token family has been deleted.": [ "" ], @@ -22305,85 +26435,88 @@ strings['en'] = { "can't be undone": [ "" ], + "update token family": [ + "" + ], "Token Family: %1$s": [ "" ], - "User-readable token family name": [ + "inform wire transfer": [ "" ], - "Token family description for customers": [ + "Wire transfer already confirmed.": [ "" ], - "Incoming wire transfers": [ + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ "" ], - "Load more wire transfers preceding the first one": [ + "The wire transfer has been confirmed.": [ "" ], - "Expected credit": [ + "Transaction details": [ "" ], - "Confirmed": [ + "Transfer ID": [ "" ], - "Validated": [ + "I have received the wire transfer": [ "" ], - "Executed on": [ + "Orders in this wire transfer": [ "" ], - "yes": [ + "Fee": [ "" ], - "no": [ + "Subtotals": [ "" ], - "never": [ + "Deposit fee": [ "" ], - "unknown": [ + "Wire fee": [ "" ], - "Load more transfers after the last one": [ + "not ready": [ "" ], - "Verified wire transfers": [ + "loading...": [ "" ], - "There are no transfers to list yet, add more by pressing the + sign": [ + "New wire transfers": [ "" ], - "All accounts": [ + "Load more wire transfers preceding the first one": [ "" ], - "Filter by account address": [ + "To be determined.": [ "" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ + "You confirm that the incoming wire transfer has arrived into your bank account.": [ "" ], - "Only show wire transfers confirmed by the merchant": [ + "Load more transfers after the last one": [ "" ], - "Verified": [ + "Confirmed wire transfers into bank account": [ "" ], - "Wire transfer already confirmed.": [ + "Show details about the incoming wire transfer.": [ "" ], - "I have received the wire transfer": [ + "There are no transfers to list yet": [ "" ], - "Confirm the wire transfer": [ + "All accounts": [ "" ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "Filter by account address": [ "" ], - "Time": [ + "Verified": [ "" ], - "Transfer ID": [ + "A wire transfer is verified if match the amount of all orders being settled.": [ "" ], "It's not the same.": [ @@ -22392,13 +26525,13 @@ strings['en'] = { "You are deleting the instance with ID \"%1$s\"": [ "" ], - "Instance": [ + "delete current instance": [ "" ], - "Write the instance name to confirm the deletion": [ + "Instance": [ "" ], - "Purge": [ + "Write the instance name to confirm the deletion": [ "" ], "All the data will be fully deleted, otherwise only the access will be removed.": [ @@ -22407,9 +26540,36 @@ strings['en'] = { "DELETE": [ "" ], + "Doesn't have the pattern of an email": [ + "" + ], + "Should start with +": [ + "" + ], + "A phone number consists of numbers only": [ + "" + ], + "Invalid phone number": [ + "" + ], + "Invalid value": [ + "" + ], + "Max 7 lines": [ + "" + ], + "update instance settings": [ + "" + ], "Instance id": [ "" ], + "URL": [ + "" + ], + "Cancel operation": [ + "" + ], "Delete this instance": [ "" ], @@ -22419,6 +26579,9 @@ strings['en'] = { "URL is invalid": [ "" ], + "add webhook": [ + "" + ], "Webhook ID to use": [ "" ], @@ -22470,9 +26633,6 @@ strings['en'] = { "Method used by the webhook": [ "" ], - "URL": [ - "" - ], "URL of the webhook where the customer will be redirected": [ "" ], @@ -22515,6 +26675,9 @@ strings['en'] = { "Body template used by the webhook.": [ "" ], + "delete webhook": [ + "" + ], "Webhook deleted successfully": [ "" ], @@ -22536,6 +26699,9 @@ strings['en'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "" ], + "update webhook": [ + "" + ], "Webhook updated": [ "" ], @@ -22548,6 +26714,12 @@ strings['en'] = { "Body template used by the webhook": [ "" ], + "Doesn't match": [ + "" + ], + "self provision instance": [ + "" + ], "There is another instance with this username.": [ "" ], @@ -22575,6 +26747,9 @@ strings['en'] = { "Create": [ "" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -22584,10 +26759,10 @@ strings['en'] = { "Resetting access to the instance \"%1$s\"": [ "" ], - "Reset": [ + "Language": [ "" ], - "Language": [ + "Force the language settings instead of using the browser": [ "" ], "Date format": [ @@ -22599,13 +26774,13 @@ strings['en'] = { "Merchant type": [ "" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "" ], - "Expert user": [ + "Beta tester": [ "" ], - "Taler developer": [ + "Expert user": [ "" ], "Unattended in-person offline vending": [ @@ -22620,229 +26795,274 @@ strings['en'] = { "E-commerce site": [ "" ], + "Developer tools": [ + "" + ], + "Enable UI tools for troubleshooting.": [ + "" + ], + "Testing features": [ + "" + ], + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ + "" + ], "Developer mode": [ "" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ "" ], - "Money pot deleted": [ + "create pos access token": [ "" ], - "Add new pots": [ + "Device name": [ "" ], - "Load more pots before the first one": [ + "Scan this QR with the Taler POS app.": [ "" ], - "Total": [ + "Payment services status": [ "" ], - "Delete selected pots from the database": [ + "Base URL": [ "" ], - "Load more pots after the last one": [ + "Next update": [ "" ], - "There are no money pots yet, add more pressing the + sign": [ + "This payment service is ready to be used.": [ "" ], - "Missing currency name": [ + "This payment service can't be used due to an error. Contact the service provider.": [ "" ], - "Currency name must be only letters": [ + "Details of the status": [ "" ], - "Value can only by number": [ + "No payment services supported": [ "" ], - "The value is too high": [ + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ "" ], - "The value is too precise": [ + "Ready until %1$s": [ "" ], - "Invalid amount \"%1$s\": %2$s": [ + "Next update will be at %1$s": [ "" ], - "Descripton": [ + "Error": [ "" ], - "Totals": [ + "This payment service is unavailable.": [ "" ], - "There is already a money pot with the same id.": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], - "Product group deleted": [ + "Welcome!": [ "" ], - "Add new group": [ + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ "" ], - "Load more groups before the first one": [ + "You need to associate a bank account to receive revenue.": [ "" ], - "Delete selected group from the database": [ + "Without this the server will refuse to create new orders.": [ "" ], - "Load more groups after the last one": [ + "Hide for today": [ "" ], - "There are no product groups yet, add more pressing the + sign": [ + "KYC verification needed": [ "" ], - "Scheduled report deleted": [ + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ "" ], - "Scheduled reports": [ + "No 'admin' instance configured yet.": [ "" ], - "Add new reports": [ + "Create an 'admin' instance to begin using the merchant portal.": [ "" ], - "Frequency": [ + "delete bank account": [ "" ], - "Delete selected scheduled report from the database": [ + "The bank account has been deleted.": [ "" ], - "There are no reports yet, add more pressing the + sign": [ + "Delete account": [ "" ], - "No report generator configured in the server": [ + "Delete the account \"%1$s\"": [ "" ], - "Contact the system administrator to create a report generator before scheduling one.": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Description of the report. Possibly included in the report message": [ + "If you delete the account with name %1$s its information will be lost": [ "" ], - "Where the report program should send the report": [ + "Deleting an account can't be undone.": [ "" ], - "Source": [ + "Bank accounts": [ "" ], - "Base URL to request the data from.": [ + "Add new account": [ "" ], - "Type of the data source": [ + "Owner's name": [ "" ], - "Program": [ + "Delete selected accounts from the database": [ "" ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ + "There are no accounts yet, add more pressing the + sign": [ "" ], - "Report frequency": [ + "No bank account configured yet.": [ "" ], - "Welcome!": [ + "Without this information you cannot create new payment orders.": [ "" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "This account is not ready to be used.": [ "" ], - "You need to associate a bank account to receive revenue.": [ + "There are pending actions related to KYC.": [ "" ], - "Without this the merchant backend will refuse to create new orders.": [ + "More details.": [ "" ], - "Hide for today": [ + "You must complete kyc requirements to receive payments.": [ "" ], - "KYC verification needed": [ + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ "" ], - "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "Invalid url": [ "" ], - "The request reached a timeout, check your connection.": [ + "URL must end with a '/'": [ "" ], - "The request was cancelled.": [ + "URL must not contain params": [ "" ], - "Too many requests were made to the server, and this action was throttled.": [ + "URL must not hash param": [ "" ], - "The server's response was malformed.": [ + "change bank account": [ "" ], - "Could not complete the request due to a network problem.": [ + "test revenue api": [ "" ], - "Unexpected request error.": [ + "Server replied with \"bad request\".": [ "" ], - "Unexpected error.": [ + "Unauthorized, check credentials.": [ "" ], - "Add new instance": [ + "The endpoint does not seem to be a Taler Revenue API.": [ "" ], - "Edit": [ + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ "" ], - "Change password": [ + "Unsupported type of account": [ "" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ + "Account:": [ "" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "Account details": [ "" ], - "Only show active instances": [ + "Extra subject": [ "" ], - "Active": [ + "Additional text to include in the wire transfer subject when settling the payment": [ "" ], - "Only show deleted instances": [ + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ "" ], - "Deleted": [ + "Endpoint URL": [ "" ], - "Show all instances": [ + "From where the merchant can download information about incoming wire transfers to this account": [ "" ], - "Delete instance": [ + "Auth type": [ "" ], - "Delete the instance \"%1$s\"": [ + "Choose the authentication type for the account info URL": [ "" ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Without authentication": [ "" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "With username and password": [ "" ], - "Deleting an instance %1$s": [ + "With token": [ "" ], - "This cannot be undone!": [ + "Do not change": [ "" ], - "Purge the instance": [ + "Username to access the account information.": [ "" ], - "Purge the instance \"%1$s\"": [ + "Password to access the account information.": [ "" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Access token to access the account information.": [ "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ + "Match": [ "" ], - "Purging an instance %1$s": [ + "Check where the information match against the server info.": [ + "" + ], + "Compare info from server with account form": [ + "" + ], + "parse revenue payto": [ + "" + ], + "add bank account": [ + "" + ], + "The instance does not exist.": [ + "" + ], + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" + ], + "Server didn't like the request we made.": [ + "" + ], + "Check if the information matches the server info.": [ + "" + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "" + ], + "Instance created": [ + "" + ], + "Please complete the marked fields and choose authorization method": [ "" ], "checking compatibility with server...": [ @@ -22860,6 +27080,9 @@ strings['en'] = { "Business Name": [ "" ], + "update product group": [ + "" + ], "Available statistics": [ "" ], @@ -22953,6 +27176,9 @@ strings['en'] = { "title\u0004%1$s: New access token": [ "" ], + "title\u0004%1$s: New POS access token": [ + "" + ], "title\u0004New instance": [ "" ], @@ -22993,7 +27219,7 @@ strings['de'] = { "Confirm": [ "Eingeben" ], - "Correct form": [ + "Correct the form": [ "Korrektur der Angaben" ], "Comparing account details": [ @@ -23053,6 +27279,12 @@ strings['de'] = { "In order to prove that you are the beneficial owner of the bank account, you are required to wire a small amount to a specified bank account with the subject below.": [ "Um nachzuweisen, dass Sie der wirtschaftlich Berechtigte des Bankkontos sind, müssen Sie einen kleinen Betrag auf das Bankkonto des Zahlungsdiensts mit dem folgenden Text im Mitteilungsfeld überweisen." ], + "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ + "Wenn Ihre Bank-App eine Überweisung mit QR-Codes ermöglicht, versuchen Sie, diesen Code zu scannen:" + ], + "Bank app": [ + "Bankkonto" + ], "Step 1:": [ "Schritt 1:" ], @@ -23083,13 +27315,10 @@ strings['de'] = { "Select the smallest possible amount for a wire transfer in your preferred banking app or online banking website.": [ "Wählen Sie in Ihrer Banking-App oder Ihrem Online-Banking den kleinstmöglichen Betrag für eine Überweisung aus." ], - "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" URI below to copy just one value.": [ + "Make sure ALL data is correct, especially the subject, and that you are choosing the bank account from which you definitely want to make the wire transfer. You can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI below to copy just one value.": [ "Vergewissern Sie sich, dass ALLE Daten und der Buchungsvermerk korrekt sind und Sie das richtige Bankkonto gewählt haben. Sie können die Daten durch Klicks auf die Kopiersymbole übernehmen (%1$s), um Fehler durch eigenhändige Eingabe zu vermeiden, oder den \"payto://\"-URI verwenden, um mit einer Angabe alles zu kopieren." ], - "If your bank application allows you make a wire transfer using standard QR codes then try scanning the following:": [ - "Wenn Ihre Bank-App eine Überweisung mit QR-Codes ermöglicht, versuchen Sie, diesen Code zu scannen:" - ], - "As an alternative, in case that your bank already supports the 'PayTo URI' standard, you can use this %1$s link instead": [ + "As an alternative, in case that your bank already supports the %1$s , you can use this %2$s link instead.": [ "Falls Ihre Bank den technischen Standard „payto:// URI“ bereits unterstützt, können Sie alternativ dazu den Link %1$s verwenden" ], "Operation in progress...": [ @@ -23131,13 +27360,16 @@ strings['de'] = { "%1$ssec": [ "%1$ssec" ], - "Change value to never": [ + "Change the value to never": [ "Wert auf „nie“ setzen" ], - "Change value to empty": [ + "Change the value to empty": [ "Wert annullieren" ], - "Image must be smaller than 1 MB": [ + "The file is not an image": [ + "Die Challenge ist nicht mehr bekannt." + ], + "The image was normalized to be smaller than 1 MB": [ "Die Bilddatei muss kleiner als 1 MB sein" ], "Add": [ @@ -23206,6 +27438,9 @@ strings['de'] = { "Configuration": [ "Einstellungen" ], + "KYC Status": [ + "Status" + ], "OTP Devices": [ "OTP-Geräte" ], @@ -23227,6 +27462,9 @@ strings['de'] = { "Personalization": [ "Personalisierung" ], + "Payment services": [ + "Unterstützte Währungen" + ], "Instances": [ "Instanzen" ], @@ -23236,8 +27474,23 @@ strings['de'] = { "List": [ "Listen" ], - "Log out": [ - "Abmelden" + "Log out": [ + "Abmelden" + ], + "Select one...": [ + "Wählen Sie ein Konto" + ], + "Days": [ + "" + ], + "Hours": [ + "Stunden" + ], + "Minutes": [ + "Minuten" + ], + "Seconds": [ + "Sekunden" ], "Username": [ "Benutzername" @@ -23293,7 +27546,7 @@ strings['de'] = { "Default cut-off times": [ "" ], - "These will be the values are going to be used if are not overriden in the order creation.": [ + "These values will be used if they are not overridden during order creation.": [ "" ], "Payment delay": [ @@ -23302,6 +27555,12 @@ strings['de'] = { "Time customers have to pay an order before the offer expires by default.": [ "Der Zeitraum, in dem Käufer eine Bestellung bezahlen müssen, bevor das Angebot regulär verfällt." ], + "Change the value to the default value specified by the server.": [ + "" + ], + "Reset": [ + "Zurücksetzen" + ], "Refund delay": [ "Zeitliche Verzögerung der automatischen Rückerstattung" ], @@ -23311,14 +27570,14 @@ strings['de'] = { "Wire transfer delay": [ "Überweisungsfrist" ], - "Maximum time an exchange is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ + "Maximum time an payment service is allowed to delay wiring funds to the merchant, enabling it to aggregate smaller payments into larger wire transfers and reducing wire fees.": [ "Der Zeitraum, in dem alle Kundenzahlungen zu einem Betrag zusammengefasst und vom Zahlungsdienst an das Bankkonto des Verkäufers überwiesen werden, um Überweisungsgebühren zu reduzieren." ], "Wire transfer rounding": [ "Überweisungsfrist" ], - "Interval to which wire deadlines should be rounded up to.": [ - "Dies ist die Rundung des Zeitraums auf ganze Zeiteinheiten, nach deren Ablauf die zusammengefassten Umsätze an das Bankkonto überwiesen werden." + "Rounding interval for wire deadlines.": [ + "" ], "As an example if you set the interval to day the wire transfer deadline will be rounded to midnight.": [ "Wenn Sie beispielsweise das Intervall auf einen Tag festlegen, wird die Überweisungsfrist zu Mitternacht dieses Tages aufgerundet." @@ -23350,70 +27609,103 @@ strings['de'] = { "To year": [ "Rundung auf ein Jahr" ], + "Can't paste this content. Please copy the 8 digits again.": [ + "" + ], + "Resend code possible in %1$s seconds.": [ + "" + ], + "Resend code possible in less than one minute.": [ + "" + ], + "Resend code possible in less than 5 minutes.": [ + "" + ], + "Resend will be possible after %1$s": [ + "Ende der Gültigkeit %1$s" + ], "Expired": [ "Abgelaufen" ], "Required": [ "Erforderlich" ], + "verify code": [ + "Bestätigungscode" + ], "Unauthorized": [ "Unberechtigter Zugriff" ], "The code is not correct.": [ "Der eingegebene Code ist falsch." ], - "The challenge is not known anymore.": [ + "The challenge is no longer valid.": [ "Die Challenge ist nicht mehr bekannt." ], "Too many attempts trying to solve the challenge.": [ "Zu viele Versuche die Challenge zu lösen." ], + "send challenge": [ + "Passwort geändert" + ], + "Failed to send the verification code.": [ + "Verifizierungscode konnte nicht gesendet werden." + ], + "The request was valid, but the server is refusing action.": [ + "Die Anfrage war gültig, aber der Server verweigert die Bearbeitung." + ], + "The server is not aware of the specified MFA challenge.": [ + "Dieser Anwendung ist die angegebene Multi-Faktor-Überprüfung nicht bekannt." + ], + "Code transmission failed.": [ + "Die Code-Übertragung ist fehlgeschlagen." + ], + "Already solved.": [ + "Bereits gelöst." + ], + "It is too early to request another transmission of the challenge.": [ + "Es muss noch gewartet werden, um eine weitere Übertragung des Überprüfungscodes zu verlangen." + ], "Validation code sent.": [ "Ein Bestätigungscode wurde gerade zugesendet." ], + "The verification code sent to the phone \" %1$s\"": [ + "Ein Bestätigungscode wurde an die Telefonnummer gesendet, die mit \"%1$s\" endet" + ], "The verification code sent to the phone number ending with \"%1$s\"": [ "Ein Bestätigungscode wurde an die Telefonnummer gesendet, die mit \"%1$s\" endet" ], + "The verification code sent to the email address \" %1$s\"": [ + "Ein Bestätigungscode wurde an die E-Mailadresse gesendet, die mit \"%1$s\" beginnt" + ], "The verification code sent to the email address starting with \"%1$s\"": [ "Ein Bestätigungscode wurde an die E-Mailadresse gesendet, die mit \"%1$s\" beginnt" ], "Verification code": [ "Bestätigungscode" ], - "It will expire at %1$s": [ - "Ende der Gültigkeit %1$s" + "Code expired.": [ + "Der Zeitraum für die Überprüfung ist abgelaufen" ], - "The challenge is expired and can't be solved but you can go back and create a new challenge.": [ - "Das Prüfverfahren zur gesicherten Anmeldung ist abgelaufen und kann nicht mehr verwendet werden, es ist jedoch möglich, ein neues Prüfverfahren anzufordern (bitte gehen Sie im Browser einen Schritt zurück)." + "Didn't received the code?": [ + "" ], - "Back": [ - "Zurück" + "Resend": [ + "Zurücksetzen" ], "Verify": [ "Prüfen" ], - "Failed to send the verification code.": [ - "Verifizierungscode konnte nicht gesendet werden." - ], - "The request was valid, but the server is refusing action.": [ - "Die Anfrage war gültig, aber der Server verweigert die Bearbeitung." - ], - "The backend is not aware of the specified MFA challenge.": [ - "Dieser Anwendung ist die angegebene Multi-Faktor-Überprüfung nicht bekannt." - ], - "Code transmission failed.": [ + "The code transmission failed.": [ "Die Code-Übertragung ist fehlgeschlagen." ], - "Already solved.": [ - "Bereits gelöst." - ], - "It is too early to request another transmission of the challenge.": [ - "Es muss noch gewartet werden, um eine weitere Übertragung des Überprüfungscodes zu verlangen." + "The challenge is already solved.": [ + "Die Challenge ist nicht mehr bekannt." ], "Multi-factor authentication required.": [ "Es ist eine Multi-Faktor-Authentifizierung erforderlich." ], - "You need to complete all of this requirements.": [ + "You must complete all of these requirements.": [ "Sie müssen alle dieser Bedingungen erfüllen." ], "You need to complete at least one of this requirements.": [ @@ -23425,20 +27717,131 @@ strings['de'] = { "An email to the address starting with %1$s": [ "Bestätigungscode senden an die E-Mailadresse, die mit %1$s beginnt" ], - "You have to wait until %1$s to send a new code.": [ - "Sie müssen bis %1$s warten, damit ein neuer Bestätigungscode gesendet werden kann." + "Complete": [ + "Abschliessen" + ], + "This is not a valid Bitcoin address.": [ + "Dies ist keine gültige Bitcoin-Adresse." + ], + "This is not a valid Ethereum address.": [ + "Dies ist keine zulässige Ethereum-Adresse." + ], + "This is not a valid host.": [ + "Dies ist kein gültiger Host." + ], + "IBANs usually have more than 4 digits.": [ + "Eine IBAN besteht normalerweise aus mehr als 4 Ziffern." + ], + "IBANs usually have fewer than 34 digits.": [ + "Eine IBAN besteht normalerweise aus weniger als 34 Ziffern." + ], + "The IBAN's country code could not be retrieved.": [ + "Der IBAN-Ländercode wurde nicht gefunden." + ], + "The IBAN is invalid because the checksum is wrong.": [ + "Die IBAN-Nummer ist ungültig, die Prüfsumme ist falsch." + ], + "This account is not allowed.": [ + "Dieses Konto ist nicht zulässig." + ], + "None of the server's supported wire methods are currently supported by this app. Server settings: %1$s": [ + "Keine der gängigen Übertragungsmethoden des Servers wird zurzeit von dieser Anwendung unterstützt. Server-Einstellungen: %1$s" + ], + "Wire method": [ + "Überweisungsmethode" + ], + "Select the method you want to use to transfer your earnings to your business account.": [ + "Wählen Sie die Methode, mit der Sie Ihre Einnahmen an Ihr Geschäftskonto überweisen möchten." + ], + "Select a wire method...": [ + "Wählen Sie eine Überweisungsmethode..." + ], + "Routing": [ + "Bankleitzahlensystem" + ], + "Routing number": [ + "Bankleitzahl" + ], + "Account": [ + "Konto" + ], + "Account number": [ + "Kontonummer" + ], + "Code": [ + "Code" + ], + "Business Identifier Code": [ + "Business Identifier Code (BIC)" + ], + "International Bank Account Number": [ + "IBAN (Internationale Bankkontonummer)" + ], + "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ + "Ihre IBAN, z.B. CH12 0000 1111 2222 3333 00" + ], + "Unified Payment Interface": [ + "Unified Payment Interface (UPI)" + ], + "Bitcoin protocol": [ + "Bitcoin-Protokoll" + ], + "Ethereum protocol": [ + "Ethereum-Protokoll" + ], + "Interledger protocol": [ + "Interledger-Protokoll" + ], + "Enter the data without a scheme. A subpath may be included:": [ + "Geben Sie die Daten ohne Schema ein. Ein Pfad kann darin enthalten sein:" + ], + "Cyclos host": [ + "" + ], + "cyclos account": [ + "Alle Konten" + ], + "Name of the account holder": [ + "Name des Kontoinhabers" + ], + "John Doe": [ + "Max Muster" + ], + "Legal name of the person holding the account.": [ + "Rechtsgültiger Name des Kontoinhabers." + ], + "The request reached a timeout, check your connection.": [ + "Die Anfrage hat ihr Zeitlimit erreicht, überprüfen Sie bitte Ihre Internetverbindung." + ], + "The request was cancelled.": [ + "Die Anfrage wurde abgebrochen." + ], + "Too many requests were made to the server and this action was throttled.": [ + "Es wurden gleichzeitig zu viele Anfragen an denselben Server gestellt, daher ist diese Aktion gedrosselt worden." + ], + "The server's response was malformed, please report.": [ + "Die Antwort des Servers auf die Anfrage war fehlerhaft." + ], + "Could not complete the request due to a network problem.": [ + "Die Anfrage konnte aufgrund eines Netzwerkproblems nicht abgeschlossen werden." + ], + "Unexpected request error, please report.": [ + "Unerwarteter Fehler bei der Anfrage." ], - "I have a code": [ - "Ich habe bereits einen gültigen Bestätigungscode" + "Unexpected error.": [ + "Unerwarteter Fehler." ], - "Send me a message": [ - "Bestätigungscode zusenden" + "login": [ + "" ], "Logged in": [ "Sie sind angemeldet" ], - "Not found": [ - "Nicht gefunden" + "Wrong password.": [ + "Ich habe mein Passwort vergessen" + ], + "The account doesn't exist.": [ + "Die Bestellung existiert nicht" ], "Login required": [ "Anmeldung erforderlich" @@ -23455,56 +27858,107 @@ strings['de'] = { "Create new account": [ "Neues Benutzerkonto erstellen" ], - "Invalid": [ - "Ungültig" + "Follow this link to find video tutorials on how you can use the GNU Taler components.": [ + "" ], - "Doesn't have the pattern of an email": [ - "Dies entspricht keiner gültigen E-Mailadresse" + "Testing environment": [ + "" ], - "Should start with +": [ - "Die Nummer sollte mit + beginnen" + "This server is meant for testing features and configurations. Don't use your personal information here.": [ + "" ], - "A phone number consists of numbers only": [ - "Eine Telefonnummer besteht nur aus Ziffern" + "Delete": [ + "Löschen" ], - "Invalid value": [ - "Ungültiger Wert" + "Add new instance": [ + "Neue Instanz hinzufügen" ], - "Max 7 lines": [ - "Höchstens 7 Zeilen" + "ID": [ + "ID" ], - "Doesn't match": [ - "Dies stimmt nicht überein" + "Name": [ + "Name" ], - "Instance created": [ - "Die Instanz wurde angelegt" + "Edit": [ + "Bearbeiten" + ], + "Change password": [ + "Passwort ändern" + ], + "Purge": [ + "Vollständig verwerfen" + ], + "There are no instances yet. Add one by pressing the '+' sign.": [ + "Es gibt noch keine Instanzen. Sie können diese mit dem +-Zeichen hinzufügen." + ], + "delete instance": [ + "Instanz löschen" + ], + "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ + "Instanz \"%1$s\" (ID: %2$s) wurde gelöscht." ], "Unauthorized.": [ "Nicht autorisiert." ], + "Not found.": [ + "Die Information wurde nicht gefunden." + ], "Conflict.": [ "Es besteht ein Konflikt zwischen erwarteter und gesendeter Information." ], - "Not found.": [ - "Die Information wurde nicht gefunden." + "Only show active instances": [ + "Zeige nur aktive Instanzen" + ], + "Active": [ + "Aktiv" + ], + "Only show deleted instances": [ + "Zeige nur gelöschte Instanzen" + ], + "Deleted": [ + "Gelöscht" + ], + "Show all instances": [ + "Zeige alle Instanzen" + ], + "All": [ + "Alle" + ], + "Delete instance": [ + "Instanz löschen" + ], + "Delete the instance \"%1$s\"": [ + "Instanz \"%1$s\" löschen" + ], + "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ + "Wenn Sie die Instanz mit der Bezeichnung %1$s (ID: %2$s) löschen, wird sie keine weiteren Bestellungen oder Rückerstattungen bearbeiten können" + ], + "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ + "Dieser Vorgang löscht den privaten Schlüssel der Instanz, lässt jedoch alle Transaktionsdaten unberührt. Sie können daher auch weiterhin nach der Löschung der Instanz auf diese Daten zugreifen." + ], + "Deleting an instance %1$s": [ + "Löschung der Instanz %1$s" + ], + "This cannot be undone!": [ + "Das kann nicht rückgängig gemacht werden!" ], - "New password": [ - "Neues Passwort" + "Purge the instance": [ + "Instanz löschen" ], - "Next password to be used": [ - "Geben Sie hier ein neues Passwort ein" + "Purge the instance \"%1$s\"": [ + "Instanz \"%1$s\" wird endgültig verworfen" ], - "Repeat password": [ - "Passwort wiederholen" + "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ + "Falls Sie die Instanz %1$s (ID: %2$s) vollständig verwerfen, löschen Sie damit auch unwiderruflich alle Transaktionsdaten!" ], - "Confirm the same password": [ - "Bitte geben Sie das Passwort hier wiederholt ein" + "The instance will disappear from your list and you will no longer be able to access its data.": [ + "Die Instanz wird von Ihrer Liste gestrichen und alle ihre Daten werden nicht mehr zugänglich sein." ], - "Please complete the marked fields and choose authorization method": [ - "Sie müssen die gekennzeichneten Felder ausfüllen und eine Methode der Berechtigungsprüfung wählen" + "Purging an instance %1$s": [ + "Die Instanz %1$s wird endgültig verworfen" ], - "Confirm operation": [ - "Vorgang bestätigen" + "create access token": [ + "Zugangstoken erzeugen" ], "Check the password.": [ "Überprüfen Sie das Passwort." @@ -23584,9 +28038,6 @@ strings['de'] = { "Read only": [ "Schreibgeschützt" ], - "All": [ - "Alle" - ], "Order simple": [ "Einfache Bestellungen" ], @@ -23620,6 +28071,9 @@ strings['de'] = { "Please complete the marked fields": [ "Bitte füllen Sie die Felder mit verpflichtenden Angaben aus" ], + "Confirm operation": [ + "Vorgang bestätigen" + ], "Access token created": [ "Zugangstoken wurde erzeugt" ], @@ -23635,12 +28089,6 @@ strings['de'] = { "This token will be available until %1$s": [ "Dieser Zugangstoken ist verfügbar bis %1$s" ], - "No 'admin' instance configured yet.": [ - "Es wurde noch keine Instanz 'admin' konfiguriert." - ], - "Create an 'admin' instance to begin using the merchant backoffice.": [ - "Erstellen Sie eine Instanz 'admin', um Merchant Backoffice erstmalig zu verwenden." - ], "Create access token": [ "Zugangstoken erzeugen" ], @@ -23662,264 +28110,51 @@ strings['de'] = { "Remove this access token": [ "Diesen Zugangstoken entfernen" ], - "Delete": [ - "Löschen" - ], "Load more devices after the last one": [ "Mehr Geräte nach dem letzten Gerät laden" ], - "Load next page": [ - "Nächste Seite laden" - ], - "There are no active sessions yet, add one by pressing the + sign": [ - "Es bestehen noch keine aktiven Sitzungen, Sie können diese mit dem +-Zeichen hinzufügen" - ], - "Forbidden.": [ - "Unzulässig." - ], - "Delete access token": [ - "Zugangstoken löschen" - ], - "Deleting an access token cannot be undone.": [ - "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." - ], - "This is not a valid Bitcoin address.": [ - "Dies ist keine gültige Bitcoin-Adresse." - ], - "This is not a valid Ethereum address.": [ - "Dies ist keine zulässige Ethereum-Adresse." - ], - "This is not a valid host.": [ - "Dies ist kein gültiger Host." - ], - "IBANs usually have more than 4 digits.": [ - "Eine IBAN besteht normalerweise aus mehr als 4 Ziffern." - ], - "IBANs usually have fewer than 34 digits.": [ - "Eine IBAN besteht normalerweise aus weniger als 34 Ziffern." - ], - "The IBAN's country code could not be retrieved.": [ - "Der IBAN-Ländercode wurde nicht gefunden." - ], - "The IBAN is invalid because the checksum is wrong.": [ - "Die IBAN-Nummer ist ungültig, die Prüfsumme ist falsch." - ], - "This account is not allowed.": [ - "Dieses Konto ist nicht zulässig." - ], - "None of the supported wire method of the server are currently supported by this app. Server settings: %1$s": [ - "Keine der gängigen Übertragungsmethoden des Servers wird zurzeit von dieser Anwendung unterstützt. Server-Einstellungen: %1$s" - ], - "Wire method": [ - "Überweisungsmethode" - ], - "Select the method you want to use to transfer your earnings to your business account.": [ - "Wählen Sie die Methode, mit der Sie Ihre Einnahmen an Ihr Geschäftskonto überweisen möchten." - ], - "Select a wire method...": [ - "Wählen Sie eine Überweisungsmethode..." - ], - "Routing": [ - "Bankleitzahlensystem" - ], - "Routing number": [ - "Bankleitzahl" - ], - "Account": [ - "Konto" - ], - "Account number": [ - "Kontonummer" - ], - "Code": [ - "Code" - ], - "Business Identifier Code": [ - "Business Identifier Code (BIC)" - ], - "International Bank Account Number": [ - "IBAN (Internationale Bankkontonummer)" - ], - "your bank account number, e.g. DE12 0000 1111 2222 3333 00": [ - "Ihre IBAN, z.B. CH12 0000 1111 2222 3333 00" - ], - "Unified Payment Interface": [ - "Unified Payment Interface (UPI)" - ], - "Bitcoin protocol": [ - "Bitcoin-Protokoll" - ], - "Ethereum protocol": [ - "Ethereum-Protokoll" - ], - "Interledger protocol": [ - "Interledger-Protokoll" - ], - "Enter the data without a scheme. A subpath may be included:": [ - "Geben Sie die Daten ohne Schema ein. Ein Pfad kann darin enthalten sein:" - ], - "Cyclos host": [ - "" - ], - "cyclos account": [ - "Alle Konten" - ], - "Name of the account holder": [ - "Name des Kontoinhabers" - ], - "John Doe": [ - "Max Muster" - ], - "Legal name of the person holding the account.": [ - "Rechtsgültiger Name des Kontoinhabers." - ], - "Invalid url": [ - "ungültige URL" - ], - "URL must end with a '/'": [ - "Die URL muss mit '/' enden" - ], - "URL must not contain params": [ - "Die URL darf keine Parameter enthalten" - ], - "URL must not hash param": [ - "Die URL darf keinen Hash-Parameter enthalten" - ], - "Conflict": [ - "Konflikt" - ], - "Server replied with \"bad request\".": [ - "Der Server antwortete mit \"bad request\"." - ], - "Unauthorized, check credentials.": [ - "Unzulässiger Vorgang, bitte die Zugangsdaten (Token, Anmeldename, Passwort) überprüfen." - ], - "The endpoint does not seem to be a Taler Revenue API.": [ - "Die Gegenstelle scheint keine Taler-Einzahlungsschnittstelle (Taler Revenue API) zu sein." - ], - "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ - "Die Anfrage war richtig gestellt, doch der Server der Bank antwortete nicht mit dem passenden Wert (für 'credit_account'), so dass wir nicht bestätigen können, dass es sich um dasselbe Bankkonto handelt." - ], - "Unsupported type of account": [ - "Nicht unterstützter Kontotyp" - ], - "Account:": [ - "Konto:" - ], - "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ - "Wenn die kontoführende Bank die Schnittstelle Taler Revenue API unterstützt, können Sie die untenstehende Gegenstelle (endpoint URL) hinzufügen, um die Umsatzinformationen zwischen dem Backend und dem Bankkonto zu synchronisieren." - ], - "Endpoint URL": [ - "Gegenstelle (endpoint URL)" - ], - "From where the merchant can download information about incoming wire transfers to this account": [ - "Informationsquelle zu eingehenden Überweisungen auf dieses Bankkonto" - ], - "Auth type": [ - "Authentifizierungsmethode" - ], - "Choose the authentication type for the account info URL": [ - "Wählen Sie die Authentifizierungsmethode zum Zugriff auf das Bankkonto, um die eingegangenen Überweisungen abzufragen" - ], - "Without authentication": [ - "Ohne Authentifizierung" - ], - "With username and password": [ - "Mit Benutzername und Passwort" - ], - "With token": [ - "Mit Zugangstoken" - ], - "Do not change": [ - "Lassen Sie dies unverändert" - ], - "Username to access the account information.": [ - "Benutzername für den Zugriff auf die Kontoinformationen." - ], - "Password to access the account information.": [ - "Passwort für den Zugriff auf die Kontoinformationen." - ], - "Access token to access the account information.": [ - "Zugangstoken für den Zugriff auf die Kontoinformationen." - ], - "Match": [ - "Übereinstimmung" - ], - "Check where the information match against the server info.": [ - "Prüfung der Übereinstimmung dieser Information und der Daten auf dem Server." - ], - "Compare info from server with account form": [ - "Vergleich der Information des Servers mit den Bankkonto-Formulardaten" - ], - "Test": [ - "Test" - ], - "Server didn't like the request we made.": [ - "Der Server war mit unserer Anfrage nicht einverstanden." - ], - "Account details": [ - "Kontodetails" - ], - "Check if the information matches the server info.": [ - "Bitte prüfen Sie, ob die Information und die Daten auf dem Server übereinstimmen." - ], - "The bank account has been deleted.": [ - "Die Verknüpfung mit dem Bankkonto wurde erfolgreich gelöscht." - ], - "Delete account": [ - "Wählen Sie ein Konto" - ], - "Delete the account \"%1$s\"": [ - "Artikel \"%1$s\" löschen" - ], - "Invalid payto: \"%1$s\"": [ - "" - ], - "If you delete the account with name %1$s its information will be lost": [ - "Wenn Sie das Konto mit der Bezeichnung %1$s löschen, gehen alle zugehörigen Informationen verloren" - ], - "Deleting an account can't be undone.": [ - "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." - ], - "Bank accounts": [ - "Bankkonten" + "Load next page": [ + "Nächste Seite laden" ], - "Add new account": [ - "Neues Konto hinzufügen" + "There are no active sessions yet, add one by pressing the + sign": [ + "Es bestehen noch keine aktiven Sitzungen, Sie können diese mit dem +-Zeichen hinzufügen" ], - "Owner's name": [ - "Name des Kontoinhabers" + "delete access token": [ + "Zugangstoken löschen" ], - "Delete selected accounts from the database": [ - "Löschen ausgewählter Konten von der Datenbank" + "Forbidden.": [ + "Unzulässig." ], - "There are no accounts yet, add more pressing the + sign": [ - "Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen hinzufügen" + "New point-of-sale access": [ + "Bestellungen an der Verkaufsstelle (POS)" ], - "You must provide a bank account to receive payments.": [ - "Sie müssen ein Bankkonto verknüpfen, um Einnahmen an dieses Konto zu überweisen." + "Delete access token": [ + "Zugangstoken löschen" ], - "Without this information, you cannot create new payment orders that are transferred to a bank account.": [ - "Ohne diese Informationen können Sie keine neuen Zahlungsabwicklungen erstellen, die an ein Bankkonto überwiesen werden." + "Deleting an access token cannot be undone.": [ + "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." ], "Invalid. Please use only letters and numbers.": [ "Ungültig. Bitte geben Sie nur Buchstaben und Zahlen ein." ], - "Name": [ - "Name" + "add category": [ + "Die Kategorie konnte nicht hinzugefügt werden" + ], + "Not found": [ + "Nicht gefunden" ], "Category name": [ "Kategoriename" ], + "delete category": [ + "Benennung der Kategorie (Warengruppe)" + ], "Category deleted": [ "Die Kategorie wurde gelöscht" ], "Add new devices": [ "Neue Geräte hinzufügen" ], - "ID": [ - "ID" - ], "Total products": [ "Gesamte Artikelmenge" ], @@ -23929,6 +28164,9 @@ strings['de'] = { "There are no categories yet, add more pressing the + sign": [ "Es gibt noch keine Kategorien. Sie können diese mit dem +-Zeichen hinzufügen" ], + "update category": [ + "%1$s: Kategorie aktualisieren" + ], "Id:": [ "ID:" ], @@ -23947,6 +28185,30 @@ strings['de'] = { "There are no products in this category.": [ "Es befinden sich keine Artikel in dieser Kategorie." ], + "create product group": [ + "Artikel" + ], + "delete product group": [ + "Artikel löschen" + ], + "Product group deleted": [ + "Artikelliste" + ], + "Add new group": [ + "Neues Konto hinzufügen" + ], + "Load more groups before the first one": [ + "Mehr Webhooks vor dem ersten laden" + ], + "Delete selected group from the database": [ + "Löschen ausgewählter Konten von der Datenbank" + ], + "Load more groups after the last one": [ + "Weitere Artikel nach dem letzten laden" + ], + "There are no product groups yet, add more pressing the + sign": [ + "Es gibt noch keine Artikel. Sie können diese mit dem +-Zeichen hinzufügen" + ], "Account's KYC status": [ "KYC-Status des Bankkontos" ], @@ -23956,25 +28218,13 @@ strings['de'] = { "Status": [ "Status" ], - "Ok": [ - "OK" - ], - "Action required": [ - "Sie müssen noch eine Aktion ausführen (eine Überweisung oder eine KYC-Prüfung ist erforderlich)" - ], - "Warning": [ - "Warnung" - ], - "Error": [ - "Fehler" - ], "Bank account verification required.": [ "Eine Bankkonto-Verifizierung ist erforderlich." ], "More information required.": [ "Weitere Informationen sind erforderlich." ], - "Awaiting for account review.": [ + "Awaiting account review.": [ "Es wird auf die Überprüfung des Kontos gewartet." ], "Ready": [ @@ -23986,7 +28236,7 @@ strings['de'] = { "Payment service internal error. Contact administrator or check again later.": [ "Interner Fehler des Zahlungsdiensts. Wenden Sie sich an den Administrator oder prüfen Sie später erneut." ], - "Merchant backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact the service administrator or check again later.": [ "Interner Fehler im Backend. Wenden Sie sich an den Administrator oder prüfen Sie später erneut." ], "Payment service timeout. Contact administrator or check again later.": [ @@ -23998,7 +28248,7 @@ strings['de'] = { "Incompatible core banking system.": [ "Inkompatibles Kernbankensystem." ], - "Backend internal error. Contact administrator or check again later.": [ + "Server internal error. Contact administrator or check again later.": [ "Interner Fehler im Backend. Wenden Sie sich an den Administrator oder prüfen Sie später erneut." ], "Payment service response is invalid. Contact administrator or check again later.": [ @@ -24010,25 +28260,31 @@ strings['de'] = { "No pending kyc verification!": [ "Eine KYC-Prüfung ist nicht (mehr) ausstehend!" ], - "The account for wire transfers does not appear to be valid": [ + "Ok": [ + "OK" + ], + "The account for wire transfers is invalid.": [ "Das Konto für Überweisungen scheint nicht gültig zu sein" ], - "The backend service responded with \"%1$s\" which is invalid.": [ + "The server responded with \"%1$s\" which is invalid.": [ "Das Backend hat mit \"%1$s\" geantwortet, was ungültig ist." ], - "No exchange keys": [ - "Es sind keine Schlüssel des Exchange vorhanden" + "No contact with the payment service yet.": [ + "" ], - "The backend service is still synchronizing with the payment service provider.": [ + "The server is still synchronizing with the payment service provider.": [ "Das Backend synchronisiert zurzeit noch mit dem Zahlungsdienst." ], "No transfers can be made from this account": [ "Von diesem Bankkonto kann keine Überweisung erfolgen" ], - "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider. Sincerely, the Taler Exchange.": [ + "The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus you cannot use this payment service provider.": [ "Das Kernbankensystem kann keine Überweisungen zwischen dem Bankkonto des Zahlungsdiensts und Ihren Bankkonten durchführen. Daher können Sie diesen Zahlungsdienst nicht nutzen. Der Taler Exchange." ], - "You must undergo a KYC (Know Your Customer) process as required by financial regulations or laws": [ + "Test": [ + "Test" + ], + "Know Your Customer process is required.": [ "" ], "The payment service provider requires more information.": [ @@ -24052,7 +28308,7 @@ strings['de'] = { "Logic bug": [ "Logischer Fehler" ], - "The backend service detected an internal error, contact the system administrator or check again later.": [ + "The server detected an internal error, contact the system administrator or check again later.": [ "Das Backend hat einen internen Fehler festgestellt. Wenden Sie sich an den Systemadministrator oder prüfen Sie später erneut." ], "Internal error": [ @@ -24064,7 +28320,7 @@ strings['de'] = { "The merchant service provider detected an internal error, contact the system administrator or check again later.": [ "Interner Fehler des Zahlungsdiensts. Wenden Sie sich an den Administrator oder prüfen Sie später erneut." ], - "The backend service could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ + "The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later.": [ "Das Backend konnte den Zahlungsdienst aufgrund einer Zeitüberschreitung nicht kontaktieren. Wenden Sie sich an den Systemadministrator oder prüfen Sie später erneut." ], "Unable to reach the payment service provider, contact the system administrator or check again later.": [ @@ -24073,14 +28329,17 @@ strings['de'] = { "Unsupported account": [ "Nicht unterstützter Kontotyp" ], - "This exchange does not support the given account.": [ + "This payment service does not support the given account.": [ "" ], "The payment service provider replied with an invalid status, contact the system administrator or check again later.": [ "Der Zahlungsdienst hat mit einem ungültigen Status geantwortet. Wenden Sie sich an den Systemadministrator oder prüfen Sie später erneut." ], - "Change value to unknown date": [ - "Wert auf unbekanntes Datum ändern" + "Change value to empty": [ + "Wert annullieren" + ], + "Change value to never": [ + "Wert auf „nie“ setzen" ], "Enter description or id": [ "Geben Sie die Beschreibung oder eine ID ein" @@ -24091,7 +28350,7 @@ strings['de'] = { "You must enter a valid product identifier.": [ "Sie müssen eine gültige Artikelkennung eingeben." ], - "Quantity must be greater than 0!": [ + "Quantity must be greater than zero.": [ "Die Menge muss größer als 0 sein!" ], "This quantity exceeds remaining stock. Currently, only %1$s units remain unreserved in stock.": [ @@ -24106,8 +28365,11 @@ strings['de'] = { "How many products will be added": [ "Wie viele Artikel hinzugefügt werden" ], - "Add from inventory": [ - "Vom Bestand hinzufügen" + "Add it to the order": [ + "Summe der Bestellung" + ], + "Invalid": [ + "Ungültig" ], "This product has %1$s applicable taxes configured.": [ "Für diesen Artikel ist ein Steuersatz von %1$s angelegt." @@ -24187,22 +28449,28 @@ strings['de'] = { "Either fulfillment url or fulfillment message must be specified.": [ "Es müssen entweder fulfillment-URL oder fulfillment message angegeben werden." ], - "is not a valid URL": [ - "ist keine gültige URL" + "Invalid URL": [ + "Ungültig" ], - "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "create order": [ + "Bestellung erzeugen" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders.": [ "" ], + "Conflict": [ + "Konflikt" + ], "Product with ID \"%1$s\" is out of stock.": [ "Der Artikel mit der ID \"%1$s\" ist nicht auf Lager." ], - "No exchange would accept a payment because of KYC requirements.": [ + "No payment service would accept a payment because of KYC requirements.": [ "Aufgrund von KYC-Bedingungen, die nicht erfüllt werden, könnte kein Zahlungsdienst Buchungen annehmen." ], "Manage products in order": [ "Artikel in der Bestellung verwalten" ], - "%1$s products with a total price of %2$s.": [ + "%1$s products with a total price of %2$s .": [ "%1$s Artikel zu einer Gesamtsumme von %2$s." ], "Manage list of products in the order.": [ @@ -24283,7 +28551,7 @@ strings['de'] = { "Wire transfer time": [ "Zeitpunkt der Überweisung" ], - "Time for the exchange to make the wire transfer. Time starts after the order is created.": [ + "Time for the payment service to make the wire transfer. Time starts after the order is created.": [ "Der Zeitraum, nach dessen Ablauf der Zahlungsdienst die Einnahmen überweist. Die Zeitdauer beginnt mit der Erstellzeit der Bestellung." ], "Auto-refund time": [ @@ -24331,6 +28599,9 @@ strings['de'] = { "Custom field name": [ "Benutzerdefinierter Feldname" ], + "new extra field": [ + "" + ], "Disabled": [ "Deaktiviert" ], @@ -24340,8 +28611,8 @@ strings['de'] = { "Deadline at %1$s": [ "Frist bis %1$s" ], - "Select date to show nearby orders": [ - "Bitte wählen Sie ein Datum, um die Bestellungen dieses Zeitraums anzuzeigen" + "get product details": [ + "Kontodetails" ], "Only show unpaid orders": [ "Nur unbezahlte Bestellungen anzeigen" @@ -24373,11 +28644,8 @@ strings['de'] = { "Remove all filters": [ "Alle Filter aufheben" ], - "Clear date filter": [ - "Datumsfilter aufheben" - ], - "Jump to date (%1$s)": [ - "Springe zum Datum (%1$s)" + "authorize refund": [ + "Unberechtigter Zugriff" ], "Gone.": [ "Nicht mehr vorhanden." @@ -24391,15 +28659,33 @@ strings['de'] = { "Order id": [ "Bestellnummer" ], + "Clear date filter": [ + "Datumsfilter aufheben" + ], + "Select date to show nearby orders": [ + "Bitte wählen Sie ein Datum, um die Bestellungen dieses Zeitraums anzuzeigen" + ], + "Jump to date (%1$s)": [ + "Springe zum Datum (%1$s)" + ], "Instance unknown": [ "Unbekannte Instanz" ], "Order unknown": [ "Unbekannte Bestellung" ], + "This order is not refundable": [ + "Grund für die Erstattung dieser Bestellung" + ], + "The order status is not \"paid\" so we are unable to process any refund action.": [ + "" + ], "Create order": [ "Bestellung erzeugen" ], + "copy order URL": [ + "" + ], "The instance doesn't exist": [ "Die Instanz existiert nicht" ], @@ -24433,12 +28719,15 @@ strings['de'] = { "Gone": [ "Nicht mehr vorhanden" ], - "There are pending KYC requirements.": [ + "There are pending KYC requirements. Please check the KYC status": [ "Es sind noch KYC-Bedingungen zu erfüllen (Prüfung der wirtschaftlich Berechtigten von Konten)." ], "refund": [ "Rückerstattung" ], + "%1$s was already refunded": [ + "" + ], "Reason": [ "Buchungsvermerk" ], @@ -24466,7 +28755,7 @@ strings['de'] = { "now": [ "jetzt" ], - "This is when the time for making refund has been expired.": [ + "This is when the refund period has expired.": [ "Zu diesem Zeitpunkt ist die Rückerstattungsfrist abgelaufen." ], "This is when the time for making the payment has been expired.": [ @@ -24478,6 +28767,9 @@ strings['de'] = { "This wire transfer has been notified by the payment service provider.": [ "Diese Überweisung wurde vom Zahlungsdienst gemeldet." ], + "This wire transfer has been notified manually or by the banking system.": [ + "Diese Überweisung wurde vom Zahlungsdienst gemeldet." + ], "This refund is waiting to be claimed by the customer.": [ "Diese Rückerstattung kann vom Käufer beantragt werden." ], @@ -24487,7 +28779,7 @@ strings['de'] = { "The current moment in time.": [ "Der jetzige Zeitpunkt." ], - "This refund can't be claimed because the wire transfer has already be made.": [ + "This refund can't be claimed because the wire transfer has already been made.": [ "Diese Rückerstattung kann nicht mehr beantragt werden, da die Zahlung des Käufers bereits überwiesen wurde." ], "Contract terms": [ @@ -24526,21 +28818,21 @@ strings['de'] = { "Wire transfer deadline": [ "Überweisungsfrist" ], - "Transfer deadline for the exchange": [ + "Transfer deadline for the payment service": [ "Frist der Überweisung vom Zahlungsdienstleister an das Bankkonto" ], - "Time indicating when the order should be delivered": [ - "Zeitangabe, wann die Bestellung geliefert werden soll" - ], - "Where the order will be delivered": [ - "Zustelladresse der Bestellung" - ], "Auto-refund delay": [ "Zeitliche Verzögerung der automatischen Rückerstattung" ], "How long the wallet should try to get an automatic refund for the purchase": [ "So lange sollte ein Wallet versuchen, eine automatische Rückerstattung auf den Kaufvertrag zu erhalten" ], + "Time indicating when the order should be delivered": [ + "Zeitangabe, wann die Bestellung geliefert werden soll" + ], + "Where the order will be delivered": [ + "Zustelladresse der Bestellung" + ], "Extra info": [ "Weitere Informationen" ], @@ -24583,38 +28875,44 @@ strings['de'] = { "Product list": [ "Artikelliste" ], + "The contract terms have a v1 order without choices_index.": [ + "Die Vertragsbedingungen haben eine Bestellung der Version v1 (ohne choices_index)." + ], + "The contract terms have a v1 order with a bad choices_index.": [ + "Die Vertragsbedingungen haben eine Bestellung der Version v1 (mit einem schlechten choices_index)." + ], "refund missed: %1$s": [ "Nicht verlangte Rückerstattung: %1$s" ], - "refund missed: %1$s: %2$s": [ + "refund missed: %1$s : %2$s": [ "Nicht verlangte Rückerstattung: %1$s: %2$s" ], "refund created: %1$s": [ "Rückerstattung gewährt: %1$s" ], - "refund created: %1$s: %2$s": [ + "refund created: %1$s : %2$s": [ "Rückerstattung gewährt: %1$s: %2$s" ], "refund taken: %1$s": [ "Dem Käufer zugegangene Rückerstattung: %1$s" ], - "refund taken: %1$s: %2$s": [ + "refund taken: %1$s : %2$s": [ "Dem Käufer zugegangene Rückerstattung: %1$s: %2$s" ], - "The contract terms has a v1 order without choices_index.": [ - "Die Vertragsbedingungen haben eine Bestellung der Version v1 (ohne choices_index)." - ], - "The contract terms has a v1 order with a bad choices_index.": [ - "Die Vertragsbedingungen haben eine Bestellung der Version v1 (mit einem schlechten choices_index)." - ], "wired %1$s": [ "überwiesen %1$s" ], "wire deadline": [ "Überweisungszeitpunkt" ], - "Wired": [ - "Überwiesen" + "Related wire transfers": [ + "Überprüfte und bestätigte Überweisungen" + ], + "Unconfirmed": [ + "Bestätigt" + ], + "Confirmed": [ + "Bestätigt" ], "Refund order": [ "Zahlbetrag der Bestellung zurückerstatten" @@ -24622,6 +28920,12 @@ strings['de'] = { "Not refundable": [ "Nicht erstattungsfähig" ], + "No wire transfer reported": [ + "Zeitpunkt der Überweisung" + ], + "Check wire transfers": [ + "Überweisungen" + ], "Next event in": [ "Nächster Event in" ], @@ -24643,8 +28947,8 @@ strings['de'] = { "Refund URI": [ "Rückerstattungs-URI" ], - "Pay at": [ - "Zahlungs-URL" + "Payment link": [ + "Zahlungsfrist" ], "Order status URL": [ "Bestellstatus-URL" @@ -24655,15 +28959,36 @@ strings['de'] = { "Unknown order status. This is an error, please contact the administrator.": [ "Unbekannter Bestellstatus. Dies ist ein Fehler, bitte kontaktieren Sie den Administrator." ], + "Back": [ + "Zurück" + ], + "never": [ + "nie" + ], + "unknown": [ + "unbekannt" + ], + "confirmed": [ + "Bestätigt" + ], + "unconfirmed": [ + "Bestätigt" + ], + "Details": [ + "" + ], "Invalid. Please enter letters and numbers only.": [ "Ungültig. Bitte geben Sie nur Buchstaben und Zahlen ein." ], - "Just letters and numbers from 2 to 7": [ - "Nur Buchstaben und Zahlen von 2 bis 7" + "Use only letters and digits (2–7).": [ + "" ], "The size of the key must be 32 characters": [ "Die Schlüssellänge muss 32 Zeichen betragen" ], + "add otp device": [ + "Kein Gerät" + ], "Internal ID on the system": [ "Interne ID auf dem System" ], @@ -24697,6 +29022,9 @@ strings['de'] = { "You can scan the next QR code with your device or save the key before continuing.": [ "Sie können den nächsten QR-Code mit Ihrem Gerät scannen oder den Schlüssel speichern, bevor Sie fortfahren." ], + "delete otp device": [ + "Das Gerät konnte nicht gelöscht werden" + ], "OTP devices": [ "OTP-Geräte" ], @@ -24706,6 +29034,9 @@ strings['de'] = { "There are no devices to list yet, add more by pressing the + sign": [ "Es gibt noch keine Geräte. Sie können diese mit dem +-Zeichen hinzufügen" ], + "update otp device": [ + "%1$s: OTP-Gerät aktualisieren" + ], "Template id is unknown": [ "Die Vorlagen-ID ist unbekannt" ], @@ -24739,9 +29070,24 @@ strings['de'] = { "In order to verify that you have access.": [ "Um zu überprüfen, ob der Zugang gewährt wird." ], + "New password": [ + "Neues Passwort" + ], + "Next password to be used": [ + "Geben Sie hier ein neues Passwort ein" + ], + "Repeat password": [ + "Passwort wiederholen" + ], + "Confirm the same password": [ + "Bitte geben Sie das Passwort hier wiederholt ein" + ], "Confirm change": [ "Änderung bestätigen" ], + "change password": [ + "Passwort ändern" + ], "Testing password change": [ "Die Passwortänderung wird überprüft" ], @@ -24751,16 +29097,76 @@ strings['de'] = { "The current password is wrong.": [ "Das aktuelle Passwort ist falsch." ], + "change instance password": [ + "Passwort für den Zugang zum Händlerportal." + ], "No enough rights to change the password.": [ "Es bestehen keine ausreichenden Rechte, um das Passwort zu ändern." ], "Account not found.": [ "Das Bankkonto wurde nicht gefunden." ], + "create money pot": [ + "Neues Benutzerkonto erstellen" + ], + "There is already a money pot with the same id.": [ + "Es besteht bereits eine andere Instanz mit diesem Benutzernamen." + ], + "delete money pot": [ + "Wählen Sie ein Konto" + ], + "Money pot deleted": [ + "Bestand gelöscht" + ], + "Add new pots": [ + "Neue Vorlagen hinzufügen" + ], + "Load more pots before the first one": [ + "Mehrere Vorlagen vor der ersten laden" + ], + "Total": [ + "Gesamtpreis" + ], + "Delete selected pots from the database": [ + "Löschen ausgewählter Konten von der Datenbank" + ], + "Load more pots after the last one": [ + "Weitere Artikel nach dem letzten laden" + ], + "There are no money pots yet, add more pressing the + sign": [ + "Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen hinzufügen" + ], "Add element to the list": [ "Ein Element zur Liste hinzufügen" ], - "Click here to configure the product's stock. If left as is, the backend will not control stock.": [ + "Missing currency name": [ + "" + ], + "Currency name must be only letters": [ + "" + ], + "Value can only by number": [ + "" + ], + "The value is too high": [ + "" + ], + "The value is too precise": [ + "Wert auf „nie“ setzen" + ], + "Invalid amount \"%1$s\": %2$s": [ + "Ungültiger Betrag \"%1$s\": %2$s" + ], + "update money pot": [ + "" + ], + "Descripton": [ + "Beschreibung" + ], + "Totals": [ + "Gesamte Artikelmenge" + ], + "Click here to configure the product's stock. If left as is, the server will not control stock.": [ "Klicken Sie hier, um den Lagerbestand des Artikels zu konfigurieren. Falls dieses Programm den Bestand nicht überwachen soll, lassen Sie seine Grundeinstellung unverändert." ], "Manage stock": [ @@ -24775,15 +29181,15 @@ strings['de'] = { "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)": [ "Der Schwund kann nicht den aktuellen Bestand und die Menge der Zulieferung übersteigen (maximal %1$s)" ], + "Current": [ + "Aktuell" + ], "Incoming": [ "Neu zugehend" ], "Lost": [ "Abgehend (z.B. Schwund)" ], - "Current": [ - "Aktuell" - ], "Remove stock control for this product": [ "Bestandskontrolle für diesen Artikel entfernen" ], @@ -24862,6 +29268,9 @@ strings['de'] = { "Search by group name or id": [ "Nach Artikelbeschreibung oder Artikel-ID suchen" ], + "add product": [ + "Gesamte Artikelmenge" + ], "The instance doesn't exist. Maybe it was remove while adding the product.": [ "" ], @@ -24877,6 +29286,9 @@ strings['de'] = { "Add product to inventory": [ "Artikel zum Lagerbestand hinzufügen" ], + "update product": [ + "%1$s: Artikel aktualisieren" + ], "Product not found.": [ "Der Artikel wurde nicht gefunden." ], @@ -24889,6 +29301,12 @@ strings['de'] = { "Sold": [ "Verkauft" ], + "restock at %1$s": [ + "" + ], + "infinite": [ + "Unbegrenzt" + ], "Free": [ "Kostenlos" ], @@ -24931,6 +29349,9 @@ strings['de'] = { "There are no products to list yet, add more by pressing the + sign": [ "Es gibt noch keine Artikel. Sie können diese mit dem +-Zeichen hinzufügen" ], + "delete product": [ + "Artikel löschen" + ], "Product (ID: %1$s) has been deleted": [ "Der Artikel (ID: %1$s) wurde gelöscht" ], @@ -24955,6 +29376,69 @@ strings['de'] = { "Product id:": [ "Artikel-ID:" ], + "It should start with /": [ + "Die Nummer sollte mit + beginnen" + ], + "create scheduled report": [ + "" + ], + "No report generator configured in the server": [ + "Auf dem Server ist kein Berichtsgenerator eingerichtet." + ], + "Contact the system administrator to create a report generator before scheduling one.": [ + "Bitte wenden Sie sich an die Systemadministration, um einen Berichtsgenerator einzurichten, bevor Sie einen Bericht planen." + ], + "Description of the report. Possibly included in the report message": [ + "Beschreibung des Berichts. Wird möglicherweise in der Berichtsnachricht angezeigt." + ], + "Where the report program should send the report": [ + "Wohin das Berichtssystem den Bericht senden soll." + ], + "Source": [ + "Quelle" + ], + "Base URL to request the data from.": [ + "Basis‑URL, von der die Daten abgerufen werden." + ], + "Type of the data source": [ + "Art der Datenquelle" + ], + "Program": [ + "Programm" + ], + "Name of the program to use to transmit the report defined by the server configuration.": [ + "" + ], + "Report frequency": [ + "Berichtshäufigkeit" + ], + "Report frequency shift": [ + "Berichtshäufigkeit" + ], + "delete scheduled report": [ + "Ausgewählte Kategorie aus der Datenbank löschen" + ], + "Scheduled report deleted": [ + "" + ], + "Scheduled reports": [ + "" + ], + "Add new reports": [ + "Neue Vorlagen hinzufügen" + ], + "Frequency": [ + "" + ], + "Delete selected scheduled report from the database": [ + "Ausgewählte Kategorie aus der Datenbank löschen" + ], + "There are no reports yet, add more pressing the + sign": [ + "Es gibt noch keine Kategorien. Sie können diese mit dem +-Zeichen hinzufügen" + ], + "update scheduled report": [ + "" + ], "Your browser does not support the canvas element.": [ "Ihr Browser unterstützt nicht das Canvas-Element." ], @@ -24964,9 +29448,6 @@ strings['de'] = { "Service unavailable": [ "Der Dienst ist nicht verfügbar" ], - "Select date from which to show statistics": [ - "Bitte wählen Sie das Datum, ab dem die Statistik angezeigt werden soll" - ], "Show chart": [ "Diagramm anzeigen" ], @@ -24979,6 +29460,9 @@ strings['de'] = { "Orders table": [ "Tabellarische Übersicht der Bestellungen" ], + "Select date from which to show statistics": [ + "Bitte wählen Sie das Datum, ab dem die Statistik angezeigt werden soll" + ], "Start from (%1$s)": [ "Start von (%1$s)" ], @@ -25063,6 +29547,9 @@ strings['de'] = { "Too short": [ "Zu kurz" ], + "add template": [ + "Neue Vorlagen hinzufügen" + ], "You don't have enough permissions.": [ "Sie haben keine ausreichende Berechtigung." ], @@ -25165,6 +29652,9 @@ strings['de'] = { "There are no templates to list yet, add more by pressing the + sign": [ "Es gibt noch keine Vorlagen. Sie können diese mit dem +-Zeichen hinzufügen" ], + "delete template": [ + "Vorlage löschen" + ], "Jump to template with the given template ID": [ "Zur Vorlage mit der angegebenen Vorlagen-ID springen" ], @@ -25177,7 +29667,7 @@ strings['de'] = { "Delete the template \"%1$s\"": [ "Vorlage \"%1$s\" löschen" ], - "If you delete the template %1$s (ID: %2$s) you may loose information": [ + "If you delete the template %1$s (ID: %2$s) you may lose information": [ "Wenn Sie die Vorlage %1$s (ID: %2$s) löschen, können Information verlorengehen" ], "Deleting a template cannot be undone.": [ @@ -25186,6 +29676,9 @@ strings['de'] = { "Print": [ "Drucken" ], + "update template": [ + "%1$s: Vorlage aktualisieren" + ], "The template configuration needs to be fixed.": [ "Die Detaileinstellung der Vorlage muss korrigiert werden." ], @@ -25207,6 +29700,12 @@ strings['de'] = { "An order summary is required": [ "Eine Zusammenfassung der Bestellung ist erforderlich" ], + "create order from template": [ + "Neue Bestellung aus einer Vorlage erzeugen" + ], + "No active bank accounts configured. At least one bank account must be available to create new orders": [ + "" + ], "No more stock for product with ID \"%1$s\".": [ "Es gibt keinen Bestand für den Artikel mit der ID \"%1$s\"." ], @@ -25216,12 +29715,30 @@ strings['de'] = { "Amount of the order": [ "Summe der Bestellung" ], + "Expiration should be after start date": [ + "" + ], + "Granularity can't be greater than duration.": [ + "Die Menge muss größer als 0 sein!" + ], + "create token family": [ + "Tokenfamilie löschen" + ], + "There is another token family with this ID. Choose another one.": [ + "Es gibt bereits eine Vorlage mit dieser Kennung, bitte wählen Sie eine andere." + ], "Slug": [ "Slug (benutzer- und suchmaschinenfreundlicher Text als Bestandteil einer URL)" ], "Token family slug to use in URLs (for internal use only)": [ "Slug der Token-Familie zur Benutzung in URLs (nur für interne Zwecke)" ], + "User-readable token family name": [ + "Benutzerfreundliche Bezeichnung der Tokenfamilie" + ], + "Token family description for customers": [ + "Tokenfamilien-Beschreibung für Kunden" + ], "Kind": [ "Art" ], @@ -25234,7 +29751,7 @@ strings['de'] = { "The first day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, it cannot be used before this date.": [ + "If set to %1$s, it cannot be used before this date.": [ "" ], "Expiration Date": [ @@ -25243,7 +29760,7 @@ strings['de'] = { "The last day the coupon/subscription can be used.": [ "" ], - " If set to %1$s, they are no longer valid from %2$s.": [ + "If set to %1$s, they are no longer valid from %2$s.": [ "" ], "How long the coupon/subscription remains valid after being activated.": [ @@ -25255,11 +29772,26 @@ strings['de'] = { "Validity Granularity": [ "Rundungsgenauigkeit des Gültigkeitszeitraums" ], - "Rounds the validity to a specific unit of time (like day, hour, minute).": [ + "Rounds the validity to a specific unit of time.": [ "" ], - " If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, not exactly at the same time of day you purchased it.": [ - "" + "1 minute": [ + "Rundung auf eine Minute" + ], + "1 hour": [ + "Stunde" + ], + "1 day": [ + "Rundung auf einen Tag" + ], + "30 days": [ + "Tage" + ], + "90 days": [ + "Tage" + ], + "365 days": [ + "Tage" ], "Token Families": [ "Tokenfamilien" @@ -25279,6 +29811,9 @@ strings['de'] = { "There are no token families yet, add the first one by pressing the + sign.": [ "Es sind noch keine Token-Familien angelegt. Sie können diese mit dem +-Zeichen hinzufügen." ], + "delete token family": [ + "Tokenfamilie löschen" + ], "Token family has been deleted.": [ "Die Tokenfamilie wurde gelöscht." ], @@ -25297,53 +29832,77 @@ strings['de'] = { "can't be undone": [ "Das kann nicht rückgängig gemacht werden" ], + "update token family": [ + "%1$s: Tokenfamilie aktualisieren" + ], "Token Family: %1$s": [ "Tokenfamilie: %1$s" ], - "User-readable token family name": [ - "Benutzerfreundliche Bezeichnung der Tokenfamilie" + "inform wire transfer": [ + "Bestätigen der Überweisung" ], - "Token family description for customers": [ - "Tokenfamilien-Beschreibung für Kunden" + "Wire transfer already confirmed.": [ + "Die Überweisung ist bereits bestätigt." ], - "Incoming wire transfers": [ - "Erwartete Überweisungen" + "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ + "Die Überweisung wurde ausgeführt und sollte in Kürze auf Ihrem Bankkonto eingehen. Mithilfe der unten stehenden Informationen können Sie die Gutschrift manuell überprüfen und bestätigen." ], - "Load more wire transfers preceding the first one": [ - "Weitere Überweisungen vor der ersten laden" + "The wire transfer has been confirmed.": [ + "Die Überweisung ist bereits bestätigt." ], - "Expected credit": [ - "Erwartete Gutschrift" + "Transaction details": [ + "Kontodetails" ], - "Confirmed": [ - "Bestätigt" + "Transfer ID": [ + "Transfer-ID" + ], + "I have received the wire transfer": [ + "Ich habe die Überweisung erhalten" + ], + "Orders in this wire transfer": [ + "Überprüfte und bestätigte Überweisungen" ], - "Validated": [ - "Überprüft (validiert)" + "Fee": [ + "Kostenlos" ], - "Executed on": [ - "Ausführungsdatum" + "Subtotals": [ + "Gesamte Artikelmenge" ], - "yes": [ - "ja" + "Deposit fee": [ + "" ], - "no": [ - "nein" + "Wire fee": [ + "Überweisungen" ], - "never": [ - "nie" + "not ready": [ + "" ], - "unknown": [ - "unbekannt" + "loading...": [ + "Die Daten werden eingelesen..." + ], + "New wire transfers": [ + "Überweisungen" + ], + "Load more wire transfers preceding the first one": [ + "Weitere Überweisungen vor der ersten laden" + ], + "To be determined.": [ + "" + ], + "You confirm that the incoming wire transfer has arrived into your bank account.": [ + "" ], "Load more transfers after the last one": [ "Mehr Überweisungen nach der letzten laden" ], - "Verified wire transfers": [ - "Überprüfte und bestätigte Überweisungen" + "Confirmed wire transfers into bank account": [ + "Bestätigen der Überweisung" + ], + "Show details about the incoming wire transfer.": [ + "Erwartete Überweisungen" ], - "There are no transfers to list yet, add more by pressing the + sign": [ - "Es gibt noch keine Überweisungen anzuzeigen. Sie können diese mit dem +-Zeichen hinzufügen" + "There are no transfers to list yet": [ + "Es gibt noch keine Statistiken anzuzeigen" ], "All accounts": [ "Alle Konten" @@ -25351,32 +29910,11 @@ strings['de'] = { "Filter by account address": [ "Filtern nach Kontoadressen" ], - "Only display transfers that have already been transferred to your bank account by the payment service provider.": [ - "Nur Überweisungen anzeigen, die vom Zahlungsdienst bereits an Ihr Bankkonto überwiesen wurden." - ], - "Only show wire transfers confirmed by the merchant": [ - "Nur Überweisungen anzeigen, die vom Verkäufer als auf dem Bankkonto eingegangen bestätigt sind" - ], "Verified": [ "Verifizierte (bestätigte) Überweisungen" ], - "Wire transfer already confirmed.": [ - "Die Überweisung ist bereits bestätigt." - ], - "I have received the wire transfer": [ - "Ich habe die Überweisung erhalten" - ], - "Confirm the wire transfer": [ - "Bestätigen der Überweisung" - ], - "The wire transfer has been sent and should be in your bank account in any time. You can manually confirm the reception using the information below.": [ - "Die Überweisung wurde ausgeführt und sollte in Kürze auf Ihrem Bankkonto eingehen. Mithilfe der unten stehenden Informationen können Sie die Gutschrift manuell überprüfen und bestätigen." - ], - "Time": [ - "Zeit" - ], - "Transfer ID": [ - "Transfer-ID" + "A wire transfer is verified if match the amount of all orders being settled.": [ + "" ], "It's not the same.": [ "Dies stimmt nicht überein." @@ -25384,24 +29922,51 @@ strings['de'] = { "You are deleting the instance with ID \"%1$s\"": [ "Sie löschen nun die Instanz mit der ID \"%1$s\"" ], + "delete current instance": [ + "Löschung dieser Instanz" + ], "Instance": [ "Instanz" ], "Write the instance name to confirm the deletion": [ "Schreiben Sie den Namen der Instanz hier hinein, um die Löschung zu bestätigen" ], - "Purge": [ - "Vollständig verwerfen" - ], "All the data will be fully deleted, otherwise only the access will be removed.": [ "Alle Daten werden vollständig gelöscht, andernfalls wird nur der Zugang entfernt." ], "DELETE": [ "LÖSCHEN" ], + "Doesn't have the pattern of an email": [ + "Dies entspricht keiner gültigen E-Mailadresse" + ], + "Should start with +": [ + "Die Nummer sollte mit + beginnen" + ], + "A phone number consists of numbers only": [ + "Eine Telefonnummer besteht nur aus Ziffern" + ], + "Invalid phone number": [ + "Telefonnummer für allgemeinen Kontakt" + ], + "Invalid value": [ + "Ungültiger Wert" + ], + "Max 7 lines": [ + "Höchstens 7 Zeilen" + ], + "update instance settings": [ + "Anzeige der Einstellungen zu Instanzen ausweiten" + ], "Instance id": [ "Instanz-ID" ], + "URL": [ + "URL" + ], + "Cancel operation": [ + "Vorgang bestätigen" + ], "Delete this instance": [ "Löschung dieser Instanz" ], @@ -25411,6 +29976,9 @@ strings['de'] = { "URL is invalid": [ "URL ist ungültig" ], + "add webhook": [ + "Neue Webhooks hinzufügen" + ], "Webhook ID to use": [ "zu verwendende Webhook-ID" ], @@ -25462,9 +30030,6 @@ strings['de'] = { "Method used by the webhook": [ "Methode, die der Webhook verwendet" ], - "URL": [ - "URL" - ], "URL of the webhook where the customer will be redirected": [ "URL des Webhooks, zu der die Käufer nach der Bezahlung weitergeleitet werden" ], @@ -25507,6 +30072,9 @@ strings['de'] = { "Body template used by the webhook.": [ "Vorlage für den Webhook-Body." ], + "delete webhook": [ + "Webhook konnte nicht gelöscht werden" + ], "Webhook deleted successfully": [ "Webhook wurde erfolgreich gelöscht" ], @@ -25528,6 +30096,9 @@ strings['de'] = { "There are no webhooks to list yet, add more by pressing the + sign": [ "Es gibt noch keine Webhooks. Sie können diese mit dem +-Zeichen hinzufügen" ], + "update webhook": [ + "%1$s: Webhook aktualisieren" + ], "Webhook updated": [ "Webhook aktualisiert" ], @@ -25540,6 +30111,12 @@ strings['de'] = { "Body template used by the webhook": [ "Vorlage, die für den Webhook-Body verwendet wird" ], + "Doesn't match": [ + "Dies stimmt nicht überein" + ], + "self provision instance": [ + "Erstellen Sie Ihr eigenes Konto im Taler-Händlerportal" + ], "There is another instance with this username.": [ "Es besteht bereits eine andere Instanz mit diesem Benutzernamen." ], @@ -25567,6 +30144,9 @@ strings['de'] = { "Create": [ "Anlegen" ], + "reset password for self provision": [ + "" + ], "The instance is not properly configured to allow MFA.": [ "" ], @@ -25576,12 +30156,12 @@ strings['de'] = { "Resetting access to the instance \"%1$s\"": [ "Zurücksetzen des Zugangs zur Instanz \"%1$s\"" ], - "Reset": [ - "Zurücksetzen" - ], "Language": [ "Sprache" ], + "Force the language settings instead of using the browser": [ + "" + ], "Date format": [ "Datumsformat" ], @@ -25591,15 +30171,15 @@ strings['de'] = { "Merchant type": [ "Merchant-Typus" ], - "Simplify UI based on the user usage.": [ + "Simplify the UI based on use case.": [ "Passen Sie hier den Komplexitätsgrad der Benutzeroberfläche für verschiedene Benutzer an." ], + "Beta tester": [ + "" + ], "Expert user": [ "Erfahrener Benutzer (expert user)" ], - "Taler developer": [ - "Entwickler (Taler developer)" - ], "Unattended in-person offline vending": [ "Personalloser Verkauf, z.B. Hofläden mit Vertrauenskassen (Unattended in-person offline vending)" ], @@ -25612,230 +30192,275 @@ strings['de'] = { "E-commerce site": [ "Onlineshops (E-commerce site)" ], - "Developer mode": [ + "Developer tools": [ "Entwicklermodus" ], - "Only use developer mode if you know how the application works. Some features enabled in this mode are still under testing.": [ + "Enable UI tools for troubleshooting.": [ + "" + ], + "Testing features": [ + "" + ], + "Only use beta-tester mode if you know how the application works. Features enabled in this mode requires more work.": [ "Verwenden Sie den Entwicklermodus nur, wenn Sie wissen, wie die Anwendung funktioniert. Einige der in diesem Modus aktivierten Funktionen befinden sich noch in der Testphase." ], - "Money pot deleted": [ - "Bestand gelöscht" + "Developer mode": [ + "Entwicklermodus" ], - "Add new pots": [ - "Neue Vorlagen hinzufügen" + "Only use developer mode if you know what you are doing. Tools enabled in this mode are intended to fix problems or get more information about the runtime. YOU MAY LOSE DATA.": [ + "" ], - "Load more pots before the first one": [ - "Mehrere Vorlagen vor der ersten laden" + "create pos access token": [ + "Zugangstoken erzeugen" ], - "Total": [ - "Gesamtpreis" + "Device name": [ + "Geräteschlüssel (Device key)" + ], + "Scan this QR with the Taler POS app.": [ + "" + ], + "Payment services status": [ + "Unterstützte Währungen" + ], + "Base URL": [ + "Status-URL" + ], + "Next update": [ + "Der Bestand wurde aktualisiert" + ], + "This payment service is ready to be used.": [ + "Diese Änderung wurde ohne bisher bekannte Daten durchgeführt." + ], + "This payment service can't be used due to an error. Contact the service provider.": [ + "Diese Überweisung wurde vom Zahlungsdienst gemeldet." + ], + "Details of the status": [ + "" + ], + "No payment services supported": [ + "Es sind keine Schlüssel des Exchange vorhanden" + ], + "Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.": [ + "" ], - "Delete selected pots from the database": [ - "Löschen ausgewählter Konten von der Datenbank" + "Ready until %1$s": [ + "Frist bis %1$s" ], - "Load more pots after the last one": [ - "Weitere Artikel nach dem letzten laden" + "Next update will be at %1$s": [ + "Ende der Gültigkeit %1$s" ], - "There are no money pots yet, add more pressing the + sign": [ - "Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen hinzufügen" + "Error": [ + "Fehler" ], - "Missing currency name": [ - "" + "This payment service is unavailable.": [ + "Der Dienst ist nicht verfügbar" ], - "Currency name must be only letters": [ + "Last HTTP status was %1$s: %2$s (#%3$s )": [ "" ], - "Value can only by number": [ - "" + "Welcome!": [ + "Willkommen!" ], - "The value is too high": [ - "" + "The application is in an unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ + "Die Anwendung befindet sich in einem unerwarteten Betriebszustand. Bitte seien Sie so nett und melden das Problem den Entwicklern unter %1$s" ], - "The value is too precise": [ - "Wert auf „nie“ setzen" + "You need to associate a bank account to receive revenue.": [ + "Sie müssen ein Bankkonto verknüpfen, um Einnahmen aus Überweisungen auf dieses Konto zu erhalten." ], - "Invalid amount \"%1$s\": %2$s": [ - "Ungültiger Betrag \"%1$s\": %2$s" + "Without this the server will refuse to create new orders.": [ + "Ohne dies wird Taler Merchant Backend keine neuen Bestellungen erzeugen." ], - "Descripton": [ - "Beschreibung" + "Hide for today": [ + "Für heute nicht anzeigen" ], - "Totals": [ - "Gesamte Artikelmenge" + "KYC verification needed": [ + "Eine KYC-Überprüfung ist notwendig (Know-Your-Customer)" ], - "There is already a money pot with the same id.": [ - "Es besteht bereits eine andere Instanz mit diesem Benutzernamen." + "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ + "Einige Überweisungen werden bis zum Abschluss des KYC-Prozesses zurückgehalten. Bitte gehen Sie zum KYC-Status im Hauptmenü links für weitere Informationen." ], - "Product group deleted": [ - "Artikelliste" + "No 'admin' instance configured yet.": [ + "Es wurde noch keine Instanz 'admin' konfiguriert." ], - "Add new group": [ - "Neues Konto hinzufügen" + "Create an 'admin' instance to begin using the merchant portal.": [ + "Erstellen Sie eine Instanz 'admin', um Merchant Backoffice erstmalig zu verwenden." ], - "Load more groups before the first one": [ - "Mehr Webhooks vor dem ersten laden" + "delete bank account": [ + "Wählen Sie ein Konto" ], - "Delete selected group from the database": [ - "Löschen ausgewählter Konten von der Datenbank" + "The bank account has been deleted.": [ + "Die Verknüpfung mit dem Bankkonto wurde erfolgreich gelöscht." ], - "Load more groups after the last one": [ - "Weitere Artikel nach dem letzten laden" + "Delete account": [ + "Wählen Sie ein Konto" ], - "There are no product groups yet, add more pressing the + sign": [ - "Es gibt noch keine Artikel. Sie können diese mit dem +-Zeichen hinzufügen" + "Delete the account \"%1$s\"": [ + "Artikel \"%1$s\" löschen" ], - "Scheduled report deleted": [ + "Invalid payto: \"%1$s\"": [ "" ], - "Scheduled reports": [ - "" + "If you delete the account with name %1$s its information will be lost": [ + "Wenn Sie das Konto mit der Bezeichnung %1$s löschen, gehen alle zugehörigen Informationen verloren" ], - "Add new reports": [ - "Neue Vorlagen hinzufügen" + "Deleting an account can't be undone.": [ + "Das Löschen eines Zugangstoken kann nicht rückgängig gemacht werden." ], - "Frequency": [ - "" + "Bank accounts": [ + "Bankkonten" ], - "Delete selected scheduled report from the database": [ - "Ausgewählte Kategorie aus der Datenbank löschen" + "Add new account": [ + "Neues Konto hinzufügen" ], - "There are no reports yet, add more pressing the + sign": [ - "Es gibt noch keine Kategorien. Sie können diese mit dem +-Zeichen hinzufügen" + "Owner's name": [ + "Name des Kontoinhabers" ], - "No report generator configured in the server": [ - "Auf dem Server ist kein Berichtsgenerator eingerichtet." + "Delete selected accounts from the database": [ + "Löschen ausgewählter Konten von der Datenbank" ], - "Contact the system administrator to create a report generator before scheduling one.": [ - "Bitte wenden Sie sich an die Systemadministration, um einen Berichtsgenerator einzurichten, bevor Sie einen Bericht planen." + "There are no accounts yet, add more pressing the + sign": [ + "Es sind noch keine Konten angelegt, Sie können diese mit dem +-Zeichen hinzufügen" ], - "Description of the report. Possibly included in the report message": [ - "Beschreibung des Berichts. Wird möglicherweise in der Berichtsnachricht angezeigt." + "No bank account configured yet.": [ + "Es wurde noch keine Instanz 'admin' konfiguriert." ], - "Where the report program should send the report": [ - "Wohin das Berichtssystem den Bericht senden soll." + "Without this information you cannot create new payment orders.": [ + "Ohne diese Informationen können Sie keine neuen Zahlungsabwicklungen erstellen, die an ein Bankkonto überwiesen werden." ], - "Source": [ - "Quelle" + "This account is not ready to be used.": [ + "Dieses Konto ist nicht zulässig." ], - "Base URL to request the data from.": [ - "Basis‑URL, von der die Daten abgerufen werden." + "There are pending actions related to KYC.": [ + "Es befinden sich keine Artikel in dieser Kategorie." ], - "Type of the data source": [ - "Art der Datenquelle" + "More details.": [ + "Zahlungsdetails" ], - "Program": [ - "Programm" + "You must complete kyc requirements to receive payments.": [ + "Sie müssen ein Bankkonto verknüpfen, um Einnahmen an dieses Konto zu überweisen." ], - "Merchant backend configuration section specifying the program to use to transmit the report": [ - "Konfiguration im Merchant‑Backend, die festlegt, welches Programm zum Versenden des Berichts verwendet wird." + "The extra data should be between 1 and 40 characters of letters, numbers, dot, dash and colon.": [ + "" ], - "Report frequency": [ - "Berichtshäufigkeit" + "Invalid url": [ + "ungültige URL" ], - "Welcome!": [ - "Willkommen!" + "URL must end with a '/'": [ + "Die URL muss mit '/' enden" ], - "The application is in a unexpected state and can't recover from here. You can report the problem to the developers at %1$s": [ - "Die Anwendung befindet sich in einem unerwarteten Betriebszustand. Bitte seien Sie so nett und melden das Problem den Entwicklern unter %1$s" + "URL must not contain params": [ + "Die URL darf keine Parameter enthalten" ], - "You need to associate a bank account to receive revenue.": [ - "Sie müssen ein Bankkonto verknüpfen, um Einnahmen aus Überweisungen auf dieses Konto zu erhalten." + "URL must not hash param": [ + "Die URL darf keinen Hash-Parameter enthalten" ], - "Without this the merchant backend will refuse to create new orders.": [ - "Ohne dies wird Taler Merchant Backend keine neuen Bestellungen erzeugen." + "change bank account": [ + "Bankkonto" ], - "Hide for today": [ - "Für heute nicht anzeigen" + "test revenue api": [ + "Nächster Event in" ], - "KYC verification needed": [ - "Eine KYC-Überprüfung ist notwendig (Know-Your-Customer)" + "Server replied with \"bad request\".": [ + "Der Server antwortete mit \"bad request\"." ], - "Some transfers are on hold until the KYC process is completed. Visit the KYC section in the left-hand menu for more information.": [ - "Einige Überweisungen werden bis zum Abschluss des KYC-Prozesses zurückgehalten. Bitte gehen Sie zum KYC-Status im Hauptmenü links für weitere Informationen." + "Unauthorized, check credentials.": [ + "Unzulässiger Vorgang, bitte die Zugangsdaten (Token, Anmeldename, Passwort) überprüfen." ], - "The request reached a timeout, check your connection.": [ - "Die Anfrage hat ihr Zeitlimit erreicht, überprüfen Sie bitte Ihre Internetverbindung." + "The endpoint does not seem to be a Taler Revenue API.": [ + "Die Gegenstelle scheint keine Taler-Einzahlungsschnittstelle (Taler Revenue API) zu sein." ], - "The request was cancelled.": [ - "Die Anfrage wurde abgebrochen." + "The request was made correctly, but the bank's server did not respond with the appropriate value for 'credit_account', so we cannot confirm that it is the same bank account.": [ + "Die Anfrage war richtig gestellt, doch der Server der Bank antwortete nicht mit dem passenden Wert (für 'credit_account'), so dass wir nicht bestätigen können, dass es sich um dasselbe Bankkonto handelt." ], - "Too many requests were made to the server, and this action was throttled.": [ - "Es wurden gleichzeitig zu viele Anfragen an denselben Server gestellt, daher ist diese Aktion gedrosselt worden." + "Unsupported type of account": [ + "Nicht unterstützter Kontotyp" ], - "The server's response was malformed.": [ - "Die Antwort des Servers auf die Anfrage war fehlerhaft." + "Account:": [ + "Konto:" ], - "Could not complete the request due to a network problem.": [ - "Die Anfrage konnte aufgrund eines Netzwerkproblems nicht abgeschlossen werden." + "Account details": [ + "Kontodetails" ], - "Unexpected request error.": [ - "Unerwarteter Fehler bei der Anfrage." + "Extra subject": [ + "Buchungsvermerk" ], - "Unexpected error.": [ - "Unerwarteter Fehler." + "Additional text to include in the wire transfer subject when settling the payment": [ + "" ], - "Add new instance": [ - "Neue Instanz hinzufügen" + "If the bank supports Taler Revenue API then you can add the endpoint URL below to keep the revenue information in sync.": [ + "Wenn die kontoführende Bank die Schnittstelle Taler Revenue API unterstützt, können Sie die untenstehende Gegenstelle (endpoint URL) hinzufügen, um die Umsatzinformationen zwischen dem Backend und dem Bankkonto zu synchronisieren." ], - "Edit": [ - "Bearbeiten" + "Endpoint URL": [ + "Gegenstelle (endpoint URL)" ], - "Change password": [ - "Passwort ändern" + "From where the merchant can download information about incoming wire transfers to this account": [ + "Informationsquelle zu eingehenden Überweisungen auf dieses Bankkonto" ], - "There are no instances yet. Add one by pressing the '+' sign.": [ - "Es gibt noch keine Instanzen. Sie können diese mit dem +-Zeichen hinzufügen." + "Auth type": [ + "Authentifizierungsmethode" ], - "Instance \"%1$s\" (ID: %2$s) has been deleted.": [ - "Instanz \"%1$s\" (ID: %2$s) wurde gelöscht." + "Choose the authentication type for the account info URL": [ + "Wählen Sie die Authentifizierungsmethode zum Zugriff auf das Bankkonto, um die eingegangenen Überweisungen abzufragen" ], - "Only show active instances": [ - "Zeige nur aktive Instanzen" + "Without authentication": [ + "Ohne Authentifizierung" ], - "Active": [ - "Aktiv" + "With username and password": [ + "Mit Benutzername und Passwort" ], - "Only show deleted instances": [ - "Zeige nur gelöschte Instanzen" + "With token": [ + "Mit Zugangstoken" ], - "Deleted": [ - "Gelöscht" + "Do not change": [ + "Lassen Sie dies unverändert" ], - "Show all instances": [ - "Zeige alle Instanzen" + "Username to access the account information.": [ + "Benutzername für den Zugriff auf die Kontoinformationen." ], - "Delete instance": [ - "Instanz löschen" + "Password to access the account information.": [ + "Passwort für den Zugriff auf die Kontoinformationen." ], - "Delete the instance \"%1$s\"": [ - "Instanz \"%1$s\" löschen" + "Access token to access the account information.": [ + "Zugangstoken für den Zugriff auf die Kontoinformationen." ], - "If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be able to process orders and refunds": [ - "Wenn Sie die Instanz mit der Bezeichnung %1$s (ID: %2$s) löschen, wird sie keine weiteren Bestellungen oder Rückerstattungen bearbeiten können" + "Match": [ + "Übereinstimmung" ], - "This action deletes the instance's private key, but preserves all transaction data. You can still access the transaction data after having deleted the instance.": [ - "Dieser Vorgang löscht den privaten Schlüssel der Instanz, lässt jedoch alle Transaktionsdaten unberührt. Sie können daher auch weiterhin nach der Löschung der Instanz auf diese Daten zugreifen." + "Check where the information match against the server info.": [ + "Prüfung der Übereinstimmung dieser Information und der Daten auf dem Server." ], - "Deleting an instance %1$s": [ - "Löschung der Instanz %1$s" + "Compare info from server with account form": [ + "Vergleich der Information des Servers mit den Bankkonto-Formulardaten" ], - "This cannot be undone!": [ - "Das kann nicht rückgängig gemacht werden!" + "parse revenue payto": [ + "" ], - "Purge the instance": [ - "Instanz löschen" + "add bank account": [ + "Bankkonto" ], - "Purge the instance \"%1$s\"": [ - "Instanz \"%1$s\" wird endgültig verworfen" + "The instance does not exist.": [ + "Die Instanz existiert nicht" ], - "If you purge the instance named %1$s (ID: %2$s), you will also delete all of its transaction data!": [ - "Falls Sie die Instanz %1$s (ID: %2$s) vollständig verwerfen, löschen Sie damit auch unwiderruflich alle Transaktionsdaten!" + "The bank account already exist but with different information. Is the name of the account holder correct?": [ + "" ], - "The instance will disappear from your list and you will no longer be able to access its data.": [ - "Die Instanz wird von Ihrer Liste gestrichen und alle ihre Daten werden nicht mehr zugänglich sein." + "Server didn't like the request we made.": [ + "Der Server war mit unserer Anfrage nicht einverstanden." ], - "Purging an instance %1$s": [ - "Die Instanz %1$s wird endgültig verworfen" + "Check if the information matches the server info.": [ + "Bitte prüfen Sie, ob die Information und die Daten auf dem Server übereinstimmen." + ], + "Verify details with server": [ + "" + ], + "create instance and login": [ + "Instanz löschen" + ], + "Instance created": [ + "Die Instanz wurde angelegt" + ], + "Please complete the marked fields and choose authorization method": [ + "Sie müssen die gekennzeichneten Felder ausfüllen und eine Methode der Berechtigungsprüfung wählen" ], "checking compatibility with server...": [ "Prüfe Kompatibilität mit dem Server..." @@ -25852,6 +30477,9 @@ strings['de'] = { "Business Name": [ "Firmenname" ], + "update product group": [ + "Artikel" + ], "Available statistics": [ "Verfügbare Statistiken" ], @@ -25945,6 +30573,9 @@ strings['de'] = { "title\u0004%1$s: New access token": [ "%1$s: Neuer Zugangstoken" ], + "title\u0004%1$s: New POS access token": [ + "%1$s: Neuer Zugangstoken" + ], "title\u0004New instance": [ "Neue Instanz" ], @@ -25956,6 +30587,6 @@ strings['de'] = { "domain": "messages", "plural_forms": "nplurals=2; plural=n != 1;", "lang": "de", - "completeness": 96 + "completeness": 93 }; diff --git a/packages/merchant-backoffice-ui/src/i18n/sv.po b/packages/merchant-backoffice-ui/src/i18n/sv.po @@ -29,55 +29,55 @@ msgstr "" "X-Generator: Weblate 5.5.5\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, fuzzy, c-format msgid "Cancel" msgstr "Avbryt" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "%1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "Bekräfta" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 #, c-format -msgid "Correct form" +msgid "Correct the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -85,103 +85,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, c-format msgid "Account ID" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -190,13 +190,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, c-format +msgid "Bank app" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -204,19 +218,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -224,31 +238,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -256,39 +270,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" +"the PayTo URI below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "" @@ -317,74 +323,80 @@ msgstr "" msgid "seconds" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, c-format -msgid "Change value to empty" +msgid "Change the value to empty" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "" @@ -444,49 +456,49 @@ msgid "Additional address lines" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, c-format msgid "Product groups" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -498,91 +510,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, c-format +msgid "KYC Status" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, c-format +msgid "Payment services" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, c-format +msgid "Select one..." +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, c-format +msgid "Hours" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, c-format +msgid "Minutes" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, c-format +msgid "Seconds" +msgstr "" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -590,163 +644,174 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, c-format msgid "Payment delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, c-format msgid "Refund delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 #, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -754,1576 +819,1794 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 #, c-format -msgid "Expired" +msgid "Can't paste this content. Please copy the 8 digits again." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 -#, c-format -msgid "Required" -msgstr "Obligatoriskt" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 #, c-format -msgid "Unauthorized" +msgid "Resend code possible in %1$s seconds." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 #, c-format -msgid "The code is not correct." +msgid "Resend code possible in less than one minute." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 #, c-format -msgid "The challenge is not known anymore." +msgid "Resend code possible in less than 5 minutes." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 #, c-format -msgid "Too many attempts trying to solve the challenge." +msgid "Resend will be possible after %1$s" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format -msgid "Validation code sent." +msgid "Expired" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" -msgstr "" +msgid "Required" +msgstr "Obligatoriskt" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "verify code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format -msgid "Verification code" +msgid "Unauthorized" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format -msgid "It will expire at %1$s" +msgid "The code is not correct." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format -msgid "Back" +msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 #, c-format -msgid "Verify" +msgid "send challenge" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format msgid "Failed to send the verification code." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The server is not aware of the specified MFA challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format msgid "It is too early to request another transmission of the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Multi-factor authentication required." +msgid "Validation code sent." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, c-format -msgid "You need to complete all of this requirements." +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "An email to the address starting with %1$s" +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "Verification code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, c-format -msgid "I have a code" +msgid "Code expired." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Send me a message" +msgid "Didn't received the code?" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "Logged in" +msgid "Resend" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "Not found" +msgid "Verify" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "Login required" +msgid "The code transmission failed." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "Instance name." +msgid "The challenge is already solved." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "Instance password." +msgid "Multi-factor authentication required." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "Forgot password" +msgid "You must complete all of these requirements." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "Create new account" +msgid "You need to complete at least one of this requirements." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Invalid" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Doesn't have the pattern of an email" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "Should start with +" +msgid "Complete" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "A phone number consists of numbers only" +msgid "This is not a valid Bitcoin address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Invalid value" +msgid "This is not a valid Ethereum address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Max 7 lines" +msgid "This is not a valid host." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Doesn't match" +msgid "IBANs usually have more than 4 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Instance created" +msgid "IBANs usually have fewer than 34 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Unauthorized." +msgid "The IBAN's country code could not be retrieved." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 -#, fuzzy, c-format -msgid "Conflict." -msgstr "Bekräfta" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Not found." +msgid "The IBAN is invalid because the checksum is wrong." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "New password" +msgid "This account is not allowed." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "Next password to be used" +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Repeat password" +msgid "Wire method" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Confirm the same password" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "Select a wire method..." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Confirm operation" +msgid "Routing" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "Check the password." +msgid "Routing number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Instance not found." +msgid "Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, c-format -msgid "Description" +msgid "Account number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." +msgid "Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "Duration" +msgid "Business Identifier Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 -#, c-format -msgid "Time the access token will be valid." +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#, c-format +msgid "International Bank Account Number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "Refreshable access tokens can pose a security risk!" +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." +msgid "Unified Payment Interface" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "Scope" +msgid "Bitcoin protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "Ethereum protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "Allows all operations without limit." +msgid "Interledger protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Allows all operations to read information." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." +msgid "cyclos account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "Name of the account holder" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." +msgid "Legal name of the person holding the account." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +"Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "All (refreshable)" +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "Spa" +msgid "Unexpected request error, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Spa (refreshable)" +msgid "Unexpected error." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Choose one" +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "Read only" +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 #, c-format -msgid "All" +msgid "Wrong password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 #, c-format -msgid "Order simple" +msgid "The account doesn't exist." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Order Point-of-Sale" +msgid "Login required" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "Order management" +msgid "Instance name." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "Order full" +msgid "Instance password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Read only (refreshable)" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "Order simple (refreshable)" +msgid "Create new account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: Settings" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: New bank account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, c-format -msgid "Current password" +msgctxt "title" +msgid "%1$s: Bank accounts" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Please complete the marked fields" +msgctxt "title" +msgid "%1$s: Update bank Account" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Access token created" +msgctxt "title" +msgid "%1$s: Orders" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: Update product" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "No 'admin' instance configured yet." +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "Create access token" +msgctxt "title" +msgid "%1$s: Update category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Load more devices before the first one" +msgctxt "title" +msgid "%1$s: Wire transfers" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Load first page" +msgctxt "title" +msgid "%1$s: Webhooks" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Created at" +msgctxt "title" +msgid "%1$s: New webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Expires at" +msgctxt "title" +msgid "%1$s: Update webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Never" +msgctxt "title" +msgid "%1$s: OTP devices" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Remove this access token" +msgctxt "title" +msgid "%1$s: New OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Delete" +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "Load more devices after the last one" +msgctxt "title" +msgid "%1$s: New template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Load next page" +msgctxt "title" +msgid "%1$s: Update template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "%1$s: Templates" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "Forbidden." +msgctxt "title" +msgid "%1$s: Use template" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Delete access token" +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Deleting an access token cannot be undone." +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "This is not a valid Bitcoin address." +msgctxt "title" +msgid "%1$s: New token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, c-format -msgid "This is not a valid Ethereum address." +msgctxt "title" +msgid "%1$s: Update token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, c-format -msgid "This is not a valid host." +msgctxt "title" +msgid "%1$s: Access tokens" msgstr "" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, c-format -msgid "IBANs usually have more than 4 digits." +msgctxt "title" +msgid "%1$s: New access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 #, c-format -msgid "IBANs usually have fewer than 34 digits." +msgctxt "title" +msgid "%1$s: New POS access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "The IBAN's country code could not be retrieved." +msgctxt "title" +msgid "New instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." +msgctxt "title" +msgid "Instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "This account is not allowed." +msgid "Testing environment" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 #, c-format -msgid "Wire method" +msgid "Delete" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, c-format +msgid "Add new instance" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 +#, c-format +msgid "ID" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 +#, c-format +msgid "Name" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 +#, c-format +msgid "Edit" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 +#, c-format +msgid "Change password" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 +#, c-format +msgid "Purge" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 +#, c-format +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, c-format +msgid "delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 +#, c-format +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 +#, c-format +msgid "Unauthorized." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 +#, c-format +msgid "Not found." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 +#, fuzzy, c-format +msgid "Conflict." +msgstr "Bekräfta" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 +#, c-format +msgid "Only show active instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#, c-format +msgid "Active" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, c-format +msgid "Only show deleted instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, c-format +msgid "Deleted" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 +#, c-format +msgid "Show all instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 +#, c-format +msgid "All" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 +#, c-format +msgid "Delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 +#, c-format +msgid "Delete the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Select a wire method..." +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 #, c-format -msgid "Routing" +msgid "Deleting an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 #, c-format -msgid "Routing number" +msgid "This cannot be undone!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 #, c-format -msgid "Account" +msgid "Purge the instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 #, c-format -msgid "Account number" +msgid "Purge the instance \"%1$s\"" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format -msgid "Code" +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "Business Identifier Code" +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, c-format -msgid "International Bank Account Number" +msgid "Purging an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "create access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "Unified Payment Interface" +msgid "Check the password." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "Bitcoin protocol" +msgid "Instance not found." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Ethereum protocol" +msgid "Description" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Interledger protocol" +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "Duration" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, c-format -msgid "Cyclos host" +msgid "Time the access token will be valid." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "cyclos account" +msgid "Refreshable access tokens can pose a security risk!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format -msgid "Name of the account holder" +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "John Doe" +msgid "Scope" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "Legal name of the person holding the account." +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "Invalid url" +msgid "Allows all operations without limit." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "URL must end with a '/'" +msgid "Allows all operations to read information." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "URL must not contain params" +msgid "Allows the creation of orders and checking of payment status." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "URL must not hash param" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 -#, fuzzy, c-format -msgid "Conflict" -msgstr "Bekräfta" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#, c-format +msgid "Allows the creation of orders, checking of payment status and refunds." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format -msgid "Server replied with \"bad request\"." +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Unauthorized, check credentials." +msgid "" +"Allows all operations to read information with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 +#, c-format +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 +#, c-format +msgid "All (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#, c-format +msgid "Spa" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 +#, c-format +msgid "Spa (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "Unsupported type of account" +msgid "Choose one" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "Account:" +msgid "Read only" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +msgid "Order simple" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "Endpoint URL" +msgid "Order Point-of-Sale" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +msgid "Order management" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "Auth type" +msgid "Order full" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "Read only (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Without authentication" +msgid "Order simple (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "With username and password" +msgid "Order Point-of-Sale (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "With token" +msgid "Order management (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "Do not change" +msgid "Order full (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Username to access the account information." +msgid "Current password" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Password to access the account information." +msgid "Please complete the marked fields" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Access token to access the account information." +msgid "Confirm operation" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Match" +msgid "Access token created" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Check where the information match against the server info." +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Compare info from server with account form" +msgid "Token" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Test" +msgid "This token will never expire" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Server didn't like the request we made." +msgid "This token will be available until %1$s" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, c-format -msgid "Account details" +msgid "Create access token" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Check if the information matches the server info." +msgid "Load more devices before the first one" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "The bank account has been deleted." +msgid "Load first page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "Delete account" +msgid "Created at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 #, c-format -msgid "Delete the account \"%1$s\"" +msgid "Expires at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Never" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "Remove this access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "Deleting an account can't be undone." +msgid "Load more devices after the last one" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Bank accounts" +msgid "Load next page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Add new account" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, c-format -msgid "Owner's name" +msgid "delete access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Delete selected accounts from the database" +msgid "Forbidden." msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "New point-of-sale access" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "You must provide a bank account to receive payments." +msgid "Delete access token" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Deleting an access token cannot be undone." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 #, c-format -msgid "Name" +msgid "add category" +msgstr "" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 +#, c-format +msgid "Not found" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 #, c-format -msgid "Category deleted" +msgid "delete category" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format -msgid "Add new devices" +msgid "Category deleted" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format -msgid "ID" +msgid "Add new devices" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, c-format +msgid "update category" +msgstr "" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 #, c-format -msgid "Account's KYC status" +msgid "create product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 #, c-format -msgid "Exchange" +msgid "delete product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 #, c-format -msgid "Status" +msgid "Product group deleted" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 #, c-format -msgid "Ok" +msgid "Add new group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 -#, fuzzy, c-format -msgid "Action required" -msgstr "Obligatoriskt" +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, c-format +msgid "Load more groups before the first one" +msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Warning" +msgid "Delete selected group from the database" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 #, c-format -msgid "Error" +msgid "Load more groups after the last one" +msgstr "" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#, c-format +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 +#, c-format +msgid "Account's KYC status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 +#, c-format +msgid "Exchange" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 +#, c-format +msgid "Status" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 +#, c-format +msgid "Ok" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "The account for wire transfers is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" +msgid "No contact with the payment service yet." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 #, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +msgid "The server is still synchronizing with the payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment " "service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2331,9 +2614,15 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" +msgid "Change value to never" msgstr "" #. screenid: 12 @@ -2343,7 +2632,7 @@ msgid "Enter description or id" msgstr "" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "" @@ -2357,11 +2646,11 @@ msgstr "" #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 #, c-format -msgid "Quantity must be greater than 0!" +msgid "Quantity must be greater than zero." msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2369,49 +2658,55 @@ msgid "" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, c-format +msgid "Add it to the order" +msgstr "" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" +msgid "Invalid" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2419,7 +2714,7 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2427,297 +2722,309 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 #, c-format -msgid "is not a valid URL" +msgid "Invalid URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 +#, c-format +msgid "create order" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, fuzzy, c-format +msgid "Conflict" +msgstr "Bekräfta" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 #, c-format -msgid "%1$s products with a total price of %2$s." +msgid "%1$s products with a total price of %2$s ." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2726,19 +3033,19 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2746,27 +3053,27 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2774,13 +3081,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2788,13 +3095,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2802,13 +3109,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2816,115 +3123,121 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 +#, c-format +msgid "Custom field name" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 #, c-format -msgid "Custom field name" +msgid "new extra field" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 #, c-format -msgid "Select date to show nearby orders" +msgid "get product details" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -2932,628 +3245,747 @@ msgid "" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 #, c-format -msgid "Jump to date (%1$s)" +msgid "authorize refund" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, c-format +msgid "This order is not refundable" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " "service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, c-format -msgid "Transfer deadline for the exchange" +msgid "Transfer deadline for the payment service" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format -msgid "Time indicating when the order should be delivered" +msgid "Auto-refund delay" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format -msgid "Where the order will be delivered" +msgid "" +"How long the wallet should try to get an automatic refund for the purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 #, c-format -msgid "Auto-refund delay" +msgid "Time indicating when the order should be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 #, c-format -msgid "" -"How long the wallet should try to get an automatic refund for the purchase" +msgid "Where the order will be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 #, c-format -msgid "refund missed: %1$s" +msgid "The contract terms have a v1 order without choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "The contract terms have a v1 order with a bad choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format -msgid "refund created: %1$s" +msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 #, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund missed: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format -msgid "refund taken: %1$s" +msgid "refund created: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "refund taken: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, c-format -msgid "The contract terms has a v1 order with a bad choices_index." +msgid "refund taken: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format msgid "wire deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 +#, c-format +msgid "Related wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 +#, fuzzy, c-format +msgid "Unconfirmed" +msgstr "Bekräfta" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" +msgid "Confirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, c-format +msgid "No wire transfer reported" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, c-format +msgid "Check wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 #, c-format -msgid "Pay at" +msgid "Payment link" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." msgstr "" +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Bekräfta" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Bekräfta" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" +msgid "Use only letters and digits (2–7)." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, c-format +msgid "add otp device" +msgstr "" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3561,19 +3993,19 @@ msgid "" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "" @@ -3585,7 +4017,7 @@ msgid "Create another" msgstr "" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3593,13 +4025,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, c-format +msgid "delete otp device" +msgstr "" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "" @@ -3611,143 +4049,299 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 #, c-format -msgid "Template id is unknown" +msgid "update otp device" msgstr "" #. screenid: 52 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format +msgid "Template id is unknown" +msgstr "" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 +#, c-format msgid "" "The provided information is inconsistent with the current state of the " "template" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, c-format +msgid "change password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, c-format +msgid "change instance password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, c-format msgid "Account not found." msgstr "" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, c-format +msgid "create money pot" +msgstr "" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, c-format +msgid "delete money pot" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, c-format +msgid "Add new pots" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, c-format +msgid "Total" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, c-format +msgid "Totals" +msgstr "" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3755,97 +4349,97 @@ msgid "" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 #, c-format -msgid "Incoming" +msgid "Current" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format -msgid "Lost" +msgid "Incoming" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format -msgid "Current" +msgid "Lost" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -3853,104 +4447,114 @@ msgid "" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, c-format msgid "Search by group name or id" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, c-format +msgid "add product" +msgstr "" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -3963,145 +4567,169 @@ msgid "Add product to inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, c-format +msgid "update product" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, c-format +msgid "infinite" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, c-format +msgid "delete product" +msgstr "" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4109,41 +4737,166 @@ msgid "" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "" #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, c-format +msgid "It should start with /" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, c-format +msgid "Type of the data source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, c-format +msgid "delete scheduled report" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, c-format +msgid "Add new reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, c-format +msgid "Delete selected scheduled report from the database" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4168,296 +4921,308 @@ msgid "Orders table" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, c-format +msgid "add template" +msgstr "" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4465,133 +5230,145 @@ msgid "" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, c-format +msgid "delete template" +msgstr "" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, c-format +msgid "update template" +msgstr "" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4599,19 +5376,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4619,103 +5396,153 @@ msgid "" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, c-format +msgid "create order from template" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, c-format +msgid "Granularity can't be greater than duration." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, c-format +msgid "create token family" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4723,83 +5550,116 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." +msgid "1 minute" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, c-format +msgid "1 hour" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, c-format +msgid "1 day" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, c-format +msgid "30 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, c-format +msgid "90 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, c-format +msgid "365 days" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, c-format +msgid "delete token family" +msgstr "" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4807,225 +5667,292 @@ msgid "" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, c-format +msgid "update token family" +msgstr "" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format msgid "Token Family: %1$s" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, c-format +msgid "inform wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 +#, c-format +msgid "Wire transfer already confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, c-format +msgid "The wire transfer has been confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, c-format +msgid "Transaction details" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, c-format +msgid "Transfer ID" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 #, c-format -msgid "User-readable token family name" +msgid "Orders in this wire transfer" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 #, c-format -msgid "Token family description for customers" +msgid "Fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, c-format -msgid "Incoming wire transfers" +msgid "Subtotals" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Load more wire transfers preceding the first one" +msgid "Deposit fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, c-format -msgid "Expected credit" +msgid "Wire fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Confirmed" +msgid "not ready" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 #, c-format -msgid "Validated" +msgid "loading..." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, c-format -msgid "Executed on" +msgid "New wire transfers" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "yes" +msgid "Load more wire transfers preceding the first one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "no" +msgid "To be determined." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "never" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format -msgid "unknown" +msgid "Load more transfers after the last one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 #, c-format -msgid "Load more transfers after the last one" +msgid "Confirmed wire transfers into bank account" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 +#, c-format +msgid "Verified" +msgstr "" + +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format -msgid "Only show wire transfers confirmed by the merchant" +msgid "It's not the same." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format -msgid "Verified" +msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 #, c-format -msgid "Wire transfer already confirmed." +msgid "delete current instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format -msgid "I have received the wire transfer" +msgid "Instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format -msgid "Confirm the wire transfer" +msgid "Write the instance name to confirm the deletion" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"All the data will be fully deleted, otherwise only the access will be " +"removed." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format -msgid "Time" +msgid "DELETE" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 #, c-format -msgid "Transfer ID" +msgid "Doesn't have the pattern of an email" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 #, c-format -msgid "It's not the same." +msgid "Should start with +" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 #, c-format -msgid "You are deleting the instance with ID \"%1$s\"" +msgid "A phone number consists of numbers only" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 #, c-format -msgid "Instance" +msgid "Invalid phone number" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 #, c-format -msgid "Write the instance name to confirm the deletion" +msgid "Invalid value" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 #, c-format -msgid "Purge" +msgid "Max 7 lines" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 #, c-format -msgid "" -"All the data will be fully deleted, otherwise only the access will be " -"removed." +msgid "update instance settings" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format -msgid "DELETE" +msgid "Instance id" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 #, c-format -msgid "Instance id" +msgid "URL" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, c-format +msgid "Cancel operation" msgstr "" #. screenid: 74 @@ -5035,133 +5962,133 @@ msgid "Delete this instance" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, c-format +msgid "add webhook" +msgstr "" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5169,963 +6096,903 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, c-format +msgid "delete webhook" +msgstr "" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, c-format +msgid "update webhook" +msgstr "" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, c-format +msgid "self provision instance" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "Developer mode" +msgid "Developer tools" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, c-format -msgid "Money pot deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, c-format -msgid "Add new pots" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, c-format -msgid "Load more pots before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, c-format -msgid "Total" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, c-format -msgid "Delete selected pots from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, c-format -msgid "Load more pots after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 -#, c-format -msgid "Value can only by number" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, c-format -msgid "The value is too precise" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 -#, c-format -msgid "Descripton" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, c-format -msgid "Totals" -msgstr "" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, c-format -msgid "There is already a money pot with the same id." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "Product group deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 -#, c-format -msgid "Add new group" +msgid "Enable UI tools for troubleshooting." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Load more groups before the first one" +msgid "Testing features" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Delete selected group from the database" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Load more groups after the last one" +msgid "Developer mode" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "There are no product groups yet, add more pressing the + sign" +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, c-format -msgid "Scheduled report deleted" +msgid "create pos access token" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, c-format -msgid "Scheduled reports" +msgid "Device name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Add new reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, c-format -msgid "Frequency" +msgid "Payment services status" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, c-format -msgid "Delete selected scheduled report from the database" +msgid "Base URL" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, c-format -msgid "There are no reports yet, add more pressing the + sign" +msgid "Next update" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, c-format -msgid "No report generator configured in the server" +msgid "This payment service is ready to be used." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, c-format -msgid "Type of the data source" +msgid "Next update will be at %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, c-format -msgid "Without this the merchant backend will refuse to create new orders." +msgid "Without this the server will refuse to create new orders." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 #, c-format msgid "" "Some transfers are on hold until the KYC process is completed. Visit the KYC " "section in the left-hand menu for more information." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#, c-format +msgid "No 'admin' instance configured yet." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#, c-format +msgid "Create an 'admin' instance to begin using the merchant portal." +msgstr "" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, c-format -msgctxt "title" -msgid "%1$s: Settings" +msgid "delete bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, c-format -msgctxt "title" -msgid "%1$s: New bank account" +msgid "The bank account has been deleted." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" +msgid "Delete account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" +msgid "Delete the account \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: Orders" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "Deleting an account can't be undone." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "Bank accounts" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 #, c-format -msgctxt "title" -msgid "%1$s: Update product" +msgid "Add new account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: Category" +msgid "Owner's name" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "Delete selected accounts from the database" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: Update category" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" +msgid "No bank account configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" +msgid "Without this information you cannot create new payment orders." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" +msgid "This account is not ready to be used." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, c-format -msgctxt "title" -msgid "%1$s: Update webhook" +msgid "There are pending actions related to KYC." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" +msgid "More details." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" +msgid "You must complete kyc requirements to receive payments." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgctxt "title" -msgid "%1$s: New template" +msgid "Invalid url" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: Update template" +msgid "URL must end with a '/'" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: Templates" +msgid "URL must not contain params" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Use template" +msgid "URL must not hash param" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "change bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "Server replied with \"bad request\"." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: Access tokens" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "%1$s: New access token" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "New instance" +msgid "Unsupported type of account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgctxt "title" -msgid "Instances" +msgid "Account:" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "Account details" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, c-format -msgid "The request was cancelled." +msgid "Extra subject" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The server's response was malformed." +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Unexpected request error." +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Unexpected error." +msgid "Auth type" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Add new instance" +msgid "Choose the authentication type for the account info URL" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" +msgid "Without authentication" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Change password" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." +msgid "With token" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgid "Do not change" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" +msgid "Username to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" +msgid "Password to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" +msgid "Access token to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" +msgid "Match" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" +msgid "Check where the information match against the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Delete instance" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "Delete the instance \"%1$s\"" +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" +msgid "add bank account" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." +msgid "The instance does not exist." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgid "Deleting an instance %1$s" +msgid "" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "This cannot be undone!" +msgid "Server didn't like the request we made." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Purge the instance" +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purge the instance \"%1$s\"" +msgid "Verify details with server" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" +msgid "create instance and login" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Instance created" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Purging an instance %1$s" +msgid "Please complete the marked fields and choose authorization method" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6136,18 +7003,28 @@ msgstr "" msgid "Business Name" msgstr "" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, c-format +msgid "update product group" +msgstr "" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" #, fuzzy, c-format +#~ msgid "Action required" +#~ msgstr "Obligatoriskt" + +#, fuzzy, c-format #~ msgid "KYC Required" #~ msgstr "Obligatoriskt" diff --git a/packages/merchant-backoffice-ui/src/i18n/taler-merchant-backoffice.pot b/packages/merchant-backoffice-ui/src/i18n/taler-merchant-backoffice.pot @@ -26,55 +26,55 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 #, c-format -msgid "Correct form" +msgid "Correct the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported account " @@ -82,103 +82,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, c-format msgid "Account ID" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you are " @@ -187,13 +187,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR codes " +"then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, c-format +msgid "Bank app" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -201,19 +215,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -221,31 +235,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, c-format msgid "Receiver postal code" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, c-format msgid "Receiver town" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -253,39 +267,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are choosing " "the bank account from which you definitely want to make the wire transfer. You " -"can use the copy buttons (%1$s) to avoid typos or make use of the \"payto://\" " -"URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR codes " -"then try scanning the following:" +"can use the copy buttons (%1$s) to avoid typos or make use of the PayTo URI " +"below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you can " +"use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "" @@ -314,74 +320,80 @@ msgstr "" msgid "seconds" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, c-format -msgid "Change value to empty" +msgid "Change the value to empty" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "" @@ -441,49 +453,49 @@ msgid "Additional address lines" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, c-format msgid "Product groups" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -495,91 +507,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, c-format +msgid "KYC Status" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, c-format +msgid "Payment services" +msgstr "" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, c-format +msgid "Select one..." +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, c-format +msgid "Hours" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, c-format +msgid "Minutes" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, c-format +msgid "Seconds" +msgstr "" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is used " @@ -587,162 +641,172 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format -msgid "" -"These will be the values are going to be used if are not overriden in the order " -"creation." +msgid "These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, c-format msgid "Payment delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "Time customers have to pay an order before the offer expires by default." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, c-format msgid "Refund delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 #, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire transfers " +"and reducing wire fees." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will be " @@ -750,1564 +814,1781 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 #, c-format -msgid "Expired" +msgid "Can't paste this content. Please copy the 8 digits again." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 #, c-format -msgid "Required" +msgid "Resend code possible in %1$s seconds." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 #, c-format -msgid "Unauthorized" +msgid "Resend code possible in less than one minute." msgstr "" #. screenid: 5 #: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 #, c-format -msgid "The code is not correct." -msgstr "" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 -#, c-format -msgid "The challenge is not known anymore." +msgid "Resend code possible in less than 5 minutes." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 #, c-format -msgid "Too many attempts trying to solve the challenge." +msgid "Resend will be possible after %1$s" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format -msgid "Validation code sent." +msgid "Expired" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgid "Required" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "verify code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format -msgid "Verification code" +msgid "Unauthorized" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format -msgid "It will expire at %1$s" +msgid "The code is not correct." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create a " -"new challenge." +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format -msgid "Back" +msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 #, c-format -msgid "Verify" +msgid "send challenge" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format msgid "Failed to send the verification code." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The server is not aware of the specified MFA challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format msgid "It is too early to request another transmission of the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Multi-factor authentication required." +msgid "Validation code sent." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, c-format -msgid "You need to complete all of this requirements." +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "An email to the address starting with %1$s" +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "Verification code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, c-format -msgid "I have a code" +msgid "Code expired." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Send me a message" +msgid "Didn't received the code?" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "Logged in" +msgid "Resend" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "Not found" +msgid "Verify" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "Login required" +msgid "The code transmission failed." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "Instance name." +msgid "The challenge is already solved." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "Instance password." +msgid "Multi-factor authentication required." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "Forgot password" +msgid "You must complete all of these requirements." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "Create new account" +msgid "You need to complete at least one of this requirements." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Invalid" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Doesn't have the pattern of an email" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "Should start with +" +msgid "Complete" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "A phone number consists of numbers only" +msgid "This is not a valid Bitcoin address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Invalid value" +msgid "This is not a valid Ethereum address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Max 7 lines" +msgid "This is not a valid host." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Doesn't match" +msgid "IBANs usually have more than 4 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Instance created" +msgid "IBANs usually have fewer than 34 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Unauthorized." +msgid "The IBAN's country code could not be retrieved." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "Conflict." +msgid "The IBAN is invalid because the checksum is wrong." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "Not found." +msgid "This account is not allowed." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "New password" +msgid "" +"None of the server's supported wire methods are currently supported by this app. " +"Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Next password to be used" +msgid "Wire method" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Repeat password" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Confirm the same password" +msgid "Select a wire method..." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "Routing" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, c-format -msgid "Confirm operation" +msgid "Routing number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Check the password." +msgid "Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, c-format -msgid "Instance not found." +msgid "Account number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "Description" +msgid "Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "Helps you remember where this access token is being used before deleting it." +msgid "Business Identifier Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "Duration" +msgid "International Bank Account Number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "Time the access token will be valid." +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 -#, c-format -msgid "Refreshable access tokens can pose a security risk!" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#, c-format +msgid "Unified Payment Interface" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if you " -"know what you are doing and you have evaluated associated risks especially in " -"respect to the permissions granted by the scope." +msgid "Bitcoin protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Scope" +msgid "Ethereum protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "Interledger protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Allows all operations without limit." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Allows all operations to read information." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "cyclos account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "Allows the creation of orders, checking of payment status and inventory locking." +msgid "Name of the account holder" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking and " -"refunds." +msgid "Legal name of the person holding the account." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "Allows all operations to read information with extendable expiration time." +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory locking " -"with extendable expiration time." +msgid "Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking and " -"refunds with extendable expiration time." +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "All (refreshable)" +msgid "Unexpected request error, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Spa" +msgid "Unexpected error." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Spa (refreshable)" +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "Choose one" +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 #, c-format -msgid "Read only" +msgid "Wrong password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 #, c-format -msgid "All" +msgid "The account doesn't exist." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Order simple" +msgid "Login required" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "Order Point-of-Sale" +msgid "Instance name." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "Order management" +msgid "Instance password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Order full" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 #, c-format -msgid "Read only (refreshable)" +msgid "Create new account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Order simple (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgctxt "title" +msgid "%1$s: Settings" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: New bank account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: Bank accounts" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Current password" +msgctxt "title" +msgid "%1$s: Update bank Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Please complete the marked fields" +msgctxt "title" +msgid "%1$s: Orders" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Access token created" +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "Copy the value of the access token and save it, as you cannot retrieve it again." +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: Update product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "No 'admin' instance configured yet." +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: Update category" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Create access token" +msgctxt "title" +msgid "%1$s: Wire transfers" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Load more devices before the first one" +msgctxt "title" +msgid "%1$s: Webhooks" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Load first page" +msgctxt "title" +msgid "%1$s: New webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Created at" +msgctxt "title" +msgid "%1$s: Update webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Expires at" +msgctxt "title" +msgid "%1$s: OTP devices" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Never" +msgctxt "title" +msgid "%1$s: New OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Remove this access token" +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "Delete" +msgctxt "title" +msgid "%1$s: New template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Load more devices after the last one" +msgctxt "title" +msgid "%1$s: Update template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "Load next page" +msgctxt "title" +msgid "%1$s: Templates" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "%1$s: Use template" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Forbidden." +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "Delete access token" +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "Deleting an access token cannot be undone." +msgctxt "title" +msgid "%1$s: New token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, c-format -msgid "This is not a valid Bitcoin address." +msgctxt "title" +msgid "%1$s: Update token family" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, c-format -msgid "This is not a valid Ethereum address." +msgctxt "title" +msgid "%1$s: Access tokens" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, c-format -msgid "This is not a valid host." +msgctxt "title" +msgid "%1$s: New access token" msgstr "" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 #, c-format -msgid "IBANs usually have more than 4 digits." +msgctxt "title" +msgid "%1$s: New POS access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "IBANs usually have fewer than 34 digits." +msgctxt "title" +msgid "New instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "The IBAN's country code could not be retrieved." +msgctxt "title" +msgid "Instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." +msgid "Testing environment" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format -msgid "This account is not allowed." +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 +#, c-format +msgid "Delete" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, c-format +msgid "Add new instance" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 +#, c-format +msgid "ID" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 +#, c-format +msgid "Name" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 +#, c-format +msgid "Edit" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 +#, c-format +msgid "Change password" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 +#, c-format +msgid "Purge" +msgstr "" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 +#, c-format +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, c-format +msgid "delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 +#, c-format +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 +#, c-format +msgid "Unauthorized." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 +#, c-format +msgid "Not found." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 +#, c-format +msgid "Conflict." +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 +#, c-format +msgid "Only show active instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#, c-format +msgid "Active" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, c-format +msgid "Only show deleted instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, c-format +msgid "Deleted" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 +#, c-format +msgid "Show all instances" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 +#, c-format +msgid "All" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 +#, c-format +msgid "Delete instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 +#, c-format +msgid "Delete the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by this " -"app. Server settings: %1$s" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be " +"able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Wire method" +msgid "" +"This action deletes the instance's private key, but preserves all transaction " +"data. You can still access the transaction data after having deleted the " +"instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 +#, c-format +msgid "Deleting an instance %1$s" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 +#, c-format +msgid "This cannot be undone!" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 +#, c-format +msgid "Purge the instance" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 +#, c-format +msgid "Purge the instance \"%1$s\"" +msgstr "" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of its " +"transaction data!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "Select a wire method..." +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 #, c-format -msgid "Routing" +msgid "Purging an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, c-format -msgid "Routing number" +msgid "create access token" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "Account" +msgid "Check the password." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "Account number" +msgid "Instance not found." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Code" +msgid "Description" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Business Identifier Code" +msgid "Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "International Bank Account Number" +msgid "Duration" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "Time the access token will be valid." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "Unified Payment Interface" +msgid "Refreshable access tokens can pose a security risk!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format -msgid "Bitcoin protocol" +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if you " +"know what you are doing and you have evaluated associated risks especially in " +"respect to the permissions granted by the scope." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Ethereum protocol" +msgid "Scope" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "Interledger protocol" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "Allows all operations without limit." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 #, c-format -msgid "Cyclos host" +msgid "Allows all operations to read information." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "cyclos account" +msgid "Allows the creation of orders and checking of payment status." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "Name of the account holder" +msgid "Allows the creation of orders, checking of payment status and inventory locking." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "John Doe" +msgid "Allows the creation of orders, checking of payment status and refunds." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format -msgid "Legal name of the person holding the account." +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking and " +"refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Invalid url" +msgid "Allows all operations to read information with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "URL must end with a '/'" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format -msgid "URL must not contain params" +msgid "" +"Allows the creation of orders, checking of payment status and inventory locking " +"with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "URL must not hash param" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format -msgid "Conflict" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking and " +"refunds with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 #, c-format -msgid "Server replied with \"bad request\"." +msgid "All (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "Unauthorized, check credentials." +msgid "Spa" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "Spa (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "" -"The request was made correctly, but the bank's server did not respond with the " -"appropriate value for 'credit_account', so we cannot confirm that it is the same " -"bank account." +msgid "Choose one" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "Unsupported type of account" +msgid "Read only" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "Account:" +msgid "Order simple" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL below " -"to keep the revenue information in sync." +msgid "Order Point-of-Sale" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "Endpoint URL" +msgid "Order management" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "" -"From where the merchant can download information about incoming wire transfers " -"to this account" +msgid "Order full" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Auth type" +msgid "Read only (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "Order simple (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Without authentication" +msgid "Order Point-of-Sale (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "With username and password" +msgid "Order management (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "With token" +msgid "Order full (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, c-format -msgid "Do not change" +msgid "Current password" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, c-format -msgid "Username to access the account information." +msgid "Please complete the marked fields" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, c-format -msgid "Password to access the account information." +msgid "Confirm operation" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Access token to access the account information." +msgid "Access token created" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "Match" +msgid "Copy the value of the access token and save it, as you cannot retrieve it again." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Check where the information match against the server info." +msgid "Token" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "Compare info from server with account form" +msgid "This token will never expire" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 #, c-format -msgid "Test" +msgid "This token will be available until %1$s" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, c-format -msgid "Server didn't like the request we made." +msgid "Create access token" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, c-format -msgid "Account details" +msgid "Load more devices before the first one" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "Check if the information matches the server info." +msgid "Load first page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "The bank account has been deleted." +msgid "Created at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 #, c-format -msgid "Delete account" +msgid "Expires at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Delete the account \"%1$s\"" +msgid "Never" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Remove this access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "Load more devices after the last one" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Deleting an account can't be undone." +msgid "Load next page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Bank accounts" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, c-format -msgid "Add new account" +msgid "delete access token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "Owner's name" +msgid "Forbidden." msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "Delete selected accounts from the database" +msgid "New point-of-sale access" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "Delete access token" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "You must provide a bank account to receive payments." +msgid "Deleting an access token cannot be undone." msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 #, c-format -msgid "Invalid. Please use only letters and numbers." +msgid "add category" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 #, c-format -msgid "Name" +msgid "Not found" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 #, c-format -msgid "Category deleted" +msgid "delete category" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format -msgid "Add new devices" +msgid "Category deleted" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format -msgid "ID" +msgid "Add new devices" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, c-format msgid "Total products" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, c-format +msgid "update category" +msgstr "" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 #, c-format -msgid "Account's KYC status" +msgid "create product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 #, c-format -msgid "Exchange" +msgid "delete product group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 #, c-format -msgid "Status" +msgid "Product group deleted" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 #, c-format -msgid "Ok" +msgid "Add new group" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 #, c-format -msgid "Action required" +msgid "Load more groups before the first one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Warning" +msgid "Delete selected group from the database" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 #, c-format -msgid "Error" +msgid "Load more groups after the last one" +msgstr "" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#, c-format +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 +#, c-format +msgid "Account's KYC status" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 +#, c-format +msgid "Exchange" +msgstr "" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 +#, c-format +msgid "Status" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format -msgid "Merchant backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact the service administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "Payment service response is invalid. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 +#, c-format +msgid "Ok" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "The account for wire transfers is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" +msgid "No contact with the payment service yet." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 #, c-format -msgid "The backend service is still synchronizing with the payment service provider." +msgid "The server is still synchronizing with the payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment service " "provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system administrator " -"or check again later." +"The server detected an internal error, contact the system administrator or check " +"again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system administrator " "or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the system " @@ -2315,9 +2596,15 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" +msgid "Change value to never" msgstr "" #. screenid: 12 @@ -2327,7 +2614,7 @@ msgid "Enter description or id" msgstr "" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "" @@ -2341,11 +2628,11 @@ msgstr "" #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 #, c-format -msgid "Quantity must be greater than 0!" +msgid "Quantity must be greater than zero." msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2353,49 +2640,55 @@ msgid "" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, c-format +msgid "Add it to the order" +msgstr "" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" +msgid "Invalid" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2403,303 +2696,315 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "Enter the currency and value separated by a colon (e.g., "USD:2.3")." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, c-format +msgid "Invalid URL" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 #, c-format -msgid "is not a valid URL" +msgid "create order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be available " -"to create new orders" +"to create new orders." +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, c-format +msgid "Conflict" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 #, c-format -msgid "%1$s products with a total price of %2$s." +msgid "%1$s products with a total price of %2$s ." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, c-format msgid "Products price sum" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, c-format msgid "Total product price added up" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, c-format msgid "Delivery location" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products will " @@ -2707,19 +3012,19 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2727,27 +3032,27 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order is " -"created." +"Time for the payment service to make the wire transfer. Time starts after the " +"order is created." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without user " @@ -2755,13 +3060,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2769,13 +3074,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2783,13 +3088,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this contract. " @@ -2797,115 +3102,121 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, c-format msgid "Custom field name" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 #, c-format -msgid "Select date to show nearby orders" +msgid "get product details" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment service " @@ -2913,642 +3224,759 @@ msgid "" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 #, c-format -msgid "Jump to date (%1$s)" +msgid "authorize refund" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, c-format +msgid "This order is not refundable" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "The order status is not \"paid\" so we are unable to process any refund action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, c-format msgid "Create order" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment service " "provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format -msgid "This refund can't be claimed because the wire transfer has already be made." +msgid "This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "After this deadline, the merchant won't accept payments for the contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, c-format -msgid "Transfer deadline for the exchange" +msgid "Transfer deadline for the payment service" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format -msgid "Time indicating when the order should be delivered" +msgid "Auto-refund delay" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format -msgid "Where the order will be delivered" +msgid "How long the wallet should try to get an automatic refund for the purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 #, c-format -msgid "Auto-refund delay" +msgid "Time indicating when the order should be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 #, c-format -msgid "How long the wallet should try to get an automatic refund for the purchase" +msgid "Where the order will be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, c-format msgid "Claimed at" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 +#, c-format +msgid "The contract terms have a v1 order without choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, c-format +msgid "The contract terms have a v1 order with a bad choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "refund missed: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format msgid "refund created: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format msgid "refund taken: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund taken: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format -msgid "The contract terms has a v1 order with a bad choices_index." +msgid "wire deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 #, c-format -msgid "wired %1$s" +msgid "Related wire transfers" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 #, c-format -msgid "wire deadline" +msgid "Unconfirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 #, c-format -msgid "Wired" +msgid "Confirmed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, c-format +msgid "No wire transfer reported" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, c-format +msgid "Check wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 #, c-format -msgid "Pay at" +msgid "Payment link" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "Unknown order status. This is an error, please contact the administrator." msgstr "" +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, c-format +msgid "confirmed" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, c-format +msgid "unconfirmed" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" +msgid "Use only letters and digits (2–7)." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, c-format +msgid "add otp device" +msgstr "" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "Be sure to choose a password that is hard to guess, or use the random generator." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "" @@ -3560,7 +3988,7 @@ msgid "Create another" msgstr "" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3568,13 +3996,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, c-format +msgid "delete otp device" +msgstr "" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "" @@ -3586,237 +4020,393 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 #, c-format -msgid "Template id is unknown" +msgid "update otp device" msgstr "" #. screenid: 52 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format +msgid "Template id is unknown" +msgstr "" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 +#, c-format msgid "The provided information is inconsistent with the current state of the template" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, c-format msgid "Confirm change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, c-format +msgid "change password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, c-format +msgid "change instance password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, c-format msgid "Account not found." msgstr "" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, c-format +msgid "create money pot" +msgstr "" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, c-format +msgid "delete money pot" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, c-format +msgid "Add new pots" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, c-format +msgid "Total" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, c-format +msgid "Totals" +msgstr "" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will not " +"Click here to configure the product's stock. If left as is, the server will not " "control stock." msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "Shrinkage cannot exceed the current stock and incoming supplies (maximum %1$s)" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 #, c-format -msgid "Incoming" +msgid "Current" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format -msgid "Lost" +msgid "Incoming" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format -msgid "Current" +msgid "Lost" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, c-format msgid "Invalid amount" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, c-format msgid "Product name." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 items, 5 " @@ -3824,99 +4414,109 @@ msgid "" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "Sale price for customers, including taxes, for above units of the product." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, c-format msgid "Search by group name or id" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, c-format +msgid "add product" +msgstr "" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "The product group doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "The money pot doesn't exist. Maybe it was remove while adding the product." msgstr "" @@ -3928,145 +4528,169 @@ msgid "Add product to inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, c-format +msgid "update product" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, c-format +msgid "infinite" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, c-format msgid "Confirm update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, c-format msgid "New price for the product" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, c-format msgid "There are values with errors." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, c-format msgid "Update product with new stock and price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, c-format +msgid "delete product" +msgstr "" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, c-format msgid "Jump to product with the given product ID" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, c-format msgid "Delete product" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, c-format msgid "Delete the product \"%1$s\"" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4074,41 +4698,166 @@ msgid "" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "" #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, c-format +msgid "It should start with /" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before scheduling " +"one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, c-format +msgid "Type of the data source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, c-format +msgid "delete scheduled report" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, c-format +msgid "Add new reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, c-format +msgid "Delete selected scheduled report from the database" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4133,295 +4882,307 @@ msgid "Orders table" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, c-format +msgid "add template" +msgstr "" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "If specified here, this template will create orders with the same summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, c-format msgid "Amount is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4429,133 +5190,145 @@ msgid "" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, c-format msgid "Add new templates" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, c-format +msgid "delete template" +msgstr "" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, c-format +msgid "update template" +msgstr "" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4563,19 +5336,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4583,103 +5356,153 @@ msgid "" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, c-format +msgid "create order from template" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be available " +"to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, c-format +msgid "Granularity can't be greater than duration." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, c-format +msgid "create token family" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4687,81 +5510,115 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of %2$s, " -"not exactly at the same time of day you purchased it." +msgid "1 minute" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, c-format +msgid "1 hour" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, c-format +msgid "1 day" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, c-format +msgid "30 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, c-format +msgid "90 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, c-format +msgid "365 days" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "There are no token families yet, add the first one by pressing the + sign." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, c-format +msgid "delete token family" +msgstr "" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, c-format msgid "Delete token family" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will become " @@ -4769,225 +5626,289 @@ msgid "" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, c-format +msgid "update token family" +msgstr "" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format msgid "Token Family: %1$s" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, c-format +msgid "inform wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 +#, c-format +msgid "Wire transfer already confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any time. " +"You can manually confirm the reception using the information below." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 +#, c-format +msgid "The wire transfer has been confirmed." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, c-format +msgid "Transaction details" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, c-format +msgid "Transfer ID" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 #, c-format -msgid "User-readable token family name" +msgid "Orders in this wire transfer" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 #, c-format -msgid "Token family description for customers" +msgid "Fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, c-format -msgid "Incoming wire transfers" +msgid "Subtotals" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Load more wire transfers preceding the first one" +msgid "Deposit fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, c-format -msgid "Expected credit" +msgid "Wire fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Confirmed" +msgid "not ready" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 #, c-format -msgid "Validated" +msgid "loading..." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, c-format -msgid "Executed on" +msgid "New wire transfers" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "yes" +msgid "Load more wire transfers preceding the first one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "no" +msgid "To be determined." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "never" +msgid "You confirm that the incoming wire transfer has arrived into your bank account." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format -msgid "unknown" +msgid "Load more transfers after the last one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 #, c-format -msgid "Load more transfers after the last one" +msgid "Confirmed wire transfers into bank account" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, c-format msgid "All accounts" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 #, c-format -msgid "" -"Only display transfers that have already been transferred to your bank account " -"by the payment service provider." +msgid "Verified" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format -msgid "Only show wire transfers confirmed by the merchant" +msgid "A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format -msgid "Verified" +msgid "It's not the same." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format -msgid "Wire transfer already confirmed." +msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 #, c-format -msgid "I have received the wire transfer" +msgid "delete current instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format -msgid "Confirm the wire transfer" +msgid "Instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format -msgid "" -"The wire transfer has been sent and should be in your bank account in any time. " -"You can manually confirm the reception using the information below." +msgid "Write the instance name to confirm the deletion" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format -msgid "Time" +msgid "All the data will be fully deleted, otherwise only the access will be removed." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format -msgid "Transfer ID" +msgid "DELETE" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 #, c-format -msgid "It's not the same." +msgid "Doesn't have the pattern of an email" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 #, c-format -msgid "You are deleting the instance with ID \"%1$s\"" +msgid "Should start with +" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 #, c-format -msgid "Instance" +msgid "A phone number consists of numbers only" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 #, c-format -msgid "Write the instance name to confirm the deletion" +msgid "Invalid phone number" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 #, c-format -msgid "Purge" +msgid "Invalid value" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 #, c-format -msgid "All the data will be fully deleted, otherwise only the access will be removed." +msgid "Max 7 lines" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 #, c-format -msgid "DELETE" +msgid "update instance settings" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format msgid "Instance id" msgstr "" +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 +#, c-format +msgid "URL" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, c-format +msgid "Cancel operation" +msgstr "" + #. screenid: 74 #: packages/merchant-backoffice-ui/src/paths/instance/update/index.tsx:113 #, c-format @@ -4995,133 +5916,133 @@ msgid "Delete this instance" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, c-format +msgid "add webhook" +msgstr "" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s and " @@ -5129,962 +6050,903 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, c-format +msgid "delete webhook" +msgstr "" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, c-format +msgid "update webhook" +msgstr "" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, c-format +msgid "self provision instance" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, c-format msgid "Create" msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "Developer mode" +msgid "Developer tools" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, c-format -msgid "Money pot deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, c-format -msgid "Add new pots" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, c-format -msgid "Load more pots before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, c-format -msgid "Total" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, c-format -msgid "Delete selected pots from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, c-format -msgid "Load more pots after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 -#, c-format -msgid "Value can only by number" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, c-format -msgid "The value is too precise" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 -#, c-format -msgid "Descripton" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, c-format -msgid "Totals" -msgstr "" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 -#, c-format -msgid "There is already a money pot with the same id." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, c-format -msgid "Product group deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "Add new group" +msgid "Enable UI tools for troubleshooting." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Load more groups before the first one" +msgid "Testing features" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Delete selected group from the database" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Load more groups after the last one" +msgid "Developer mode" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "There are no product groups yet, add more pressing the + sign" +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in this " +"mode are intended to fix problems or get more information about the runtime. YOU " +"MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, c-format -msgid "Scheduled report deleted" +msgid "create pos access token" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, c-format -msgid "Scheduled reports" +msgid "Device name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Add new reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, c-format -msgid "Frequency" +msgid "Payment services status" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, c-format -msgid "Delete selected scheduled report from the database" +msgid "Base URL" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, c-format -msgid "There are no reports yet, add more pressing the + sign" +msgid "Next update" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, c-format -msgid "No report generator configured in the server" +msgid "This payment service is ready to be used." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, c-format msgid "" -"Contact the system administrator to create a report generator before scheduling " -"one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is empty. " +"Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, c-format -msgid "Type of the data source" +msgid "Next update will be at %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to transmit " -"the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You can " +"The application is in an unexpected state and can't recover from here. You can " "report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, c-format -msgid "Without this the merchant backend will refuse to create new orders." +msgid "Without this the server will refuse to create new orders." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 +#, c-format +msgid "" +"Some transfers are on hold until the KYC process is completed. Visit the KYC " +"section in the left-hand menu for more information." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#, c-format +msgid "No 'admin' instance configured yet." +msgstr "" + +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 #, c-format -msgid "" -"Some transfers are on hold until the KYC process is completed. Visit the KYC " -"section in the left-hand menu for more information." +msgid "Create an 'admin' instance to begin using the merchant portal." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, c-format -msgctxt "title" -msgid "%1$s: Settings" +msgid "delete bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, c-format -msgctxt "title" -msgid "%1$s: New bank account" +msgid "The bank account has been deleted." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" +msgid "Delete account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" +msgid "Delete the account \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: Orders" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "Deleting an account can't be undone." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "Bank accounts" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 #, c-format -msgctxt "title" -msgid "%1$s: Update product" +msgid "Add new account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: Category" +msgid "Owner's name" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "Delete selected accounts from the database" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: Update category" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" +msgid "No bank account configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" +msgid "Without this information you cannot create new payment orders." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" +msgid "This account is not ready to be used." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, c-format -msgctxt "title" -msgid "%1$s: Update webhook" +msgid "There are pending actions related to KYC." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" +msgid "More details." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" +msgid "You must complete kyc requirements to receive payments." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, dot, " +"dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, c-format -msgctxt "title" -msgid "%1$s: New template" +msgid "Invalid url" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: Update template" +msgid "URL must end with a '/'" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: Templates" +msgid "URL must not contain params" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Use template" +msgid "URL must not hash param" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "change bank account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "Server replied with \"bad request\"." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: Access tokens" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "%1$s: New access token" +msgid "" +"The request was made correctly, but the bank's server did not respond with the " +"appropriate value for 'credit_account', so we cannot confirm that it is the same " +"bank account." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "New instance" +msgid "Unsupported type of account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgctxt "title" -msgid "Instances" +msgid "Account:" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "Account details" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, c-format -msgid "The request was cancelled." +msgid "Extra subject" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format -msgid "Too many requests were made to the server, and this action was throttled." +msgid "" +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The server's response was malformed." +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL below " +"to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Unexpected request error." +msgid "" +"From where the merchant can download information about incoming wire transfers " +"to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Unexpected error." +msgid "Auth type" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Add new instance" +msgid "Choose the authentication type for the account info URL" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" +msgid "Without authentication" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Change password" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." +msgid "With token" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgid "Do not change" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" +msgid "Username to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" +msgid "Password to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" +msgid "Access token to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" +msgid "Match" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" +msgid "Check where the information match against the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Delete instance" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "Delete the instance \"%1$s\"" +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no longer be " -"able to process orders and refunds" +msgid "add bank account" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all transaction " -"data. You can still access the transaction data after having deleted the " -"instance." +msgid "The instance does not exist." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format -msgid "Deleting an instance %1$s" +msgid "" +"The bank account already exist but with different information. Is the name of " +"the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "This cannot be undone!" +msgid "Server didn't like the request we made." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Purge the instance" +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purge the instance \"%1$s\"" +msgid "Verify details with server" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of its " -"transaction data!" +msgid "create instance and login" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Instance created" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Purging an instance %1$s" +msgid "Please complete the marked fields and choose authorization method" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6095,14 +6957,20 @@ msgstr "" msgid "Business Name" msgstr "" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, c-format +msgid "update product group" +msgstr "" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" diff --git a/packages/merchant-backoffice-ui/src/i18n/tr.po b/packages/merchant-backoffice-ui/src/i18n/tr.po @@ -25,55 +25,55 @@ msgstr "" "X-Generator: Weblate 5.5.5\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, fuzzy, c-format msgid "Cancel" msgstr "İptal" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "%1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 #, c-format -msgid "Correct form" +msgid "Correct the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -81,103 +81,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, fuzzy, c-format msgid "Account ID" msgstr "Hesap" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, c-format msgid "The account owner's legal name" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "Kasaba" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, fuzzy, c-format msgid "Bank host" msgstr "Banka hesabı" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "Banka hesabı" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -186,13 +186,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, fuzzy, c-format +msgid "Bank app" +msgstr "Banka hesabı" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -200,19 +214,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -220,31 +234,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "Konu" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, fuzzy, c-format msgid "Receiver postal code" msgstr "Teslim tarihi" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, fuzzy, c-format msgid "Receiver town" msgstr "Teslim tarihi" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -252,39 +266,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" +"the PayTo URI below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "" @@ -313,74 +319,80 @@ msgstr "" msgid "seconds" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, c-format msgid "Forever" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, c-format -msgid "Change value to empty" +msgid "Change the value to empty" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "" @@ -440,49 +452,49 @@ msgid "Additional address lines" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, c-format msgid "Wire transfers" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, fuzzy, c-format msgid "Product groups" msgstr "Ürünler" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -494,91 +506,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, c-format msgid "Configuration" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, fuzzy, c-format +msgid "KYC Status" +msgstr "Hesap" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, c-format msgid "Access tokens" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, fuzzy, c-format +msgid "Payment services" +msgstr "Hesap" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, c-format +msgid "Select one..." +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, c-format +msgid "Hours" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, c-format +msgid "Minutes" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, c-format +msgid "Seconds" +msgstr "" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -586,163 +640,174 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, c-format msgid "Phone number" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, c-format msgid "Contact phone" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, fuzzy, c-format msgid "Payment delay" msgstr "Hesap" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, c-format msgid "Refund delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, c-format msgid "Wire transfer delay" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 #, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, c-format msgid "Wire transfer rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -750,1576 +815,1794 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, c-format msgid "No rounding" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, c-format msgid "To second" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, c-format msgid "To minute" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, c-format msgid "To hour" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 #, c-format -msgid "Expired" +msgid "Can't paste this content. Please copy the 8 digits again." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 #, c-format -msgid "Required" +msgid "Resend code possible in %1$s seconds." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 #, c-format -msgid "Unauthorized" +msgid "Resend code possible in less than one minute." msgstr "" #. screenid: 5 #: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 #, c-format -msgid "The code is not correct." -msgstr "" - -#. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 -#, c-format -msgid "The challenge is not known anymore." +msgid "Resend code possible in less than 5 minutes." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 #, c-format -msgid "Too many attempts trying to solve the challenge." +msgid "Resend will be possible after %1$s" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, c-format -msgid "Validation code sent." +msgid "Expired" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" +msgid "Required" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "verify code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, c-format -msgid "Verification code" +msgid "Unauthorized" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, c-format -msgid "It will expire at %1$s" +msgid "The code is not correct." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format -msgid "Back" +msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 #, c-format -msgid "Verify" +msgid "send challenge" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 #, c-format msgid "Failed to send the verification code." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The server is not aware of the specified MFA challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format msgid "It is too early to request another transmission of the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 #, c-format -msgid "Multi-factor authentication required." +msgid "Validation code sent." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, c-format -msgid "You need to complete all of this requirements." +msgid "The verification code sent to the phone \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "An email to the address starting with %1$s" +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "Verification code" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 #, c-format -msgid "I have a code" +msgid "Code expired." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Send me a message" +msgid "Didn't received the code?" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "Logged in" +msgid "Resend" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 #, c-format -msgid "Not found" +msgid "Verify" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "Login required" +msgid "The code transmission failed." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "Instance name." +msgid "The challenge is already solved." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "Instance password." +msgid "Multi-factor authentication required." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "Forgot password" +msgid "You must complete all of these requirements." msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 -#, fuzzy, c-format -msgid "Create new account" -msgstr "Banka hesabı" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "Invalid" +msgid "You need to complete at least one of this requirements." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Doesn't have the pattern of an email" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Should start with +" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, c-format -msgid "A phone number consists of numbers only" +msgid "Complete" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 -#, fuzzy, c-format -msgid "Invalid value" -msgstr "Geçerlilik" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 #, c-format -msgid "Max 7 lines" +msgid "This is not a valid Bitcoin address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Doesn't match" +msgid "This is not a valid Ethereum address." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, c-format -msgid "Instance created" +msgid "This is not a valid host." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, c-format -msgid "Unauthorized." +msgid "IBANs usually have more than 4 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 #, c-format -msgid "Conflict." +msgid "IBANs usually have fewer than 34 digits." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, c-format -msgid "Not found." +msgid "The IBAN's country code could not be retrieved." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, c-format -msgid "New password" +msgid "The IBAN is invalid because the checksum is wrong." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, c-format -msgid "Next password to be used" +msgid "This account is not allowed." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "Repeat password" +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 #, c-format -msgid "Confirm the same password" +msgid "Wire method" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "Please complete the marked fields and choose authorization method" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 -#, fuzzy, c-format -msgid "Confirm operation" -msgstr "Kasaba konumu" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, c-format -msgid "Check the password." +msgid "Select a wire method..." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 #, c-format -msgid "Instance not found." +msgid "Routing" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 -#, c-format -msgid "Description" -msgstr "" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#, fuzzy, c-format +msgid "Routing number" +msgstr "Bina numarası" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." -msgstr "" +msgid "Account" +msgstr "Hesap" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 -#, c-format -msgid "Duration" -msgstr "" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#, fuzzy, c-format +msgid "Account number" +msgstr "Hesap" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 #, c-format -msgid "Time the access token will be valid." +msgid "Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, c-format -msgid "Refreshable access tokens can pose a security risk!" +msgid "Business Identifier Code" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." +msgid "International Bank Account Number" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "Scope" +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "Unified Payment Interface" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, c-format -msgid "Allows all operations without limit." +msgid "Bitcoin protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, c-format -msgid "Allows all operations to read information." +msgid "Ethereum protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "Interledger protocol" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#, fuzzy, c-format +msgid "cyclos account" +msgstr "Hesap" + +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." +msgid "Name of the account holder" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." +msgid "Legal name of the person holding the account." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." +"Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "All (refreshable)" +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "Spa" +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 #, c-format -msgid "Spa (refreshable)" +msgid "Unexpected request error, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 #, c-format -msgid "Choose one" +msgid "Unexpected error." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "Read only" +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "All" +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 #, c-format -msgid "Order simple" +msgid "Wrong password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 #, c-format -msgid "Order Point-of-Sale" +msgid "The account doesn't exist." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "Order management" +msgid "Login required" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 #, c-format -msgid "Order full" +msgid "Instance name." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 #, c-format -msgid "Read only (refreshable)" +msgid "Instance password." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Order simple (refreshable)" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 +#, fuzzy, c-format +msgid "Create new account" +msgstr "Banka hesabı" + +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: Settings" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New bank account" +msgstr "Banka hesabı" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Bank accounts" +msgstr "Banka hesabı" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: Update bank Account" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, c-format -msgid "Current password" +msgctxt "title" +msgid "%1$s: Orders" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Please complete the marked fields" +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "Access token created" +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: Update product" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, c-format -msgid "No 'admin' instance configured yet." +msgctxt "title" +msgid "%1$s: Update category" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." +msgctxt "title" +msgid "%1$s: Wire transfers" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 -#, fuzzy, c-format -msgid "Create access token" -msgstr "Oluşturulma" - -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, c-format -msgid "Load more devices before the first one" +msgctxt "title" +msgid "%1$s: Webhooks" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 #, c-format -msgid "Load first page" +msgctxt "title" +msgid "%1$s: New webhook" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 #, c-format -msgid "Created at" -msgstr "Oluşturulma" +msgctxt "title" +msgid "%1$s: Update webhook" +msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 #, c-format -msgid "Expires at" +msgctxt "title" +msgid "%1$s: OTP devices" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 #, c-format -msgid "Never" +msgctxt "title" +msgid "%1$s: New OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "Remove this access token" +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 #, c-format -msgid "Delete" +msgctxt "title" +msgid "%1$s: New template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 #, c-format -msgid "Load more devices after the last one" +msgctxt "title" +msgid "%1$s: Update template" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 #, c-format -msgid "Load next page" +msgctxt "title" +msgid "%1$s: Templates" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 #, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" +msgctxt "title" +msgid "%1$s: Use template" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Forbidden." +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 -#, fuzzy, c-format -msgid "Delete access token" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 +#, c-format +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" +msgstr "" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 +#, c-format +msgctxt "title" +msgid "%1$s: New token family" +msgstr "" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 +#, c-format +msgctxt "title" +msgid "%1$s: Update token family" +msgstr "" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Access tokens" msgstr "Oluşturulma" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New access token" +msgstr "Oluşturulma" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New POS access token" +msgstr "Oluşturulma" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 #, c-format -msgid "Deleting an access token cannot be undone." +msgctxt "title" +msgid "New instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 #, c-format -msgid "This is not a valid Bitcoin address." +msgctxt "title" +msgid "Instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "This is not a valid Ethereum address." +msgid "Testing environment" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format -msgid "This is not a valid host." +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." msgstr "" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 #, c-format -msgid "IBANs usually have more than 4 digits." +msgid "Delete" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 +#, fuzzy, c-format +msgid "Add new instance" +msgstr "Banka hesabı" + +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 #, c-format -msgid "IBANs usually have fewer than 34 digits." +msgid "ID" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 #, c-format -msgid "The IBAN's country code could not be retrieved." +msgid "Name" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 #, c-format -msgid "The IBAN is invalid because the checksum is wrong." +msgid "Edit" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 #, c-format -msgid "This account is not allowed." +msgid "Change password" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 #, c-format -msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +msgid "Purge" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 #, c-format -msgid "Wire method" +msgid "There are no instances yet. Add one by pressing the '+' sign." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 +#, fuzzy, c-format +msgid "delete instance" +msgstr "Banka hesabı" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 #, c-format -msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 #, c-format -msgid "Select a wire method..." +msgid "Unauthorized." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 #, c-format -msgid "Routing" +msgid "Not found." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 -#, fuzzy, c-format -msgid "Routing number" -msgstr "Bina numarası" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 +#, c-format +msgid "Conflict." +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 #, c-format -msgid "Account" -msgstr "Hesap" +msgid "Only show active instances" +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 -#, fuzzy, c-format -msgid "Account number" -msgstr "Hesap" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#, c-format +msgid "Active" +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 #, c-format -msgid "Code" +msgid "Only show deleted instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 #, c-format -msgid "Business Identifier Code" +msgid "Deleted" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 #, c-format -msgid "International Bank Account Number" +msgid "Show all instances" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "All" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 #, c-format -msgid "Unified Payment Interface" +msgid "Delete instance" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 #, c-format -msgid "Bitcoin protocol" +msgid "Delete the instance \"%1$s\"" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format -msgid "Ethereum protocol" +msgid "" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format -msgid "Interledger protocol" +msgid "" +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" +msgid "Deleting an instance %1$s" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 #, c-format -msgid "Cyclos host" +msgid "This cannot be undone!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 -#, fuzzy, c-format -msgid "cyclos account" -msgstr "Hesap" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 +#, c-format +msgid "Purge the instance" +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 #, c-format -msgid "Name of the account holder" +msgid "Purge the instance \"%1$s\"" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 #, c-format -msgid "John Doe" +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "Legal name of the person holding the account." +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 +#, c-format +msgid "Purging an instance %1$s" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, fuzzy, c-format -msgid "Invalid url" -msgstr "Geçerlilik" +msgid "create access token" +msgstr "Oluşturulma" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 #, c-format -msgid "URL must end with a '/'" +msgid "Check the password." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, c-format -msgid "URL must not contain params" +msgid "Instance not found." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "URL must not hash param" +msgid "Description" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Conflict" +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, c-format -msgid "Server replied with \"bad request\"." +msgid "Duration" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, c-format -msgid "Unauthorized, check credentials." +msgid "Time the access token will be valid." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "Refreshable access tokens can pose a security risk!" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "Unsupported type of account" +msgid "Scope" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "Account:" -msgstr "Hesap:" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#, c-format +msgid "Allows all operations without limit." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#, c-format +msgid "Allows all operations to read information." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 +#, c-format +msgid "Allows the creation of orders and checking of payment status." +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +"Allows the creation of orders, checking of payment status and inventory " +"locking." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "Endpoint URL" +msgid "Allows the creation of orders, checking of payment status and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Auth type" +msgid "" +"Allows all operations to read information with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format -msgid "Without authentication" +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "With username and password" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format -msgid "With token" +msgid "" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 #, c-format -msgid "Do not change" +msgid "All (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "Username to access the account information." +msgid "Spa" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "Password to access the account information." +msgid "Spa (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 #, c-format -msgid "Access token to access the account information." +msgid "Choose one" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "Match" +msgid "Read only" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, c-format -msgid "Check where the information match against the server info." +msgid "Order simple" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, c-format -msgid "Compare info from server with account form" +msgid "Order Point-of-Sale" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "Test" +msgid "Order management" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 #, c-format -msgid "Server didn't like the request we made." +msgid "Order full" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 +#, c-format +msgid "Read only (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 +#, c-format +msgid "Order simple (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 +#, c-format +msgid "Order Point-of-Sale (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 +#, c-format +msgid "Order management (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 +#, c-format +msgid "Order full (refreshable)" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 +#, c-format +msgid "Current password" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 +#, c-format +msgid "Please complete the marked fields" +msgstr "" + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, fuzzy, c-format -msgid "Account details" -msgstr "Hesap" +msgid "Confirm operation" +msgstr "Kasaba konumu" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, c-format -msgid "Check if the information matches the server info." +msgid "Access token created" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 #, c-format -msgid "The bank account has been deleted." +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#, c-format +msgid "Token" +msgstr "" + +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#, c-format +msgid "This token will never expire" +msgstr "" + +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#, c-format +msgid "This token will be available until %1$s" +msgstr "" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, fuzzy, c-format -msgid "Delete account" +msgid "Create access token" msgstr "Oluşturulma" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 -#, fuzzy, c-format -msgid "Delete the account \"%1$s\"" -msgstr "Banka hesabı" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 +#, c-format +msgid "Load more devices before the first one" +msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Load first page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "Created at" +msgstr "Oluşturulma" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 +#, c-format +msgid "Expires at" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, c-format -msgid "Deleting an account can't be undone." +msgid "Never" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 -#, fuzzy, c-format -msgid "Bank accounts" -msgstr "Banka hesabı" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 +#, c-format +msgid "Remove this access token" +msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 -#, fuzzy, c-format -msgid "Add new account" -msgstr "Banka hesabı" +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 +#, c-format +msgid "Load more devices after the last one" +msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 #, c-format -msgid "Owner's name" +msgid "Load next page" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, c-format -msgid "Delete selected accounts from the database" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 +#, fuzzy, c-format +msgid "delete access token" +msgstr "Oluşturulma" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "Forbidden." msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 #, c-format -msgid "You must provide a bank account to receive payments." +msgid "New point-of-sale access" msgstr "" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 +#, fuzzy, c-format +msgid "Delete access token" +msgstr "Oluşturulma" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Deleting an access token cannot be undone." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 #, c-format -msgid "Name" +msgid "add category" +msgstr "" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 +#, c-format +msgid "Not found" msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 #, c-format -msgid "Category deleted" +msgid "delete category" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, c-format -msgid "Add new devices" +msgid "Category deleted" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, c-format -msgid "ID" +msgid "Add new devices" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, fuzzy, c-format msgid "Total products" msgstr "Ürünler" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, c-format msgid "Delete selected category from the database" msgstr "" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, c-format +msgid "update category" +msgstr "" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "Ürünler" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, c-format msgid "Load more products after the last one" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, c-format msgid "There are no products in this category." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 #, fuzzy, c-format -msgid "Account's KYC status" -msgstr "Hesap" +msgid "create product group" +msgstr "Ürünler" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete product group" +msgstr "Ürünler" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Product group deleted" +msgstr "Ürünler" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new group" +msgstr "Banka hesabı" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 #, c-format -msgid "Exchange" +msgid "Load more groups before the first one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 #, c-format -msgid "Status" +msgid "Delete selected group from the database" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 #, c-format -msgid "Ok" +msgid "Load more groups after the last one" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 #, c-format -msgid "Action required" +msgid "There are no product groups yet, add more pressing the + sign" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 +#, fuzzy, c-format +msgid "Account's KYC status" +msgstr "Hesap" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 #, c-format -msgid "Warning" +msgid "Exchange" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 #, c-format -msgid "Error" +msgid "Status" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, c-format msgid "Bank account verification required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, c-format msgid "More information required." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, c-format msgid "Syncing..." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 #, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "Ok" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The account for wire transfers is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "No exchange keys" +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +msgid "No contact with the payment service yet." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 +#, c-format +msgid "The server is still synchronizing with the payment service provider." +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, c-format msgid "No transfers can be made from this account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, c-format msgid "" "This account cannot be used. The payment service provider must verify the " "account information manually." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, c-format msgid "" "This account has been successfully configured for use with the payment " "service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, c-format msgid "Unsupported account" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2327,9 +2610,15 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 +#, c-format +msgid "Change value to empty" +msgstr "" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 #, c-format -msgid "Change value to unknown date" +msgid "Change value to never" msgstr "" #. screenid: 12 @@ -2339,7 +2628,7 @@ msgid "Enter description or id" msgstr "" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, c-format msgid "No match found for that description or ID." msgstr "" @@ -2353,11 +2642,11 @@ msgstr "" #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 #, c-format -msgid "Quantity must be greater than 0!" +msgid "Quantity must be greater than zero." msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2365,49 +2654,55 @@ msgid "" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, c-format msgid "Search product" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, c-format msgid "How many products will be added" msgstr "" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, c-format +msgid "Add it to the order" +msgstr "" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 #, c-format -msgid "Add from inventory" +msgid "Invalid" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "Miktar" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2415,7 +2710,7 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2423,297 +2718,309 @@ msgid "" msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, c-format msgid "Add tax to the tax list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, c-format msgid "Must be a number." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, c-format msgid "Must be greater than 0." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, c-format msgid "Unit name" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, fuzzy, c-format msgid "Total price" msgstr "Ürünler" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, c-format msgid "Must be greater than 0" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, c-format msgid "Must have a refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, c-format msgid "Auto refund can't be after refund deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, c-format msgid "Must be in the future" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 -#, c-format -msgid "is not a valid URL" -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 +#, fuzzy, c-format +msgid "Invalid URL" +msgstr "Geçerlilik" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 +#, fuzzy, c-format +msgid "create order" +msgstr "Oluşturulma" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, c-format +msgid "Conflict" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 #, c-format -msgid "%1$s products with a total price of %2$s." +msgid "%1$s products with a total price of %2$s ." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, fuzzy, c-format msgid "Products price sum" msgstr "Ürünler" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, fuzzy, c-format msgid "Total product price added up" msgstr "Ürünler" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, c-format msgid "Final order price" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, c-format msgid "Shipping and fulfillment" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, fuzzy, c-format msgid "Delivery location" msgstr "Kasaba konumu" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, c-format msgid "Address where the products will be delivered" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, c-format msgid "Fulfillment message" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, c-format msgid "Payment time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2722,19 +3029,19 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, c-format msgid "Default" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, c-format msgid "Refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2742,27 +3049,27 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, c-format msgid "Wire transfer time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, c-format msgid "Auto-refund time" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2770,13 +3077,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, c-format msgid "Maximum fee" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2784,13 +3091,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, fuzzy, c-format msgid "Create token" msgstr "Oluşturulma" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2798,13 +3105,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2812,115 +3119,121 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, c-format msgid "Minimum age defined by the products is %1$s" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, c-format msgid "remove" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, fuzzy, c-format msgid "Custom field name" msgstr "Bina adı" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, c-format msgid "No deadline" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 -#, c-format -msgid "Select date to show nearby orders" -msgstr "" +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 +#, fuzzy, c-format +msgid "get product details" +msgstr "Hesap" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, c-format msgid "Only show unpaid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, c-format msgid "Only show paid orders" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, c-format msgid "Only show orders with refunds" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -2928,628 +3241,747 @@ msgid "" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 -#, c-format -msgid "Clear date filter" -msgstr "" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 #, c-format -msgid "Jump to date (%1$s)" +msgid "authorize refund" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, c-format msgid "Jump to order with the given product ID" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, c-format msgid "Order id" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, c-format +msgid "Clear date filter" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, c-format +msgid "Select date to show nearby orders" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, c-format msgid "Instance unknown" msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, c-format msgid "Order unknown" msgstr "" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, c-format +msgid "This order is not refundable" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, fuzzy, c-format msgid "Create order" msgstr "Oluşturulma" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, c-format msgid "Load more orders after the last one" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, c-format msgid "Duplicated" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, c-format msgid "This value exceeds the refundable amount." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, c-format msgid "Reason" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, c-format msgid "Amount to be refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, c-format msgid "Requested by the customer" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, c-format msgid "Other" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, c-format msgid "Why this order is being refunded" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, c-format msgid "More information to give context" msgstr "" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, c-format msgid "now" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " "service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, c-format msgid "This refund has been claimed by the customer." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, c-format msgid "Contract terms" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, c-format msgid "Human-readable description of the whole purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, c-format msgid "Total price for the transaction" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, c-format msgid "Time when this contract was generated" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 #, c-format msgid "Wire transfer deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, c-format -msgid "Transfer deadline for the exchange" +msgid "Transfer deadline for the payment service" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format -msgid "Time indicating when the order should be delivered" +msgid "Auto-refund delay" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, c-format -msgid "Where the order will be delivered" +msgid "" +"How long the wallet should try to get an automatic refund for the purchase" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 #, c-format -msgid "Auto-refund delay" +msgid "Time indicating when the order should be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 #, c-format -msgid "" -"How long the wallet should try to get an automatic refund for the purchase" +msgid "Where the order will be delivered" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, c-format msgid "order created" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, c-format msgid "pay deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, c-format msgid "refund deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, c-format msgid "delivery" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, c-format msgid "Claimed" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, fuzzy, c-format msgid "Claimed at" msgstr "Oluşturulma" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, fuzzy, c-format msgid "Payment details" msgstr "Hesap" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, c-format msgid "Unpaid" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, fuzzy, c-format msgid "Product list" msgstr "Ürünler" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 #, c-format -msgid "refund missed: %1$s" +msgid "The contract terms have a v1 order without choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "The contract terms have a v1 order with a bad choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format -msgid "refund created: %1$s" +msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 #, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund missed: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, c-format -msgid "refund taken: %1$s" +msgid "refund created: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, c-format -msgid "The contract terms has a v1 order without choices_index." +msgid "refund taken: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 -#, c-format -msgid "The contract terms has a v1 order with a bad choices_index." -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 +#, fuzzy, c-format +msgid "refund taken: %1$s : %2$s" +msgstr "Geçerlilik" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, c-format msgid "wire deadline" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 #, c-format -msgid "Wired" +msgid "Related wire transfers" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 +#, fuzzy, c-format +msgid "Unconfirmed" +msgstr "Kasaba konumu" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 +#, fuzzy, c-format +msgid "Confirmed" +msgstr "Kasaba konumu" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, c-format msgid "Refund order" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, c-format msgid "Not refundable" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, c-format +msgid "No wire transfer reported" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, c-format +msgid "Check wire transfers" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 -#, c-format -msgid "Pay at" -msgstr "" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 +#, fuzzy, c-format +msgid "Payment link" +msgstr "Hesap" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." msgstr "" +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Kasaba konumu" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Kasaba konumu" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 #, c-format -msgid "Just letters and numbers from 2 to 7" +msgid "Use only letters and digits (2–7)." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, c-format msgid "The size of the key must be 32 characters" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, c-format +msgid "add otp device" +msgstr "" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3557,19 +3989,19 @@ msgid "" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, c-format msgid "Generate random secret key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, c-format msgid "Random" msgstr "" @@ -3581,7 +4013,7 @@ msgid "Create another" msgstr "Oluşturulma" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3589,13 +4021,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, c-format +msgid "delete otp device" +msgstr "" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, c-format msgid "OTP devices" msgstr "" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, c-format msgid "Delete selected devices from the database" msgstr "" @@ -3607,143 +4045,299 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 #, c-format -msgid "Template id is unknown" +msgid "update otp device" msgstr "" #. screenid: 52 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format +msgid "Template id is unknown" +msgstr "" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 +#, c-format msgid "" "The provided information is inconsistent with the current state of the " "template" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, c-format msgid "Not modified" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, c-format msgid "Is not the same" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, c-format +msgid "Next password to be used" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, c-format +msgid "Repeat password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, c-format +msgid "Confirm the same password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, fuzzy, c-format msgid "Confirm change" msgstr "Kasaba konumu" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, c-format +msgid "change password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, c-format msgid "Testing password change" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, c-format msgid "Password changed" msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, c-format msgid "The current password is wrong." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, c-format +msgid "change instance password" +msgstr "" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, fuzzy, c-format msgid "Account not found." msgstr "Hesap" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, fuzzy, c-format +msgid "create money pot" +msgstr "Banka hesabı" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete money pot" +msgstr "Oluşturulma" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, c-format +msgid "Money pot deleted" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new pots" +msgstr "Banka hesabı" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, c-format +msgid "Load more pots before the first one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, fuzzy, c-format +msgid "Total" +msgstr "Ürünler" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, c-format +msgid "Delete selected pots from the database" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, c-format +msgid "Load more pots after the last one" +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, c-format msgid "Add element to the list" msgstr "" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, c-format +msgid "The value is too precise" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, fuzzy, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "Geçerlilik" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, c-format +msgid "Descripton" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, fuzzy, c-format +msgid "Totals" +msgstr "Ürünler" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, c-format msgid "This product has been configured without stock control" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3751,97 +4345,97 @@ msgid "" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 #, c-format -msgid "Incoming" +msgid "Current" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format -msgid "Lost" +msgid "Incoming" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format -msgid "Current" +msgid "Lost" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, c-format msgid "Remove stock control for this product" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, c-format msgid "Warehouse address" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, fuzzy, c-format msgid "Invalid amount" msgstr "Geçerlilik" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, fuzzy, c-format msgid "Product name." msgstr "Ürünler" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, c-format msgid "Age restriction" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, c-format msgid "Is this product restricted for customer below certain age?" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, c-format msgid "Minimum age of the customer" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -3849,104 +4443,114 @@ msgid "" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, c-format msgid "Search by category description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, c-format msgid "Search by money pot description or id" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, c-format msgid "Money pots where this product will be listed on." msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, c-format msgid "Select one" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, c-format msgid "Search by group name or id" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, fuzzy, c-format +msgid "add product" +msgstr "Ürünler" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -3959,187 +4563,336 @@ msgid "Add product to inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, fuzzy, c-format +msgid "update product" +msgstr "Ürünler" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, c-format msgid "Product not found." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 #, c-format msgid "Sold" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, c-format +msgid "infinite" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, c-format msgid "Go to product update page" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, c-format msgid "Remove this product from the database" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, c-format msgid "Update the product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, c-format msgid "Update product with new price" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, fuzzy, c-format msgid "Confirm update" msgstr "Kasaba konumu" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, c-format msgid "Add more elements to the inventory" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, c-format msgid "Report elements lost in the inventory" msgstr "" -#. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 +#, c-format +msgid "New price for the product" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 +#, c-format +msgid "There are values with errors." +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 +#, c-format +msgid "Update product with new stock and price" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 +#, c-format +msgid "There are no products to list yet, add more by pressing the + sign" +msgstr "" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, fuzzy, c-format +msgid "delete product" +msgstr "Ürünler" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 +#, c-format +msgid "Product (ID: %1$s) has been deleted" +msgstr "" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 +#, c-format +msgid "Jump to product with the given product ID" +msgstr "" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 +#, fuzzy, c-format +msgid "Product id" +msgstr "Ürünler" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 +#, fuzzy, c-format +msgid "Delete product" +msgstr "Ürünler" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 +#, c-format +msgid "Delete the product \"%1$s\"" +msgstr "" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 +#, c-format +msgid "" +"If you delete the product named %1$s (ID: %2$s ), the stock and related " +"information will be lost" +msgstr "" + +#. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 +#, c-format +msgid "Deleting a product cannot be undone." +msgstr "" + +#. screenid: 57 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 +#, fuzzy, c-format +msgid "Product id:" +msgstr "Ürünler" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, c-format +msgid "It should start with /" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, c-format +msgid "Type of the data source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 #, c-format -msgid "New price for the product" +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." msgstr "" -#. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 #, c-format -msgid "There are values with errors." +msgid "Report frequency" msgstr "" -#. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 #, c-format -msgid "Update product with new stock and price" +msgid "Report frequency shift" msgstr "" -#. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 #, c-format -msgid "There are no products to list yet, add more by pressing the + sign" +msgid "delete scheduled report" msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 #, c-format -msgid "Product (ID: %1$s) has been deleted" +msgid "Scheduled report deleted" msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 #, c-format -msgid "Jump to product with the given product ID" +msgid "Scheduled reports" msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 -#, fuzzy, c-format -msgid "Product id" -msgstr "Ürünler" - -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 #, fuzzy, c-format -msgid "Delete product" -msgstr "Ürünler" +msgid "Add new reports" +msgstr "Banka hesabı" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 #, c-format -msgid "Delete the product \"%1$s\"" +msgid "Frequency" msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 #, c-format -msgid "" -"If you delete the product named %1$s (ID: %2$s ), the stock and related " -"information will be lost" +msgid "Delete selected scheduled report from the database" msgstr "" -#. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 #, c-format -msgid "Deleting a product cannot be undone." +msgid "There are no reports yet, add more pressing the + sign" msgstr "" -#. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 -#, fuzzy, c-format -msgid "Product id:" -msgstr "Ürünler" +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4164,296 +4917,308 @@ msgid "Orders table" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, c-format msgid "Orders statistics" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, c-format msgid "# of orders since" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, c-format msgid "hour" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, c-format msgid "day" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, c-format msgid "Revenue statistics filter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, c-format msgid "Time range" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, c-format msgid "Currency" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, c-format msgid "Start time" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, c-format msgid "Must be greater that 0" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, c-format msgid "Too short" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, fuzzy, c-format +msgid "add template" +msgstr "Banka hesabı" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, c-format msgid "Template name" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, c-format msgid "If specified here, this template will create orders with the same price" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, fuzzy, c-format msgid "Amount is editable" msgstr "Hesap" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4461,133 +5226,145 @@ msgid "" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, c-format msgid "Use to verify transactions in offline mode." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, fuzzy, c-format msgid "Add new templates" msgstr "Banka hesabı" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, c-format msgid "Load more templates before the first one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, c-format msgid "Delete selected templates from the database" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, c-format msgid "Use template to create new order" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, c-format msgid "Load more templates after the last one" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, fuzzy, c-format +msgid "delete template" +msgstr "Banka hesabı" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, c-format msgid "Jump to template with the given template ID" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, c-format msgid "Delete template" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, c-format msgid "Deleting a template cannot be undone." msgstr "" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, fuzzy, c-format +msgid "update template" +msgstr "Banka hesabı" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4595,19 +5372,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, c-format msgid "If specified, this template will create orders with the same price" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4615,103 +5392,153 @@ msgid "" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, c-format msgid "An amount is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, c-format msgid "An order summary is required" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, c-format +msgid "create order from template" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, c-format msgid "New order from template" msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, c-format +msgid "Expiration should be after start date" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, c-format +msgid "Granularity can't be greater than duration." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, fuzzy, c-format +msgid "create token family" +msgstr "Oluşturulma" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, c-format +msgid "Token family description for customers" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, c-format msgid "Start Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, c-format msgid "Expiration Date" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4719,83 +5546,116 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." +msgid "1 minute" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, c-format +msgid "1 hour" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 +#, c-format +msgid "1 day" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, c-format +msgid "30 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, c-format +msgid "90 days" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, c-format +msgid "365 days" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, c-format msgid "Valid Before" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, c-format msgid "Go to token family update page" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, c-format msgid "Remove this token family from the database" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, fuzzy, c-format +msgid "delete token family" +msgstr "Oluşturulma" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, c-format msgid "Token family has been deleted." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, fuzzy, c-format msgid "Delete token family" msgstr "Oluşturulma" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, c-format msgid "Delete the token family \"%1$s\"" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4803,227 +5663,294 @@ msgid "" msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, c-format msgid "Deleting a token family %1$s ." msgstr "" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, c-format msgid "can't be undone" msgstr "" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, fuzzy, c-format +msgid "update token family" +msgstr "Oluşturulma" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, c-format msgid "Token Family: %1$s" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 #, c-format -msgid "User-readable token family name" +msgid "inform wire transfer" msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 #, c-format -msgid "Token family description for customers" +msgid "Wire transfer already confirmed." msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 +#, c-format +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 #, c-format -msgid "Incoming wire transfers" +msgid "The wire transfer has been confirmed." msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, fuzzy, c-format +msgid "Transaction details" +msgstr "Hesap" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 #, c-format -msgid "Load more wire transfers preceding the first one" +msgid "Transfer ID" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 #, c-format -msgid "Expected credit" +msgid "Orders in this wire transfer" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 +#, c-format +msgid "Fee" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, fuzzy, c-format -msgid "Confirmed" -msgstr "Kasaba konumu" +msgid "Subtotals" +msgstr "Ürünler" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 #, c-format -msgid "Validated" +msgid "Deposit fee" msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 #, c-format -msgid "Executed on" +msgid "Wire fee" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 +#, c-format +msgid "not ready" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 +#, c-format +msgid "loading..." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, c-format -msgid "yes" +msgid "New wire transfers" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 #, c-format -msgid "no" +msgid "Load more wire transfers preceding the first one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "never" +msgid "To be determined." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "unknown" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, c-format msgid "Load more transfers after the last one" msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 +#, c-format +msgid "Confirmed wire transfers into bank account" +msgstr "" + +#. screenid: 72 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, fuzzy, c-format msgid "All accounts" msgstr "Hesap" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, c-format msgid "Filter by account address" msgstr "" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 -#, c-format -msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." -msgstr "" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 -#, c-format -msgid "Only show wire transfers confirmed by the merchant" -msgstr "" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 #, c-format msgid "Verified" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format -msgid "Wire transfer already confirmed." +msgid "" +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, c-format -msgid "I have received the wire transfer" +msgid "It's not the same." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, c-format -msgid "Confirm the wire transfer" +msgid "You are deleting the instance with ID \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 -#, c-format -msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." -msgstr "" +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 +#, fuzzy, c-format +msgid "delete current instance" +msgstr "Banka hesabı" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format -msgid "Time" +msgid "Instance" msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format -msgid "Transfer ID" +msgid "Write the instance name to confirm the deletion" msgstr "" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format -msgid "It's not the same." +msgid "" +"All the data will be fully deleted, otherwise only the access will be " +"removed." msgstr "" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format -msgid "You are deleting the instance with ID \"%1$s\"" +msgid "DELETE" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 #, c-format -msgid "Instance" +msgid "Doesn't have the pattern of an email" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 #, c-format -msgid "Write the instance name to confirm the deletion" +msgid "Should start with +" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 #, c-format -msgid "Purge" +msgid "A phone number consists of numbers only" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 +#, fuzzy, c-format +msgid "Invalid phone number" +msgstr "Geçerlilik" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 +#, fuzzy, c-format +msgid "Invalid value" +msgstr "Geçerlilik" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 #, c-format -msgid "" -"All the data will be fully deleted, otherwise only the access will be " -"removed." +msgid "Max 7 lines" msgstr "" -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 #, c-format -msgid "DELETE" +msgid "update instance settings" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format msgid "Instance id" msgstr "" +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 +#, c-format +msgid "URL" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, fuzzy, c-format +msgid "Cancel operation" +msgstr "Kasaba konumu" + #. screenid: 74 #: packages/merchant-backoffice-ui/src/paths/instance/update/index.tsx:113 #, c-format @@ -5031,133 +5958,133 @@ msgid "Delete this instance" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, c-format msgid "Must be one of '%1$s'" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, c-format msgid "URL is invalid" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, c-format +msgid "add webhook" +msgstr "" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, c-format msgid "Payment" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, c-format msgid "Order settled" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, c-format msgid "Category added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, c-format msgid "Category updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, c-format msgid "Inventory updated" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5165,963 +6092,903 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, c-format msgid "order's description" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, c-format msgid "order's price" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, c-format msgid "the amount that was being refunded" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, c-format msgid "Http header" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, c-format msgid "Body template used by the webhook." msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, c-format +msgid "delete webhook" +msgstr "" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, c-format msgid "Webhook deleted successfully" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, c-format msgid "Add new webhooks" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, c-format msgid "Load more webhooks before the first one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, c-format msgid "Delete selected webhook from the database" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, c-format msgid "Load more webhooks after the last one" msgstr "" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, c-format +msgid "update webhook" +msgstr "" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, c-format msgid "Webhook updated" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, c-format msgid "Body template used by the webhook" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, c-format +msgid "self provision instance" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, c-format msgid "Contact phone number" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, fuzzy, c-format msgid "Create" msgstr "Oluşturulma" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, c-format msgid "The instance \"%1$s\" was not found." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, c-format msgid "Date format" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, c-format msgid "Merchant type" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "Developer mode" +msgid "Developer tools" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, c-format -msgid "Money pot deleted" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, fuzzy, c-format -msgid "Add new pots" -msgstr "Banka hesabı" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, c-format -msgid "Load more pots before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, fuzzy, c-format -msgid "Total" -msgstr "Ürünler" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, c-format -msgid "Delete selected pots from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, c-format -msgid "Load more pots after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 #, c-format -msgid "Value can only by number" +msgid "Enable UI tools for troubleshooting." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "The value is too high" +msgid "Testing features" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "The value is too precise" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, fuzzy, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "Geçerlilik" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 #, c-format -msgid "Descripton" +msgid "Developer mode" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, fuzzy, c-format -msgid "Totals" -msgstr "Ürünler" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "There is already a money pot with the same id." +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, fuzzy, c-format -msgid "Product group deleted" -msgstr "Ürünler" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, fuzzy, c-format -msgid "Add new group" -msgstr "Banka hesabı" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 -#, c-format -msgid "Load more groups before the first one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 -#, c-format -msgid "Delete selected group from the database" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 -#, c-format -msgid "Load more groups after the last one" -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 -#, c-format -msgid "There are no product groups yet, add more pressing the + sign" -msgstr "" +msgid "create pos access token" +msgstr "Oluşturulma" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, c-format -msgid "Scheduled report deleted" +msgid "Device name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "Scheduled reports" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 #, fuzzy, c-format -msgid "Add new reports" -msgstr "Banka hesabı" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 -#, c-format -msgid "Frequency" -msgstr "" +msgid "Payment services status" +msgstr "Hesap" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 #, c-format -msgid "Delete selected scheduled report from the database" +msgid "Base URL" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 #, c-format -msgid "There are no reports yet, add more pressing the + sign" +msgid "Next update" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 #, c-format -msgid "No report generator configured in the server" +msgid "This payment service is ready to be used." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 #, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 #, c-format -msgid "Type of the data source" +msgid "Next update will be at %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, c-format msgid "You need to associate a bank account to receive revenue." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 #, c-format -msgid "Without this the merchant backend will refuse to create new orders." +msgid "Without this the server will refuse to create new orders." msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, c-format msgid "KYC verification needed" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 #, c-format msgid "" "Some transfers are on hold until the KYC process is completed. Visit the KYC " "section in the left-hand menu for more information." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 #, c-format -msgctxt "title" -msgid "%1$s: Settings" +msgid "No 'admin' instance configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#, c-format +msgid "Create an 'admin' instance to begin using the merchant portal." +msgstr "" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New bank account" -msgstr "Banka hesabı" +msgid "delete bank account" +msgstr "Oluşturulma" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 +#, c-format +msgid "The bank account has been deleted." +msgstr "" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 +#, fuzzy, c-format +msgid "Delete account" +msgstr "Oluşturulma" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" +msgid "Delete the account \"%1$s\"" msgstr "Banka hesabı" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: Orders" +msgid "If you delete the account with name %1$s its information will be lost" +msgstr "" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 +#, c-format +msgid "Deleting an account can't be undone." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#, fuzzy, c-format +msgid "Bank accounts" +msgstr "Banka hesabı" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 +#, fuzzy, c-format +msgid "Add new account" +msgstr "Banka hesabı" + +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, c-format -msgctxt "title" -msgid "%1$s: New order" +msgid "Owner's name" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "Delete selected accounts from the database" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "There are no accounts yet, add more pressing the + sign" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, c-format -msgctxt "title" -msgid "%1$s: Update product" +msgid "No bank account configured yet." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, c-format -msgctxt "title" -msgid "%1$s: Category" +msgid "Without this information you cannot create new payment orders." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, c-format -msgctxt "title" -msgid "%1$s: New category" +msgid "This account is not ready to be used." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, c-format -msgctxt "title" -msgid "%1$s: Update category" +msgid "There are pending actions related to KYC." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 -#, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" -msgstr "" +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 +#, fuzzy, c-format +msgid "More details." +msgstr "Hesap" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 #, c-format -msgctxt "title" -msgid "%1$s: Webhooks" +msgid "You must complete kyc requirements to receive payments." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: New webhook" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 -#, c-format -msgctxt "title" -msgid "%1$s: Update webhook" -msgstr "" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 +#, fuzzy, c-format +msgid "Invalid url" +msgstr "Geçerlilik" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 #, c-format -msgctxt "title" -msgid "%1$s: OTP devices" +msgid "URL must end with a '/'" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 #, c-format -msgctxt "title" -msgid "%1$s: New OTP device" +msgid "URL must not contain params" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "URL must not hash param" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 -#, c-format -msgctxt "title" -msgid "%1$s: New template" -msgstr "" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 +#, fuzzy, c-format +msgid "change bank account" +msgstr "Banka hesabı" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: Update template" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: Templates" +msgid "Server replied with \"bad request\"." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 #, c-format -msgctxt "title" -msgid "%1$s: Use template" +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "Unsupported type of account" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 #, c-format -msgctxt "title" -msgid "%1$s: Update token family" -msgstr "" +msgid "Account:" +msgstr "Hesap:" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Access tokens" -msgstr "Oluşturulma" +msgid "Account details" +msgstr "Hesap" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New access token" -msgstr "Oluşturulma" - -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 -#, c-format -msgctxt "title" -msgid "New instance" -msgstr "" +msgid "Extra subject" +msgstr "Konu" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format -msgctxt "title" -msgid "Instances" +msgid "" +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format -msgid "The request reached a timeout, check your connection." +msgid "" +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "The request was cancelled." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." -msgstr "" - -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 -#, c-format -msgid "The server's response was malformed." +"From where the merchant can download information about incoming wire " +"transfers to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "Auth type" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 #, c-format -msgid "Unexpected request error." +msgid "Choose the authentication type for the account info URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Unexpected error." +msgid "Without authentication" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 -#, fuzzy, c-format -msgid "Add new instance" -msgstr "Banka hesabı" - -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Edit" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, c-format -msgid "Change password" +msgid "With token" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." +msgid "Do not change" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgid "Username to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Only show active instances" +msgid "Password to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Active" +msgid "Access token to access the account information." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Only show deleted instances" +msgid "Match" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Deleted" +msgid "Check where the information match against the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "Show all instances" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "Delete instance" +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 -#, c-format -msgid "Delete the instance \"%1$s\"" -msgstr "" +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 +#, fuzzy, c-format +msgid "add bank account" +msgstr "Banka hesabı" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" +msgid "The instance does not exist." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." -msgstr "" - -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 -#, c-format -msgid "Deleting an instance %1$s" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 #, c-format -msgid "This cannot be undone!" +msgid "Server didn't like the request we made." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "Purge the instance" +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purge the instance \"%1$s\"" +msgid "Verify details with server" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 #, c-format -msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" +msgid "create instance and login" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Instance created" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 #, c-format -msgid "Purging an instance %1$s" +msgid "Please complete the marked fields and choose authorization method" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, c-format msgid "Contacting the server failed" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6132,14 +6999,20 @@ msgstr "" msgid "Business Name" msgstr "" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, fuzzy, c-format +msgid "update product group" +msgstr "Ürünler" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" diff --git a/packages/merchant-backoffice-ui/src/i18n/uk.po b/packages/merchant-backoffice-ui/src/i18n/uk.po @@ -26,55 +26,55 @@ msgstr "" "X-Generator: Weblate 5.13.2\n" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:93 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:98 #, c-format msgid "Cancel" msgstr "Скасувати" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:102 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 #, c-format msgid "%1$s" msgstr "%1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:107 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:117 #, c-format msgid "Close" msgstr "Закрити" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:150 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:165 #, c-format msgid "Continue" msgstr "Продовжити" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:214 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:234 #, c-format msgid "Clear" msgstr "Очистити" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:227 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:247 #, c-format msgid "Confirm" msgstr "Підтвердити" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:280 -#, c-format -msgid "Correct form" -msgstr "" +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#, fuzzy, c-format +msgid "Correct the form" +msgstr "Умови контракту" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:281 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:301 #, c-format msgid "Comparing account details" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:287 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:307 #, c-format msgid "" "The connection to the account info URL was successful, but the reported " @@ -82,103 +82,103 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:297 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:317 #, c-format msgid "Field" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:300 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:320 #, c-format msgid "In the form" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:303 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:323 #, c-format msgid "Reported" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:310 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:330 #, c-format msgid "Type" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:318 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:338 #, c-format msgid "IBAN" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:327 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:347 #, c-format msgid "Address" msgstr "Адреса" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:337 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:357 #, c-format msgid "Host" msgstr "Хост" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:344 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:364 #, fuzzy, c-format msgid "Account ID" msgstr "Рахунок" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:355 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:375 #, fuzzy, c-format msgid "The account owner's legal name" msgstr "Ім'я власника банківського рахунку." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:363 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:383 #, c-format msgid "The postal code of the account owner's address" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:374 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:394 #, c-format msgid "Town" msgstr "Місто" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:404 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:426 #, c-format msgid "Bank host" msgstr "Хост банку" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:405 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:427 #, c-format msgid "Bank account" msgstr "Банківський рахунок" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:410 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:432 #, c-format msgid "BIC" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:436 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:468 #, c-format msgid "OK" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:437 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 #, c-format msgid "Validate bank account: %1$s" msgstr "Перевірка дійсності банківського рахунку: %1$s" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:443 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:478 #, c-format msgid "" "In order to prove that you are the beneficial owner of the bank account, you " @@ -187,13 +187,27 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:454 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:489 +#, c-format +msgid "" +"If your bank application allows you make a wire transfer using standard QR " +"codes then try scanning the following:" +msgstr "" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:505 +#, fuzzy, c-format +msgid "Bank app" +msgstr "Банківський рахунок" + +#. screenid: 18 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:529 #, c-format msgid "Step 1:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:456 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:531 #, c-format msgid "" "Copy and paste this IBAN and the legal name of the beneficial owner into the " @@ -201,19 +215,19 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:465 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:540 #, c-format msgid "Beneficiary" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:469 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 #, c-format msgid "Step 2:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:471 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:546 #, c-format msgid "" "Copy this string and paste it into the 'Subject' or 'Purpose' field in your " @@ -221,31 +235,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:477 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:552 #, c-format msgid "Subject" msgstr "Призначення" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:480 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:555 #, fuzzy, c-format msgid "Receiver postal code" msgstr "Дата доставки" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:485 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:560 #, fuzzy, c-format msgid "Receiver town" msgstr "Дата доставки" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:490 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:565 #, c-format msgid "Step 3:" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:492 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:567 #, c-format msgid "" "Select the smallest possible amount for a wire transfer in your preferred " @@ -253,39 +267,31 @@ msgid "" msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:501 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:576 #, c-format msgid "" "Make sure ALL data is correct, especially the subject, and that you are " "choosing the bank account from which you definitely want to make the wire " "transfer. You can use the copy buttons (%1$s) to avoid typos or make use of " -"the \"payto://\" URI below to copy just one value." -msgstr "" - -#. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:516 -#, c-format -msgid "" -"If your bank application allows you make a wire transfer using standard QR " -"codes then try scanning the following:" +"the PayTo URI below to copy just one value." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:544 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:588 #, c-format msgid "" -"As an alternative, in case that your bank already supports the 'PayTo URI' " -"standard, you can use this %1$s link instead" +"As an alternative, in case that your bank already supports the %1$s , you " +"can use this %2$s link instead." msgstr "" #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:724 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:784 #, c-format msgid "Operation in progress..." msgstr "Операція виконується..." #. screenid: 18 -#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:733 +#: packages/merchant-backoffice-ui/src/components/modal/index.tsx:793 #, fuzzy, c-format msgid "The operation will be automatically cancelled after %1$s seconds" msgstr "Операція буде автоматично скасована через %1$s секунд" @@ -314,74 +320,80 @@ msgstr "хвилини" msgid "seconds" msgstr "секунди" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:43 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:52 #, fuzzy, c-format msgid "Forever" msgstr "назавжди" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:58 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:65 #, c-format msgid "%1$sM" msgstr "%1$sМ" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:60 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:67 #, c-format msgid "%1$sY" msgstr "%1$sР" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:62 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:69 #, c-format msgid "%1$sd" msgstr "%1$sдн." -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:64 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:71 #, c-format msgid "%1$sh" msgstr "%1$sг" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:66 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:73 #, c-format msgid "%1$smin" msgstr "%1$sхв" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:68 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:75 #, c-format msgid "%1$ssec" msgstr "%1$sсек" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:164 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:168 #, fuzzy, c-format -msgid "Change value to never" +msgid "Change the value to never" msgstr "змінити значення на ніколи" -#. screenid: 8 -#: packages/merchant-backoffice-ui/src/components/form/InputDuration.tsx:175 +#. screenid: 114 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationSelector.tsx:179 #, fuzzy, c-format -msgid "Change value to empty" +msgid "Change the value to empty" msgstr "змінити значення на порожнє" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:89 +#, c-format +msgid "The file is not an image" +msgstr "" + +#. screenid: 9 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:93 #, fuzzy, c-format -msgid "Image must be smaller than 1 MB" +msgid "The image was normalized to be smaller than 1 MB" msgstr "Зображення повинно бути меншим за 1 МБ" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:123 #, c-format msgid "Add" msgstr "Додати" #. screenid: 9 -#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:133 +#: packages/merchant-backoffice-ui/src/components/form/InputImage.tsx:138 #, c-format msgid "Remove" msgstr "Видалити" @@ -441,49 +453,49 @@ msgid "Additional address lines" msgstr "Додаткова інформація" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:111 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:125 #, c-format msgid "Orders" msgstr "Замовлення" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:124 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 #, c-format msgid "Inventory" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:137 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:149 #, c-format msgid "Categories" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:150 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:161 #, fuzzy, c-format msgid "Wire transfers" msgstr "Ідентифікатор банківського переказу" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:163 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:173 #, c-format msgid "Templates" msgstr "Шаблони" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:176 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:182 #, fuzzy, c-format msgid "Product groups" msgstr "Товари" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:189 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:191 #, c-format msgid "Money pots" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:202 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:203 #, c-format msgid "Reports" msgstr "" @@ -495,91 +507,133 @@ msgid "Statistics" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:228 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:226 #, c-format msgid "Subscriptions and Discounts" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:234 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:232 #, fuzzy, c-format msgid "Configuration" msgstr "Термін дії" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:308 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:292 +#, fuzzy, c-format +msgid "KYC Status" +msgstr "URL статусу" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:305 #, c-format msgid "OTP Devices" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:321 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:317 #, c-format msgid "Webhooks" msgstr "Вебхуки" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:334 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:329 #, c-format msgid "Settings" msgstr "Налаштування" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:347 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:341 #, c-format msgid "Password" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:360 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:353 #, fuzzy, c-format msgid "Access tokens" msgstr "Токен доступу" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:361 #, c-format msgid "Connection" msgstr "З'єднання" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:377 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:368 #, c-format msgid "Personalization" msgstr "" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:400 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:391 +#, fuzzy, c-format +msgid "Payment services" +msgstr "Деталі оплати" + +#. screenid: 17 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:398 #, c-format msgid "Instances" msgstr "Інстанції" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:408 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:405 #, c-format msgid "New" msgstr "Новий" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:418 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:414 #, c-format msgid "List" msgstr "Список" #. screenid: 17 -#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:437 +#: packages/merchant-backoffice-ui/src/components/menu/SideBar.tsx:432 #, c-format msgid "Log out" msgstr "Вийти" +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:130 +#, fuzzy, c-format +msgid "Select one..." +msgstr "Виберіть один рахунок" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:132 +#, c-format +msgid "Days" +msgstr "" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:134 +#, fuzzy, c-format +msgid "Hours" +msgstr "години" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:136 +#, fuzzy, c-format +msgid "Minutes" +msgstr "хвилини" + +#. screenid: 112 +#: packages/merchant-backoffice-ui/src/components/form/InputDurationDropdown.tsx:138 +#, fuzzy, c-format +msgid "Seconds" +msgstr "секунди" + #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:56 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 #, c-format msgid "Username" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:57 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:65 #, fuzzy, c-format msgid "" "Name of the instance in URLs. The 'admin' instance is special in that it is " @@ -589,117 +643,116 @@ msgstr "" "використовується для адміністрування інших інстанцій." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:63 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:72 #, c-format msgid "Business name" msgstr "Назва бізнесу" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:64 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:73 #, c-format msgid "Legal name of the business represented by this instance." msgstr "Юридична назва бізнесу, який представляє ця інстанція." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:69 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:79 #, c-format msgid "Email" msgstr "Email" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:70 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:80 #, c-format msgid "Contact email" msgstr "Контактний email" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:75 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:86 #, fuzzy, c-format msgid "Phone number" msgstr "Номер маршрутизації." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:76 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 #, fuzzy, c-format msgid "Contact phone" msgstr "Контактний email" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:81 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 #, c-format msgid "Website URL" msgstr "URL вебсайту" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:82 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 #, c-format msgid "URL." msgstr "URL." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:87 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 #, c-format msgid "Logo" msgstr "Логотип" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:88 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:101 #, c-format msgid "Logo image." msgstr "Зображення логотипу." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:93 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:106 #, c-format msgid "Pay transaction fee" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:94 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 #, c-format msgid "Cover the transaction cost or pass it on to the user." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:100 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:113 #, c-format msgid "Physical location of the merchant." msgstr "Фізичне розташування продавця." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:107 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 #, c-format msgid "Jurisdiction" msgstr "Юрисдикція" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:108 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 #, c-format msgid "Jurisdiction for legal disputes with the merchant." msgstr "Юрисдикція для правових спорів з продавцем." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:114 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 #, c-format msgid "Default cut-off times" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:115 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 #, c-format msgid "" -"These will be the values are going to be used if are not overriden in the " -"order creation." +"These values will be used if they are not overridden during order creation." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:120 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:133 #, fuzzy, c-format msgid "Payment delay" msgstr "Деталі оплати" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:121 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 #, c-format msgid "" "Time customers have to pay an order before the offer expires by default." @@ -708,49 +761,61 @@ msgstr "" "пропозиції за замовчуванням." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:127 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:139 +#, c-format +msgid "Change the value to the default value specified by the server." +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:148 +#, c-format +msgid "Reset" +msgstr "" + +#. screenid: 16 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:156 #, fuzzy, c-format msgid "Refund delay" msgstr "Затримка автоматичного повернення" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:128 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:157 #, c-format msgid "Time merchants have to refund an order." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:134 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:179 #, fuzzy, c-format msgid "Wire transfer delay" msgstr "Термін банківського переказу" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:135 -#, c-format +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:180 +#, fuzzy, c-format msgid "" -"Maximum time an exchange is allowed to delay wiring funds to the merchant, " -"enabling it to aggregate smaller payments into larger wire transfers and " -"reducing wire fees." +"Maximum time an payment service is allowed to delay wiring funds to the " +"merchant, enabling it to aggregate smaller payments into larger wire " +"transfers and reducing wire fees." msgstr "" "Максимальний час, на який обмінник може затримати переказ коштів продавцю, " "дозволяючи йому об'єднувати менші платежі у більші банківські перекази та " "знижуючи комісії за переказ." #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:141 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:202 #, fuzzy, c-format msgid "Wire transfer rounding" msgstr "Термін банківського переказу" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:142 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:203 #, c-format -msgid "Interval to which wire deadlines should be rounded up to." +msgid "Rounding interval for wire deadlines." msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:143 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:204 #, c-format msgid "" "As an example if you set the interval to day the wire transfer deadline will " @@ -758,1497 +823,1716 @@ msgid "" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:158 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:219 #, fuzzy, c-format msgid "No rounding" msgstr "замовлення не знайдено" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:160 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:221 #, fuzzy, c-format msgid "To second" msgstr "секунди" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:162 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:223 #, fuzzy, c-format msgid "To minute" msgstr "хвилини" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:164 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:225 #, fuzzy, c-format msgid "To hour" msgstr "години" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:166 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:227 #, c-format msgid "To day" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:168 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:229 #, c-format msgid "To week" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:170 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:231 #, c-format msgid "To month" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:172 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:233 #, c-format msgid "To quarter" msgstr "" #. screenid: 16 -#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:174 +#: packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx:235 #, c-format msgid "To year" msgstr "" +#. screenid: 90 +#: packages/merchant-backoffice-ui/src/components/form/InputCode.tsx:147 +#, c-format +msgid "Can't paste this content. Please copy the 8 digits again." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:86 +#, c-format +msgid "Resend code possible in %1$s seconds." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:95 +#, c-format +msgid "Resend code possible in less than one minute." +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#, c-format +msgid "Resend code possible in less than 5 minutes." +msgstr "" + #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:80 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:112 +#, c-format +msgid "Resend will be possible after %1$s" +msgstr "" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:182 #, fuzzy, c-format msgid "Expired" msgstr "Закінчується о" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:82 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:184 #, fuzzy, c-format msgid "Required" msgstr "обовʼязково" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:102 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 +#, fuzzy, c-format +msgid "verify code" +msgstr "Алгоритм перевірки" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:211 #, fuzzy, c-format msgid "Unauthorized" msgstr "Авторизовано" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:104 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:213 #, fuzzy, c-format msgid "The code is not correct." msgstr "Це недійсна адреса біткойн." #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:106 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:215 #, c-format -msgid "The challenge is not known anymore." +msgid "The challenge is no longer valid." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:108 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:217 #, c-format msgid "Too many attempts trying to solve the challenge." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:126 -#, c-format -msgid "Validation code sent." -msgstr "" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:223 +#, fuzzy, c-format +msgid "send challenge" +msgstr "Підтвердити зміну" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:142 -#, c-format -msgid "The verification code sent to the phone number ending with \"%1$s\"" -msgstr "" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:245 +#, fuzzy, c-format +msgid "Failed to send the verification code." +msgstr "Не вдалося видалити інстанцію" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:149 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:247 #, c-format -msgid "The verification code sent to the email address starting with \"%1$s\"" +msgid "The request was valid, but the server is refusing action." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:158 -#, fuzzy, c-format -msgid "Verification code" -msgstr "Алгоритм перевірки" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:249 +#, c-format +msgid "The server is not aware of the specified MFA challenge." +msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:165 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:251 #, c-format -msgid "It will expire at %1$s" +msgid "Code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:178 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:253 #, c-format -msgid "" -"The challenge is expired and can't be solved but you can go back and create " -"a new challenge." +msgid "Already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:194 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:255 #, c-format -msgid "Back" -msgstr "Назад" +msgid "It is too early to request another transmission of the challenge." +msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:197 -#, fuzzy, c-format -msgid "Verify" -msgstr "Перевірено" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:292 +#, c-format +msgid "Validation code sent." +msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:258 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:304 #, fuzzy, c-format -msgid "Failed to send the verification code." -msgstr "Не вдалося видалити інстанцію" +msgid "The verification code sent to the phone \" %1$s\"" +msgstr "Ви встановлюєте токен доступу для нової інстанції" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:260 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:311 #, c-format -msgid "The request was valid, but the server is refusing action." +msgid "The verification code sent to the phone number ending with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:262 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:319 #, c-format -msgid "The backend is not aware of the specified MFA challenge." +msgid "The verification code sent to the email address \" %1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:264 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:326 #, c-format -msgid "Code transmission failed." +msgid "The verification code sent to the email address starting with \"%1$s\"" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:266 -#, c-format -msgid "Already solved." -msgstr "" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:339 +#, fuzzy, c-format +msgid "Verification code" +msgstr "Алгоритм перевірки" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:268 -#, c-format -msgid "It is too early to request another transmission of the challenge." -msgstr "" +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:357 +#, fuzzy, c-format +msgid "Code expired." +msgstr "Закінчується о" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:336 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:364 #, c-format -msgid "Multi-factor authentication required." +msgid "Didn't received the code?" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:345 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:371 #, c-format -msgid "You need to complete all of this requirements." +msgid "Resend" msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:349 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:395 +#, fuzzy, c-format +msgid "Verify" +msgstr "Перевірено" + +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:479 #, c-format -msgid "You need to complete at least one of this requirements." +msgid "The code transmission failed." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:379 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:481 #, c-format -msgid "An SMS to the phone number ending with %1$s" +msgid "The challenge is already solved." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:386 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:549 #, c-format -msgid "An email to the address starting with %1$s" +msgid "Multi-factor authentication required." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:397 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:559 #, c-format -msgid "You have to wait until %1$s to send a new code." +msgid "You must complete all of these requirements." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:415 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:563 #, c-format -msgid "I have a code" +msgid "You need to complete at least one of this requirements." msgstr "" #. screenid: 5 -#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:422 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:594 #, c-format -msgid "Send me a message" +msgid "An SMS to the phone number ending with %1$s" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:86 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:601 #, c-format -msgid "Logged in" +msgid "An email to the address starting with %1$s" msgstr "" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:103 +#. screenid: 5 +#: packages/merchant-backoffice-ui/src/components/SolveMFA.tsx:633 #, fuzzy, c-format -msgid "Not found" -msgstr "замовлення не знайдено" +msgid "Complete" +msgstr "Гроші перераховані" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:136 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#, fuzzy, c-format +msgid "This is not a valid Bitcoin address." +msgstr "Це недійсна адреса біткойн." + +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 #, c-format -msgid "Login required" -msgstr "Потрібен вхід" +msgid "This is not a valid Ethereum address." +msgstr "Це недійсна адреса Ethereum." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:150 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 #, fuzzy, c-format -msgid "Instance name." -msgstr "Ідентифікатор інстанції" +msgid "This is not a valid host." +msgstr "Це недійсна адреса біткойн." -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:180 +#. screenid: 11 +#. Check total length +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 #, fuzzy, c-format -msgid "Instance password." -msgstr "Керування запасами" +msgid "IBANs usually have more than 4 digits." +msgstr "Номера IBAN зазвичай мають більше 4-ьох цифр" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:241 -#, c-format -msgid "Forgot password" -msgstr "" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#, fuzzy, c-format +msgid "IBANs usually have fewer than 34 digits." +msgstr "Номера IBAN зазвичай мають менше 34-ьох цифр" -#. screenid: 79 -#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:257 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 #, fuzzy, c-format -msgid "Create new account" -msgstr "Зарахований банківський рахунок" +msgid "The IBAN's country code could not be retrieved." +msgstr "Код країни IBAN не знайдено" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:106 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 #, fuzzy, c-format -msgid "Invalid" -msgstr "недійсний" +msgid "The IBAN is invalid because the checksum is wrong." +msgstr "Номер IBAN не коректний, контрольна сума не сходиться" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:112 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 #, fuzzy, c-format -msgid "Doesn't have the pattern of an email" -msgstr "URL має неправильний формат" +msgid "This account is not allowed." +msgstr "Це недійсна адреса біткойн." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:117 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 #, c-format -msgid "Should start with +" +msgid "" +"None of the server's supported wire methods are currently supported by this " +"app. Server settings: %1$s" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:119 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 +#, fuzzy, c-format +msgid "Wire method" +msgstr "Метод переказу" + +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 #, c-format -msgid "A phone number consists of numbers only" +msgid "" +"Select the method you want to use to transfer your earnings to your business " +"account." msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:124 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 #, fuzzy, c-format -msgid "Invalid value" -msgstr "недійсний формат" +msgid "Select a wire method..." +msgstr "Виберіть один метод переказу" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:139 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 +#, c-format +msgid "Routing" +msgstr "Маршрутизація" + +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 #, fuzzy, c-format -msgid "Max 7 lines" -msgstr "максимум 7 рядків" +msgid "Routing number" +msgstr "Номер маршрутизації." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:152 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 #, c-format -msgid "Doesn't match" -msgstr "" +msgid "Account" +msgstr "Рахунок" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:185 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 #, fuzzy, c-format -msgid "Instance created" -msgstr "Ідентифікатор інстанції" +msgid "Account number" +msgstr "Номер рахунку." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:206 -#, fuzzy, c-format -msgid "Unauthorized." -msgstr "Авторизовано" +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 +#, c-format +msgid "Code" +msgstr "Код" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:208 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 #, fuzzy, c-format -msgid "Conflict." -msgstr "Конфлікт." +msgid "Business Identifier Code" +msgstr "Код ідентифікації бізнесу." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:210 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 #, fuzzy, c-format -msgid "Not found." -msgstr "замовлення не знайдено" +msgid "International Bank Account Number" +msgstr "Номер банківського рахунку." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:250 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 #, c-format -msgid "New password" +msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" msgstr "" -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:251 -#, fuzzy, c-format -msgid "Next password to be used" -msgstr "наступний токен доступу, який буде використано" - -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:255 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 #, fuzzy, c-format -msgid "Repeat password" -msgstr "Повторіть токен доступу" +msgid "Unified Payment Interface" +msgstr "Уніфікований інтерфейс платежів." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:256 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 #, fuzzy, c-format -msgid "Confirm the same password" -msgstr "підтвердити той самий токен доступу" +msgid "Bitcoin protocol" +msgstr "Протокол біткойн." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:270 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 #, fuzzy, c-format -msgid "Please complete the marked fields and choose authorization method" -msgstr "Необхідно заповнити позначені поля та вибрати метод авторизації" +msgid "Ethereum protocol" +msgstr "Протокол Ethereum." -#. screenid: 25 -#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:271 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 #, fuzzy, c-format -msgid "Confirm operation" -msgstr "Підтверджено" +msgid "Interledger protocol" +msgstr "Протокол Interledger." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:140 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 #, c-format -msgid "Check the password." +msgid "Enter the data without a scheme. A subpath may be included:" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:142 -#, fuzzy, c-format -msgid "Instance not found." -msgstr "замовлення не знайдено" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:178 -#, c-format -msgid "Description" -msgstr "Опис" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:179 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 #, c-format -msgid "" -"Helps you remember where this access token is being used before deleting it." +msgid "Cyclos host" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:184 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 #, fuzzy, c-format -msgid "Duration" -msgstr "Термін дії" +msgid "cyclos account" +msgstr "Рахунок" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:186 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 #, fuzzy, c-format -msgid "Time the access token will be valid." -msgstr "Наданий токен доступу є недійсним." +msgid "Name of the account holder" +msgstr "Назва категорії" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:192 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 #, c-format -msgid "Refreshable access tokens can pose a security risk!" +msgid "John Doe" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:193 +#. screenid: 11 +#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 #, c-format -msgid "" -"Refreshable access tokens can be refreshed before their lifetime ends, " -"effectively giving any bearer access without expiration. Only use this if " -"you know what you are doing and you have evaluated associated risks " -"especially in respect to the permissions granted by the scope." -msgstr "" +msgid "Legal name of the person holding the account." +msgstr "Офіційне ім'я власника рахунку." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:199 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 #, c-format -msgid "Scope" +msgid "The request reached a timeout, check your connection." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:200 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 #, c-format -msgid "" -"The scope defines the set of permissions for the access token. Refreshable " -"tokens has the permission to extend the expiration time." +msgid "The request was cancelled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:206 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 #, c-format -msgid "Allows all operations without limit." +msgid "" +"Too many requests were made to the server and this action was throttled." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:208 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 #, c-format -msgid "Allows all operations to read information." +msgid "The server's response was malformed, please report." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 #, c-format -msgid "Allows the creation of orders and checking of payment status." +msgid "Could not complete the request due to a network problem." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:212 -#, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking." -msgstr "" +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 +#, fuzzy, c-format +msgid "Unexpected request error, please report." +msgstr "Несподівана помилка" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:214 -#, c-format -msgid "Allows the creation of orders, checking of payment status and refunds." -msgstr "" +#. screenid: 4 +#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#, fuzzy, c-format +msgid "Unexpected error." +msgstr "Несподівана помилка" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:82 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds." +msgid "login" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:89 #, c-format -msgid "" -"Allows all operations to read information with extendable expiration time." +msgid "Logged in" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 -#, c-format -msgid "" -"Allows the creation of orders and checking of payment status with extendable " -"expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:107 +#, fuzzy, c-format +msgid "Wrong password." +msgstr "Встановити токен доступу" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 -#, c-format -msgid "" -"Allows the creation of orders, checking of payment status and inventory " -"locking with extendable expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:109 +#, fuzzy, c-format +msgid "The account doesn't exist." +msgstr "Це недійсна адреса біткойн." -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:143 #, c-format -msgid "" -"Allows the creation of orders, checking of payment status and refunds with " -"extendable expiration time." -msgstr "" +msgid "Login required" +msgstr "Потрібен вхід" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 -#, c-format -msgid "" -"Allows the creation of orders, checking of payment status, inventory locking " -"and refunds with extendable expiration time." -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:161 +#, fuzzy, c-format +msgid "Instance name." +msgstr "Ідентифікатор інстанції" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 -#, c-format -msgid "All (refreshable)" -msgstr "" +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:189 +#, fuzzy, c-format +msgid "Instance password." +msgstr "Керування запасами" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:248 #, c-format -msgid "Spa" +msgid "Forgot password" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 +#. screenid: 79 +#: packages/merchant-backoffice-ui/src/paths/login/index.tsx:263 +#, fuzzy, c-format +msgid "Create new account" +msgstr "Зарахований банківський рахунок" + +#: packages/merchant-backoffice-ui/src/components/menu/NavigationBar.tsx:76 #, c-format -msgid "Spa (refreshable)" +msgid "" +"Follow this link to find video tutorials on how you can use the GNU Taler " +"components." msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:42 #, fuzzy, c-format -msgid "Choose one" -msgstr "Виберіть одну..." - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:245 -#, c-format -msgid "Read only" -msgstr "" - -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:247 -#, c-format -msgid "All" -msgstr "Всі" +msgctxt "title" +msgid "%1$s: Settings" +msgstr "Налаштування" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:249 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:44 #, fuzzy, c-format -msgid "Order simple" -msgstr "ідентифікатор замовлення" +msgctxt "title" +msgid "%1$s: New bank account" +msgstr "Банківський рахунок" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:251 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:46 #, fuzzy, c-format -msgid "Order Point-of-Sale" -msgstr "Ключ точки продажу" +msgctxt "title" +msgid "%1$s: Bank accounts" +msgstr "Банківський рахунок" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:253 -#, c-format -msgid "Order management" -msgstr "" +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:48 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update bank Account" +msgstr "Перевірка дійсності банківського рахунку: %1$s" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:50 #, fuzzy, c-format -msgid "Order full" -msgstr "ідентифікатор замовлення" +msgctxt "title" +msgid "%1$s: Orders" +msgstr "Замовлення" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:257 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:54 #, c-format -msgid "Read only (refreshable)" +msgctxt "title" +msgid "%1$s: New order" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:56 #, c-format -msgid "Order simple (refreshable)" +msgctxt "title" +msgid "%1$s: Inventory" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:58 #, c-format -msgid "Order Point-of-Sale (refreshable)" +msgctxt "title" +msgid "%1$s: New product" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:60 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update product" +msgstr "не вдалося оновити продукт" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:62 #, c-format -msgid "Order management (refreshable)" +msgctxt "title" +msgid "%1$s: Category" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:64 #, c-format -msgid "Order full (refreshable)" +msgctxt "title" +msgid "%1$s: New category" msgstr "" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:281 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:66 #, fuzzy, c-format -msgid "Current password" -msgstr "Встановити токен доступу" +msgctxt "title" +msgid "%1$s: Update category" +msgstr "не вдалося оновити шаблон" -#. screenid: 29 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:293 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:68 #, fuzzy, c-format -msgid "Please complete the marked fields" -msgstr "Необхідно заповнити позначені поля" +msgctxt "title" +msgid "%1$s: Wire transfers" +msgstr "Ідентифікатор банківського переказу" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:70 #, fuzzy, c-format -msgid "Access token created" -msgstr "Токен доступу" +msgctxt "title" +msgid "%1$s: Webhooks" +msgstr "Вебхуки" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:72 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New webhook" +msgstr "додати нові вебхуки" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:74 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update webhook" +msgstr "не вдалося видалити вебхук" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:76 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: OTP devices" +msgstr "додати новий резерв" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:78 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New OTP device" +msgstr "додати новий резерв" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:80 #, c-format -msgid "" -"Copy the value of the access token and save it, as you cannot retrieve it " -"again." +msgctxt "title" +msgid "%1$s: Update OTP device" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:82 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: New template" +msgstr "додати нові шаблони" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:84 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Update template" +msgstr "додати нові шаблони" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:86 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Templates" +msgstr "Шаблони" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:88 +#, fuzzy, c-format +msgctxt "title" +msgid "%1$s: Use template" +msgstr "додати нові шаблони" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:90 #, c-format -msgid "Token" +msgctxt "title" +msgid "%1$s: Personalization" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:92 #, c-format -msgid "This token will never expire" +msgctxt "title" +msgid "%1$s: Discounts & Suscriptions" msgstr "" -#. screenid: 30 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:94 #, c-format -msgid "This token will be available until %1$s" +msgctxt "title" +msgid "%1$s: New token family" msgstr "" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:96 #, fuzzy, c-format -msgid "No 'admin' instance configured yet." -msgstr "Інстанція 'default' ще не налаштована." +msgctxt "title" +msgid "%1$s: Update token family" +msgstr "Не вдалося оновити сімейство токенів" -#. screenid: 81 -#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:98 #, fuzzy, c-format -msgid "Create an 'admin' instance to begin using the merchant backoffice." -msgstr "" -"Створіть інстанцію 'default', щоб почати використовувати бекофіс продавця." +msgctxt "title" +msgid "%1$s: Access tokens" +msgstr "Токен доступу" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:67 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:100 #, fuzzy, c-format -msgid "Create access token" -msgstr "Встановити токен доступу" +msgctxt "title" +msgid "%1$s: New access token" +msgstr "Новий токен доступу" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:127 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:102 #, fuzzy, c-format -msgid "Load more devices before the first one" -msgstr "завантажити більше шаблонів до першого" +msgctxt "title" +msgid "%1$s: New POS access token" +msgstr "Новий токен доступу" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:130 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:114 +#, fuzzy, c-format +msgctxt "title" +msgid "New instance" +msgstr "додати нову інстанцію" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:115 +#, fuzzy, c-format +msgctxt "title" +msgid "Instances" +msgstr "Інстанції" + +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:251 #, c-format -msgid "Load first page" +msgid "Testing environment" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:141 +#. screenid: 113 +#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:252 #, c-format -msgid "Created at" -msgstr "Створено о" +msgid "" +"This server is meant for testing features and configurations. Don't use your " +"personal information here." +msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:144 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:95 #, c-format -msgid "Expires at" -msgstr "Закінчується о" +msgid "Delete" +msgstr "Видалити" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:167 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:99 #, fuzzy, c-format -msgid "Never" -msgstr "ніколи" +msgid "Add new instance" +msgstr "додати нову інстанцію" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:194 -#, fuzzy, c-format -msgid "Remove this access token" -msgstr "Повторіть токен доступу" +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:186 +#, c-format +msgid "ID" +msgstr "Ідентифікатор" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:201 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:189 #, c-format -msgid "Delete" -msgstr "Видалити" +msgid "Name" +msgstr "Назва" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:215 -#, fuzzy, c-format -msgid "Load more devices after the last one" -msgstr "завантажити більше шаблонів після останнього" +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:232 +#, c-format +msgid "Edit" +msgstr "Редагувати" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:218 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:240 #, c-format -msgid "Load next page" +msgid "Change password" msgstr "" -#. screenid: 32 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:236 -#, fuzzy, c-format -msgid "There are no active sessions yet, add one by pressing the + sign" -msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" - -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:92 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:257 #, c-format -msgid "Forbidden." -msgstr "" +msgid "Purge" +msgstr "Очистити" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:119 +#. screenid: 27 +#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:281 #, fuzzy, c-format -msgid "Delete access token" -msgstr "Встановити токен доступу" +msgid "There are no instances yet. Add one by pressing the '+' sign." +msgstr "Ще немає інстанцій, додайте більше, натиснувши знак +" -#. screenid: 31 -#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:127 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:78 #, fuzzy, c-format -msgid "Deleting an access token cannot be undone." -msgstr "наступний токен доступу, який буде використано" +msgid "delete instance" +msgstr "Не вдалося видалити інстанцію" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:91 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:105 #, fuzzy, c-format -msgid "This is not a valid Bitcoin address." -msgstr "Це недійсна адреса біткойн." - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:104 -#, c-format -msgid "This is not a valid Ethereum address." -msgstr "Це недійсна адреса Ethereum." +msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." +msgstr "Інстанція \"%1$s\" (ID: %2$s) була видалена" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:133 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:113 #, fuzzy, c-format -msgid "This is not a valid host." -msgstr "Це недійсна адреса біткойн." +msgid "Unauthorized." +msgstr "Авторизовано" -#. screenid: 11 -#. Check total length -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:155 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:115 #, fuzzy, c-format -msgid "IBANs usually have more than 4 digits." -msgstr "Номера IBAN зазвичай мають більше 4-ьох цифр" +msgid "Not found." +msgstr "замовлення не знайдено" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:157 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:117 #, fuzzy, c-format -msgid "IBANs usually have fewer than 34 digits." -msgstr "Номера IBAN зазвичай мають менше 34-ьох цифр" +msgid "Conflict." +msgstr "Конфлікт." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:165 -#, fuzzy, c-format -msgid "The IBAN's country code could not be retrieved." -msgstr "Код країни IBAN не знайдено" +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:166 +#, c-format +msgid "Only show active instances" +msgstr "Показувати тільки активні інстанції" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:190 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#, c-format +msgid "Active" +msgstr "Активні" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:174 +#, c-format +msgid "Only show deleted instances" +msgstr "Показувати тільки видалені інстанції" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#, c-format +msgid "Deleted" +msgstr "Видалено" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:182 +#, c-format +msgid "Show all instances" +msgstr "Показати всі інстанції" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:184 +#, c-format +msgid "All" +msgstr "Всі" + +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:227 #, fuzzy, c-format -msgid "The IBAN is invalid because the checksum is wrong." -msgstr "Номер IBAN не коректний, контрольна сума не сходиться" +msgid "Delete instance" +msgstr "Не вдалося видалити інстанцію" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:205 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:228 #, fuzzy, c-format -msgid "This account is not allowed." -msgstr "Це недійсна адреса біткойн." +msgid "Delete the instance \"%1$s\"" +msgstr "завантажити новіші шаблони" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:317 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:235 #, c-format msgid "" -"None of the supported wire method of the server are currently supported by " -"this app. Server settings: %1$s" +"If you delete the instance named %1$s (ID: %2$s), the merchant will no " +"longer be able to process orders and refunds" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:335 -#, fuzzy, c-format -msgid "Wire method" -msgstr "Метод переказу" - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:336 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:242 #, c-format msgid "" -"Select the method you want to use to transfer your earnings to your business " -"account." +"This action deletes the instance's private key, but preserves all " +"transaction data. You can still access the transaction data after having " +"deleted the instance." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:340 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:249 #, fuzzy, c-format -msgid "Select a wire method..." -msgstr "Виберіть один метод переказу" - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:349 -#, c-format -msgid "Routing" -msgstr "Маршрутизація" +msgid "Deleting an instance %1$s" +msgstr "завантажити новіші шаблони" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:351 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:252 #, fuzzy, c-format -msgid "Routing number" -msgstr "Номер маршрутизації." - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:355 -#, c-format -msgid "Account" -msgstr "Рахунок" +msgid "This cannot be undone!" +msgstr "не може бути порожнім" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:357 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:264 #, fuzzy, c-format -msgid "Account number" -msgstr "Номер рахунку." - -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:365 -#, c-format -msgid "Code" -msgstr "Код" +msgid "Purge the instance" +msgstr "Не вдалося видалити інстанцію" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:367 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:265 #, fuzzy, c-format -msgid "Business Identifier Code" -msgstr "Код ідентифікації бізнесу." +msgid "Purge the instance \"%1$s\"" +msgstr "Ви встановлюєте токен доступу для нової інстанції" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:376 -#, fuzzy, c-format -msgid "International Bank Account Number" -msgstr "Номер банківського рахунку." +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:272 +#, c-format +msgid "" +"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " +"its transaction data!" +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:378 +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:279 #, c-format -msgid "your bank account number, e.g. DE12 0000 1111 2222 3333 00" +msgid "" +"The instance will disappear from your list and you will no longer be able to " +"access its data." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:388 -#, fuzzy, c-format -msgid "Unified Payment Interface" -msgstr "Уніфікований інтерфейс платежів." +#. screenid: 28 +#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:285 +#, c-format +msgid "Purging an instance %1$s" +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:398 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:126 #, fuzzy, c-format -msgid "Bitcoin protocol" -msgstr "Протокол біткойн." +msgid "create access token" +msgstr "Встановити токен доступу" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:408 -#, fuzzy, c-format -msgid "Ethereum protocol" -msgstr "Протокол Ethereum." +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:148 +#, c-format +msgid "Check the password." +msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:418 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:150 #, fuzzy, c-format -msgid "Interledger protocol" -msgstr "Протокол Interledger." +msgid "Instance not found." +msgstr "замовлення не знайдено" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:444 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:188 #, c-format -msgid "Enter the data without a scheme. A subpath may be included:" -msgstr "" +msgid "Description" +msgstr "Опис" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:479 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:189 #, c-format -msgid "Cyclos host" +msgid "" +"Helps you remember where this access token is being used before deleting it." msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:497 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:194 #, fuzzy, c-format -msgid "cyclos account" -msgstr "Рахунок" +msgid "Duration" +msgstr "Термін дії" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:510 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:196 #, fuzzy, c-format -msgid "Name of the account holder" -msgstr "Назва категорії" +msgid "Time the access token will be valid." +msgstr "Наданий токен доступу є недійсним." -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:511 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:202 #, c-format -msgid "John Doe" +msgid "Refreshable access tokens can pose a security risk!" msgstr "" -#. screenid: 11 -#: packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx:512 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:203 #, c-format -msgid "Legal name of the person holding the account." -msgstr "Офіційне ім'я власника рахунку." - -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:111 -#, fuzzy, c-format -msgid "Invalid url" -msgstr "недійсний формат" +msgid "" +"Refreshable access tokens can be refreshed before their lifetime ends, " +"effectively giving any bearer access without expiration. Only use this if " +"you know what you are doing and you have evaluated associated risks " +"especially in respect to the permissions granted by the scope." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:113 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:209 #, c-format -msgid "URL must end with a '/'" +msgid "Scope" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:115 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:210 #, c-format -msgid "URL must not contain params" +msgid "" +"The scope defines the set of permissions for the access token. Refreshable " +"tokens has the permission to extend the expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:117 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:216 #, c-format -msgid "URL must not hash param" +msgid "Allows all operations without limit." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:236 -#, fuzzy, c-format -msgid "Conflict" -msgstr "Підтвердити" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:218 +#, c-format +msgid "Allows all operations to read information." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:220 #, c-format -msgid "Server replied with \"bad request\"." -msgstr "Відповідь сервера з кодом помилки." +msgid "Allows the creation of orders and checking of payment status." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:274 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:222 #, c-format -msgid "Unauthorized, check credentials." +msgid "" +"Allows the creation of orders, checking of payment status and inventory " +"locking." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:276 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:224 #, c-format -msgid "The endpoint does not seem to be a Taler Revenue API." +msgid "Allows the creation of orders, checking of payment status and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:278 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:226 #, c-format msgid "" -"The request was made correctly, but the bank's server did not respond with " -"the appropriate value for 'credit_account', so we cannot confirm that it is " -"the same bank account." +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:284 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:228 #, c-format -msgid "Unsupported type of account" +msgid "" +"Allows all operations to read information with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:310 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:230 #, c-format -msgid "Account:" -msgstr "Рахунок:" +msgid "" +"Allows the creation of orders and checking of payment status with extendable " +"expiration time." +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:340 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:232 #, c-format msgid "" -"If the bank supports Taler Revenue API then you can add the endpoint URL " -"below to keep the revenue information in sync." +"Allows the creation of orders, checking of payment status and inventory " +"locking with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:349 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:234 #, c-format -msgid "Endpoint URL" +msgid "" +"Allows the creation of orders, checking of payment status and refunds with " +"extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:352 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:236 #, c-format msgid "" -"From where the merchant can download information about incoming wire " -"transfers to this account" +"Allows the creation of orders, checking of payment status, inventory locking " +"and refunds with extendable expiration time." msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 -#, fuzzy, c-format -msgid "Auth type" -msgstr "Тип події" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:238 +#, c-format +msgid "All (refreshable)" +msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:357 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:240 #, c-format -msgid "Choose the authentication type for the account info URL" +msgid "Spa" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:361 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:242 #, c-format -msgid "Without authentication" +msgid "Spa (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:363 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:250 +#, fuzzy, c-format +msgid "Choose one" +msgstr "Виберіть одну..." + +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:255 #, c-format -msgid "With username and password" +msgid "Read only" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:259 #, fuzzy, c-format -msgid "With token" -msgstr "Створити токен" +msgid "Order simple" +msgstr "ідентифікатор замовлення" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:365 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:261 #, fuzzy, c-format -msgid "Do not change" -msgstr "URL обмінника" +msgid "Order Point-of-Sale" +msgstr "Ключ точки продажу" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:263 #, c-format -msgid "Username to access the account information." +msgid "Order management" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:379 -#, c-format -msgid "Password to access the account information." -msgstr "" +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:265 +#, fuzzy, c-format +msgid "Order full" +msgstr "ідентифікатор замовлення" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:389 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:267 #, c-format -msgid "Access token to access the account information." +msgid "Read only (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:394 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:269 #, c-format -msgid "Match" +msgid "Order simple (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:395 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:271 #, c-format -msgid "Check where the information match against the server info." +msgid "Order Point-of-Sale (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:273 #, c-format -msgid "Compare info from server with account form" +msgid "Order management (refreshable)" msgstr "" -#. screenid: 36 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:406 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:275 #, c-format -msgid "Test" +msgid "Order full (refreshable)" msgstr "" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:210 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:291 #, fuzzy, c-format -msgid "Server didn't like the request we made." -msgstr "Відповідь сервера з кодом помилки." +msgid "Current password" +msgstr "Встановити токен доступу" -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:249 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:302 #, fuzzy, c-format -msgid "Account details" -msgstr "Адреса рахунку" - -#. screenid: 33 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:306 -#, c-format -msgid "Check if the information matches the server info." -msgstr "" +msgid "Please complete the marked fields" +msgstr "Необхідно заповнити позначені поля" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:78 +#. screenid: 111 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx:303 #, fuzzy, c-format -msgid "The bank account has been deleted." -msgstr "Банківський рахунок успішно видалено." +msgid "Confirm operation" +msgstr "Підтверджено" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:87 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:52 #, fuzzy, c-format -msgid "Delete account" -msgstr "Виберіть один рахунок" +msgid "Access token created" +msgstr "Токен доступу" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:88 -#, fuzzy, c-format -msgid "Delete the account \"%1$s\"" -msgstr "не вдалося видалити продукт" +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:60 +#, c-format +msgid "" +"Copy the value of the access token and save it, as you cannot retrieve it " +"again." +msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:65 #, c-format -msgid "Invalid payto: \"%1$s\"" +msgid "Token" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:99 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:69 #, c-format -msgid "If you delete the account with name %1$s its information will be lost" +msgid "This token will never expire" msgstr "" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:114 +#. screenid: 109 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx:73 +#, c-format +msgid "This token will be available until %1$s" +msgstr "" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:64 #, fuzzy, c-format -msgid "Deleting an account can't be undone." -msgstr "наступний токен доступу, який буде використано" +msgid "Create access token" +msgstr "Встановити токен доступу" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:118 #, fuzzy, c-format -msgid "Bank accounts" -msgstr "Банківський рахунок" +msgid "Load more devices before the first one" +msgstr "завантажити більше шаблонів до першого" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:132 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:124 +#, c-format +msgid "Load first page" +msgstr "" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:136 +#, c-format +msgid "Created at" +msgstr "Створено о" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:139 +#, c-format +msgid "Expires at" +msgstr "Закінчується о" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:162 #, fuzzy, c-format -msgid "Add new account" -msgstr "Зарахований банківський рахунок" +msgid "Never" +msgstr "ніколи" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:228 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:187 #, fuzzy, c-format -msgid "Owner's name" -msgstr "Назва бізнесу" +msgid "Remove this access token" +msgstr "Повторіть токен доступу" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:263 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:204 #, fuzzy, c-format -msgid "Delete selected accounts from the database" -msgstr "видалити вибраний переказ з бази даних" +msgid "Load more devices after the last one" +msgstr "завантажити більше шаблонів після останнього" -#. screenid: 35 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:407 +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:210 +#, c-format +msgid "Load next page" +msgstr "" + +#. screenid: 32 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/Table.tsx:229 #, fuzzy, c-format -msgid "There are no accounts yet, add more pressing the + sign" +msgid "There are no active sessions yet, add one by pressing the + sign" msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:74 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:79 #, fuzzy, c-format -msgid "You must provide a bank account to receive payments." -msgstr "URI, що вказує на банківський рахунок для зарахування доходу." +msgid "delete access token" +msgstr "Встановити токен доступу" -#. screenid: 34 -#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:75 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:93 #, c-format -msgid "" -"Without this information, you cannot create new payment orders that are " -"transferred to a bank account." +msgid "Forbidden." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:57 +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:111 +#, fuzzy, c-format +msgid "New point-of-sale access" +msgstr "Ключ точки продажу" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:130 +#, fuzzy, c-format +msgid "Delete access token" +msgstr "Встановити токен доступу" + +#. screenid: 31 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/list/index.tsx:138 +#, fuzzy, c-format +msgid "Deleting an access token cannot be undone." +msgstr "наступний токен доступу, який буде використано" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:62 #, c-format msgid "Invalid. Please use only letters and numbers." msgstr "" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:98 -#, c-format -msgid "Name" -msgstr "Назва" +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:73 +#, fuzzy, c-format +msgid "add category" +msgstr "не вдалося створити продукт" + +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:84 +#, fuzzy, c-format +msgid "Not found" +msgstr "замовлення не знайдено" -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:99 +#. screenid: 107 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx:105 #, c-format msgid "Category name" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:66 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete category" +msgstr "Назва категорії" + +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:68 #, fuzzy, c-format msgid "Category deleted" msgstr "шаблон успішно видалено" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:92 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:90 #, fuzzy, c-format msgid "Add new devices" msgstr "додати новий резерв" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:164 -#, c-format -msgid "ID" -msgstr "Ідентифікатор" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:170 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:166 #, fuzzy, c-format msgid "Total products" msgstr "Загальна ціна" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:202 +#. screenid: 103 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:196 #, fuzzy, c-format msgid "Delete selected category from the database" msgstr "видалити вибраний переказ з бази даних" -#. screenid: 38 +#. screenid: 103 #: packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx:238 #, fuzzy, c-format msgid "There are no categories yet, add more pressing the + sign" msgstr "Шаблонів ще немає, додайте більше, натиснувши знак +" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:128 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:103 +#, fuzzy, c-format +msgid "update category" +msgstr "не вдалося оновити шаблон" + +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:131 #, c-format msgid "Id:" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:146 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:149 #, c-format msgid "Name of the category" msgstr "Назва категорії" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:211 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:210 #, c-format msgid "Products" msgstr "Товари" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:250 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:249 #, c-format msgid "Image" msgstr "Зображення" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:298 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:290 #, fuzzy, c-format msgid "Load more products after the last one" msgstr "завантажити більше шаблонів після останнього" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:313 +#. screenid: 99 +#: packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx:309 #, fuzzy, c-format msgid "There are no products in this category." msgstr "Керування списком продуктів у замовленні." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:53 +#. screenid: 106 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx:75 +#, fuzzy, c-format +msgid "create product group" +msgstr "Товари" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete product group" +msgstr "Видалено" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Product group deleted" +msgstr "Список продуктів" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new group" +msgstr "Зарахований банківський рахунок" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:146 +#, fuzzy, c-format +msgid "Load more groups before the first one" +msgstr "завантажити більше вебхуків до першого" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:187 +#, fuzzy, c-format +msgid "Delete selected group from the database" +msgstr "видалити вибраний переказ з бази даних" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:205 +#, fuzzy, c-format +msgid "Load more groups after the last one" +msgstr "завантажити більше шаблонів після останнього" + +#. screenid: 102 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 +#, fuzzy, c-format +msgid "There are no product groups yet, add more pressing the + sign" +msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" + +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:52 #, fuzzy, c-format msgid "Account's KYC status" msgstr "Адреса рахунку" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:99 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:98 #, c-format msgid "Exchange" msgstr "Exchange" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:105 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:104 #, fuzzy, c-format msgid "Status" msgstr "URL статусу" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:128 -#, c-format -msgid "Ok" -msgstr "" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:131 -#, fuzzy, c-format -msgid "Action required" -msgstr "Потрібен вхід" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:134 -#, c-format -msgid "Warning" -msgstr "" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:137 -#, c-format -msgid "Error" -msgstr "" - -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:148 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:130 #, fuzzy, c-format msgid "Bank account verification required." msgstr "Сума обов'язкова" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:155 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:145 #, fuzzy, c-format msgid "More information required." msgstr "додаткова інформація для надання контексту" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:152 #, c-format -msgid "Awaiting for account review." +msgid "Awaiting account review." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:168 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:158 #, c-format msgid "Ready" msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:172 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:162 #, fuzzy, c-format msgid "Syncing..." msgstr "Завантаження..." -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:175 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:165 #, c-format msgid "" "Payment service internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:183 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:173 #, c-format msgid "" -"Merchant backend internal error. Contact administrator or check again later." +"Server internal error. Contact the service administrator or check again " +"later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:191 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:181 #, c-format msgid "Payment service timeout. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:199 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:189 #, c-format msgid "" "Payment service unreachable. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:207 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:197 #, c-format msgid "Incompatible core banking system." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:213 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:203 #, c-format -msgid "Backend internal error. Contact administrator or check again later." +msgid "Server internal error. Contact administrator or check again later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:222 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:212 #, c-format msgid "" "Payment service response is invalid. Contact administrator or check again " "later." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:230 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:220 #, c-format msgid "Payment service provider can't make a wire transfer to this account." msgstr "" -#. screenid: 41 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:261 +#. screenid: 93 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx:251 #, c-format msgid "No pending kyc verification!" msgstr "Немає очікуваних перевірок KYC!" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:123 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:134 +#, c-format +msgid "Ok" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:135 #, fuzzy, c-format -msgid "The account for wire transfers does not appear to be valid" +msgid "The account for wire transfers is invalid." msgstr "перевірте ідентифікатор, він виглядає недійсним." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:128 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:145 #, c-format -msgid "The backend service responded with \"%1$s\" which is invalid." +msgid "The server responded with \"%1$s\" which is invalid." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:153 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 #, c-format -msgid "No exchange keys" +msgid "No contact with the payment service yet." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:158 -#, c-format -msgid "" -"The backend service is still synchronizing with the payment service provider." +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:183 +#, fuzzy, c-format +msgid "The server is still synchronizing with the payment service provider." msgstr "" +"показувати лише замовлення, де клієнти заплатили, але банківські перекази " +"від постачальника платежів ще не виконані" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:170 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:195 #, fuzzy, c-format msgid "No transfers can be made from this account" msgstr "Податки для цього продукту не налаштовані." -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:175 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 #, c-format msgid "" "The core banking system cannot perform wire transfers between the payment " "service provider's accounts and your bank accounts. Thus you cannot use this " -"payment service provider. Sincerely, the Taler Exchange." +"payment service provider." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:189 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:216 #, c-format -msgid "" -"You must undergo a KYC (Know Your Customer) process as required by financial " -"regulations or laws" +msgid "Test" +msgstr "" + +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:217 +#, c-format +msgid "Know Your Customer process is required." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:194 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:225 #, c-format msgid "The payment service provider requires more information." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:203 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:234 #, c-format msgid "Click here to complete this step." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:211 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:242 #, fuzzy, c-format msgid "We are waiting for the access token to be present. Check again later." msgstr "Ви встановлюєте токен доступу для нової інстанції" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:224 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:255 #, c-format msgid "Awaiting AML review" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:229 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:263 #, fuzzy, c-format msgid "" "This account cannot be used. The payment service provider must verify the " @@ -2257,8 +2541,8 @@ msgstr "" "показувати лише замовлення, де клієнти заплатили, але банківські перекази " "від постачальника платежів ще не виконані" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:246 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:283 #, fuzzy, c-format msgid "" "This account has been successfully configured for use with the payment " @@ -2267,72 +2551,72 @@ msgstr "" "показувати лише замовлення, де клієнти заплатили, але банківські перекази " "від постачальника платежів ще не виконані" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:257 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:295 #, c-format msgid "Logic bug" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:262 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:303 #, c-format msgid "" -"The backend service detected an internal error, contact the system " -"administrator or check again later." +"The server detected an internal error, contact the system administrator or " +"check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:274 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:315 #, c-format msgid "Internal error" msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:279 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:323 #, c-format msgid "" "The payment service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:296 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 #, c-format msgid "" "The merchant service provider detected an internal error, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:313 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:363 #, c-format msgid "" -"The backend service could not contact the payment service provider due to a " -"timeout, contact the system administrator or check again later." +"The server could not contact the payment service provider due to a timeout, " +"contact the system administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:331 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:384 #, c-format msgid "" "Unable to reach the payment service provider, contact the system " "administrator or check again later." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:343 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:396 #, fuzzy, c-format msgid "Unsupported account" msgstr "Цільовий рахунок" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:348 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:404 #, c-format -msgid "This exchange does not support the given account." +msgid "This payment service does not support the given account." msgstr "" -#. screenid: 40 -#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:365 +#. screenid: 95 +#: packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx:426 #, c-format msgid "" "The payment service provider replied with an invalid status, contact the " @@ -2340,10 +2624,16 @@ msgid "" msgstr "" #. screenid: 7 -#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:140 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:138 #, fuzzy, c-format -msgid "Change value to unknown date" -msgstr "змінити значення на невідому дату" +msgid "Change value to empty" +msgstr "змінити значення на порожнє" + +#. screenid: 7 +#: packages/merchant-backoffice-ui/src/components/form/InputDate.tsx:149 +#, fuzzy, c-format +msgid "Change value to never" +msgstr "змінити значення на ніколи" #. screenid: 12 #: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:109 @@ -2352,7 +2642,7 @@ msgid "Enter description or id" msgstr "Введіть ідентифікатор замовлення" #. screenid: 12 -#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:174 +#: packages/merchant-backoffice-ui/src/components/form/InputSearchOnList.tsx:170 #, fuzzy, c-format msgid "No match found for that description or ID." msgstr "продукти з таким описом не знайдено" @@ -2365,12 +2655,12 @@ msgstr "Ви повинні ввести дійсний ідентифікато #. screenid: 21 #: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:67 -#, c-format -msgid "Quantity must be greater than 0!" +#, fuzzy, c-format +msgid "Quantity must be greater than zero." msgstr "Кількість має бути більше 0!" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:79 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:80 #, c-format msgid "" "This quantity exceeds remaining stock. Currently, only %1$s units remain " @@ -2380,49 +2670,55 @@ msgstr "" "%1$s одиниць, які не зарезервовані." #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:102 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:96 #, fuzzy, c-format msgid "Search product" msgstr "нова ціна для продукту" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:107 #, c-format msgid "Quantity" msgstr "Кількість" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:115 +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:108 #, fuzzy, c-format msgid "How many products will be added" msgstr "скільки продуктів буде додано" #. screenid: 21 -#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:122 -#, c-format -msgid "Add from inventory" -msgstr "Додати зі складу" +#: packages/merchant-backoffice-ui/src/components/product/InventoryProductForm.tsx:114 +#, fuzzy, c-format +msgid "Add it to the order" +msgstr "Сума замовлення" + +#. screenid: 15 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:50 +#, fuzzy, c-format +msgid "Invalid" +msgstr "недійсний" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:68 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:69 #, c-format msgid "This product has %1$s applicable taxes configured." msgstr "" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:105 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:106 #, c-format msgid "No taxes configured for this product." msgstr "Податки для цього продукту не налаштовані." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:111 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 #, c-format msgid "Amount" msgstr "Сума" #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:112 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:113 #, c-format msgid "" "Taxes can be in currencies that differ from the main currency used by the " @@ -2432,7 +2728,7 @@ msgstr "" "використовує продавець." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:114 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:115 #, fuzzy, c-format msgid "" "Enter the currency and value separated by a colon (e.g., " @@ -2442,298 +2738,310 @@ msgstr "" ""USD:2.3"." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:124 #, c-format msgid "Legal name of the tax, e.g. VAT or import duties." msgstr "Офіційна назва податку, наприклад, ПДВ або імпортні мита." #. screenid: 15 -#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:130 +#: packages/merchant-backoffice-ui/src/components/form/InputTaxes.tsx:128 #, fuzzy, c-format msgid "Add tax to the tax list" msgstr "додати податок до списку податків" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:80 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:79 #, fuzzy, c-format msgid "Describe and add a product that is not in the inventory list" msgstr "опишіть і додайте продукт, якого немає в списку інвентарю" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:83 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:86 #, c-format msgid "Add custom product" msgstr "Додати новий продукт" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:94 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:98 #, c-format msgid "Complete information of the product" msgstr "Повна інформація про продукт" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:165 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:169 #, fuzzy, c-format msgid "Must be a number." msgstr "не є числом" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:167 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:171 #, fuzzy, c-format msgid "Must be greater than 0." msgstr "має бути більше 0" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:199 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:203 #, c-format msgid "Photo of the product." msgstr "фото продукту." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:205 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 #, c-format msgid "Full product description." msgstr "повний опис продукту." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:209 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:213 #, fuzzy, c-format msgid "Unit name" msgstr "Одиниця" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:210 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 #, c-format msgid "Name of the product unit." msgstr "назва одиниці продукту." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:214 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:218 #, c-format msgid "Price per unit" msgstr "" #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:215 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:219 #, c-format msgid "Amount in the current currency." msgstr "сума в поточній валюті." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:221 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:225 #, c-format msgid "How many products will be added." msgstr "скільки продуктів буде додано." #. screenid: 22 -#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:227 +#: packages/merchant-backoffice-ui/src/components/product/NonInventoryProductForm.tsx:231 #, c-format msgid "Taxes" msgstr "Податки" #. screenid: 24 -#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:52 +#: packages/merchant-backoffice-ui/src/components/product/ProductList.tsx:61 #, c-format msgid "Total price" msgstr "Загальна ціна" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:190 #, fuzzy, c-format msgid "Must be greater than 0" msgstr "має бути більше 0" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:197 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:204 #, fuzzy, c-format msgid "Must have a refund deadline" msgstr "повинен бути встановлений термін повернення" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:202 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 #, fuzzy, c-format msgid "Auto refund can't be after refund deadline" msgstr "автоматичне повернення не може бути після терміну повернення" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:209 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:216 #, fuzzy, c-format msgid "Must be in the future" msgstr "повинно бути в майбутньому" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:221 #, c-format msgid "Either fulfillment url or fulfillment message must be specified." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:229 #, fuzzy, c-format -msgid "is not a valid URL" +msgid "Invalid URL" msgstr "недійсний" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:332 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:327 +#, fuzzy, c-format +msgid "create order" +msgstr "створити замовлення" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:340 #, c-format msgid "" "No active bank accounts configured. At least one bank account must be " -"available to create new orders" +"available to create new orders." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:336 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:342 +#, fuzzy, c-format +msgid "Conflict" +msgstr "Підтвердити" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:344 #, c-format msgid "Product with ID \"%1$s\" is out of stock." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:338 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:346 #, c-format -msgid "No exchange would accept a payment because of KYC requirements." +msgid "No payment service would accept a payment because of KYC requirements." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:475 #, c-format msgid "Manage products in order" msgstr "Керування продуктами в замовленні" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:452 -#, c-format -msgid "%1$s products with a total price of %2$s." +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:480 +#, fuzzy, c-format +msgid "%1$s products with a total price of %2$s ." msgstr "%1$s товарів із загальною ціною %2$s." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:459 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:491 #, c-format msgid "Manage list of products in the order." msgstr "Керування списком продуктів у замовленні." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:513 #, c-format msgid "Remove this product from the order." msgstr "Видалити цей продукт із замовлення." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:538 #, fuzzy, c-format msgid "Products price sum" msgstr "Список продуктів" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:511 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:540 #, fuzzy, c-format msgid "Total product price added up" msgstr "загальна сума продукту" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:515 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:544 #, c-format msgid "Order price" msgstr "Ціна за одиницю" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 #, c-format msgid "Amount to be paid by the customer" msgstr "Сума, яку має сплатити клієнт" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:529 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:560 #, fuzzy, c-format msgid "Final order price" msgstr "кінцева ціна замовлення" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:536 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:567 #, c-format msgid "Summary" msgstr "Підсумок" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:537 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 #, c-format msgid "Title of the order to be shown to the customer" msgstr "Назва замовлення, яку буде показано клієнту" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:546 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:577 #, fuzzy, c-format msgid "Shipping and fulfillment" msgstr "Доставка та виконання" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:581 #, c-format msgid "Delivery date" msgstr "Дата доставки" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:552 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 #, c-format msgid "Deadline for physical delivery assured by the merchant." msgstr "Термін фізичної доставки, гарантований продавцем." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:556 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:586 #, fuzzy, c-format msgid "Delivery location" msgstr "Дата доставки" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:557 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:587 #, fuzzy, c-format msgid "Address where the products will be delivered" msgstr "адреса, за якою будуть доставлені продукти" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:563 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:593 #, c-format msgid "Fulfillment URL" msgstr "URL виконання" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:564 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 #, c-format msgid "URL to which the user will be redirected after successful payment." msgstr "URL, на який користувача буде перенаправлено після успішної оплати." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:568 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:598 #, fuzzy, c-format msgid "Fulfillment message" msgstr "URL виконання" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:569 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:599 #, c-format msgid "Message shown to the customer after paying for the order." msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:582 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:612 #, c-format msgid "Taler payment options" msgstr "Опції оплати Taler" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:583 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:613 #, c-format msgid "Override default Taler payment settings for this order" msgstr "" "Перевизначити стандартні налаштування оплати Taler для цього замовлення" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:594 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:624 #, fuzzy, c-format msgid "Payment time" msgstr "Тайм-аут оплати" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:596 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 #, fuzzy, c-format msgid "" "Time for the customer to pay before the offer expires. Inventory products " @@ -2744,19 +3052,19 @@ msgstr "" "закінчиться. Продукти з інвентарю будуть зарезервовані до цього терміну." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:614 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:644 #, fuzzy, c-format msgid "Default" msgstr "Сума за замовчуванням" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:626 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:656 #, fuzzy, c-format msgid "Refund time" msgstr "Повернення здійснено" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:628 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:658 #, fuzzy, c-format msgid "" "Time while the order can be refunded by the merchant. Time starts after the " @@ -2764,27 +3072,27 @@ msgid "" msgstr "Час, до якого замовлення може бути повернене продавцем." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:661 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:691 #, fuzzy, c-format msgid "Wire transfer time" msgstr "Ідентифікатор банківського переказу" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:663 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:693 #, fuzzy, c-format msgid "" -"Time for the exchange to make the wire transfer. Time starts after the order " -"is created." +"Time for the payment service to make the wire transfer. Time starts after " +"the order is created." msgstr "Термін, до якого обмінник повинен здійснити банківський переказ." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:695 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:725 #, fuzzy, c-format msgid "Auto-refund time" msgstr "Затримка автоматичного повернення" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:697 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 #, c-format msgid "" "Time until which the wallet will automatically check for refunds without " @@ -2794,13 +3102,13 @@ msgstr "" "взаємодії з користувачем." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:707 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:737 #, fuzzy, c-format msgid "Maximum fee" msgstr "Максимальна комісія за переказ" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:708 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:738 #, fuzzy, c-format msgid "" "Maximum fees the merchant is willing to cover for this order. Higher deposit " @@ -2810,13 +3118,13 @@ msgstr "" "замовлення. Вищі комісії за депозит повинні бути повністю покриті споживачем." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:717 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 #, c-format msgid "Create token" msgstr "Створити токен" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:718 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 #, c-format msgid "" "If the order ID is easy to guess, the token will prevent other users from " @@ -2824,13 +3132,13 @@ msgid "" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:727 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 #, c-format msgid "Minimum age required" msgstr "Мінімальний вік" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:728 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:758 #, c-format msgid "" "Any value greater than 0 will limit the coins able be used to pay this " @@ -2841,117 +3149,123 @@ msgstr "" "продуктами" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:731 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:761 #, fuzzy, c-format msgid "Minimum age defined by the products is %1$s" msgstr "Мінімальний вік, визначений продуктами, становить %1$s" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:732 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:762 #, c-format msgid "No product with age restriction in this order" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:747 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:777 #, c-format msgid "Additional information" msgstr "Додаткова інформація" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:748 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:778 #, c-format msgid "Custom information to be included in the contract for this order." msgstr "" "Спеціальна інформація, яка буде включена в контракт для цього замовлення." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:757 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:787 #, c-format msgid "You must enter a value in JavaScript Object Notation (JSON)." msgstr "" "Ви повинні ввести значення у форматі JavaScript Object Notation (JSON)." #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:775 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:805 #, fuzzy, c-format msgid "remove" msgstr "Видалити" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:784 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:814 #, fuzzy, c-format msgid "Custom field name" msgstr "Назва будинку" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:873 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:815 +#, c-format +msgid "new extra field" +msgstr "" + +#. screenid: 42 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:900 #, c-format msgid "Disabled" msgstr "" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:876 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:903 #, fuzzy, c-format msgid "No deadline" msgstr "Термін повернення" #. screenid: 42 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:877 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx:904 #, c-format msgid "Deadline at %1$s" msgstr "" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:67 +#. screenid: 89 +#: packages/merchant-backoffice-ui/src/components/form/JumpToElementById.tsx:60 #, fuzzy, c-format -msgid "Select date to show nearby orders" -msgstr "виберіть дату, щоб показати найближчі замовлення" +msgid "get product details" +msgstr "Адреса рахунку" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:71 #, fuzzy, c-format msgid "Only show unpaid orders" msgstr "показувати лише оплачені замовлення" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:83 #, fuzzy, c-format msgid "Only show paid orders" msgstr "показувати лише оплачені замовлення" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:102 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:85 #, c-format msgid "Paid" msgstr "Оплачено" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:97 #, fuzzy, c-format msgid "Only show orders with refunds" msgstr "показувати лише замовлення з поверненнями" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:99 #, c-format msgid "Refunded" msgstr "Повернено" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:110 #, c-format msgid "Show only paid orders for which the wire transfer is still pending." msgstr "" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:113 #, c-format msgid "Not wired" msgstr "Не перераховано" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:126 #, fuzzy, c-format msgid "" "Only display orders that have already been transferred by the payment " @@ -2961,213 +3275,255 @@ msgstr "" "від постачальника платежів ще не виконані" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:129 #, c-format msgid "Completed" msgstr "Гроші перераховані" #. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:135 #, c-format msgid "Remove all filters" msgstr "видалити всі фільтри" -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:181 +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:145 #, fuzzy, c-format -msgid "Clear date filter" -msgstr "очистити фільтр дати" - -#. screenid: 47 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/ListPage.tsx:202 -#, c-format -msgid "Jump to date (%1$s)" -msgstr "" +msgid "authorize refund" +msgstr "Авторизовано" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:161 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:166 #, c-format msgid "Gone." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:168 #, c-format msgid "UnavailableForLegalReasons." msgstr "" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:189 #, fuzzy, c-format msgid "Jump to order with the given product ID" msgstr "перейти до замовлення з зазначеним ідентифікатором" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:190 #, fuzzy, c-format msgid "Order id" msgstr "ідентифікатор замовлення" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:222 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:201 +#, fuzzy, c-format +msgid "Clear date filter" +msgstr "очистити фільтр дати" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:208 +#, fuzzy, c-format +msgid "Select date to show nearby orders" +msgstr "виберіть дату, щоб показати найближчі замовлення" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:221 +#, c-format +msgid "Jump to date (%1$s)" +msgstr "" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:294 #, fuzzy, c-format msgid "Instance unknown" msgstr "Ідентифікатор інстанції" #. screenid: 46 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:225 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:297 #, fuzzy, c-format msgid "Order unknown" msgstr "невідомо" +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:312 +#, fuzzy, c-format +msgid "This order is not refundable" +msgstr "чому це замовлення повертається" + +#. screenid: 46 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/index.tsx:313 +#, c-format +msgid "" +"The order status is not \"paid\" so we are unable to process any refund " +"action." +msgstr "" + #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:108 #, fuzzy, c-format msgid "Create order" msgstr "створити замовлення" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:175 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:166 +#, c-format +msgid "copy order URL" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:176 #, c-format msgid "The instance doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:177 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:178 #, c-format msgid "The order doesn't exist" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:203 #, c-format msgid "Date" msgstr "Дата" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:258 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:273 #, c-format msgid "Refund" msgstr "Повернення" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:286 #, c-format msgid "copy url" msgstr "скопіювати url" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:285 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:297 #, fuzzy, c-format msgid "Load more orders after the last one" msgstr "завантажити більше переказів після останнього" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:306 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:322 #, c-format msgid "No orders have been found matching your query!" msgstr "Замовлення, що відповідають вашому запиту, не знайдено!" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:364 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:370 #, fuzzy, c-format msgid "Duplicated" msgstr "дубльовано" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:377 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:383 #, fuzzy, c-format msgid "This value exceeds the refundable amount." msgstr "ця сума перевищує суму, що підлягає поверненню" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:414 #, c-format msgid "Forbidden" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:413 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:420 #, c-format msgid "Gone" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:422 #, c-format -msgid "There are pending KYC requirements." +msgid "There are pending KYC requirements. Please check the KYC status" msgstr "" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:423 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:430 #, c-format msgid "refund" msgstr "повернення" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:448 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:443 +#, c-format +msgid "%1$s was already refunded" +msgstr "" + +#. screenid: 48 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:463 #, fuzzy, c-format msgid "Reason" msgstr "Причина" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:485 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:500 #, fuzzy, c-format msgid "Amount to be refunded" msgstr "сума до повернення" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:487 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:502 #, c-format msgid "Max refundable:" msgstr "Макс. сума для повернення:" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:493 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:511 #, c-format msgid "Choose one..." msgstr "Виберіть одну..." #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:495 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:513 #, fuzzy, c-format msgid "Requested by the customer" msgstr "запитано клієнтом" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:514 #, fuzzy, c-format msgid "Other" msgstr "інше" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:499 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:517 #, fuzzy, c-format msgid "Why this order is being refunded" msgstr "чому це замовлення повертається" #. screenid: 48 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/list/Table.tsx:523 #, fuzzy, c-format msgid "More information to give context" msgstr "додаткова інформація для надання контексту" +#. screenid: 88 #: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:38 #, fuzzy, c-format msgid "now" msgstr "ні" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:68 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:69 #, c-format -msgid "This is when the time for making refund has been expired." +msgid "This is when the refund period has expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:74 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:77 #, c-format msgid "This is when the time for making the payment has been expired." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:80 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:97 #, fuzzy, c-format msgid "" "This is when the wire transfer is going to be executed by the payment " @@ -3176,66 +3532,79 @@ msgstr "" "показувати лише замовлення, де клієнти заплатили, але банківські перекази " "від постачальника платежів ще не виконані" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:104 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:105 #, fuzzy, c-format msgid "This wire transfer has been notified by the payment service provider." msgstr "" "показувати лише замовлення, де клієнти заплатили, але банківські перекази " "від постачальника платежів ще не виконані" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:110 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:113 +#, fuzzy, c-format +msgid "This wire transfer has been notified manually or by the banking system." +msgstr "" +"показувати лише замовлення, де клієнти заплатили, але банківські перекази " +"від постачальника платежів ще не виконані" + +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:129 #, fuzzy, c-format msgid "This refund is waiting to be claimed by the customer." msgstr "Сума, яку має сплатити клієнт" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:116 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:137 #, fuzzy, c-format msgid "This refund has been claimed by the customer." msgstr "Сума, яку має сплатити клієнт" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:122 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:144 #, c-format msgid "The current moment in time." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:128 +#. screenid: 88 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx:151 #, c-format msgid "" -"This refund can't be claimed because the wire transfer has already be made." +"This refund can't be claimed because the wire transfer has already been made." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:94 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:103 #, fuzzy, c-format msgid "Contract terms" msgstr "Умови контракту" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:100 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:109 #, fuzzy, c-format msgid "Human-readable description of the whole purchase" msgstr "читабельний опис всієї покупки" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:115 #, fuzzy, c-format msgid "Total price for the transaction" msgstr "загальна ціна за транзакцію" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:122 #, c-format msgid "URL for this purchase" msgstr "URL для цієї покупки" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:128 #, c-format msgid "Max fee" msgstr "Максимальна комісія" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:129 #, fuzzy, c-format msgid "Maximum total deposit fee accepted by the merchant for this contract" msgstr "" @@ -3243,68 +3612,56 @@ msgstr "" "контракту" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:126 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:135 #, fuzzy, c-format msgid "Time when this contract was generated" msgstr "час, коли цей контракт було згенеровано" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:140 #, c-format msgid "Payment deadline" msgstr "Термін оплати" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:141 #, fuzzy, c-format msgid "" "After this deadline, the merchant won't accept payments for the contract" msgstr "після цього терміну продавець не прийматиме платежі за контрактом" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:146 #, c-format msgid "Refund deadline" msgstr "Термін повернення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:147 #, fuzzy, c-format msgid "After this deadline has passed, no refunds will be accepted." msgstr "після цього терміну повернення не приймаються" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:143 -#, c-format -msgid "Wire transfer deadline" -msgstr "Термін банківського переказу" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:144 -#, fuzzy, c-format -msgid "Transfer deadline for the exchange" -msgstr "термін переказу для обмінника" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:150 -#, fuzzy, c-format -msgid "Time indicating when the order should be delivered" -msgstr "час, що вказує, коли замовлення має бути доставлене" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:152 +#, c-format +msgid "Wire transfer deadline" +msgstr "Термін банківського переказу" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:153 #, fuzzy, c-format -msgid "Where the order will be delivered" -msgstr "куди буде доставлене замовлення" +msgid "Transfer deadline for the payment service" +msgstr "термін переказу для обмінника" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:158 #, c-format msgid "Auto-refund delay" msgstr "Затримка автоматичного повернення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:163 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:159 #, fuzzy, c-format msgid "" "How long the wallet should try to get an automatic refund for the purchase" @@ -3313,229 +3670,265 @@ msgstr "" "покупку" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:168 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:165 +#, fuzzy, c-format +msgid "Time indicating when the order should be delivered" +msgstr "час, що вказує, коли замовлення має бути доставлене" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:170 +#, fuzzy, c-format +msgid "Where the order will be delivered" +msgstr "куди буде доставлене замовлення" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:177 #, c-format msgid "Extra info" msgstr "Додаткова інформація" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:178 #, fuzzy, c-format msgid "Extra data that is only interpreted by the merchant frontend" msgstr "додаткові дані, які інтерпретуються лише фронтендом продавця" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:290 #, fuzzy, c-format msgid "order created" msgstr "Статус замовлення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:288 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:297 #, fuzzy, c-format msgid "pay deadline" msgstr "Термін оплати" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:295 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:304 #, fuzzy, c-format msgid "refund deadline" msgstr "Термін повернення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:314 #, fuzzy, c-format msgid "delivery" msgstr "Дата доставки" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:330 #, c-format msgid "Order" msgstr "Замовлення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:332 #, fuzzy, c-format msgid "Claimed" msgstr "отримано" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:351 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:360 #, fuzzy, c-format msgid "Claimed at" msgstr "отримано о" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:373 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:382 #, c-format msgid "Timeline" msgstr "Хронологія" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:379 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:388 #, c-format msgid "Payment details" msgstr "Деталі оплати" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:399 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:408 #, c-format msgid "Order status" msgstr "Статус замовлення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:407 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:416 #, fuzzy, c-format msgid "Unpaid" msgstr "неоплачено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:420 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:429 #, c-format msgid "Product list" msgstr "Список продуктів" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:504 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:515 #, c-format -msgid "refund missed: %1$s" +msgid "The contract terms have a v1 order without choices_index." +msgstr "" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#, c-format +msgid "The contract terms have a v1 order with a bad choices_index." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:505 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:539 #, c-format -msgid "refund missed: %1$s: %2$s" +msgid "refund missed: %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:512 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:547 +#, fuzzy, c-format +msgid "refund missed: %1$s : %2$s" +msgstr "повернення успішно створено" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:562 #, fuzzy, c-format msgid "refund created: %1$s" msgstr "повернення успішно створено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:513 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:570 #, fuzzy, c-format -msgid "refund created: %1$s: %2$s" +msgid "refund created: %1$s : %2$s" msgstr "повернення успішно створено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:521 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:587 #, fuzzy, c-format msgid "refund taken: %1$s" msgstr "Повернення здійснено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:522 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:595 #, fuzzy, c-format -msgid "refund taken: %1$s: %2$s" +msgid "refund taken: %1$s : %2$s" msgstr "Повернення здійснено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:530 -#, c-format -msgid "The contract terms has a v1 order without choices_index." -msgstr "" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:537 -#, c-format -msgid "The contract terms has a v1 order with a bad choices_index." -msgstr "" - -#. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:581 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:656 #, c-format msgid "wired %1$s" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:589 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:683 #, fuzzy, c-format msgid "wire deadline" msgstr "Термін повернення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:634 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:718 +#, fuzzy, c-format +msgid "Related wire transfers" +msgstr "Ідентифікатор банківського переказу" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:746 #, fuzzy, c-format -msgid "Wired" -msgstr "перераховано" +msgid "Unconfirmed" +msgstr "Підтверджено" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:750 +#, c-format +msgid "Confirmed" +msgstr "Підтверджено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:659 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:780 #, fuzzy, c-format msgid "Refund order" msgstr "замовлення на повернення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:660 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:781 #, fuzzy, c-format msgid "Not refundable" msgstr "не підлягає поверненню" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:691 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:796 +#, fuzzy, c-format +msgid "No wire transfer reported" +msgstr "Ідентифікатор банківського переказу" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:797 +#, fuzzy, c-format +msgid "Check wire transfers" +msgstr "Ідентифікатор банківського переказу" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:831 #, c-format msgid "Next event in" msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:710 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:850 #, c-format msgid "The order was wired." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:711 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:854 #, c-format msgid "Bank processing can take a few business days, depending on your bank." msgstr "" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:737 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:901 #, c-format msgid "Refunded amount" msgstr "Повернена сума" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:744 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:908 #, c-format msgid "Refund taken" msgstr "Повернення здійснено" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:765 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:929 #, c-format msgid "Status URL" msgstr "URL статусу" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:778 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:942 #, c-format msgid "Refund URI" msgstr "URI повернення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:852 -#, c-format -msgid "Pay at" -msgstr "URL для оплати" +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1015 +#, fuzzy, c-format +msgid "Payment link" +msgstr "Термін оплати" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:916 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1089 #, c-format msgid "Order status URL" msgstr "URL статусу замовлення" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:920 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1093 #, c-format msgid "Payment URI" msgstr "URI оплати" #. screenid: 44 -#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:949 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1135 #, c-format msgid "" "Unknown order status. This is an error, please contact the administrator." @@ -3543,56 +3936,98 @@ msgstr "" "Невідомий статус замовлення. Це помилка, будь ласка, зв'яжіться з " "адміністратором." +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1163 +#, c-format +msgid "Back" +msgstr "Назад" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1233 +#, c-format +msgid "never" +msgstr "ніколи" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1238 +#, c-format +msgid "unknown" +msgstr "невідомо" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1248 +#, fuzzy, c-format +msgid "confirmed" +msgstr "Підтверджено" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1249 +#, fuzzy, c-format +msgid "unconfirmed" +msgstr "Підтверджено" + +#. screenid: 44 +#: packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx:1264 +#, c-format +msgid "Details" +msgstr "" + #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:75 #, c-format msgid "Invalid. Please enter letters and numbers only." msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:84 -#, fuzzy, c-format -msgid "Just letters and numbers from 2 to 7" -msgstr "лише літери та цифри від 2 до 7" +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:81 +#, c-format +msgid "Use only letters and digits (2–7)." +msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:83 #, fuzzy, c-format msgid "The size of the key must be 32 characters" msgstr "розмір ключа повинен бути 32" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:133 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:97 +#, fuzzy, c-format +msgid "add otp device" +msgstr "додати новий резерв" + +#. screenid: 50 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:131 #, c-format msgid "Internal ID on the system" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:138 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:136 #, c-format msgid "Useful to identify the device physically" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:142 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:140 #, c-format msgid "Verification algorithm" msgstr "Алгоритм перевірки" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:141 #, fuzzy, c-format msgid "Algorithm used to verify transactions in offline mode" msgstr "Алгоритм для використання для перевірки транзакції в офлайн-режимі" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:149 #, c-format msgid "Device key" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:153 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:151 #, c-format msgid "" "Be sure to choose a password that is hard to guess, or use the random " @@ -3600,19 +4035,19 @@ msgid "" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:152 #, c-format msgid "Your device needs to match exactly the same value" msgstr "" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:165 #, fuzzy, c-format msgid "Generate random secret key" msgstr "згенерувати випадковий секретний ключ" #. screenid: 50 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:181 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatePage.tsx:177 #, fuzzy, c-format msgid "Random" msgstr "випадковий" @@ -3624,7 +4059,7 @@ msgid "Create another" msgstr "створити замовлення" #. screenid: 49 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:46 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/create/CreatedSuccessfully.tsx:47 #, c-format msgid "" "You can scan the next QR code with your device or save the key before " @@ -3632,13 +4067,19 @@ msgid "" msgstr "" #. screenid: 51 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete otp device" +msgstr "Не вдалося видалити пристрій" + +#. screenid: 51 #: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:87 #, fuzzy, c-format msgid "OTP devices" msgstr "додати новий резерв" #. screenid: 51 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/list/Table.tsx:187 #, fuzzy, c-format msgid "Delete selected devices from the database" msgstr "видалити вибраний резерв з бази даних" @@ -3650,13 +4091,19 @@ msgid "There are no devices to list yet, add more by pressing the + sign" msgstr "Ще немає інстанцій, додайте більше, натиснувши знак +" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:74 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:63 +#, fuzzy, c-format +msgid "update otp device" +msgstr "не вдалося створити резерв" + +#. screenid: 52 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 #, c-format msgid "Template id is unknown" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:76 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:78 #, c-format msgid "" "The provided information is inconsistent with the current state of the " @@ -3664,131 +4111,281 @@ msgid "" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:92 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:94 #, c-format msgid "Device:" msgstr "Пристрій:" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:114 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:116 #, fuzzy, c-format msgid "Algorithm to use to verify transactions in offline mode" msgstr "Алгоритм для використання для перевірки транзакції в офлайн-режимі" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:130 #, fuzzy, c-format msgid "Not modified" msgstr "Не перераховано" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:129 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 #, c-format msgid "Be sure to be very hard to guess or use the random generator" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:133 #, c-format msgid "Your device need to have exactly the same value" msgstr "" #. screenid: 52 -#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx:164 #, c-format msgid "Change key" msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:72 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:76 #, fuzzy, c-format msgid "Is not the same" msgstr "не співпадає" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:82 #, fuzzy, c-format msgid "You are updating the password for the instance with ID \"%1$s\"" msgstr "Ви оновлюєте токен доступу з інстанції з ідентифікатором %1$s" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:109 #, c-format msgid "In order to verify that you have access." msgstr "" #. screenid: 53 -#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:117 +#, c-format +msgid "New password" +msgstr "" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:118 +#, fuzzy, c-format +msgid "Next password to be used" +msgstr "наступний токен доступу, який буде використано" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:123 +#, fuzzy, c-format +msgid "Repeat password" +msgstr "Повторіть токен доступу" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:124 +#, fuzzy, c-format +msgid "Confirm the same password" +msgstr "підтвердити той самий токен доступу" + +#. screenid: 53 +#: packages/merchant-backoffice-ui/src/paths/instance/password/DetailPage.tsx:152 #, fuzzy, c-format msgid "Confirm change" msgstr "Підтвердити зміну" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:77 +#, fuzzy, c-format +msgid "change password" +msgstr "Керування запасами" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:89 #, fuzzy, c-format msgid "Testing password change" msgstr "Підтвердити зміну" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:111 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:118 #, fuzzy, c-format msgid "Password changed" msgstr "Підтвердити зміну" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:129 #, fuzzy, c-format msgid "The current password is wrong." msgstr "Встановити токен доступу" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:203 +#, fuzzy, c-format +msgid "change instance password" +msgstr "Керування запасами" + +#. screenid: 54 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:251 #, c-format msgid "No enough rights to change the password." msgstr "" #. screenid: 54 -#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:241 +#: packages/merchant-backoffice-ui/src/paths/instance/password/index.tsx:253 #, fuzzy, c-format msgid "Account not found." msgstr "Сервер не знайдено" +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:68 +#, fuzzy, c-format +msgid "create money pot" +msgstr "Зарахований банківський рахунок" + +#. screenid: 105 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#, c-format +msgid "There is already a money pot with the same id." +msgstr "" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:64 +#, fuzzy, c-format +msgid "delete money pot" +msgstr "Виберіть один рахунок" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:68 +#, fuzzy, c-format +msgid "Money pot deleted" +msgstr "шаблон успішно видалено" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Add new pots" +msgstr "додати нові шаблони" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:146 +#, fuzzy, c-format +msgid "Load more pots before the first one" +msgstr "завантажити більше шаблонів до першого" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:163 +#, fuzzy, c-format +msgid "Total" +msgstr "Загальна ціна" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:187 +#, fuzzy, c-format +msgid "Delete selected pots from the database" +msgstr "видалити вибраний переказ з бази даних" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:205 +#, fuzzy, c-format +msgid "Load more pots after the last one" +msgstr "завантажити більше шаблонів після останнього" + +#. screenid: 101 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 +#, fuzzy, c-format +msgid "There are no money pots yet, add more pressing the + sign" +msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" + #. screenid: 6 -#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:123 +#: packages/merchant-backoffice-ui/src/components/form/InputArray.tsx:113 #, fuzzy, c-format msgid "Add element to the list" msgstr "додати елемент до списку" +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 +#, c-format +msgid "Missing currency name" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 +#, c-format +msgid "Currency name must be only letters" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 +#, c-format +msgid "Value can only by number" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 +#, c-format +msgid "The value is too high" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 +#, fuzzy, c-format +msgid "The value is too precise" +msgstr "змінити значення на ніколи" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 +#, fuzzy, c-format +msgid "Invalid amount \"%1$s\": %2$s" +msgstr "Фіксована сума" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:111 +#, c-format +msgid "update money pot" +msgstr "" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:167 +#, fuzzy, c-format +msgid "Descripton" +msgstr "Опис" + +#. screenid: 98 +#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:172 +#, fuzzy, c-format +msgid "Totals" +msgstr "Загальна ціна" + #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:100 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:106 #, fuzzy, c-format msgid "" -"Click here to configure the product's stock. If left as is, the backend will " +"Click here to configure the product's stock. If left as is, the server will " "not control stock." msgstr "" "натисніть тут, щоб налаштувати запас продукту, залиште як є, і бекенд не " "буде контролювати запас." #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:110 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 #, c-format msgid "Manage stock" msgstr "Керування запасами" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:115 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:124 #, fuzzy, c-format msgid "This product has been configured without stock control" msgstr "цей продукт налаштований без контролю запасів" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:119 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:127 #, c-format msgid "Infinite" msgstr "Нескінченний" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:136 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:144 #, fuzzy, c-format msgid "" "Shrinkage cannot exceed the current stock and incoming supplies (maximum " @@ -3796,55 +4393,55 @@ msgid "" msgstr "втрати не можуть бути більшими за поточні та прибуваючі (макс %1$s)" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:169 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:178 +#, c-format +msgid "Current" +msgstr "Поточний" + +#. screenid: 14 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:179 #, c-format msgid "Incoming" msgstr "Прибуття" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:170 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:180 #, c-format msgid "Lost" msgstr "Втрачено" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:185 -#, c-format -msgid "Current" -msgstr "Поточний" - -#. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:188 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:198 #, fuzzy, c-format msgid "Remove stock control for this product" msgstr "видалити контроль запасів для цього продукту" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:194 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 #, c-format msgid "without stock" msgstr "без запасу" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:203 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:216 #, c-format msgid "Next restock" msgstr "Наступне поповнення" #. screenid: 14 -#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:207 +#: packages/merchant-backoffice-ui/src/components/form/InputStock.tsx:223 #, fuzzy, c-format msgid "Warehouse address" msgstr "Адреса рахунку" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:128 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:130 #, fuzzy, c-format msgid "Invalid amount" msgstr "Фіксована сума" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:211 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:203 #, c-format msgid "Product identification to use in URLs (for internal use only)." msgstr "" @@ -3852,43 +4449,43 @@ msgstr "" "використання)." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:217 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:209 #, c-format msgid "Illustration of the product for customers." msgstr "ілюстрація продукту для клієнтів." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:222 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:214 #, fuzzy, c-format msgid "Product name." msgstr "Продукт" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:228 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:220 #, c-format msgid "Product description for customers." msgstr "опис продукту для клієнтів." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:225 #, fuzzy, c-format msgid "Age restriction" msgstr "Обмежений за віком" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:226 #, fuzzy, c-format msgid "Is this product restricted for customer below certain age?" msgstr "цей продукт обмежений для клієнтів молодше певного віку?" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:235 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:227 #, fuzzy, c-format msgid "Minimum age of the customer" msgstr "Мінімальний вік" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:241 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:233 #, c-format msgid "" "Unit describing quantity of product sold (e.g. 2 kilograms, 5 liters, 3 " @@ -3898,13 +4495,13 @@ msgstr "" "літрів, 3 предмети, 5 метрів) для клієнтів." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:242 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:234 #, c-format msgid "Example: kg, items or liters" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:247 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:239 #, c-format msgid "" "Sale price for customers, including taxes, for above units of the product." @@ -3913,13 +4510,13 @@ msgstr "" "продукту." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:251 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:243 #, c-format msgid "Stock" msgstr "Запас" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:253 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:245 #, fuzzy, c-format msgid "Inventory for products with finite supply (for internal use only)." msgstr "" @@ -3927,79 +4524,89 @@ msgstr "" "внутрішнього використання)" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:258 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:250 #, fuzzy, c-format msgid "Taxes included in the product price, exposed to customers." msgstr "податки, включені в ціну продукту, показані клієнтам" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:261 #, fuzzy, c-format msgid "Search by category description or id" msgstr "шукати продукти за їхнім описом або ідентифікатором" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:262 #, c-format msgid "Categories where this product will be listed on." msgstr "адреса, за якою будуть доставлені продукти." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:277 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:269 #, c-format msgid "Money pot" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:278 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:270 #, fuzzy, c-format msgid "Search by money pot description or id" msgstr "шукати продукти за їхнім описом або ідентифікатором" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:271 #, fuzzy, c-format msgid "Money pots where this product will be listed on." msgstr "адреса, за якою будуть доставлені продукти." #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:281 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:273 #, fuzzy, c-format msgid "Select one" msgstr "Виберіть один рахунок" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:287 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:279 #, c-format msgid "Group" msgstr "" #. screenid: 23 -#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:288 +#: packages/merchant-backoffice-ui/src/components/product/ProductForm.tsx:280 #, fuzzy, c-format msgid "Search by group name or id" msgstr "шукати продукти за їхнім описом або ідентифікатором" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:68 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:62 +#, fuzzy, c-format +msgid "add product" +msgstr "Загальна ціна" + +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:73 #, c-format msgid "" "The instance doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:70 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:75 #, c-format msgid "" "The category doesn't exist. Maybe it was remove while adding the product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:72 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:77 #, c-format msgid "" "The product group doesn't exist. Maybe it was remove while adding the " "product." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:74 +#. screenid: 87 +#: packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx:79 #, c-format msgid "" "The money pot doesn't exist. Maybe it was remove while adding the product." @@ -4012,145 +4619,169 @@ msgid "Add product to inventory" msgstr "додати продукт до інвентарю" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:150 +#, fuzzy, c-format +msgid "update product" +msgstr "не вдалося оновити продукт" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:160 #, fuzzy, c-format msgid "Product not found." msgstr "Сервер не знайдено" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:164 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:162 #, c-format msgid "This change was made without outdated info." msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:196 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:198 #, c-format msgid "Sales" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:203 -#, c-format -msgid "Sold" -msgstr "Продано" +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:205 +#, c-format +msgid "Sold" +msgstr "Продано" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:216 +#, c-format +msgid "restock at %1$s" +msgstr "" + +#. screenid: 56 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:222 +#, fuzzy, c-format +msgid "infinite" +msgstr "Нескінченний" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:279 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:280 #, c-format msgid "Free" msgstr "" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:321 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:342 #, fuzzy, c-format msgid "Go to product update page" msgstr "перейти на сторінку оновлення продукту" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:328 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:348 #, c-format msgid "Update" msgstr "Оновити" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:334 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:353 #, fuzzy, c-format msgid "Remove this product from the database" msgstr "видалити цей продукт з бази даних" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:415 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:435 #, fuzzy, c-format msgid "Update the product with new price" msgstr "оновити продукт з новою ціною" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:426 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:444 #, fuzzy, c-format msgid "Update product with new price" msgstr "оновити продукт з новою ціною" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:438 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:455 #, fuzzy, c-format msgid "Confirm update" msgstr "Підтверджено" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:465 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:482 #, fuzzy, c-format msgid "lost can't be greater that current + incoming (max %1$s)" msgstr "втрати не можуть бути більшими за поточні та прибуваючі (макс %1$s)" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:486 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:503 #, fuzzy, c-format msgid "Add more elements to the inventory" msgstr "додати більше елементів до інвентарю" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:491 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 #, fuzzy, c-format msgid "Report elements lost in the inventory" msgstr "повідомити про втрату елементів в інвентарі" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:496 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:513 #, fuzzy, c-format msgid "New price for the product" msgstr "нова ціна для продукту" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:508 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:524 #, fuzzy, c-format msgid "There are values with errors." msgstr "є значення з помилками" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:509 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:525 #, fuzzy, c-format msgid "Update product with new stock and price" msgstr "оновити продукт з новим запасом і ціною" #. screenid: 56 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:551 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/Table.tsx:567 #, fuzzy, c-format msgid "There are no products to list yet, add more by pressing the + sign" msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" #. screenid: 55 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:62 +#, fuzzy, c-format +msgid "delete product" +msgstr "Видалено" + +#. screenid: 55 #: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:68 #, fuzzy, c-format msgid "Product (ID: %1$s) has been deleted" msgstr "Продукт (ID: %1$s) оновлено" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:106 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:108 #, fuzzy, c-format msgid "Jump to product with the given product ID" msgstr "перейти до замовлення з зазначеним ідентифікатором" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:107 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:109 #, c-format msgid "Product id" msgstr "Ідентифікатор продукту" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:123 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:126 #, fuzzy, c-format msgid "Delete product" msgstr "Видалено" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:124 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:127 #, fuzzy, c-format msgid "Delete the product \"%1$s\"" msgstr "не вдалося видалити продукт" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:131 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:134 #, c-format msgid "" "If you delete the product named %1$s (ID: %2$s ), the stock and related " @@ -4158,41 +4789,166 @@ msgid "" msgstr "" #. screenid: 55 -#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/instance/products/list/index.tsx:142 #, c-format msgid "Deleting a product cannot be undone." msgstr "" #. screenid: 57 -#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/products/update/UpdatePage.tsx:118 #, c-format msgid "Product id:" msgstr "Ідентифікатор продукту:" +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:85 +#, fuzzy, c-format +msgid "It should start with /" +msgstr "це повинно бути більше 0" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:102 +#, c-format +msgid "create scheduled report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:122 +#, c-format +msgid "No report generator configured in the server" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:123 +#, c-format +msgid "" +"Contact the system administrator to create a report generator before " +"scheduling one." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:144 +#, c-format +msgid "Description of the report. Possibly included in the report message" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:150 +#, c-format +msgid "Where the report program should send the report" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:155 +#, c-format +msgid "Source" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:156 +#, c-format +msgid "Base URL to request the data from." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:162 +#, fuzzy, c-format +msgid "Type of the data source" +msgstr "Назва категорії" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:177 +#, c-format +msgid "Program" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:179 +#, c-format +msgid "" +"Name of the program to use to transmit the report defined by the server " +"configuration." +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:185 +#, c-format +msgid "Report frequency" +msgstr "" + +#. screenid: 104 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx:191 +#, c-format +msgid "Report frequency shift" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:66 +#, fuzzy, c-format +msgid "delete scheduled report" +msgstr "видалити вибраний переказ з бази даних" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:70 +#, c-format +msgid "Scheduled report deleted" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#, c-format +msgid "Scheduled reports" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:92 +#, fuzzy, c-format +msgid "Add new reports" +msgstr "додати нові шаблони" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:165 +#, c-format +msgid "Frequency" +msgstr "" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:192 +#, fuzzy, c-format +msgid "Delete selected scheduled report from the database" +msgstr "видалити вибраний переказ з бази даних" + +#. screenid: 100 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#, fuzzy, c-format +msgid "There are no reports yet, add more pressing the + sign" +msgstr "Шаблонів ще немає, додайте більше, натиснувши знак +" + +#. screenid: 97 +#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:133 +#, c-format +msgid "update scheduled report" +msgstr "" + +#. screenid: 86 #: packages/merchant-backoffice-ui/src/components/ChartJS.tsx:78 #, c-format msgid "Your browser does not support the canvas element." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:95 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:96 #, c-format msgid "Bad gateway" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:105 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:106 #, c-format msgid "Service unavailable" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:114 -#, c-format -msgid "Select date from which to show statistics" -msgstr "" - -#. screenid: 58 #: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:120 #, c-format msgid "Show chart" @@ -4217,296 +4973,308 @@ msgid "Orders table" msgstr "Статус замовлення" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:161 +#, c-format +msgid "Select date from which to show statistics" +msgstr "" + +#. screenid: 58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:175 #, c-format msgid "Start from (%1$s)" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:217 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:214 #, fuzzy, c-format msgid "Orders statistics" msgstr "Статус замовлення" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:235 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:232 #, c-format msgid "Since" msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:269 #, c-format msgid "No order statistics yet." msgstr "" #. screenid: 58 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:308 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/OrdersChart.tsx:305 #, fuzzy, c-format msgid "# of orders since" msgstr "Ціна замовлення" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:77 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 #, fuzzy, c-format msgid "hour" msgstr "години" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:78 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 #, fuzzy, c-format msgid "day" msgstr "дні" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "week" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 #, c-format msgid "weeks" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "month" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 #, c-format msgid "months" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarter" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:81 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 #, c-format msgid "quarters" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:83 #, c-format msgid "years" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:144 #, c-format msgid "Revenue chart" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:155 #, c-format msgid "Revenue table" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:176 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:177 #, fuzzy, c-format msgid "Revenue statistics filter" msgstr "видалити всі фільтри" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:180 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:181 #, fuzzy, c-format msgid "Time range" msgstr "Хронологія" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:189 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:190 #, c-format msgid "Select time range to group dataset by" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:195 #, c-format msgid "Select the number of ranges to include in data set" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:199 #, fuzzy, c-format msgid "Currency" msgstr "Поточний" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:205 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:206 #, c-format msgid "Select the currency to show statistics for" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:218 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:217 #, c-format msgid "Revenue statistics over the past %1$s %2$s for currency '%3$s'" msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:240 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:239 #, fuzzy, c-format msgid "Start time" msgstr "Тайм-аут оплати" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:282 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:281 #, c-format msgid "No revenue statistics yet." msgstr "" #. screenid: 59 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:323 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/RevenueChart.tsx:322 #, c-format msgid "Revenue" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 #, fuzzy, c-format msgid "Must be greater that 0" msgstr "має бути більше 0" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:150 #, fuzzy, c-format msgid "Too short" msgstr "занадто короткий" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:196 +#, fuzzy, c-format +msgid "add template" +msgstr "додати нові шаблони" + +#. screenid: 61 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:206 #, c-format msgid "You don't have enough permissions." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:194 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:210 #, c-format msgid "There is a template with this identifier, please choose another one." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:232 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:251 #, c-format msgid "Identifier" msgstr "Ідентифікатор" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:233 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:252 #, c-format msgid "Name of the template in URLs." msgstr "Назва шаблону в URL." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:237 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 #, fuzzy, c-format msgid "Template name" msgstr "Шаблони" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:238 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:257 #, c-format msgid "Describe what this template stands for" msgstr "Опишіть, що представляє цей шаблон" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:244 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:263 #, c-format msgid "Order summary" msgstr "Підсумок замовлення" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:245 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:264 #, fuzzy, c-format msgid "" "If specified here, this template will create orders with the same summary" msgstr "Якщо вказано, цей шаблон створить замовлення з однаковим підсумком" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 #, c-format msgid "Summary is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:250 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 #, c-format msgid "Allow the user to change the summary." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:275 #, fuzzy, c-format msgid "If specified here, this template will create orders with the same price" msgstr "Якщо вказано, цей шаблон створить замовлення з однаковою ціною" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:260 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:279 #, fuzzy, c-format msgid "Amount is editable" msgstr "Зарахована сума" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:261 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:280 #, c-format msgid "Allow the user to select the amount to pay." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:287 #, c-format msgid "Currency is editable" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:269 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:288 #, c-format msgid "Allow the user to change currency." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:271 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:290 #, c-format msgid "Supported currencies" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 #, c-format msgid "Supported currencies: %1$s" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:281 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:300 #, c-format msgid "Minimum age" msgstr "Мінімальний вік" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:283 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 #, c-format msgid "Is this contract restricted to some age?" msgstr "Чи обмежений цей контракт за віком?" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:291 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:310 #, c-format msgid "Payment timeout" msgstr "Тайм-аут оплати" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:293 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:312 #, fuzzy, c-format msgid "" "How much time the customer has to complete the payment once the order was " @@ -4515,133 +5283,145 @@ msgstr "" "Скільки часу у клієнта для завершення оплати після створення замовлення." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:302 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:321 #, c-format msgid "OTP device" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:303 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:322 #, fuzzy, c-format msgid "Use to verify transactions in offline mode." msgstr "Алгоритм для використання для перевірки транзакції в офлайн-режимі." #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:305 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:324 #, c-format msgid "No OTP device." msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:307 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:326 #, c-format msgid "Add one first" msgstr "" #. screenid: 61 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:320 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx:339 #, c-format msgid "No device" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:68 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:65 #, fuzzy, c-format msgid "Add new templates" msgstr "додати нові шаблони" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:126 #, fuzzy, c-format msgid "Load more templates before the first one" msgstr "завантажити більше шаблонів до першого" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:167 #, fuzzy, c-format msgid "Delete selected templates from the database" msgstr "видалити вибрані шаблони з бази даних" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:182 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:177 #, fuzzy, c-format msgid "Use template to create new order" msgstr "використовувати шаблон для створення нового замовлення" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:190 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:187 #, c-format msgid "Generate a QR code for the template." msgstr "створити QR-код для шаблону." #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:193 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:194 #, c-format msgid "Show QR" msgstr "" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:206 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:205 #, fuzzy, c-format msgid "Load more templates after the last one" msgstr "завантажити більше шаблонів після останнього" #. screenid: 63 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/Table.tsx:229 #, fuzzy, c-format msgid "There are no templates to list yet, add more by pressing the + sign" msgstr "Шаблонів ще немає, додайте більше, натиснувши знак +" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:86 +#, fuzzy, c-format +msgid "delete template" +msgstr "додати нові шаблони" + +#. screenid: 62 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:114 #, fuzzy, c-format msgid "Jump to template with the given template ID" msgstr "перейти до замовлення з зазначеним ідентифікатором" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:115 #, c-format msgid "Template identification" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:143 #, fuzzy, c-format msgid "Delete template" msgstr "додати нові шаблони" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:144 #, c-format msgid "Delete the template \"%1$s\"" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:151 #, c-format -msgid "If you delete the template %1$s (ID: %2$s) you may loose information" +msgid "If you delete the template %1$s (ID: %2$s) you may lose information" msgstr "" #. screenid: 62 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/list/index.tsx:158 #, fuzzy, c-format msgid "Deleting a template cannot be undone." msgstr "завантажити новіші шаблони" #. screenid: 64 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:83 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/qr/QrPage.tsx:81 #, c-format msgid "Print" msgstr "Друк" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:235 +#, fuzzy, c-format +msgid "update template" +msgstr "додати нові шаблони" + +#. screenid: 65 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:280 #, c-format msgid "The template configuration needs to be fixed." msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:274 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:281 #, c-format msgid "" "The currency of the template is %1$s and is not in the list of supported " @@ -4649,19 +5429,19 @@ msgid "" msgstr "" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:297 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:304 #, c-format msgid "If specified, this template will create order with the same summary" msgstr "Якщо вказано, цей шаблон створить замовлення з однаковим підсумком" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:322 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:329 #, fuzzy, c-format msgid "If specified, this template will create orders with the same price" msgstr "Якщо вказано, цей шаблон створить замовлення з однаковою ціною" #. screenid: 65 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:353 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx:360 #, c-format msgid "" "How much time has the customer to complete the payment once the order was " @@ -4670,43 +5450,81 @@ msgstr "" "Скільки часу у клієнта для завершення оплати після створення замовлення." #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:80 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:115 #, fuzzy, c-format msgid "An amount is required" msgstr "Сума обов'язкова" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:82 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:117 #, fuzzy, c-format msgid "An order summary is required" msgstr "Підсумок замовлення обов'язковий" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:109 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:129 +#, fuzzy, c-format +msgid "create order from template" +msgstr "Нове замовлення для шаблону" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:142 +#, c-format +msgid "" +"No active bank accounts configured. At least one bank account must be " +"available to create new orders" +msgstr "" + +#. screenid: 66 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:146 #, c-format msgid "No more stock for product with ID \"%1$s\"." msgstr "" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:164 #, fuzzy, c-format msgid "New order from template" msgstr "Нове замовлення для шаблону" #. screenid: 66 -#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:155 +#: packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx:192 #, c-format msgid "Amount of the order" msgstr "Сума замовлення" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:113 +#, fuzzy, c-format +msgid "Expiration should be after start date" +msgstr "це повинно бути більше 0" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:123 +#, fuzzy, c-format +msgid "Granularity can't be greater than duration." +msgstr "Кількість має бути більше 0!" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:128 +#, fuzzy, c-format +msgid "create token family" +msgstr "Не вдалося видалити сімейство токенів" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#, c-format +msgid "There is another token family with this ID. Choose another one." +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:166 #, c-format msgid "Slug" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:167 #, fuzzy, c-format msgid "Token family slug to use in URLs (for internal use only)" msgstr "" @@ -4714,61 +5532,73 @@ msgstr "" "використання)" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:173 +#, c-format +msgid "User-readable token family name" +msgstr "" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:179 +#, fuzzy, c-format +msgid "Token family description for customers" +msgstr "опис продукту для клієнтів" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:183 #, c-format msgid "Kind" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:184 #, c-format msgid "Choose between a discount and a subscription" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:189 #, fuzzy, c-format msgid "Start Date" msgstr "Тайм-аут оплати" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:147 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:190 #, c-format msgid "The first day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:191 #, c-format -msgid " If set to %1$s, it cannot be used before this date." +msgid "If set to %1$s, it cannot be used before this date." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:157 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:202 #, fuzzy, c-format msgid "Expiration Date" msgstr "Закінчується о" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:158 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:203 #, c-format msgid "The last day the coupon/subscription can be used." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:204 #, c-format -msgid " If set to %1$s, they are no longer valid from %2$s." +msgid "If set to %1$s, they are no longer valid from %2$s." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:218 #, c-format msgid "How long the coupon/subscription remains valid after being activated." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:219 #, c-format msgid "" "If you activate it on %1$s with duration of 30 days, it remains valid until " @@ -4776,83 +5606,116 @@ msgid "" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:232 #, c-format msgid "Validity Granularity" msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:186 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:233 #, c-format -msgid "" -"Rounds the validity to a specific unit of time (like day, hour, minute)." +msgid "Rounds the validity to a specific unit of time." msgstr "" #. screenid: 67 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:187 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:236 +#, fuzzy, c-format +msgid "1 minute" +msgstr "хвилини" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:237 +#, fuzzy, c-format +msgid "1 hour" +msgstr "години" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:238 #, c-format -msgid "" -" If set to “1 day”, a 30-day pass bought on %1$s is valid until the end of " -"%2$s, not exactly at the same time of day you purchased it." +msgid "1 day" msgstr "" +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:239 +#, fuzzy, c-format +msgid "30 days" +msgstr "дні" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:240 +#, fuzzy, c-format +msgid "90 days" +msgstr "дні" + +#. screenid: 67 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/create/CreatePage.tsx:241 +#, fuzzy, c-format +msgid "365 days" +msgstr "дні" + #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:57 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:56 #, c-format msgid "Token Families" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:62 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:59 #, c-format msgid "Add token family" msgstr "" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:122 #, fuzzy, c-format msgid "Valid Before" msgstr "недійсний формат" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:195 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:187 #, fuzzy, c-format msgid "Go to token family update page" msgstr "перейти на сторінку оновлення продукту" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:207 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:197 #, fuzzy, c-format msgid "Remove this token family from the database" msgstr "видалити цей продукт з бази даних" #. screenid: 69 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:239 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/Table.tsx:229 #, fuzzy, c-format msgid "" "There are no token families yet, add the first one by pressing the + sign." msgstr "Шаблонів ще немає, додайте більше, натиснувши знак +." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:86 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:80 +#, fuzzy, c-format +msgid "delete token family" +msgstr "Не вдалося видалити сімейство токенів" + +#. screenid: 68 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:87 #, fuzzy, c-format msgid "Token family has been deleted." msgstr "Сімейство токенів \"%1$s\" (SLUG: %2$s) видалено" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 #, fuzzy, c-format msgid "Delete token family" msgstr "Не вдалося видалити сімейство токенів" #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:113 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:114 #, fuzzy, c-format msgid "Delete the token family \"%1$s\"" msgstr "Видалення сімейства токенів %1$s ." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:121 #, fuzzy, c-format msgid "" "If you delete the %1$s token family (Slug: %2$s), all issued tokens will " @@ -4862,211 +5725,222 @@ msgstr "" "стануть недійсними." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:127 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:128 #, fuzzy, c-format msgid "Deleting a token family %1$s ." msgstr "Видалення сімейства токенів %1$s ." #. screenid: 68 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:130 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/list/index.tsx:131 #, fuzzy, c-format msgid "can't be undone" msgstr "не може бути порожнім" #. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:112 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:108 +#, fuzzy, c-format +msgid "update token family" +msgstr "Не вдалося оновити сімейство токенів" + +#. screenid: 70 +#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:139 #, fuzzy, c-format msgid "Token Family: %1$s" msgstr "Сімейство токенів: %1$s" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:136 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:113 +#, fuzzy, c-format +msgid "inform wire transfer" +msgstr "підтвердити той самий токен доступу" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:138 +#, fuzzy, c-format +msgid "Wire transfer already confirmed." +msgstr "Термін банківського переказу" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:176 #, c-format -msgid "User-readable token family name" +msgid "" +"The wire transfer has been sent and should be in your bank account in any " +"time. You can manually confirm the reception using the information below." msgstr "" -#. screenid: 70 -#: packages/merchant-backoffice-ui/src/paths/instance/tokenfamilies/update/UpdatePage.tsx:142 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:184 #, fuzzy, c-format -msgid "Token family description for customers" -msgstr "опис продукту для клієнтів" +msgid "The wire transfer has been confirmed." +msgstr "Термін банківського переказу" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:56 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:191 +#, fuzzy, c-format +msgid "Transaction details" +msgstr "Адреса рахунку" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:222 +#, fuzzy, c-format +msgid "Transfer ID" +msgstr "Перекази" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:237 +#, c-format +msgid "I have received the wire transfer" +msgstr "" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:246 #, fuzzy, c-format -msgid "Incoming wire transfers" +msgid "Orders in this wire transfer" msgstr "Ідентифікатор банківського переказу" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:68 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:267 #, fuzzy, c-format -msgid "Load more wire transfers preceding the first one" -msgstr "завантажити більше переказів до першого" +msgid "Fee" +msgstr "назавжди" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:81 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:296 #, fuzzy, c-format -msgid "Expected credit" -msgstr "Очікуваний баланс" +msgid "Subtotals" +msgstr "Загальна ціна" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:84 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:318 +#, fuzzy, c-format +msgid "Deposit fee" +msgstr "Максимальна комісія за депозит" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:328 +#, fuzzy, c-format +msgid "Wire fee" +msgstr "Максимальна комісія за переказ" + +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:331 #, c-format -msgid "Confirmed" -msgstr "Підтверджено" +msgid "not ready" +msgstr "" -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:87 +#. screenid: 85 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx:398 #, fuzzy, c-format -msgid "Validated" -msgstr "Дійсний до" +msgid "loading..." +msgstr "Завантаження..." #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:90 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:102 #, fuzzy, c-format -msgid "Executed on" -msgstr "Виконано о" - -#. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 -#, c-format -msgid "yes" -msgstr "так" +msgid "New wire transfers" +msgstr "Ідентифікатор банківського переказу" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:111 -#, c-format -msgid "no" -msgstr "ні" +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:112 +#, fuzzy, c-format +msgid "Load more wire transfers preceding the first one" +msgstr "завантажити більше переказів до першого" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:172 #, c-format -msgid "never" -msgstr "ніколи" +msgid "To be determined." +msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:121 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:191 #, c-format -msgid "unknown" -msgstr "невідомо" +msgid "" +"You confirm that the incoming wire transfer has arrived into your bank " +"account." +msgstr "" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:215 #, fuzzy, c-format msgid "Load more transfers after the last one" msgstr "завантажити більше переказів після останнього" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:169 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:259 +#, fuzzy, c-format +msgid "Confirmed wire transfers into bank account" +msgstr "підтвердити той самий токен доступу" + +#. screenid: 72 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:326 #, fuzzy, c-format -msgid "Verified wire transfers" +msgid "Show details about the incoming wire transfer." msgstr "Ідентифікатор банківського переказу" #. screenid: 72 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:253 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx:379 #, fuzzy, c-format -msgid "There are no transfers to list yet, add more by pressing the + sign" +msgid "There are no transfers to list yet" msgstr "Переказів ще немає, додайте більше, натиснувши знак +" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:81 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:213 #, fuzzy, c-format msgid "All accounts" msgstr "Рахунок" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:82 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:214 #, fuzzy, c-format msgid "Filter by account address" msgstr "фільтрувати за адресою рахунку" -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:93 -#, fuzzy, c-format -msgid "" -"Only display transfers that have already been transferred to your bank " -"account by the payment service provider." -msgstr "" -"показувати лише замовлення, де клієнти заплатили, але банківські перекази " -"від постачальника платежів ще не виконані" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:103 -#, fuzzy, c-format -msgid "Only show wire transfers confirmed by the merchant" -msgstr "показувати лише перекази, підтверджені продавцем" - -#. screenid: 71 -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/ListPage.tsx:106 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:217 #, c-format msgid "Verified" msgstr "Перевірено" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:114 -#, fuzzy, c-format -msgid "Wire transfer already confirmed." -msgstr "Термін банківського переказу" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:190 -#, c-format -msgid "I have received the wire transfer" -msgstr "" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:191 -#, fuzzy, c-format -msgid "Confirm the wire transfer" -msgstr "підтвердити той самий токен доступу" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:199 +#. screenid: 84 +#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:218 #, c-format msgid "" -"The wire transfer has been sent and should be in your bank account in any " -"time. You can manually confirm the reception using the information below." +"A wire transfer is verified if match the amount of all orders being settled." msgstr "" -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:215 -#, fuzzy, c-format -msgid "Time" -msgstr "Хронологія" - -#: packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx:223 -#, fuzzy, c-format -msgid "Transfer ID" -msgstr "Перекази" - #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:64 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:69 #, fuzzy, c-format msgid "It's not the same." msgstr "не співпадає" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:70 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:75 #, fuzzy, c-format msgid "You are deleting the instance with ID \"%1$s\"" msgstr "Ви оновлюєте токен доступу з інстанції з ідентифікатором %1$s" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:134 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:80 +#, fuzzy, c-format +msgid "delete current instance" +msgstr "Не вдалося видалити інстанцію" + +#. screenid: 73 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:148 #, c-format msgid "Instance" msgstr "Інстанція" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:136 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:150 #, c-format msgid "Write the instance name to confirm the deletion" msgstr "" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:140 -#, c-format -msgid "Purge" -msgstr "Очистити" - -#. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:155 #, c-format msgid "" "All the data will be fully deleted, otherwise only the access will be " @@ -5074,17 +5948,71 @@ msgid "" msgstr "" #. screenid: 73 -#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:160 +#: packages/merchant-backoffice-ui/src/paths/instance/update/DeletePage.tsx:176 #, c-format msgid "DELETE" msgstr "" #. screenid: 75 -#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:118 +#, fuzzy, c-format +msgid "Doesn't have the pattern of an email" +msgstr "URL має неправильний формат" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:124 +#, c-format +msgid "Should start with +" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:126 +#, c-format +msgid "A phone number consists of numbers only" +msgstr "" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:129 +#, fuzzy, c-format +msgid "Invalid phone number" +msgstr "Контактний email" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:134 +#, fuzzy, c-format +msgid "Invalid value" +msgstr "недійсний формат" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:149 +#, fuzzy, c-format +msgid "Max 7 lines" +msgstr "максимум 7 рядків" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:182 +#, fuzzy, c-format +msgid "update instance settings" +msgstr "Не вдалося створити інстанцію" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:238 #, c-format msgid "Instance id" msgstr "Ідентифікатор інстанції" +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:248 +#, c-format +msgid "URL" +msgstr "URL" + +#. screenid: 75 +#: packages/merchant-backoffice-ui/src/paths/instance/update/UpdatePage.tsx:294 +#, fuzzy, c-format +msgid "Cancel operation" +msgstr "Підтверджено" + #. screenid: 74 #: packages/merchant-backoffice-ui/src/paths/instance/update/index.tsx:113 #, fuzzy, c-format @@ -5092,133 +6020,133 @@ msgid "Delete this instance" msgstr "Не вдалося видалити інстанцію" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:80 #, fuzzy, c-format msgid "Must be one of '%1$s'" msgstr "повинно бути одним із '%1$s'" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:89 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:90 #, fuzzy, c-format msgid "URL is invalid" msgstr "недійсний" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:128 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:98 +#, fuzzy, c-format +msgid "add webhook" +msgstr "додати нові вебхуки" + +#. screenid: 76 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:130 #, c-format msgid "Webhook ID to use" msgstr "ID вебхука для використання" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:132 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:149 #, c-format msgid "Event" msgstr "Подія" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:140 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:157 #, fuzzy, c-format msgid "Payment" msgstr "URI оплати" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:144 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:161 #, fuzzy, c-format msgid "Order settled" msgstr "Статус замовлення" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:146 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:163 #, fuzzy, c-format msgid "Category added" msgstr "шаблон успішно видалено" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:165 #, fuzzy, c-format msgid "Category updated" msgstr "Підтверджено" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:152 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:169 #, c-format msgid "Inventory added" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:154 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 #, fuzzy, c-format msgid "Inventory updated" msgstr "ID вебхука для використання" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:156 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 #, c-format msgid "Inventory deleted" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:162 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 #, c-format msgid "The event of the webhook: why the webhook is used" msgstr "Подія вебхука: чому використовується вебхук" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:166 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:183 #, c-format msgid "Method" msgstr "Метод" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:170 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:187 #, c-format msgid "GET" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:171 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:188 #, c-format msgid "POST" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:189 #, c-format msgid "PUT" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:173 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:190 #, c-format msgid "PATCH" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 #, c-format msgid "HEAD" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:179 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:196 #, c-format msgid "Method used by the webhook" msgstr "Метод, що використовується вебхуком" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:184 -#, c-format -msgid "URL" -msgstr "URL" - -#. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:185 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:202 #, c-format msgid "URL of the webhook where the customer will be redirected" msgstr "URL вебхука, куди буде перенаправлений клієнт" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:191 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 #, c-format msgid "" "The text below supports the %1$s template engine. Any string between %2$s " @@ -5226,963 +6154,906 @@ msgid "" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:208 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:225 #, c-format msgid "For example, %1$s will be replaced with the the order's price." msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:215 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:232 #, c-format msgid "The short list of variables are:" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:226 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:243 #, fuzzy, c-format msgid "order's description" msgstr "опис" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:230 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:247 #, fuzzy, c-format msgid "order's price" msgstr "Ціна замовлення" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:251 #, c-format msgid "order's unique identification" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:242 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:259 #, fuzzy, c-format msgid "the amount that was being refunded" msgstr "сума до повернення" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 #, c-format msgid "the reason entered by the merchant staff for granting the refund" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:255 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 #, c-format msgid "time of the refund in nanoseconds since 1970" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:265 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:282 #, fuzzy, c-format msgid "Http header" msgstr "Заголовок" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:267 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:284 #, c-format msgid "Header template of the webhook" msgstr "Шаблон заголовка вебхука" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:272 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:289 #, c-format msgid "Http body" msgstr "" #. screenid: 76 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:273 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/create/CreatePage.tsx:290 #, fuzzy, c-format msgid "Body template used by the webhook." msgstr "Шаблон тіла вебхука" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:69 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:67 +#, fuzzy, c-format +msgid "delete webhook" +msgstr "не вдалося видалити вебхук" + +#. screenid: 77 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:71 #, fuzzy, c-format msgid "Webhook deleted successfully" msgstr "вебхук успішно видалено" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:97 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:96 #, fuzzy, c-format msgid "Add new webhooks" msgstr "додати нові вебхуки" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:159 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:152 #, fuzzy, c-format msgid "Load more webhooks before the first one" msgstr "завантажити більше вебхуків до першого" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:172 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:169 #, c-format msgid "Event type" msgstr "Тип події" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:198 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:193 #, fuzzy, c-format msgid "Delete selected webhook from the database" msgstr "видалити вибраний вебхук з бази даних" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:214 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:211 #, fuzzy, c-format msgid "Load more webhooks after the last one" msgstr "завантажити більше вебхуків після останнього" #. screenid: 77 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:234 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/list/Table.tsx:235 #, fuzzy, c-format msgid "There are no webhooks to list yet, add more by pressing the + sign" msgstr "Вебхуків ще немає, додайте більше, натиснувши знак +" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:103 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:98 +#, fuzzy, c-format +msgid "update webhook" +msgstr "не вдалося видалити вебхук" + +#. screenid: 78 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:105 #, fuzzy, c-format msgid "Webhook updated" msgstr "ID вебхука для використання" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:205 #, c-format msgid "Header" msgstr "Заголовок" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:210 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:212 #, c-format msgid "Body" msgstr "Тіло" #. screenid: 78 -#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:211 +#: packages/merchant-backoffice-ui/src/paths/instance/webhooks/update/UpdatePage.tsx:213 #, fuzzy, c-format msgid "Body template used by the webhook" msgstr "Шаблон тіла вебхука" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:174 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:130 +#, c-format +msgid "Doesn't match" +msgstr "" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:202 +#, fuzzy, c-format +msgid "self provision instance" +msgstr "Не вдалося видалити інстанцію" + +#. screenid: 80 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:230 #, c-format msgid "There is another instance with this username." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:203 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:295 #, c-format msgid "Self provision" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:248 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:341 #, c-format msgid "Phone" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:249 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:342 #, fuzzy, c-format msgid "Contact phone number" msgstr "Контактний email" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:254 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:349 #, c-format msgid "Accept the Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:256 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:351 #, c-format msgid "I understand and agree to the %1$s" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:264 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:360 #, c-format msgid "Terms of service" msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:268 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:364 #, c-format msgid "You must accept the Terms of service to continue." msgstr "" #. screenid: 80 -#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:284 +#: packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx:386 #, fuzzy, c-format msgid "Create" msgstr "Створено о" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:110 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:91 +#, c-format +msgid "reset password for self provision" +msgstr "" + +#. screenid: 82 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:114 #, c-format msgid "The instance is not properly configured to allow MFA." msgstr "" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:122 #, fuzzy, c-format msgid "The instance \"%1$s\" was not found." msgstr "замовлення не знайдено" #. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:148 +#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:152 #, fuzzy, c-format msgid "Resetting access to the instance \"%1$s\"" msgstr "Ви встановлюєте токен доступу для нової інстанції" -#. screenid: 82 -#: packages/merchant-backoffice-ui/src/paths/resetAccount/index.tsx:186 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:92 #, c-format -msgid "Reset" +msgid "Language" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:84 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:94 #, c-format -msgid "Language" +msgid "Force the language settings instead of using the browser" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:101 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:106 #, fuzzy, c-format msgid "Date format" msgstr "недійсний формат" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:116 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:129 #, c-format msgid "How the date is going to be displayed" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:119 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:132 #, fuzzy, c-format msgid "Merchant type" msgstr "Тип події" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:120 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:133 #, c-format -msgid "Simplify UI based on the user usage." +msgid "Simplify the UI based on use case." msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:135 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:148 #, c-format -msgid "Expert user" +msgid "Beta tester" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:137 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:150 #, c-format -msgid "Taler developer" +msgid "Expert user" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:139 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:152 #, c-format msgid "Unattended in-person offline vending" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:141 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 #, c-format msgid "In-person online point-of-sale with inventory" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:143 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:156 #, c-format msgid "Digital publishing" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:145 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:158 #, c-format msgid "E-commerce site" msgstr "" #. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:154 -#, c-format -msgid "Developer mode" -msgstr "" - -#. screenid: 83 -#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:155 -#, c-format -msgid "" -"Only use developer mode if you know how the application works. Some features " -"enabled in this mode are still under testing." -msgstr "" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:66 -#, fuzzy, c-format -msgid "Money pot deleted" -msgstr "шаблон успішно видалено" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:92 -#, fuzzy, c-format -msgid "Add new pots" -msgstr "додати нові шаблони" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:154 -#, fuzzy, c-format -msgid "Load more pots before the first one" -msgstr "завантажити більше шаблонів до першого" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:167 -#, fuzzy, c-format -msgid "Total" -msgstr "Загальна ціна" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:193 -#, fuzzy, c-format -msgid "Delete selected pots from the database" -msgstr "видалити вибраний переказ з бази даних" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:209 -#, fuzzy, c-format -msgid "Load more pots after the last one" -msgstr "завантажити більше шаблонів після останнього" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx:229 -#, fuzzy, c-format -msgid "There are no money pots yet, add more pressing the + sign" -msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:83 -#, c-format -msgid "Missing currency name" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:85 -#, c-format -msgid "Currency name must be only letters" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:87 -#, c-format -msgid "Value can only by number" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:89 -#, c-format -msgid "The value is too high" -msgstr "" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:91 -#, fuzzy, c-format -msgid "The value is too precise" -msgstr "змінити значення на ніколи" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:104 -#, fuzzy, c-format -msgid "Invalid amount \"%1$s\": %2$s" -msgstr "Фіксована сума" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:166 -#, fuzzy, c-format -msgid "Descripton" -msgstr "Опис" - -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx:171 -#, fuzzy, c-format -msgid "Totals" -msgstr "Загальна ціна" - -#. screenid: 37 -#: packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx:79 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:163 #, c-format -msgid "There is already a money pot with the same id." +msgid "Developer tools" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:66 -#, fuzzy, c-format -msgid "Product group deleted" -msgstr "Список продуктів" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:92 -#, fuzzy, c-format -msgid "Add new group" -msgstr "Зарахований банківський рахунок" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:154 -#, fuzzy, c-format -msgid "Load more groups before the first one" -msgstr "завантажити більше вебхуків до першого" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:193 -#, fuzzy, c-format -msgid "Delete selected group from the database" -msgstr "видалити вибраний переказ з бази даних" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:209 -#, fuzzy, c-format -msgid "Load more groups after the last one" -msgstr "завантажити більше шаблонів після останнього" - -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx:229 -#, fuzzy, c-format -msgid "There are no product groups yet, add more pressing the + sign" -msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:164 +#, c-format +msgid "Enable UI tools for troubleshooting." +msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:68 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:172 #, c-format -msgid "Scheduled report deleted" +msgid "Testing features" msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:89 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:173 #, c-format -msgid "Scheduled reports" +msgid "" +"Only use beta-tester mode if you know how the application works. Features " +"enabled in this mode requires more work." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:94 -#, fuzzy, c-format -msgid "Add new reports" -msgstr "додати нові шаблони" +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:181 +#, c-format +msgid "Developer mode" +msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:169 +#. screenid: 83 +#: packages/merchant-backoffice-ui/src/paths/settings/index.tsx:182 #, c-format -msgid "Frequency" +msgid "" +"Only use developer mode if you know what you are doing. Tools enabled in " +"this mode are intended to fix problems or get more information about the " +"runtime. YOU MAY LOSE DATA." msgstr "" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:198 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:85 #, fuzzy, c-format -msgid "Delete selected scheduled report from the database" -msgstr "видалити вибраний переказ з бази даних" +msgid "create pos access token" +msgstr "Встановити токен доступу" -#. screenid: 38 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx:234 +#. screenid: 110 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx:147 #, fuzzy, c-format -msgid "There are no reports yet, add more pressing the + sign" -msgstr "Шаблонів ще немає, додайте більше, натиснувши знак +" +msgid "Device name" +msgstr "Пристрій:" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:148 +#. screenid: 108 +#: packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx:69 #, c-format -msgid "No report generator configured in the server" +msgid "Scan this QR with the Taler POS app." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:149 -#, c-format +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:43 +#, fuzzy, c-format +msgid "Payment services status" +msgstr "Деталі оплати" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:76 +#, fuzzy, c-format +msgid "Base URL" +msgstr "URL статусу" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:82 +#, fuzzy, c-format +msgid "Next update" +msgstr "ID вебхука для використання" + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:92 +#, fuzzy, c-format +msgid "This payment service is ready to be used." +msgstr "Це недійсна адреса біткойн." + +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:93 +#, fuzzy, c-format msgid "" -"Contact the system administrator to create a report generator before " -"scheduling one." +"This payment service can't be used due to an error. Contact the service " +"provider." msgstr "" +"показувати лише замовлення, де клієнти заплатили, але банківські перекази " +"від постачальника платежів ще не виконані" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:187 +#. screenid: 92 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx:135 #, c-format -msgid "Description of the report. Possibly included in the report message" +msgid "Details of the status" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:193 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:80 #, c-format -msgid "Where the report program should send the report" +msgid "No payment services supported" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:198 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:81 #, c-format -msgid "Source" +msgid "" +"Currently the list of payment service provider in the configuration is " +"empty. Without this service can process any payment." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:199 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:118 #, c-format -msgid "Base URL to request the data from." +msgid "Ready until %1$s" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:205 -#, fuzzy, c-format -msgid "Type of the data source" -msgstr "Назва категорії" +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:131 +#, c-format +msgid "Next update will be at %1$s" +msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:220 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:144 #, c-format -msgid "Program" +msgid "Error" msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:222 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:150 #, c-format -msgid "" -"Merchant backend configuration section specifying the program to use to " -"transmit the report" +msgid "This payment service is unavailable." msgstr "" -#. screenid: 39 -#: packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx:228 +#. screenid: 94 +#: packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx:160 #, c-format -msgid "Report frequency" +msgid "Last HTTP status was %1$s: %2$s (#%3$s )" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:208 +#: packages/merchant-backoffice-ui/src/Routing.tsx:214 #, c-format msgid "Welcome!" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:303 +#: packages/merchant-backoffice-ui/src/Routing.tsx:309 #, c-format msgid "" -"The application is in a unexpected state and can't recover from here. You " +"The application is in an unexpected state and can't recover from here. You " "can report the problem to the developers at %1$s" msgstr "" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:902 +#: packages/merchant-backoffice-ui/src/Routing.tsx:936 #, fuzzy, c-format msgid "You need to associate a bank account to receive revenue." msgstr "URI, що вказує на банківський рахунок для зарахування доходу." #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:906 -#, c-format -msgid "Without this the merchant backend will refuse to create new orders." -msgstr "" +#: packages/merchant-backoffice-ui/src/Routing.tsx:940 +#, fuzzy, c-format +msgid "Without this the server will refuse to create new orders." +msgstr "використовувати шаблон для створення нового замовлення." #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:917 +#: packages/merchant-backoffice-ui/src/Routing.tsx:950 #, c-format msgid "Hide for today" msgstr "Сховати на сьогодні" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:953 +#: packages/merchant-backoffice-ui/src/Routing.tsx:985 #, fuzzy, c-format msgid "KYC verification needed" msgstr "Очікування перевірки KYC" #. screenid: 3 -#: packages/merchant-backoffice-ui/src/Routing.tsx:957 +#: packages/merchant-backoffice-ui/src/Routing.tsx:989 #, c-format msgid "" "Some transfers are on hold until the KYC process is completed. Visit the KYC " "section in the left-hand menu for more information." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:39 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:56 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Settings" -msgstr "Налаштування" +msgid "No 'admin' instance configured yet." +msgstr "Інстанція 'default' ще не налаштована." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:41 +#. screenid: 81 +#: packages/merchant-backoffice-ui/src/paths/notfound/index.tsx:57 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New bank account" -msgstr "Банківський рахунок" +msgid "Create an 'admin' instance to begin using the merchant portal." +msgstr "" +"Створіть інстанцію 'default', щоб почати використовувати бекофіс продавця." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:43 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:62 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Bank accounts" -msgstr "Банківський рахунок" +msgid "delete bank account" +msgstr "Виберіть один рахунок" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:45 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:80 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update bank Account" -msgstr "Перевірка дійсності банківського рахунку: %1$s" +msgid "The bank account has been deleted." +msgstr "Банківський рахунок успішно видалено." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:47 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:89 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Orders" -msgstr "Замовлення" +msgid "Delete account" +msgstr "Виберіть один рахунок" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:51 -#, c-format -msgctxt "title" -msgid "%1$s: New order" -msgstr "" +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:90 +#, fuzzy, c-format +msgid "Delete the account \"%1$s\"" +msgstr "не вдалося видалити продукт" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:53 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:92 #, c-format -msgctxt "title" -msgid "%1$s: Inventory" +msgid "Invalid payto: \"%1$s\"" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:55 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:101 #, c-format -msgctxt "title" -msgid "%1$s: New product" +msgid "If you delete the account with name %1$s its information will be lost" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:57 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:116 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update product" -msgstr "не вдалося оновити продукт" +msgid "Deleting an account can't be undone." +msgstr "наступний токен доступу, який буде використано" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:59 -#, c-format -msgctxt "title" -msgid "%1$s: Category" -msgstr "" +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:127 +#, fuzzy, c-format +msgid "Bank accounts" +msgstr "Банківський рахунок" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:61 -#, c-format -msgctxt "title" -msgid "%1$s: New category" -msgstr "" +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:130 +#, fuzzy, c-format +msgid "Add new account" +msgstr "Зарахований банківський рахунок" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:63 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:223 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update category" -msgstr "не вдалося оновити шаблон" +msgid "Owner's name" +msgstr "Назва бізнесу" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:65 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:257 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Wire transfers" -msgstr "Ідентифікатор банківського переказу" +msgid "Delete selected accounts from the database" +msgstr "видалити вибраний переказ з бази даних" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:67 +#. screenid: 35 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/Table.tsx:414 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Webhooks" -msgstr "Вебхуки" +msgid "There are no accounts yet, add more pressing the + sign" +msgstr "Продуктів ще немає, додайте більше, натиснувши знак +" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:69 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:69 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New webhook" -msgstr "додати нові вебхуки" +msgid "No bank account configured yet." +msgstr "Інстанція 'default' ще не налаштована." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:71 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:70 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update webhook" -msgstr "не вдалося видалити вебхук" +msgid "Without this information you cannot create new payment orders." +msgstr "використовувати шаблон для створення нового замовлення." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:73 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:93 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: OTP devices" -msgstr "додати новий резерв" +msgid "This account is not ready to be used." +msgstr "Це недійсна адреса біткойн." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:75 +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:96 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New OTP device" -msgstr "додати новий резерв" +msgid "There are pending actions related to KYC." +msgstr "Керування списком продуктів у замовленні." + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:100 +#, fuzzy, c-format +msgid "More details." +msgstr "Деталі оплати" + +#. screenid: 34 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx:127 +#, fuzzy, c-format +msgid "You must complete kyc requirements to receive payments." +msgstr "URI, що вказує на банківський рахунок для зарахування доходу." -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:77 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:114 #, c-format -msgctxt "title" -msgid "%1$s: Update OTP device" +msgid "" +"The extra data should be between 1 and 40 characters of letters, numbers, " +"dot, dash and colon." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:79 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:120 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New template" -msgstr "додати нові шаблони" +msgid "Invalid url" +msgstr "недійсний формат" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:81 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update template" -msgstr "додати нові шаблони" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:122 +#, c-format +msgid "URL must end with a '/'" +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:83 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Templates" -msgstr "Шаблони" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:124 +#, c-format +msgid "URL must not contain params" +msgstr "" + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:126 +#, c-format +msgid "URL must not hash param" +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:85 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:226 #, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Use template" -msgstr "додати нові шаблони" +msgid "change bank account" +msgstr "Банківський рахунок" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:87 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:272 #, c-format -msgctxt "title" -msgid "%1$s: Personalization" +msgid "test revenue api" msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:89 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:292 #, c-format -msgctxt "title" -msgid "%1$s: Discounts & Suscriptions" +msgid "Server replied with \"bad request\"." +msgstr "Відповідь сервера з кодом помилки." + +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:294 +#, c-format +msgid "Unauthorized, check credentials." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:91 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:296 #, c-format -msgctxt "title" -msgid "%1$s: New token family" +msgid "The endpoint does not seem to be a Taler Revenue API." msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:93 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Update token family" -msgstr "Не вдалося оновити сімейство токенів" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:298 +#, c-format +msgid "" +"The request was made correctly, but the bank's server did not respond with " +"the appropriate value for 'credit_account', so we cannot confirm that it is " +"the same bank account." +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:95 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: Access tokens" -msgstr "Токен доступу" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:300 +#, c-format +msgid "Unsupported type of account" +msgstr "" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:97 -#, fuzzy, c-format -msgctxt "title" -msgid "%1$s: New access token" -msgstr "Новий токен доступу" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:329 +#, c-format +msgid "Account:" +msgstr "Рахунок:" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:351 #, fuzzy, c-format -msgctxt "title" -msgid "New instance" -msgstr "додати нову інстанцію" +msgid "Account details" +msgstr "Адреса рахунку" -#: packages/merchant-backoffice-ui/src/components/menu/index.tsx:110 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:356 #, fuzzy, c-format -msgctxt "title" -msgid "Instances" -msgstr "Інстанції" - -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:47 -#, c-format -msgid "The request reached a timeout, check your connection." -msgstr "" +msgid "Extra subject" +msgstr "Призначення" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:67 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:358 #, c-format -msgid "The request was cancelled." +msgid "" +"Additional text to include in the wire transfer subject when settling the " +"payment" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:109 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:364 #, c-format msgid "" -"Too many requests were made to the server, and this action was throttled." +"If the bank supports Taler Revenue API then you can add the endpoint URL " +"below to keep the revenue information in sync." msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:132 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:373 #, c-format -msgid "The server's response was malformed." +msgid "Endpoint URL" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:152 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:376 #, c-format -msgid "Could not complete the request due to a network problem." +msgid "" +"From where the merchant can download information about incoming wire " +"transfers to this account" msgstr "" -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:173 -#, fuzzy, c-format -msgid "Unexpected request error." -msgstr "Несподівана помилка" - -#. screenid: 4 -#: packages/merchant-backoffice-ui/src/components/ErrorLoadingMerchant.tsx:201 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:380 #, fuzzy, c-format -msgid "Unexpected error." -msgstr "Несподівана помилка" +msgid "Auth type" +msgstr "Тип події" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:102 -#, fuzzy, c-format -msgid "Add new instance" -msgstr "додати нову інстанцію" +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:381 +#, c-format +msgid "Choose the authentication type for the account info URL" +msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:238 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:384 #, c-format -msgid "Edit" -msgstr "Редагувати" +msgid "Without authentication" +msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:246 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:386 #, c-format -msgid "Change password" +msgid "With username and password" msgstr "" -#. screenid: 27 -#: packages/merchant-backoffice-ui/src/paths/admin/list/TableActive.tsx:287 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:387 #, fuzzy, c-format -msgid "There are no instances yet. Add one by pressing the '+' sign." -msgstr "Ще немає інстанцій, додайте більше, натиснувши знак +" +msgid "With token" +msgstr "Створити токен" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:90 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:388 #, fuzzy, c-format -msgid "Instance \"%1$s\" (ID: %2$s) has been deleted." -msgstr "Інстанція \"%1$s\" (ID: %2$s) була видалена" +msgid "Do not change" +msgstr "URL обмінника" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:154 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:396 #, c-format -msgid "Only show active instances" -msgstr "Показувати тільки активні інстанції" +msgid "Username to access the account information." +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:157 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:403 #, c-format -msgid "Active" -msgstr "Активні" +msgid "Password to access the account information." +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:165 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:414 #, c-format -msgid "Only show deleted instances" -msgstr "Показувати тільки видалені інстанції" +msgid "Access token to access the account information." +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:168 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:419 #, c-format -msgid "Deleted" -msgstr "Видалено" +msgid "Match" +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:176 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:420 #, c-format -msgid "Show all instances" -msgstr "Показати всі інстанції" - -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:222 -#, fuzzy, c-format -msgid "Delete instance" -msgstr "Не вдалося видалити інстанцію" - -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:223 -#, fuzzy, c-format -msgid "Delete the instance \"%1$s\"" -msgstr "завантажити новіші шаблони" +msgid "Check where the information match against the server info." +msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:230 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:426 #, c-format -msgid "" -"If you delete the instance named %1$s (ID: %2$s), the merchant will no " -"longer be able to process orders and refunds" +msgid "Compare info from server with account form" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:237 +#. screenid: 36 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/update/UpdatePage.tsx:467 #, c-format -msgid "" -"This action deletes the instance's private key, but preserves all " -"transaction data. You can still access the transaction data after having " -"deleted the instance." +msgid "parse revenue payto" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:244 -#, fuzzy, c-format -msgid "Deleting an instance %1$s" -msgstr "завантажити новіші шаблони" - -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:247 -#, fuzzy, c-format -msgid "This cannot be undone!" -msgstr "не може бути порожнім" - -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:259 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:169 #, fuzzy, c-format -msgid "Purge the instance" -msgstr "Не вдалося видалити інстанцію" +msgid "add bank account" +msgstr "Банківський рахунок" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:260 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:192 #, fuzzy, c-format -msgid "Purge the instance \"%1$s\"" -msgstr "Ви встановлюєте токен доступу для нової інстанції" +msgid "The instance does not exist." +msgstr "замовлення не знайдено" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:267 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:194 #, c-format msgid "" -"If you purge the instance named %1$s (ID: %2$s), you will also delete all of " -"its transaction data!" +"The bank account already exist but with different information. Is the name " +"of the account holder correct?" msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:274 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:234 +#, fuzzy, c-format +msgid "Server didn't like the request we made." +msgstr "Відповідь сервера з кодом помилки." + +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:339 #, c-format -msgid "" -"The instance will disappear from your list and you will no longer be able to " -"access its data." +msgid "Check if the information matches the server info." msgstr "" -#. screenid: 28 -#: packages/merchant-backoffice-ui/src/paths/admin/list/View.tsx:280 +#. screenid: 33 +#: packages/merchant-backoffice-ui/src/paths/instance/accounts/create/CreatePage.tsx:344 #, c-format -msgid "Purging an instance %1$s" +msgid "Verify details with server" msgstr "" +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:179 +#, fuzzy, c-format +msgid "create instance and login" +msgstr "Не вдалося видалити інстанцію" + +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:200 +#, fuzzy, c-format +msgid "Instance created" +msgstr "Ідентифікатор інстанції" + +#. screenid: 25 +#: packages/merchant-backoffice-ui/src/paths/admin/create/CreatePage.tsx:309 +#, fuzzy, c-format +msgid "Please complete the marked fields and choose authorization method" +msgstr "Необхідно заповнити позначені поля та вибрати метод авторизації" + #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:223 +#: packages/merchant-backoffice-ui/src/Application.tsx:218 #, c-format msgid "checking compatibility with server..." msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:232 +#: packages/merchant-backoffice-ui/src/Application.tsx:227 #, fuzzy, c-format msgid "Contacting the server failed" msgstr "Не вдалося підключитися до сервера." #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:244 +#: packages/merchant-backoffice-ui/src/Application.tsx:239 #, c-format msgid "The server version is not supported" msgstr "" #. screenid: 2 -#: packages/merchant-backoffice-ui/src/Application.tsx:245 +#: packages/merchant-backoffice-ui/src/Application.tsx:240 #, c-format msgid "Supported version \"%1$s\", server version \"%2$s\"." msgstr "" @@ -6193,18 +7064,92 @@ msgstr "" msgid "Business Name" msgstr "Назва бізнесу" +#. screenid: 96 +#: packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx:95 +#, fuzzy, c-format +msgid "update product group" +msgstr "Товари" + #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:58 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:55 #, c-format msgid "Available statistics" msgstr "" #. screenid: 60 -#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:165 +#: packages/merchant-backoffice-ui/src/paths/instance/statistics/list/Table.tsx:163 #, c-format msgid "There are no statistics to list" msgstr "" +#, fuzzy, c-format +#~ msgid "Exchanges" +#~ msgstr "Exchange" + +#, fuzzy, c-format +#~ msgid "Action required" +#~ msgstr "Потрібен вхід" + +#, fuzzy, c-format +#~ msgid "Change value to unknown date" +#~ msgstr "змінити значення на невідому дату" + +#, c-format +#~ msgid "Add from inventory" +#~ msgstr "Додати зі складу" + +#, fuzzy, c-format +#~ msgid "is not a valid URL" +#~ msgstr "недійсний" + +#, fuzzy, c-format +#~ msgid "Wired" +#~ msgstr "перераховано" + +#, c-format +#~ msgid "Pay at" +#~ msgstr "URL для оплати" + +#, fuzzy, c-format +#~ msgid "Just letters and numbers from 2 to 7" +#~ msgstr "лише літери та цифри від 2 до 7" + +#, fuzzy, c-format +#~ msgid "Expected credit" +#~ msgstr "Очікуваний баланс" + +#, fuzzy, c-format +#~ msgid "Validated" +#~ msgstr "Дійсний до" + +#, fuzzy, c-format +#~ msgid "Executed on" +#~ msgstr "Виконано о" + +#, c-format +#~ msgid "yes" +#~ msgstr "так" + +#, c-format +#~ msgid "no" +#~ msgstr "ні" + +#, fuzzy, c-format +#~ msgid "" +#~ "Only display transfers that have already been transferred to your bank " +#~ "account by the payment service provider." +#~ msgstr "" +#~ "показувати лише замовлення, де клієнти заплатили, але банківські перекази " +#~ "від постачальника платежів ще не виконані" + +#, fuzzy, c-format +#~ msgid "Only show wire transfers confirmed by the merchant" +#~ msgstr "показувати лише перекази, підтверджені продавцем" + +#, fuzzy, c-format +#~ msgid "Time" +#~ msgstr "Хронологія" + #, c-format #~ msgid "Default payment delay" #~ msgstr "Затримка оплати за замовчуванням" @@ -6262,10 +7207,6 @@ msgstr "" #~ msgstr "показувати лише перекази, заявлені обмінником" #, fuzzy, c-format -#~ msgid "Complete" -#~ msgstr "Гроші перераховані" - -#, fuzzy, c-format #~ msgid "Second factor authorization required." #~ msgstr "Встановити зовнішню авторизацію" @@ -6394,10 +7335,6 @@ msgstr "" #~ msgstr "Номер рахунку." #, c-format -#~ msgid "Without this the you won't be able to create new orders." -#~ msgstr "використовувати шаблон для створення нового замовлення." - -#, c-format #~ msgid "Could not delete the bank account" #~ msgstr "Не вдалося видалити банківський рахунок" @@ -6453,18 +7390,10 @@ msgstr "" #~ msgid "Device added successfully" #~ msgstr "повернення успішно створено" -#, fuzzy, c-format -#~ msgid "Could not add device" -#~ msgstr "не вдалося створити резерв" - #, c-format #~ msgid "The device was successfully deleted" #~ msgstr "Пристрій було успішно видалено" -#, c-format -#~ msgid "Could not delete the device" -#~ msgstr "Не вдалося видалити пристрій" - #, fuzzy, c-format #~ msgid "Could not update template" #~ msgstr "не вдалося оновити шаблон" @@ -6618,10 +7547,6 @@ msgstr "" #~ msgstr "Управління токеном доступу" #, fuzzy, c-format -#~ msgid "Failed to update instance" -#~ msgstr "Не вдалося створити інстанцію" - -#, fuzzy, c-format #~ msgid "Webhook create successfully" #~ msgstr "вебхук успішно видалено" @@ -6634,17 +7559,9 @@ msgstr "" #~ msgstr "не вдалося видалити вебхук" #, fuzzy, c-format -#~ msgid "Could not delete the webhook" -#~ msgstr "не вдалося видалити вебхук" - -#, fuzzy, c-format #~ msgid "Could not delete the category" #~ msgstr "не вдалося видалити шаблон" -#, fuzzy, c-format -#~ msgid "Could not add category" -#~ msgstr "не вдалося створити продукт" - #, c-format #~ msgid "Failed to create instance" #~ msgstr "Не вдалося створити інстанцію" @@ -6715,10 +7632,6 @@ msgstr "" #~ msgstr "Термін автоматичного повернення" #, c-format -#~ msgid "Maximum deposit fee" -#~ msgstr "Максимальна комісія за депозит" - -#, c-format #~ msgid "" #~ "Maximum aggregate wire fees the merchant is willing to cover for this " #~ "order. Wire fees exceeding this amount are to be covered by the customers." @@ -6770,10 +7683,6 @@ msgstr "" #~ msgstr "причина" #, c-format -#~ msgid "Max wire fee" -#~ msgstr "Максимальна комісія за переказ" - -#, c-format #~ msgid "maximum wire fee accepted by the merchant" #~ msgstr "максимальна комісія за переказ, прийнята продавцем" @@ -6839,10 +7748,6 @@ msgstr "" #~ "URI:" #, c-format -#~ msgid "it should be greater than 0" -#~ msgstr "це повинно бути більше 0" - -#, c-format #~ msgid "must be a valid URL" #~ msgstr "повинен бути дійсний URL" diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/CreatePage.tsx @@ -44,11 +44,10 @@ import { Input } from "../../../../components/form/Input.js"; import { SolveMFAChallenges } from "../../../../components/SolveMFA.js"; import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; -import { usePreference } from "../../../../hooks/preference.js"; import { undefinedIfEmpty } from "../../../../utils/table.js"; import { maybeTryFirstMFA } from "../../accounts/create/CreatePage.js"; -const TALER_SCREEN_ID = 29; +const TALER_SCREEN_ID = 110; type Entity = { name: string; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create-pos/index.tsx @@ -21,22 +21,20 @@ import { AbsoluteTime, - TalerMerchantApi, - TalerUri, + TalerMerchantApi } from "@gnu-taler/taler-util"; import { QR_Generic, - QR_Taler, Time, - useTranslationContext, + useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, VNode, h } from "preact"; import { useState } from "preact/hooks"; -import { ConfirmModal, Row } from "../../../../components/modal/index.js"; -import { CreatePage } from "./CreatePage.js"; +import { ConfirmModal } from "../../../../components/modal/index.js"; import { useSessionContext } from "../../../../context/session.js"; +import { CreatePage } from "./CreatePage.js"; -const TALER_SCREEN_ID = 30; +const TALER_SCREEN_ID = 108; export type Entity = TalerMerchantApi.LoginTokenRequest; interface Props { diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/CreatePage.tsx @@ -29,6 +29,7 @@ import { import { ButtonBetterBulma, LocalNotificationBannerBulma, + NotificationCardBulma, useChallengeHandler, useLocalNotificationBetter, useTranslationContext, @@ -41,19 +42,17 @@ import { TalerForm, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; -import { InputDurationSelector } from "../../../../components/form/InputDurationSelector.js"; +import { InputDurationDropdown } from "../../../../components/form/InputDurationDropdown.js"; import { InputSelector } from "../../../../components/form/InputSelector.js"; -import { NotificationCardBulma } from "@gnu-taler/web-util/browser"; +import { getAvailableForPersona } from "../../../../components/menu/SideBar.js"; import { SolveMFAChallenges } from "../../../../components/SolveMFA.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; -import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { getAvailableForPersona } from "../../../../components/menu/SideBar.js"; import { UIElement, usePreference } from "../../../../hooks/preference.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; +import { undefinedIfEmpty } from "../../../../utils/table.js"; import { maybeTryFirstMFA } from "../../accounts/create/CreatePage.js"; -import { InputDurationDropdown } from "../../../../components/form/InputDurationDropdown.js"; -const TALER_SCREEN_ID = 29; +const TALER_SCREEN_ID = 111; type Entity = { scope: TalerMerchantApi.LoginTokenRequest["scope"]; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accessTokens/create/index.tsx @@ -27,7 +27,7 @@ import { ConfirmModal, Row } from "../../../../components/modal/index.js"; import { CreatePage } from "./CreatePage.js"; -const TALER_SCREEN_ID = 30; +const TALER_SCREEN_ID = 109; export type Entity = TalerMerchantApi.LoginTokenRequest; interface Props { diff --git a/packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/accounts/list/index.tsx @@ -92,10 +92,14 @@ export function UnableToUseBankAccountWarning({ type: "WARN", message: i18n.str`This account is not ready to be used.`, description: ( - <i18n.Translate> - There are pending actions related to KYC.{" "} - <a href="#/kyc">More details.</a> - </i18n.Translate> + <Fragment> + <i18n.Translate> + There are pending actions related to KYC. + </i18n.Translate>{" "} + <a href="#/kyc"> + <i18n.Translate>More details.</i18n.Translate> + </a> + </Fragment> ), }} /> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/categories/create/CreatePage.tsx @@ -30,18 +30,18 @@ import { useLocalNotificationBetter, useTranslationContext, } from "@gnu-taler/web-util/browser"; -import { VNode, h } from "preact"; +import { h, VNode } from "preact"; import { useState } from "preact/hooks"; import { FormErrors, FormProvider, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 37; +const TALER_SCREEN_ID = 107; type Entity = TalerMerchantApi.CategoryCreateRequest; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/categories/list/Table.tsx @@ -33,10 +33,10 @@ import { } from "@gnu-taler/web-util/browser"; import { Fragment, h, VNode } from "preact"; import { StateUpdater, useState } from "preact/hooks"; -import { useSessionContext } from "../../../../context/session.js"; import { Tooltip } from "../../../../components/Tooltip.js"; +import { useSessionContext } from "../../../../context/session.js"; -const TALER_SCREEN_ID = 38; +const TALER_SCREEN_ID = 103; type Entity = TalerMerchantApi.CategoryListEntry; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/categories/update/UpdatePage.tsx @@ -39,15 +39,15 @@ import emptyImage from "../../../../assets/empty.png"; import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; import { FormProvider } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { WithId } from "../../../../declaration.js"; import { ProductWithId, useInstanceProductsFromIds, } from "../../../../hooks/product.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 39; +const TALER_SCREEN_ID = 99; type Entity = TalerMerchantApi.CategoryProductList & WithId; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/ListPage.tsx @@ -24,7 +24,7 @@ import { Time, useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, h, VNode } from "preact"; import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 41; +const TALER_SCREEN_ID = 92; export interface Props { exchanges: TalerMerchantApi.ExchangeStatusDetail[]; @@ -40,7 +40,7 @@ export function ListPage({ exchanges, onSelect }: Props): VNode { <header class="card-header"> <p class="card-header-title"> <i class="icon mdi mdi-clock" /> - <i18n.Translate>Supported exchange status</i18n.Translate> + <i18n.Translate>Payment services status</i18n.Translate> </p> <div class="card-header-icon" aria-label="more options" /> @@ -89,8 +89,8 @@ function PendingTable({ exchanges, onSelect }: PendingTableProps): VNode { const isWorking = e.keys_http_status >= 200 && e.keys_http_status < 300; const legend = isWorking - ? i18n.str`This exchange is ready to be used.` - : i18n.str`This exchange can't be used due to an error. Contact the service provider.`; + ? i18n.str`This payment service is ready to be used.` + : i18n.str`This payment service can't be used due to an error. Contact the service provider.`; const url = new URL(`/config`, e.exchange_url); return ( <tr key={i}> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/exchanges/list/index.tsx @@ -22,30 +22,27 @@ import { AbsoluteTime, HttpStatusCode, - Paytos, TalerError, TalerMerchantApi, TranslatedString, - assertUnreachable, + assertUnreachable } from "@gnu-taler/taler-util"; import { NotificationCardBulma, Time, - useCommonPreferences, - useTranslationContext, + useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, VNode, h } from "preact"; +import { useState } from "preact/hooks"; import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; import { Loading } from "../../../../components/exception/loading.js"; import { - ConfirmModal, - ValidBankAccount, + ConfirmModal } from "../../../../components/modal/index.js"; import { useBackendExchanges } from "../../../../hooks/exchanges.js"; import { ListPage } from "./ListPage.js"; -import { useState } from "preact/hooks"; -const TALER_SCREEN_ID = 40; +const TALER_SCREEN_ID = 94; interface Props { // onGetInfo: (id: string) => void; @@ -80,8 +77,8 @@ export default function ListExchanges(_p: Props): VNode { return ( <NotificationCardBulma notification={{ - message: i18n.str`No exchanges supported`, - description: i18n.str`Currently the list of exchanges in the configuration is empty. Without this this server can process any payment.".`, + message: i18n.str`No payment services supported`, + description: i18n.str`Currently the list of payment service provider in the configuration is empty. Without this service can process any payment.`, type: "WARN", }} /> @@ -150,7 +147,7 @@ function ShowExchangeStatus({ onCancel={onCancel} > <p style={{ paddingTop: 0 }}> - <b><i18n.Translate>This exchange is down.</i18n.Translate></b>{" "} + <b><i18n.Translate>This payment service is unavailable.</i18n.Translate></b>{" "} <i18n.Translate> Next update will be at{" "} <Time diff --git a/packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/groups/create/CreatePage.tsx @@ -30,18 +30,18 @@ import { useLocalNotificationBetter, useTranslationContext, } from "@gnu-taler/web-util/browser"; -import { VNode, h } from "preact"; +import { h, VNode } from "preact"; import { useState } from "preact/hooks"; import { FormErrors, FormProvider, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 37; +const TALER_SCREEN_ID = 106; type Entity = TalerMerchantApi.GroupAddRequest; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/groups/list/Table.tsx @@ -33,10 +33,10 @@ import { } from "@gnu-taler/web-util/browser"; import { Fragment, h, VNode } from "preact"; import { StateUpdater, useState } from "preact/hooks"; -import { useSessionContext } from "../../../../context/session.js"; import { Tooltip } from "../../../../components/Tooltip.js"; +import { useSessionContext } from "../../../../context/session.js"; -const TALER_SCREEN_ID = 38; +const TALER_SCREEN_ID = 102; type Entity = TalerMerchantApi.GroupEntry; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/groups/list/UpdatePage.tsx @@ -22,31 +22,23 @@ import { assertUnreachable, HttpStatusCode, - TalerError, - TalerMerchantApi, + TalerMerchantApi } from "@gnu-taler/taler-util"; import { ButtonBetterBulma, - Loading, LocalNotificationBannerBulma, useLocalNotificationBetter, - useTranslationContext, + useTranslationContext } from "@gnu-taler/web-util/browser"; import { Fragment, h, VNode } from "preact"; -import { useEffect, useState } from "preact/hooks"; -import emptyImage from "../../../../assets/empty.png"; -import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; +import { useState } from "preact/hooks"; import { FormProvider } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { WithId } from "../../../../declaration.js"; -import { - ProductWithId, - useInstanceProductsFromIds, -} from "../../../../hooks/product.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 39; +const TALER_SCREEN_ID = 96; type Entity = TalerMerchantApi.GroupEntry & WithId; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/kyc/list/ListPage.tsx @@ -28,7 +28,7 @@ import { import { useTranslationContext } from "@gnu-taler/web-util/browser"; import { h, VNode } from "preact"; -const TALER_SCREEN_ID = 41; +const TALER_SCREEN_ID = 93; export interface Props { status: TalerMerchantApi.MerchantAccountKycRedirectsResponse; @@ -172,7 +172,7 @@ function PendingTable({ .MERCHANT_INTERNAL_ERROR: return ( <i18n.Translate> - Merchant backend internal error. Contact + Server internal error. Contact the service administrator or check again later. </i18n.Translate> ); @@ -202,7 +202,7 @@ function PendingTable({ case TalerMerchantApi.MerchantAccountKycStatus.LOGIC_BUG: return ( <i18n.Translate> - Backend internal error. Contact administrator or + Server internal error. Contact administrator or check again later. </i18n.Translate> ); diff --git a/packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/kyc/list/index.tsx @@ -40,9 +40,8 @@ import { } from "../../../../components/modal/index.js"; import { useInstanceKYCDetails } from "../../../../hooks/instance.js"; import { ListPage } from "./ListPage.js"; -import { useEffect } from "preact/hooks"; -const TALER_SCREEN_ID = 40; +const TALER_SCREEN_ID = 95; interface Props { // onGetInfo: (id: string) => void; @@ -144,7 +143,7 @@ function ShowInstructionForKycRedirect({ )} <p style={{ paddingTop: 0 }}> <i18n.Translate> - The backend service responded with "{e.payto_uri}" which is + The server responded with "{e.payto_uri}" which is invalid. </i18n.Translate> </p> @@ -173,7 +172,7 @@ function ShowInstructionForKycRedirect({ return ( <ConfirmModal label={i18n.str`Ok`} - description={i18n.str`No exchange keys`} + description={i18n.str`No contact with the payment service yet.`} active onCancel={onCancel} > @@ -182,7 +181,7 @@ function ShowInstructionForKycRedirect({ )} <p style={{ paddingTop: 0 }}> <i18n.Translate> - The backend service is still synchronizing with the payment + The server is still synchronizing with the payment service provider. </i18n.Translate> </p> @@ -204,8 +203,7 @@ function ShowInstructionForKycRedirect({ <i18n.Translate> The core banking system cannot perform wire transfers between the payment service provider's accounts and your bank accounts. Thus - you cannot use this payment service provider. Sincerely, the Taler - Exchange. + you cannot use this payment service provider. </i18n.Translate> </p> </ConfirmModal> @@ -303,7 +301,7 @@ function ShowInstructionForKycRedirect({ )} <p style={{ paddingTop: 0 }}> <i18n.Translate> - The backend service detected an internal error, contact the system + The server detected an internal error, contact the system administrator or check again later. </i18n.Translate> </p> @@ -363,7 +361,7 @@ function ShowInstructionForKycRedirect({ )} <p style={{ paddingTop: 0 }}> <i18n.Translate> - The backend service could not contact the payment service provider + The server could not contact the payment service provider due to a timeout, contact the system administrator or check again later. </i18n.Translate> @@ -404,7 +402,7 @@ function ShowInstructionForKycRedirect({ )} <p style={{ paddingTop: 0 }}> <i18n.Translate> - This exchange does not support the given account. + This payment service does not support the given account. </i18n.Translate> </p> </ConfirmModal> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx @@ -343,7 +343,7 @@ export function CreatePage({ case HttpStatusCode.Gone: return i18n.str`Product with ID "${fail.body.product_id}" is out of stock.`; case HttpStatusCode.UnavailableForLegalReasons: - return i18n.str`No exchange would accept a payment because of KYC requirements.`; + return i18n.str`No payment service would accept a payment because of KYC requirements.`; default: assertUnreachable(fail); } @@ -690,7 +690,7 @@ export function CreatePage({ name="payments.wire_transfer_delay" label={i18n.str`Wire transfer time`} help={<DeadlineHelp duration={wireDelay} />} - tooltip={i18n.str`Time for the exchange to make the wire transfer. Time starts after the order is created.`} + tooltip={i18n.str`Time for the payment service to make the wire transfer. Time starts after the order is created.`} side={ <span> <button diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/details/DetailPage.tsx @@ -150,7 +150,7 @@ function ContractTerms_V0({ value }: { value: CT0 }) { readonly name="wire_transfer_deadline" label={i18n.str`Wire transfer deadline`} - tooltip={i18n.str`Transfer deadline for the exchange`} + tooltip={i18n.str`Transfer deadline for the payment service`} /> <InputDurationDropdown<CT0> readonly @@ -236,7 +236,7 @@ function ContractTerms_V1({ value }: { value: CT1 }) { readonly name="wire_transfer_deadline" label={i18n.str`Wire transfer deadline`} - tooltip={i18n.str`Transfer deadline for the exchange`} + tooltip={i18n.str`Transfer deadline for the payment service`} /> <InputDate<CT1> readonly diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/details/Timeline.tsx @@ -18,11 +18,13 @@ import { useTranslationContext } from "@gnu-taler/web-util/browser"; import { format } from "date-fns"; import { h, VNode } from "preact"; import { useEffect, useState } from "preact/hooks"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { datetimeFormatForPreferences, usePreference, } from "../../../../hooks/preference.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; + +const TALER_SCREEN_ID = 88; interface Props { events: Event[]; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/pots/create/CreatePage.tsx @@ -30,18 +30,18 @@ import { useLocalNotificationBetter, useTranslationContext, } from "@gnu-taler/web-util/browser"; -import { VNode, h } from "preact"; +import { h, VNode } from "preact"; import { useState } from "preact/hooks"; import { FormErrors, FormProvider, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 37; +const TALER_SCREEN_ID = 105; type Entity = TalerMerchantApi.PotAddRequest; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/pots/list/Table.tsx @@ -33,10 +33,10 @@ import { } from "@gnu-taler/web-util/browser"; import { Fragment, h, VNode } from "preact"; import { StateUpdater, useState } from "preact/hooks"; -import { useSessionContext } from "../../../../context/session.js"; import { Tooltip } from "../../../../components/Tooltip.js"; +import { useSessionContext } from "../../../../context/session.js"; -const TALER_SCREEN_ID = 38; +const TALER_SCREEN_ID = 101; type Entity = TalerMerchantApi.PotEntry; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/pots/update/UpdatePage.tsx @@ -22,13 +22,12 @@ import { AmountParseError, Amounts, - AmountString, assertUnreachable, HttpStatusCode, InternationalizationAPI, PotDetailResponse, TalerMerchantApi, - TranslatedString, + TranslatedString } from "@gnu-taler/taler-util"; import { ButtonBetterBulma, @@ -43,13 +42,13 @@ import { FormProvider, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { InputArray } from "../../../../components/form/InputArray.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { WithId } from "../../../../declaration.js"; -import { InputArray } from "../../../../components/form/InputArray.js"; import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -const TALER_SCREEN_ID = 39; +const TALER_SCREEN_ID = 98; type Entity = TalerMerchantApi.PotModifyRequest; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/products/create/CreatePage.tsx @@ -34,19 +34,20 @@ import { } from "@gnu-taler/web-util/browser"; import { h, VNode } from "preact"; import { useState } from "preact/hooks"; +import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; +import { Loading } from "../../../../components/exception/loading.js"; import { ProductForm } from "../../../../components/product/ProductForm.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { useInstanceCategories } from "../../../../hooks/category.js"; -import { Loading } from "../../../../components/exception/loading.js"; -import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; +import { useInstanceProductGroups } from "../../../../hooks/groups.js"; import { - useInstanceMoneyPots, - useMoneyPotDetails, + useInstanceMoneyPots } from "../../../../hooks/pots.js"; -import { useInstanceProductGroups } from "../../../../hooks/groups.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; import { LimitedKycActionWarning, MissingBankAccountsWarning } from "../../accounts/list/index.js"; +const TALER_SCREEN_ID = 87; + export interface Props { onCreate: () => void; onBack?: () => void; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/reports/create/CreatePage.tsx @@ -27,26 +27,24 @@ import { import { ButtonBetterBulma, LocalNotificationBannerBulma, + NotificationCardBulma, useLocalNotificationBetter, useTranslationContext, } from "@gnu-taler/web-util/browser"; -import { VNode, h } from "preact"; +import { h, VNode } from "preact"; import { useState } from "preact/hooks"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { FormErrors, FormProvider, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; -import { InputDurationSelector } from "../../../../components/form/InputDurationSelector.js"; +import { InputDurationDropdown } from "../../../../components/form/InputDurationDropdown.js"; import { InputSelector } from "../../../../components/form/InputSelector.js"; import { useSessionContext } from "../../../../context/session.js"; import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { assert } from "console"; -import { NotificationCardBulma } from "@gnu-taler/web-util/browser"; -import { Tooltip } from "../../../../components/Tooltip.js"; -import { InputDurationDropdown } from "../../../../components/form/InputDurationDropdown.js"; -const TALER_SCREEN_ID = 37; +const TALER_SCREEN_ID = 104; type Entity = TalerMerchantApi.ReportAddRequest; @@ -178,7 +176,7 @@ export function CreatePage({ onCreated, onBack }: Props): VNode { name="program_section" label={i18n.str`Program`} readonly={forcedGenerator} - help={i18n.str`Merchant backend configuration section specifying the program to use to transmit the report`} + help={i18n.str`Name of the program to use to transmit the report defined by the server configuration.`} values={config.report_generators} /> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/reports/list/Table.tsx @@ -34,11 +34,11 @@ import { } from "@gnu-taler/web-util/browser"; import { Fragment, h, VNode } from "preact"; import { StateUpdater, useState } from "preact/hooks"; -import { useSessionContext } from "../../../../context/session.js"; import { durationToString } from "../../../../components/form/InputDurationSelector.js"; import { Tooltip } from "../../../../components/Tooltip.js"; +import { useSessionContext } from "../../../../context/session.js"; -const TALER_SCREEN_ID = 38; +const TALER_SCREEN_ID = 100; type Entity = TalerMerchantApi.ReportEntry; diff --git a/packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/reports/update/UpdatePage.tsx @@ -27,6 +27,7 @@ import { import { ButtonBetterBulma, LocalNotificationBannerBulma, + NotificationCardBulma, useLocalNotificationBetter, useTranslationContext, } from "@gnu-taler/web-util/browser"; @@ -37,16 +38,14 @@ import { FormProvider, } from "../../../../components/form/FormProvider.js"; import { Input } from "../../../../components/form/Input.js"; +import { InputDurationDropdown } from "../../../../components/form/InputDurationDropdown.js"; +import { InputSelector } from "../../../../components/form/InputSelector.js"; +import { Tooltip } from "../../../../components/Tooltip.js"; import { useSessionContext } from "../../../../context/session.js"; import { WithId } from "../../../../declaration.js"; -import { NotificationCardBulma } from "@gnu-taler/web-util/browser"; import { undefinedIfEmpty } from "../../../../utils/table.js"; -import { InputSelector } from "../../../../components/form/InputSelector.js"; -import { InputDurationSelector } from "../../../../components/form/InputDurationSelector.js"; -import { Tooltip } from "../../../../components/Tooltip.js"; -import { InputDurationDropdown } from "../../../../components/form/InputDurationDropdown.js"; -const TALER_SCREEN_ID = 39; +const TALER_SCREEN_ID = 97; type Entity = TalerMerchantApi.ReportDetailResponse & WithId; @@ -226,7 +225,7 @@ export function UpdatePage({ report, onUpdated, onBack }: Props): VNode { name="program_section" label={i18n.str`Program`} readonly={forcedGenerator} - help={i18n.str`Merchant backend configuration section specifying the program to use to transmit the report`} + help={i18n.str`Name of the program to use to transmit the report defined by the server configuration.`} values={config.report_generators} /> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/testing.ts b/packages/merchant-backoffice-ui/src/paths/instance/statistics/list/testing.ts @@ -256,7 +256,7 @@ export function addTestValues( ] } ], - "buckets_description": "deposit fees we or our customers paid to the exchange (includes those waived on refunds)" + "buckets_description": "deposit fees we or our customers paid to the payment service (includes those waived on refunds)" } const paymentsReceived: StatisticsAmount = { "intervals": [], @@ -346,7 +346,7 @@ export function addTestValues( ] } ], - "buckets_description": "amount customers paid to us (excluded deposit fees paid by us or customers, wire fees are still deducted by the exchange)" + "buckets_description": "amount customers paid to us (excluded deposit fees paid by us or customers, wire fees are still deducted by the payment service)" } const testRefundsBuckets: StatisticsAmount = { intervals: [], diff --git a/packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/templates/use/UsePage.tsx @@ -145,7 +145,7 @@ function UseFixedOrderPage({ case HttpStatusCode.Gone: return i18n.str`No more stock for product with ID "${fail.body.product_id}".`; case HttpStatusCode.UnavailableForLegalReasons: - return i18n.str`No exchange would accept a payment because of KYC requirements.`; + return i18n.str`No payment service would accept a payment because of KYC requirements.`; default: assertUnreachable(fail); } diff --git a/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/DetailsPage.tsx @@ -1,39 +1,38 @@ import { + AmountJson, + Amounts, + assertUnreachable, + ExpectedTransferDetails, + ExpectedTransferEntry, + HttpStatusCode, + TalerError +} from "@gnu-taler/taler-util"; +import { ButtonBetterBulma, LocalNotificationBannerBulma, RenderAmountBulma, useLocalNotificationBetter, useTranslationContext, } from "@gnu-taler/web-util/browser"; +import { format } from "date-fns"; import { Fragment, h, VNode } from "preact"; +import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; +import { Loading } from "../../../../components/exception/loading.js"; +import { Row } from "../../../../components/modal/index.js"; +import { useSessionContext } from "../../../../context/session.js"; +import { useOrderDetails } from "../../../../hooks/order.js"; import { datetimeFormatForPreferences, usePreference, } from "../../../../hooks/preference.js"; -import { Row } from "../../../../components/modal/index.js"; import { - AmountJson, - Amounts, - assertUnreachable, - ExchangeTransferReconciliationDetails, - ExpectedTransferDetails, - ExpectedTransferEntry, - HttpStatusCode, - TalerError, -} from "@gnu-taler/taler-util"; -import { useSessionContext } from "../../../../context/session.js"; -import { format } from "date-fns"; -import { - useInstanceIncomingTransferDetails, - useInstanceIncomingTransfers, + useInstanceIncomingTransferDetails } from "../../../../hooks/transfer.js"; -import { Loading } from "../../../../components/exception/loading.js"; -import { ErrorLoadingMerchant } from "../../../../components/ErrorLoadingMerchant.js"; -import { LoginPage } from "../../../login/index.js"; import { NotFoundPageOrAdminCreate } from "../../../notfound/index.js"; -import { useOrderDetails } from "../../../../hooks/order.js"; import { getOrderAmountAndMaxDepositFee } from "../../orders/details/DetailPage.js"; +const TALER_SCREEN_ID = 85; + export default function DetailsPage({ tid, onBack, diff --git a/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx b/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/Table.tsx @@ -377,7 +377,7 @@ function EmptyTable(): VNode { </p> <p> <i18n.Translate> - There are no transfers to list yet, add more by pressing the + sign + There are no transfers to list yet </i18n.Translate> </p> </div> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx b/packages/merchant-backoffice-ui/src/paths/instance/transfers/list/index.tsx @@ -47,9 +47,10 @@ import { } from "../../../../hooks/transfer.js"; import { LoginPage } from "../../../login/index.js"; import { NotFoundPageOrAdminCreate } from "../../../notfound/index.js"; -import { ListPage } from "./ListPage.js"; -import { useSessionContext } from "../../../../context/session.js"; import { MissingBankAccountsWarning } from "../../accounts/list/index.js"; +import { ListPage } from "./ListPage.js"; + +const TALER_SCREEN_ID = 84; interface Props { onTransferDetails: (id: number) => void; diff --git a/packages/merchant-backoffice-ui/src/paths/settings/index.tsx b/packages/merchant-backoffice-ui/src/paths/settings/index.tsx @@ -16,6 +16,7 @@ import { AbsoluteTime, MerchantPersona } from "@gnu-taler/taler-util"; import { + NotificationCardBulma, useCommonPreferences, useTranslationContext, } from "@gnu-taler/web-util/browser"; @@ -25,9 +26,10 @@ import { FormErrors, FormProvider, } from "../../components/form/FormProvider.js"; +import { InputBoolean } from "../../components/form/InputBoolean.js"; import { InputSelector } from "../../components/form/InputSelector.js"; -import { NotificationCardBulma } from "@gnu-taler/web-util/browser"; import { LangSelector } from "../../components/menu/LangSelector.js"; +import { Tooltip } from "../../components/Tooltip.js"; import { useSessionContext } from "../../context/session.js"; import { dateFormatForPreferences, @@ -35,8 +37,6 @@ import { Preferences, usePreference, } from "../../hooks/preference.js"; -import { InputBoolean } from "../../components/form/InputBoolean.js"; -import { Tooltip } from "../../components/Tooltip.js"; const TALER_SCREEN_ID = 83; @@ -91,7 +91,7 @@ export function Settings({ onClose }: { onClose?: () => void }): VNode { <label class="label"> <i18n.Translate>Language</i18n.Translate> <Tooltip - text={i18n.str`Force language setting instance of taking the browser`} + text={i18n.str`Force the language settings instead of using the browser`} > <i class="icon mdi mdi-information" /> </Tooltip> diff --git a/packages/merchant-backoffice-ui/src/scss/main.scss b/packages/merchant-backoffice-ui/src/scss/main.scss @@ -171,6 +171,15 @@ input:read-only { z-index: 45; } +[data-tooltip]:not(.is-disabled).has-tooltip-fixed:before, +[data-tooltip]:not(.is-loading).has-tooltip-fixed:before, +[data-tooltip]:not([disabled]).has-tooltip-fixed:before { + bottom: auto; + right: auto; + top: 100%; + z-index: 45; +} + span[data-tooltip] { border-bottom: none; } @@ -220,4 +229,8 @@ input.mfa-code[type=number] { */ div.buttons.is-right{ margin-right: 18px; +} + +div.menu.is-menu-main a { + display: flex; } \ No newline at end of file