fix: translation mapping typos

This commit is contained in:
Michael Zetterberg
2025-03-14 15:11:49 +01:00
parent 33239f1f91
commit f7e100d45c
8 changed files with 32 additions and 32 deletions

View File

@@ -49,7 +49,7 @@ export default function CityListing() {
<Subtitle type="two">
{intl.formatMessage(
{
id: `{count, plural, one {# Location} other {# Locations}}`,
id: "{count, plural, one {# Location} other {# Locations}}",
},
{ count: activeCities.length }
)}

View File

@@ -49,7 +49,7 @@ export default function HotelListing() {
<Subtitle type="two">
{intl.formatMessage(
{
id: `{count, plural, one {# Hotel} other {# Hotels}}`,
id: "{count, plural, one {# Hotel} other {# Hotels}}",
},
{ count: activeHotels.length }
)}