Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion src/languages/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ export default {
isControllingOfficerError: 'You must be a controlling officer with authorization to operate the business bank account.',
},
validationStep: {
headerTitle: 'Validate',
headerTitle: 'Validate Bank Account',
buttonText: 'Finish setup',
maxAttemptsReached: 'Validation for this bank account has been disabled due to too many incorrect attempts.',
description: 'A day or two after you add your account to Expensify we send three (3) transactions to your account. They have a merchant line like "Expensify, Inc. Validation".',
Expand Down
2 changes: 1 addition & 1 deletion src/languages/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ export default {
isControllingOfficerError: 'Debe ser un oficial controlador con autorización para operar la cuenta bancaria de la compañía',
},
validationStep: {
headerTitle: 'Validar',
headerTitle: 'Validar cuenta bancaria',
buttonText: 'Finalizar configuración',
maxAttemptsReached: 'Se ha inhabilitado la validación de esta cuenta bancaria, debido a demasiados intentos incorrectos.',
description: 'Uno o dos días después de agregar su cuenta a Expensify, enviamos tres (3) transacciones a su cuenta. Tienen una línea comercial como "Expensify, Inc. Validation".',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ReimbursementAccount/ValidationStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class ValidationStep extends React.Component {
return (
<View style={[styles.flex1, styles.justifyContentBetween]}>
<HeaderWithCloseButton
title={isVerifying ? this.props.translate('workspace.common.bankAccount') : this.props.translate('workspace.common.testTransactions')}
title={isVerifying ? this.props.translate('validationStep.headerTitle') : this.props.translate('workspace.common.testTransactions')}
stepCounter={{step: 5, total: 5}}
onCloseButtonPress={Navigation.dismissModal}
onBackButtonPress={() => Navigation.goBack()}
Expand Down