Skip to content

Commit

Permalink
Improve verbiage of delegation on steem power, include username in ve…
Browse files Browse the repository at this point in the history
…rbiage for clearer understanding

Update UserWallet.jsx

Current version is misleading, as delegation can go both ways, not just "to".
  • Loading branch information
originated authored and bnchdrff committed Dec 18, 2017
1 parent 969902f commit 96a563e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/app/components/modules/UserWallet.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,8 @@ class UserWallet extends React.Component {
{delegated_steem != 0 ? (
<span className="secondary">
{tt(
'tips_js.part_of_your_steem_power_is_currently_delegated'
'tips_js.part_of_your_steem_power_is_currently_delegated',
{ user_name: account.get('name') }
)}
</span>
) : null}
Expand All @@ -608,7 +609,7 @@ class UserWallet extends React.Component {
: null,
}}
>
<Tooltip t="STEEM POWER delegated to this account">
<Tooltip t="STEEM POWER delegated to/from this account">
({received_power_balance_str} STEEM)
</Tooltip>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@
"converted_VESTING_TOKEN_can_be_sent_to_yourself_but_can_not_transfer_again":
"Converted %(VESTING_TOKEN)s can be sent to yourself or someone else but can not transfer again without converting back to %(LIQUID_TOKEN)s.",
"part_of_your_steem_power_is_currently_delegated":
"Part of your STEEM POWER is currently delegated to you. Delegation is donated for influence or to help new users perform actions on steemit. Your delegation amount can fluctuate."
"Part of %(user_name)s's STEEM POWER is currently delegated. Delegation is donated for influence or to help new users perform actions on steemit. Your delegation amount can fluctuate."
},
"promote_post_jsx": {
"promote_post": "Promote Post",
Expand Down
2 changes: 1 addition & 1 deletion src/app/locales/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@
"converted_VESTING_TOKEN_can_be_sent_to_yourself_but_can_not_transfer_again":
"Los %(VESTING_TOKEN)s convertidos pueden ser enviados a ti mismo o a otras personas pero no pueden ser transferidos de nuevo sin convertirlos de vuelta a %(LIQUID_TOKEN)s.",
"part_of_your_steem_power_is_currently_delegated":
"Parte de tu STEEM POWER te ha sido delegado. La delegación es influencia donada que ayuda a los nuevos usuarios a interactuar en steemit. La cantidad de tu delegación puede fluctuar."
"Part of %(user_name)s's STEEM POWER is currently delegated. Delegation is donated for influence or to help new users perform actions on steemit. Your delegation amount can fluctuate."
},
"promote_post_jsx": {
"promote_post": "Promociona el Post",
Expand Down

0 comments on commit 96a563e

Please sign in to comment.