Skip to content

Commit

Permalink
fix: missing translation
Browse files Browse the repository at this point in the history
  • Loading branch information
Icaruk committed May 15, 2024
1 parent 6a2d2c0 commit ceb79ae
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"sellWithPremium": "{num}% (sell with premium)",
"sellWithoutPremium": "{num}% (sell without premium)",
"sellOrderWithPremium": "{num}% (sell order with premium)",
"sellOrderWithoutPremium": "{num}% (sell order without premium)"
"sellOrderWithoutPremium": "{num}% (sell order without premium)",
"earningsAfterTax": "Earnings after tax"
}
3 changes: 2 additions & 1 deletion messages/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"sellWithPremium": "{num} % (vender con premium)",
"sellWithoutPremium": "{num} % (vender sin premium)",
"sellOrderWithPremium": "{num} % (orden de venta con premium)",
"sellOrderWithoutPremium": "{num} % (orden de venta sin premium)"
"sellOrderWithoutPremium": "{num} % (orden de venta sin premium)",
"earningsAfterTax": "Ganancias tras impuestos"
}
3 changes: 2 additions & 1 deletion messages/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"sellWithPremium": "{num} % (vendre avec premium)",
"sellWithoutPremium": "{num} % (vendre sans premium)",
"sellOrderWithPremium": "{num} % (ordre de vente avec premium)",
"sellOrderWithoutPremium": "{num} % (ordre de vente sans premium)"
"sellOrderWithoutPremium": "{num} % (ordre de vente sans premium)",
"earningsAfterTax": "Bénéfice après impôt"
}
2 changes: 1 addition & 1 deletion src/pages/home/partials/RowSummary.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function RowSummary({ group }) {
</Text>
</Group>
<Group justify="flex-end">
<Text>{m.earnings()}:</Text>
<Text>{m.earningsAfterTax()}:</Text>
<Text>
<NumberFormatter
thousandSeparator="."
Expand Down

0 comments on commit ceb79ae

Please sign in to comment.