taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 030f1bf38f1e4178894197e94988d8ec949634fd
parent 8153c5026f3e7a100564e6dd9944e054cbb1b910
Author: Florian Dold <florian@dold.me>
Date:   Thu, 22 Feb 2024 12:50:28 +0100

webextension: english / heading

Diffstat:
Mpackages/taler-wallet-webextension/src/wallet/Settings.tsx | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/packages/taler-wallet-webextension/src/wallet/Settings.tsx b/packages/taler-wallet-webextension/src/wallet/Settings.tsx @@ -248,6 +248,9 @@ export function SettingsView({ {coreVersion && ( <Fragment> + <SubTitle> + <i18n.Translate>Version Info</i18n.Translate> + </SubTitle> {LibtoolVersion.compare( coreVersion.version, WALLET_CORE_SUPPORTED_VERSION, @@ -280,10 +283,10 @@ export function SettingsView({ </Fragment> )} <SubTitle> - <i18n.Translate>Advance mode</i18n.Translate> + <i18n.Translate>Advanced mode</i18n.Translate> </SubTitle> <Checkbox - label={i18n.str`Enable advance mode`} + label={i18n.str`Enable advanced mode`} name="devMode" description={i18n.str`Show more information and options in the UI`} enabled={advanceToggle.value!}