I have a problem. I want to add total value in local string dynamicly.There is a space in local string.
page_title: `Toplamda adet ******* eğitmeni listeleniyor.`,
I have a total value.
let total = teachers.length
I want to add total value in localization string's space.
<p className="mt-0 font-bold text-center max-w-lg mx-auto px-5">
{`${strings.teachers.teachers_list.page_title}`}
</p>
How can I do it?