i18n reward intro driver title
This commit is contained in:
parent
0e65d526d8
commit
e0fa80f640
2 changed files with 7 additions and 2 deletions
|
@ -236,5 +236,7 @@
|
|||
"used": "used",
|
||||
"Stats": "Stats",
|
||||
"Welcome to LBRY.": "Welcome to LBRY.",
|
||||
"Account Recommended": "Account Recommended"
|
||||
"Account Recommended": "Account Recommended",
|
||||
"%amount% available credits": "%amount% available credits",
|
||||
"%amount% available credit": "%amount% available credit"
|
||||
}
|
|
@ -35,7 +35,10 @@ class RewardEnrolment extends React.Component {
|
|||
<View style={rewardStyle.enrollContainer}>
|
||||
<View style={rewardStyle.summaryRow}>
|
||||
<Icon name="award" size={36} color={Colors.White} />
|
||||
<Text style={rewardStyle.summaryText}>{unclaimedRewardAmount} available credits</Text>
|
||||
<Text style={rewardStyle.summaryText}>
|
||||
{unclaimedRewardAmount === 1 && __('%amount% available credit', { amount: unclaimedRewardAmount })}
|
||||
{unclaimedRewardAmount !== 1 && __('%amount% available credits', { amount: unclaimedRewardAmount })}
|
||||
</Text>
|
||||
</View>
|
||||
|
||||
<View style={rewardStyle.onboarding}>
|
||||
|
|
Loading…
Reference in a new issue