Skip to content

Commit

Permalink
Merge pull request #5976 from bithyve/fix/text-update
Browse files Browse the repository at this point in the history
Update text
  • Loading branch information
ben-kaufman authored Feb 3, 2025
2 parents 441b68b + 29e303a commit 20618cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
2 changes: 2 additions & 0 deletions src/context/Localization/language/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@
"confirmNewPasscode": "Confirm the new passcode",
"MismatchPasscode": "Passcodes do not match",
"enter_your": "Enter your ",
"NewSatrtWalet": "A new hot wallet will be created automatically for you. You can create and manage different kinds of wallets from the wallets section of the app.",
"RecoverExistingAppDesc": "Have an inaccessible Keeper app with wallets in it? You have nothing to worry if you have that app's 12-word Recovery Key. Insert the words in the Recovery section on the welcome screen and all your wallets will be restored as expected.",
"ForgotPasscode": "Forgot Passcode?",
"forgotPasscodeDesc": "Type in the words exactly like they were displayed",
"StoreBicoin": "You can use these wallets to store small amounts of bitcoin for day to day transactions.",
Expand Down
2 changes: 2 additions & 0 deletions src/context/Localization/language/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@
"Createpasscode": "Create a passcode",
"Confirmyourpasscode": "Confirm your passcode",
"CreateApp": "Create a fresh app or recover an exisiting one",
"RecoverExistingAppDesc": "Have an inaccessible Keeper app with wallets in it? You have nothing to worry if you have that app's 12-word Recovery Key. Insert the words in the Recovery section on the welcome screen and all your wallets will be restored as expected.",
"NewSatrtWalet": "A new hot wallet will be created automatically for you. You can create and manage different kinds of wallets from the wallets section of the app.",
"CreateSingleKeyWallet": "Create new single-key wallets:",
"StoreBicoin": "You can use these wallets to store small amounts of bitcoin for day to day transactions.",
"CreateMultiKeyWallet": "Create new multi-key wallets:",
Expand Down
4 changes: 2 additions & 2 deletions src/screens/Home/components/Wallet/HomeWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const HomeWallet = () => {
const CREATE_WALLET_OPTIONS = [
{
title: 'Create Wallet',
subtitle: 'Create a new Bitcoin wallet',
subtitle: 'Create a new bitcoin wallet',
icon: <NewWalletIcon />,
onPress: () => {
setShowAddWalletModal(false);
Expand Down Expand Up @@ -194,7 +194,7 @@ const OptionItem = ({ option, colorMode }) => {
>
{option.title}
</Text>
<Text color={`${colorMode}.secondaryText`} fontSize={13}>
<Text color={`${colorMode}.secondaryText`} fontSize={12}>
{option.subtitle}
</Text>
</Box>
Expand Down
15 changes: 2 additions & 13 deletions src/screens/NewKeeperAppScreen/NewKeeperAppScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,27 +78,16 @@ function StartNewModalContent() {
<Box style={{ width: windowWidth * 0.8 }}>
<Box>
<Box>
<Text color={`${colorMode}.primaryText`} style={styles.startNewModalMessageText} bold>
{login.CreateSingleKeyWallet}{' '}
</Text>
<Text color={`${colorMode}.secondaryText`} style={styles.startNewModalMessageText}>
{login.StoreBicoin}
</Text>
</Box>
<Box>
<Text color={`${colorMode}.primaryText`} style={styles.startNewModalMessageText} bold>
{login.CreateMultiKeyWallet}{' '}
</Text>
<Text color={`${colorMode}.secondaryText`} style={styles.startNewModalMessageText}>
{login.CreateMultiKeyWalletDesc}
{login.NewSatrtWalet}
</Text>
</Box>
<Box>
<Text color={`${colorMode}.primaryText`} style={styles.startNewModalMessageText} bold>
{login.RecoverApp}{' '}
</Text>
<Text color={`${colorMode}.secondaryText`} style={styles.startNewModalMessageText}>
{login.RecoverAppDesc}
{login.RecoverExistingAppDesc}
</Text>
</Box>
</Box>
Expand Down

0 comments on commit 20618cb

Please sign in to comment.