Skip to content

Commit

Permalink
Change tooltip and notification UBI info from monthly rate to daily
Browse files Browse the repository at this point in the history
  • Loading branch information
louilinn committed Sep 28, 2023
1 parent 5a12d1f commit 5a336a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"bodyExplainMeTrustedSomeone": "You trusted @{actor} which means that @{actor} can send you their tokens.",
"bodyExplainMeUntrustedSomeone": "You untrusted @{actor} which means that you do not accept any tokens from them anymore.",
"bodyExplainReceivedCircles": "You received {value} {denominator} from @{actor} transitively.",
"bodyExplainReceivedUBI": "This is your Universal Basic Income, issued as your own personal currency. You receive circa {rate} per month.",
"bodyExplainReceivedUBI": "This is your Universal Basic Income, issued as your own personal currency. You receive {rate} per day.",
"bodyExplainSecondary": "All activities carry a small transaction fee used to maintain the Circles network.",
"bodyExplainSentCircles": "You sent {value} {denominator} to @{actor} transitively.",
"bodyExplainTrustedBySomeone": "@{actor} trusts you. You can send your token to them now.",
Expand All @@ -44,7 +44,7 @@
},
"BalanceDisplay": {
"tooltipSharedWalletBalance": "This is the shared wallet balance. Shared wallets do not receive basic income.",
"tooltipYourBalance": "Your basic income is issued continuously at the rate of {rate} Circles a month."
"tooltipYourBalance": "Your basic income is issued continuously at the rate of {rate} circles per day."
},
"ButtonClipboard": {
"buttonCopy": "Copy to clipboard",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ActivityStreamItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ const ActivityStreamExplained = ({
return translate(`ActivityStream.bodyExplain${messageId}`, {
...data,
actor,
rate: ISSUANCE_RATE_MONTH,
rate: ISSUANCE_RATE_MONTH / 30,
});
}, [actor, data, messageId]);

Expand Down
2 changes: 1 addition & 1 deletion src/components/BalanceDisplay.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const BalanceDisplay = () => {
const tooltipText = safe.isOrganization
? translate('BalanceDisplay.tooltipSharedWalletBalance')
: translate('BalanceDisplay.tooltipYourBalance', {
rate: ISSUANCE_RATE_MONTH,
rate: ISSUANCE_RATE_MONTH / 30,
});

return (
Expand Down

0 comments on commit 5a336a2

Please sign in to comment.