diff options
Diffstat (limited to 'src/view/com/modals')
-rw-r--r-- | src/view/com/modals/AddAppPasswords.tsx | 6 | ||||
-rw-r--r-- | src/view/com/modals/ChangeHandle.tsx | 6 | ||||
-rw-r--r-- | src/view/com/modals/CreateOrEditMuteList.tsx | 4 | ||||
-rw-r--r-- | src/view/com/modals/DeleteAccount.tsx | 6 | ||||
-rw-r--r-- | src/view/com/modals/ListAddRemoveUser.tsx | 2 | ||||
-rw-r--r-- | src/view/com/modals/report/ReportAccount.tsx | 2 |
6 files changed, 13 insertions, 13 deletions
diff --git a/src/view/com/modals/AddAppPasswords.tsx b/src/view/com/modals/AddAppPasswords.tsx index 2af9967a7..6117924ae 100644 --- a/src/view/com/modals/AddAppPasswords.tsx +++ b/src/view/com/modals/AddAppPasswords.tsx @@ -184,9 +184,9 @@ export function Component({}: {}) { </Text> ) : ( <Text type="xs" style={[pal.textLight, s.mb10, s.mt2]}> - Only contain letters, numbers, spaces, dashes, and underscores - allowed. Must be at least 4 characters long, but no more than 32 - characters long. + Can only contain letters, numbers, spaces, dashes, and underscores. + Must be at least 4 characters long, but no more than 32 characters + long. </Text> )} <View style={styles.btnContainer}> diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx index a5c74bc0b..57f922f89 100644 --- a/src/view/com/modals/ChangeHandle.tsx +++ b/src/view/com/modals/ChangeHandle.tsx @@ -148,7 +148,7 @@ export function Component({onChanged}: {onChanged: () => void}) { type="2xl-bold" style={[styles.titleMiddle, pal.text]} numberOfLines={1}> - Change handle + Change Handle </Text> <View style={styles.titleRight}> {isProcessing ? ( @@ -253,7 +253,7 @@ function ProvidedHandleForm({ <TextInput testID="setHandleInput" style={[pal.text, styles.textInput]} - placeholder="eg alice" + placeholder="e.g. alice" placeholderTextColor={pal.colors.textLight} autoCapitalize="none" keyboardAppearance={theme.colorScheme} @@ -371,7 +371,7 @@ function CustomHandleForm({ <TextInput testID="setHandleInput" style={[pal.text, styles.textInput]} - placeholder="eg alice.com" + placeholder="e.g. alice.com" placeholderTextColor={pal.colors.textLight} autoCapitalize="none" keyboardAppearance={theme.colorScheme} diff --git a/src/view/com/modals/CreateOrEditMuteList.tsx b/src/view/com/modals/CreateOrEditMuteList.tsx index 5e5130b3c..7984ea64c 100644 --- a/src/view/com/modals/CreateOrEditMuteList.tsx +++ b/src/view/com/modals/CreateOrEditMuteList.tsx @@ -157,7 +157,7 @@ export function Component({ <TextInput testID="editNameInput" style={[styles.textInput, pal.border, pal.text]} - placeholder="e.g. Spammers" + placeholder="e.g. spammers" placeholderTextColor={colors.gray4} value={name} onChangeText={v => setName(enforceLen(v, MAX_NAME))} @@ -174,7 +174,7 @@ export function Component({ <TextInput testID="editDescriptionInput" style={[styles.textArea, pal.border, pal.text]} - placeholder="e.g. Users that repeatedly reply with ads." + placeholder="e.g. users that repeatedly reply with ads." placeholderTextColor={colors.gray4} keyboardAppearance={theme.colorScheme} multiline diff --git a/src/view/com/modals/DeleteAccount.tsx b/src/view/com/modals/DeleteAccount.tsx index 72939ec23..b4933a1f2 100644 --- a/src/view/com/modals/DeleteAccount.tsx +++ b/src/view/com/modals/DeleteAccount.tsx @@ -68,7 +68,7 @@ export function Component({}: {}) { <View style={[styles.innerContainer, pal.view]}> <View style={[styles.titleContainer, pal.view]}> <Text type="title-xl" style={[s.textCenter, pal.text]}> - Delete account + Delete Account </Text> <View style={[pal.view, s.flexRow]}> <Text type="title-xl" style={[pal.text, s.bold]}> @@ -93,7 +93,7 @@ export function Component({}: {}) { <> <Text type="lg" style={[styles.description, pal.text]}> For security reasons, we'll need to send a confirmation code to - your email. + your email address. </Text> {error ? ( <View style={s.mt10}> @@ -121,7 +121,7 @@ export function Component({}: {}) { end={{x: 1, y: 1}} style={[styles.btn]}> <Text type="button-lg" style={[s.white, s.bold]}> - Send email + Send Email </Text> </LinearGradient> </TouchableOpacity> diff --git a/src/view/com/modals/ListAddRemoveUser.tsx b/src/view/com/modals/ListAddRemoveUser.tsx index e1677d25c..c2d63ef6e 100644 --- a/src/view/com/modals/ListAddRemoveUser.tsx +++ b/src/view/com/modals/ListAddRemoveUser.tsx @@ -157,7 +157,7 @@ export const Component = observer( return ( <View testID="listAddRemoveUserModal" style={s.hContentRegion}> - <Text style={[styles.title, pal.text]}>Add {displayName} to lists</Text> + <Text style={[styles.title, pal.text]}>Add {displayName} to Lists</Text> <ListsList listsList={listsList} showAddBtns diff --git a/src/view/com/modals/report/ReportAccount.tsx b/src/view/com/modals/report/ReportAccount.tsx index 3ea221a8b..237f2dc5d 100644 --- a/src/view/com/modals/report/ReportAccount.tsx +++ b/src/view/com/modals/report/ReportAccount.tsx @@ -126,7 +126,7 @@ const SelectIssue = ({ return ( <> <Text type="title-xl" style={[pal.text, styles.title]}> - Report account + Report Account </Text> <Text type="xl" style={[pal.text, styles.description]}> What is the issue with this account? |