merchant-backoffice

ZZZ: Inactive/Deprecated
Log | Files | Refs | Submodules | README

commit e659b0b1e0b0461243113909934e639f851905f9
parent 94953d1bab47d45c7d56923a024a98c96af30e18
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Mon, 24 May 2021 09:27:29 -0400

diction: s/token in curently use/token currently in use/

There is another valid formulation: "token in current use".
I chose the one w/ "currently" in order to keep "in" and "use" near each other.

Diffstat:
Mpackages/frontend/src/components/modal/index.tsx | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/frontend/src/components/modal/index.tsx b/packages/frontend/src/components/modal/index.tsx @@ -143,7 +143,7 @@ export function UpdateTokenModal({ element, onCancel, onClear, onConfirm, oldTok > <p>{text}</p> <FormProvider errors={errors} object={form} valueHandler={setValue}> - <Input name="old_token" label={i18n`Old token`} tooltip={i18n`token in currently use`} /> + <Input name="old_token" label={i18n`Old token`} tooltip={i18n`token currently in use`} /> <Input name="new_token" label={i18n`New token`} tooltip={i18n`next token to be used`} /> </FormProvider> <p><Translate>Clearing the auth token will mean public access to the instance</Translate></p>