I’m creating a multilanguage site (my first kirby site btw) and it works quite well, but the translated “options” from my blueprint do not get translated on the website itself.
I already understood that they only appear when a panel user uses the specific language. But how can I access the translation on the site or solve my problem otherwise?
The first option requires you to define these translations manually again.
If you use the second option, Kirby has to read the blueprints, so this might be a bit slower.
Hey @texnixe, thanks for the quick reply before the weekend!
I am not only new to kirby but also to php, to be honest.
Your first proposal looks good, translating seven “days” is no problem. But I couldn’t figure out where to put my “day” variable there (for the seven days of the week…). My guess is, it’s not possible…
This is my code right now
<?= $event->day()->kirbytext() ?>
With the second solution I wouldn’t even know where to start!