fixed missing translation issue

This commit is contained in:
ue 2019-09-03 21:23:02 +03:00
parent f9f3ea728c
commit fd3f76265b
3 changed files with 3 additions and 3 deletions

View File

@ -161,7 +161,7 @@ class DelegateScreen extends Component {
</View> </View>
<View style={styles.middleContent}> <View style={styles.middleContent}>
<TransferFormItem <TransferFormItem
label={intl.formatMessage({ id: 'transfer.account' })} label={intl.formatMessage({ id: 'transfer.from' })}
rightComponent={() => this._renderDropdown(accounts, currentAccountName)} rightComponent={() => this._renderDropdown(accounts, currentAccountName)}
/> />
<TransferFormItem <TransferFormItem

View File

@ -225,7 +225,7 @@ class PowerDownView extends Component {
<ScrollView> <ScrollView>
<View style={styles.middleContent}> <View style={styles.middleContent}>
<TransferFormItem <TransferFormItem
label={intl.formatMessage({ id: 'transfer.account' })} label={intl.formatMessage({ id: 'transfer.from' })}
rightComponent={() => this._renderDropdown(accounts, currentAccountName)} rightComponent={() => this._renderDropdown(accounts, currentAccountName)}
/> />
<TransferFormItem <TransferFormItem

View File

@ -71,7 +71,7 @@ class WithdrawAccountModal extends Component {
<View style={styles.modalContainer}> <View style={styles.modalContainer}>
<UserAvatar username={account} size="xl" style={styles.avatar} noAction /> <UserAvatar username={account} size="xl" style={styles.avatar} noAction />
<TransferFormItem <TransferFormItem
label={intl.formatMessage({ id: 'transfer.account' })} label={intl.formatMessage({ id: 'transfer.from' })}
rightComponent={() => rightComponent={() =>
this._renderInput( this._renderInput(
intl.formatMessage({ id: 'transfer.to_placeholder' }), intl.formatMessage({ id: 'transfer.to_placeholder' }),