commit c703243ba35f33b08775becb91a503777057650d parent 35435d32112a596930b72ddf9f43b553fdbaba97 Author: Sebastian <sebasjm@gmail.com> Date: Wed, 5 Nov 2025 16:23:28 -0300 fix from qc session Diffstat:
4 files changed, 4 insertions(+), 7 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/components/SolveMFA.tsx b/packages/merchant-backoffice-ui/src/components/SolveMFA.tsx @@ -192,7 +192,7 @@ function SolveChallenge({ {expiration.t_ms === "never" ? undefined : ( <p> <i18n.Translate> - It will expired at{" "} + It will expire at{" "} {format( expiration.t_ms, datetimeFormatForSettings(settings), diff --git a/packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx b/packages/merchant-backoffice-ui/src/components/form/InputPaytoForm.tsx @@ -467,7 +467,7 @@ export function InputPaytoForm<T>({ label={i18n.str`Name of the account holder`} placeholder="John Doe" tooltip={i18n.str`Legal name of the person holding the account.`} - help={i18n.str`Thissupports Taler Revenue API then you can addthe name of the bank account holder.`} + help={i18n.str`This supports Taler Revenue API then you can add the name of the bank account holder.`} /> </Fragment> )} diff --git a/packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx b/packages/merchant-backoffice-ui/src/components/instance/DefaultInstanceFormFields.tsx @@ -49,7 +49,7 @@ export function DefaultInstanceFormFields({ name="id" addonBefore={new URL("instances/", state.backendUrl.href).href} readonly={readonlyId} - label={i18n.str`Identifier`} + label={i18n.str`Username`} tooltip={i18n.str`Name of the instance in URLs. The 'admin' instance is special in that it is used to administer other instances.`} /> )} diff --git a/packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx b/packages/merchant-backoffice-ui/src/paths/newAccount/index.tsx @@ -208,10 +208,7 @@ export function NewAccount({ onCancel, onCreated }: Props): VNode { > <InputWithAddon<Account> name="id" - addonBefore={ - new URL("instances/", session.backendUrl.href).href - } - label={i18n.str`Identifier`} + label={i18n.str`Username`} tooltip={i18n.str`Name of the instance in URLs. The 'admin' instance is special in that it is used to administer other instances.`} />