Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[RN] more strings
  • Loading branch information
ikethirdweb committed Oct 20, 2023
commit 030e0960e362374b7f5a0831e3f4287d71d3c303
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export function ChooseWallet({
>
<Box height={1} flex={1} backgroundColor="border" />
<Text variant="subHeader" textAlign="center" marginHorizontal="xxs">
OR
{l.common.or}
</Text>
<Box height={1} flex={1} backgroundColor="border" />
</Box>
Expand Down
1 change: 1 addition & 0 deletions packages/react-native/src/evm/i18n/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ export const _en = {
request_new_code: "Request new code",
sign_in: "Sign In",
sign_in_google: "Sign in with Google",
enter_your_email: "Enter your email address",
},
wallet_connect: {
no_results_found: "No results found",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const EmailSelectionUI: React.FC<
textAlign="center"
marginHorizontal="xxs"
>
OR
{l.common.or}
</Text>
<Box height={1} flex={1} backgroundColor="border" />
</Box>
Expand All @@ -131,7 +131,7 @@ export const EmailSelectionUI: React.FC<
<>
<TextInput
textInputProps={{
placeholder: "Enter your email address",
placeholder: l.embedded_wallet.enter_your_email,
placeholderTextColor: theme.colors.textSecondary,
onChangeText: setEmailInput,
style: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const MagicSelectionUI: React.FC<SelectUIProps<MagicLink>> = (props) => {
<Box paddingHorizontal="xl" mt="lg">
<TextInput
textInputProps={{
placeholder: "Enter your email address",
placeholder: l.embedded_wallet.enter_your_email,
placeholderTextColor: theme.colors.textSecondary,
onChangeText: (text: string) => {
setEmail(text);
Expand Down