diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2025-08-28 00:12:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-27 18:12:01 -0500 |
commit | 01c20958c1ef750f1d848f49caf920157c3cb00d (patch) | |
tree | 368689a3ce5161ac4e89bc855f30100cd579eada /src/screens/Moderation/VerificationSettings.tsx | |
parent | 99722436b1d9970b4e72bd8196bcd20700fd48c0 (diff) | |
download | voidsky-01c20958c1ef750f1d848f49caf920157c3cb00d.tar.zst |
Add `english-only-resource` context and tweak labels (#8805)
* add context in VerificationsDialog.tsx * add context in VerifierDialog.tsx * add context in VerificationSettings.tsx * add context in EditProfileDialog.tsx * add context and tweak label in ChangeHandleDialog.tsx * tweak label in ContentHider.tsx
Diffstat (limited to 'src/screens/Moderation/VerificationSettings.tsx')
-rw-r--r-- | src/screens/Moderation/VerificationSettings.tsx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/screens/Moderation/VerificationSettings.tsx b/src/screens/Moderation/VerificationSettings.tsx index cd023ae56..aec70cf85 100644 --- a/src/screens/Moderation/VerificationSettings.tsx +++ b/src/screens/Moderation/VerificationSettings.tsx @@ -44,7 +44,12 @@ export function Screen() { <InlineLinkText overridePresentation to={urls.website.blog.initialVerificationAnnouncement} - label={_(msg`Learn more`)} + label={_( + msg({ + message: `Learn more`, + context: `english-only-resource`, + }), + )} onPress={() => { logger.metric( 'verification:learn-more', |