mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-24 03:37:23 +02:00
🐛 Use single curly braces for i18n string vars (#1805)
This commit is contained in:
parent
8efff1e659
commit
a1926a30b2
13 changed files with 24 additions and 24 deletions
|
@ -92,7 +92,7 @@
|
|||
"polls": "Sondaggi",
|
||||
"timeZoneSelect__noOption": "Nessuna opzione trovata",
|
||||
"timeZoneSelect__inputPlaceholder": "Ricerca…",
|
||||
"poweredByRallly": "Powered by <a>{{name}}</a>",
|
||||
"poweredByRallly": "Powered by <a>{name}</a>",
|
||||
"participants": "Partecipanti",
|
||||
"language": "Lingua",
|
||||
"languageDescription": "Cambia la tua lingua preferita",
|
||||
|
|
|
@ -26,13 +26,13 @@ export function SubscriptionPrice({
|
|||
{interval === "month" ? (
|
||||
<Trans
|
||||
i18nKey="subscriptionPriceMonthly"
|
||||
defaults="{{price}} per month"
|
||||
defaults="{price} per month"
|
||||
values={{ price: formattedAmount }}
|
||||
/>
|
||||
) : (
|
||||
<Trans
|
||||
i18nKey="subscriptionPriceYearly"
|
||||
defaults="{{price}} per year"
|
||||
defaults="{price} per year"
|
||||
values={{ price: formattedAmount }}
|
||||
/>
|
||||
)}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue