Merge pull request #1130 from esteemapp/bugfix/profile-get

fixed missing translation issue
This commit is contained in:
Mustafa Buyukcelebi 2019-09-03 22:02:49 +03:00 committed by GitHub
commit 62ede47009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View File

@ -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?",

View File

@ -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

View File

@ -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

View File

@ -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' }),