diff --git a/src/languages/en.js b/src/languages/en.js index 382630a84470..c95d0f5fbf07 100755 --- a/src/languages/en.js +++ b/src/languages/en.js @@ -546,7 +546,6 @@ export default { requestorStep: { headerTitle: 'Personal information', subtitle: 'Please provide your personal information.', - financialRegulations: 'Financial regulation and bank rules require us to validate the identity of any individual setting up bank accounts on behalf of a company. ', learnMore: 'Learn more', isMyDataSafe: 'Is my data safe?', onFidoConditions: 'By continuing with the request to add this bank account, you confirm that you have read, understand and accept ', diff --git a/src/languages/es.js b/src/languages/es.js index 1b6117274c8a..1e4ebacd0f10 100644 --- a/src/languages/es.js +++ b/src/languages/es.js @@ -548,7 +548,6 @@ export default { requestorStep: { headerTitle: 'Información personal', subtitle: 'Dé más información sobre tí.', - financialRegulations: 'Las leyes fiscales y el reglamento bancario nos obliga a verificar la identidad de todo individuo que desee añadir una cuenta bancaria representando a una compañía. ', learnMore: 'Más información', isMyDataSafe: '¿Están seguros mis datos?', onFidoConditions: 'Al continuar con la solicitud de añadir esta cuenta bancaria, confirma que ha leído, entiende y acepta ', diff --git a/src/pages/ReimbursementAccount/RequestorStep.js b/src/pages/ReimbursementAccount/RequestorStep.js index 45bedaa193cd..c8a368fe5ab7 100644 --- a/src/pages/ReimbursementAccount/RequestorStep.js +++ b/src/pages/ReimbursementAccount/RequestorStep.js @@ -1,6 +1,6 @@ import React from 'react'; import lodashGet from 'lodash/get'; -import {View} from 'react-native'; +import {View, Linking} from 'react-native'; import {withOnyx} from 'react-native-onyx'; import styles from '../../styles/styles'; import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize'; @@ -215,31 +215,31 @@ class RequestorStep extends React.Component { errorText={this.props.reimbursementAccount.error === this.props.translate('requestorStep.isControllingOfficerError') ? this.props.translate('requestorStep.isControllingOfficerError') : ''} /> - - {this.props.translate('requestorStep.financialRegulations')} - {this.props.translate('requestorStep.onFidoConditions')} - Linking.openURL('https://onfido.com/facial-scan-policy-and-release/')} + style={[styles.textMicro, styles.link]} + accessibilityRole="link" > {`${this.props.translate('requestorStep.onFidoFacialScan')}`} - + {', '} - Linking.openURL('https://onfido.com/privacy/')} + style={[styles.textMicro, styles.link]} + accessibilityRole="link" > {`${this.props.translate('common.privacyPolicy')}`} - + {` ${this.props.translate('common.and')} `} - Linking.openURL('https://onfido.com/terms-of-service/')} + style={[styles.textMicro, styles.link]} + accessibilityRole="link" > {`${this.props.translate('common.termsOfService')}`} - + )}