
So that when in you language file you have:
'translations' => [
'seeAllXItems' => 'See all {total} items...'
]You can simply do:
<?= t('seeAllXItems', ['total' => 24]) ?>This is currently possible, only not directly with the helper, but using:
<?=
I18n::template('seeAllXItems', null, [
'total' => 24
]);
?>
t() is the shorthand helper for I18n::translate() - tt() is for I18n::template(): https://getkirby.com/docs/reference/templates/helpers/tt


Oops! 🫣