diff options
author | surfdude29 <149612116+surfdude29@users.noreply.github.com> | 2025-02-25 17:54:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-25 09:54:20 -0800 |
commit | 595a8945516013c9b50c65964952a7ae645cab8d (patch) | |
tree | f5493fe2725a7421eabca987d6ed0d0e58619253 /src/components/forms/HostingProvider.tsx | |
parent | 0d1373bb71e1fd60c2b9e545aeecf631c0f68ef0 (diff) | |
download | voidsky-595a8945516013c9b50c65964952a7ae645cab8d.tar.zst |
translate hosting provider text (#7834)
Diffstat (limited to 'src/components/forms/HostingProvider.tsx')
-rw-r--r-- | src/components/forms/HostingProvider.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/forms/HostingProvider.tsx b/src/components/forms/HostingProvider.tsx index 95539cef6..ff5062079 100644 --- a/src/components/forms/HostingProvider.tsx +++ b/src/components/forms/HostingProvider.tsx @@ -1,6 +1,6 @@ import React from 'react' import {Keyboard, View} from 'react-native' -import {msg} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {toNiceDomain} from '#/lib/strings/url-helpers' @@ -43,7 +43,7 @@ export function HostingProvider({ {minimal ? ( <View style={[a.flex_row, a.align_center, a.flex_wrap]}> <Text style={[a.text_sm, t.atoms.text_contrast_medium]}> - You are creating an account on{' '} + <Trans>You are creating an account on </Trans> </Text> <Button label={toNiceDomain(serviceUrl)} |