Replace $tc( with t(

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2022-08-12 16:45:11 +02:00
parent e893f3f089
commit d8cf49e315
5 changed files with 67 additions and 43 deletions

View File

@@ -169,16 +169,17 @@
v-if="event.contacts && event.contacts.length"
v-html="
' ' +
$tc(
$t(
'<b>{contact}</b> will be displayed as contact.',
event.contacts.length,
{
contact: formatList(
event.contacts.map((contact) =>
displayNameAndUsername(contact)
)
),
}
},
event.contacts.length
)
"
/>

View File

@@ -144,21 +144,33 @@
v-if="isInLessThanSevenDays(row[0])"
>
<span v-if="isToday(row[0])">{{
$tc("You have one event today.", row[1].size, {
count: row[1].size,
})
$t(
"You have one event today.",
{
count: row[1].size,
},
row[1].size
)
}}</span>
<span v-else-if="isTomorrow(row[0])">{{
$tc("You have one event tomorrow.", row[1].size, {
count: row[1].size,
})
$t(
"You have one event tomorrow.",
{
count: row[1].size,
},
row[1].size
)
}}</span>
<span v-else-if="isInLessThanSevenDays(row[0])">
{{
$tc("You have one event in {days} days.", row[1].size, {
count: row[1].size,
days: calculateDiffDays(row[0]),
})
$t(
"You have one event in {days} days.",
{
count: row[1].size,
days: calculateDiffDays(row[0]),
},
row[1].size
)
}}
</span>
</p>
@@ -223,10 +235,10 @@
</h2>
<p>
{{
$tc("Within {number} kilometers of {place}", radius, {
$t("Within {number} kilometers of {place}", {
radius,
place: locationName,
})
}, radius)
}}
<router-link
:to="{ name: RouteName.PREFERENCES }"

View File

@@ -42,10 +42,14 @@
>
<h3 class="is-size-3">
{{
$tc("{title} ({count} todos)", todoList.todos.total, {
count: todoList.todos.total,
title: todoList.title,
})
$t(
"{title} ({count} todos)",
{
count: todoList.todos.total,
title: todoList.title,
},
todoList.todos.total
)
}}
</h3>
</router-link>