copy updates

This commit is contained in:
Samuel Newman
2025-12-10 11:22:19 +02:00
parent e1c54cd837
commit 30ab8d0908
6 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -422,7 +422,7 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) {
name="FindContactsSettings" name="FindContactsSettings"
getComponent={() => FindContactsSettingsScreen} getComponent={() => FindContactsSettingsScreen}
options={{ options={{
title: title(msg`Find contacts`), title: title(msg`Find Contacts`),
requireAuth: true, requireAuth: true,
}} }}
/> />
@@ -91,9 +91,8 @@ export function GetContacts({
</Text> </Text>
<Text style={style}> <Text style={style}>
<Trans> <Trans>
Bluesky helps friends find each other by creating hashes of number Bluesky helps friends find each other by creating an encoded digital
combinations and looking for matching hashes. Hashes are sets of fingerprint, called a "hash," and then looking for matching hashes.
numbers and letters that cant be decoded with a key.
</Trans> </Trans>
</Text> </Text>
<Text style={[style, a.mt_lg]}> <Text style={[style, a.mt_lg]}>
@@ -112,7 +111,7 @@ export function GetContacts({
<Text style={[style, a.mt_lg]}> <Text style={[style, a.mt_lg]}>
<Trans> <Trans>
We apply the highest privacy standards just in case your contacts We apply the highest privacy standards just in case your contacts
include minors. We never share, or sell your contact information. include minors. We never share or sell your contact information.
</Trans> </Trans>
</Text> </Text>
</Layout.Content> </Layout.Content>
@@ -231,7 +231,8 @@ function LegalDisclaimer() {
<Trans>How we use your number:</Trans> <Trans>How we use your number:</Trans>
</Text> </Text>
<Text style={style}> <Text style={style}>
&bull; <Trans>Sent to a trusted third party for verification</Trans> &bull;{' '}
<Trans>Sent to our phone number verification provider Plivo</Trans>
</Text> </Text>
<Text style={style}> <Text style={style}>
&bull; <Trans>Deleted by the verifier after verification</Trans> &bull; <Trans>Deleted by the verifier after verification</Trans>
@@ -242,7 +243,7 @@ function LegalDisclaimer() {
</Text> </Text>
<Text style={style}> <Text style={style}>
&bull;{' '} &bull;{' '}
<Trans>Stored as part of a secret code for matching with others</Trans> <Trans>Stored as part of a secure code for matching with others</Trans>
</Text> </Text>
<Text style={[style, a.mt_xs]}> <Text style={[style, a.mt_xs]}>
<Trans> <Trans>
@@ -155,7 +155,7 @@ export function VerifyNumber({
a.mt_sm, a.mt_sm,
]}> ]}>
<Trans> <Trans>
Enter the 6 digit code sent to {phoneCode} {state.phoneNumber} Enter the 6-digit code sent to {phoneCode} {state.phoneNumber}
</Trans> </Trans>
</Text> </Text>
<View style={[a.mt_2xl]}> <View style={[a.mt_2xl]}>
@@ -44,7 +44,7 @@ export function FindContactsSettingsScreen({}: Props) {
<Layout.Header.BackButton /> <Layout.Header.BackButton />
<Layout.Header.Content> <Layout.Header.Content>
<Layout.Header.TitleText> <Layout.Header.TitleText>
<Trans>Find contacts</Trans> <Trans>Find Contacts</Trans>
</Layout.Header.TitleText> </Layout.Header.TitleText>
</Layout.Header.Content> </Layout.Header.Content>
<Layout.Header.Slot /> <Layout.Header.Slot />
+2 -2
View File
@@ -214,10 +214,10 @@ export function SettingsScreen({}: Props) {
{isNative && findContactsEnabled && ( {isNative && findContactsEnabled && (
<SettingsList.LinkItem <SettingsList.LinkItem
to="/settings/find-contacts" to="/settings/find-contacts"
label={_(msg`Find contacts`)}> label={_(msg`Find friends from contacts`)}>
<SettingsList.ItemIcon icon={ContactsIcon} /> <SettingsList.ItemIcon icon={ContactsIcon} />
<SettingsList.ItemText> <SettingsList.ItemText>
<Trans>Find contacts</Trans> <Trans>Find friends from contacts</Trans>
</SettingsList.ItemText> </SettingsList.ItemText>
</SettingsList.LinkItem> </SettingsList.LinkItem>
)} )}