mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 12:51:42 +03:00
Merge pull request #1130 from esteemapp/bugfix/profile-get
fixed missing translation issue
This commit is contained in:
commit
62ede47009
@ -299,6 +299,7 @@
|
||||
"transfer": {
|
||||
"from": "From",
|
||||
"to": "To",
|
||||
"amount_information": "Drag the slider to adjust the amount",
|
||||
"amount": "Amount",
|
||||
"memo": "Memo",
|
||||
"information": "Are you sure to transfer funds?",
|
||||
|
@ -161,7 +161,7 @@ class DelegateScreen extends Component {
|
||||
</View>
|
||||
<View style={styles.middleContent}>
|
||||
<TransferFormItem
|
||||
label={intl.formatMessage({ id: 'transfer.account' })}
|
||||
label={intl.formatMessage({ id: 'transfer.from' })}
|
||||
rightComponent={() => this._renderDropdown(accounts, currentAccountName)}
|
||||
/>
|
||||
<TransferFormItem
|
||||
|
@ -225,7 +225,7 @@ class PowerDownView extends Component {
|
||||
<ScrollView>
|
||||
<View style={styles.middleContent}>
|
||||
<TransferFormItem
|
||||
label={intl.formatMessage({ id: 'transfer.account' })}
|
||||
label={intl.formatMessage({ id: 'transfer.from' })}
|
||||
rightComponent={() => this._renderDropdown(accounts, currentAccountName)}
|
||||
/>
|
||||
<TransferFormItem
|
||||
|
@ -71,7 +71,7 @@ class WithdrawAccountModal extends Component {
|
||||
<View style={styles.modalContainer}>
|
||||
<UserAvatar username={account} size="xl" style={styles.avatar} noAction />
|
||||
<TransferFormItem
|
||||
label={intl.formatMessage({ id: 'transfer.account' })}
|
||||
label={intl.formatMessage({ id: 'transfer.from' })}
|
||||
rightComponent={() =>
|
||||
this._renderInput(
|
||||
intl.formatMessage({ id: 'transfer.to_placeholder' }),
|
||||
|
Loading…
Reference in New Issue
Block a user