🐛 Use single curly braces for i18n string vars (#1805)

This commit is contained in:
Luke Vella 2025-07-09 15:59:26 +03:00 committed by GitHub
parent 8efff1e659
commit a1926a30b2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 24 additions and 24 deletions

View file

@ -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",

View file

@ -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 }}
/>
)}