commit dce133f64bc7a84b7e86f16323fc5f908502c3ea parent 66f8846f05f1b06c5cd8a7b9533a1dc2d04d7972 Author: Sebastian <sebasjm@gmail.com> Date: Thu, 12 Dec 2024 13:17:53 -0300 fix #9330 Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/otp_devices/update/UpdatePage.tsx @@ -83,7 +83,7 @@ export function UpdatePage({ device, onUpdate, onBack }: Props): VNode { <InputSelector<Entity> name="otp_algorithm" label={i18n.str`Verification algorithm`} - tooltip={i18n.str`Algorithm to use to verify transaction in offline mode`} + tooltip={i18n.str`Algorithm to use to verify transactions in offline mode`} values={algorithms} toStr={(v) => algorithmsNames[v]} fromStr={(v) => Number(v)} diff --git a/packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/templates/create/CreatePage.tsx @@ -252,7 +252,7 @@ export function CreatePage({ onCreate, onBack }: Props): VNode { <TextField name="otpId" label={i18n.str`OTP device`} - tooltip={i18n.str`Use to verify transaction while offline.`} + tooltip={i18n.str`Use to verify transactions in offline mode.`} > <i18n.Translate>No OTP device.</i18n.Translate> <a href="/otp-devices/new"> diff --git a/packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/templates/update/UpdatePage.tsx @@ -266,7 +266,7 @@ export function UpdatePage({ template, onUpdate, onBack }: Props): VNode { <TextField name="otpId" label={i18n.str`OTP device`} - tooltip={i18n.str`Use to verify transaction while offline.`} + tooltip={i18n.str`Use to verify transactions in offline mode.`} > <i18n.Translate>No OTP device.</i18n.Translate> <a href="/otp-devices/new"> @@ -287,7 +287,7 @@ export function UpdatePage({ template, onUpdate, onBack }: Props): VNode { } return deviceMap[v]; }} - tooltip={i18n.str`Use to verify transaction in offline mode.`} + tooltip={i18n.str`Use to verify transactions in offline mode.`} /> )} </FormProvider>