Skip to content

Commit

Permalink
Fix the top of the confirmation page header
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham1206agra committed Jan 4, 2025
1 parent 13a8197 commit 976956e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2017,6 +2017,8 @@ const translations = {
accountHolderInformationStepHeader: 'What are the account holder details?',
howDoWeProtectYourData: 'How do we protect your data?',
currencyHeader: "What's your bank account's currency?",
confirmationStepHeader: 'Check your info.',
confirmationStepSubHeader: 'Double check the details below, and check the terms box to confirm.',
},
addPersonalBankAccountPage: {
enterPassword: 'Enter Expensify password',
Expand Down
2 changes: 2 additions & 0 deletions src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2039,6 +2039,8 @@ const translations = {
accountHolderInformationStepHeader: '¿Cuáles son los detalles del titular de la cuenta?',
howDoWeProtectYourData: '¿Cómo protegemos tus datos?',
currencyHeader: '¿Cuál es la moneda de tu cuenta bancaria?',
confirmationStepHeader: 'Verifica tu información.',
confirmationStepSubHeader: 'Verifica dos veces los detalles a continuación y marca la casilla de términos para confirmar.',
},
addPersonalBankAccountPage: {
enterPassword: 'Escribe tu contraseña de Expensify',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ function Confirmation({onNext, onMove, formValues, fieldsMap}: CustomSubStepProp

return (
<ScrollView contentContainerStyle={styles.flexGrow1}>
<Text style={[styles.textHeadlineLineHeightXXL, styles.ph5, styles.mb3]}>{translate('personalInfoStep.letsDoubleCheck')}</Text>
<Text style={[styles.textHeadlineLineHeightXXL, styles.ph5, styles.mb3]}>{translate('addPersonalBankAccount.confirmationStepHeader')}</Text>
<Text style={[styles.mb6, styles.textSupporting]}>{translate('addPersonalBankAccount.confirmationStepSubHeader')}</Text>
{summaryItems.map(({description, title, shouldShowRightIcon, onPress}) => (
<MenuItemWithTopDescription
key={`${title}_${description}`}
Expand Down

0 comments on commit 976956e

Please sign in to comment.