Fix range pluralization

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-03-17 12:02:12 +01:00
parent cd3aaf6957
commit 9f65029b4e
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 2 additions and 2 deletions

View File

@ -258,9 +258,9 @@
{{
$tc(
"Within {number} kilometers of {place}",
loggedUser.settings.location.radius,
loggedUser.settings.location.range,
{
number: loggedUser.settings.location.radius,
number: loggedUser.settings.location.range,
place: loggedUser.settings.location.name,
}
)