Typo fix for point to estm

This commit is contained in:
Mustafa Buyukcelebi 2019-08-06 10:15:56 +03:00
parent 4162f82ba9
commit 893812cb86
3 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@
"reblog_desc": " Share what post you like with your friends and earn 1 points.", "reblog_desc": " Share what post you like with your friends and earn 1 points.",
"login_desc": "When you login into eSteem app you are entitled to earn 100 points automatically.", "login_desc": "When you login into eSteem app you are entitled to earn 100 points automatically.",
"checkin_extra_desc": "Consistent use of app gives you extra chances to earn more 10 points, be more active and earn more.", "checkin_extra_desc": "Consistent use of app gives you extra chances to earn more 10 points, be more active and earn more.",
"dropdown_transfer": "Transfer", "dropdown_transfer": "Gift",
"dropdown_promote": "Promote", "dropdown_promote": "Promote",
"dropdown_boost": "Boost" "dropdown_boost": "Boost"
}, },
@ -299,7 +299,7 @@
"to_placeholder": "Username", "to_placeholder": "Username",
"memo_placeholder": "Enter your notes here", "memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer", "transfer_token": "Transfer",
"points": "Points Transfer", "points": "Gift ESTM to someone",
"transfer_to_saving": "Transfer To Saving", "transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up", "powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving", "withdraw_to_saving": "Withdraw To Saving",

View File

@ -83,7 +83,7 @@ class PointsContainer extends Component {
navigateTo = ROUTES.SCREENS.TRANSFER; navigateTo = ROUTES.SCREENS.TRANSFER;
navigateParams = { navigateParams = {
transferType: 'points', transferType: 'points',
fundType: 'POINT', fundType: 'ESTM',
balance, balance,
}; };
break; break;

View File

@ -60,7 +60,7 @@ class TransferContainer extends Component {
case 'SBD': case 'SBD':
balance = account[0].sbd_balance.replace(fundType, ''); balance = account[0].sbd_balance.replace(fundType, '');
break; break;
case 'POINT': case 'ESTM':
balance = navigation.getParam('balance', ''); balance = navigation.getParam('balance', '');
break; break;
case 'SAVING_STEEM': case 'SAVING_STEEM':