Hello!
I’m using two languages in my site and I would like to change the names of the fields labels when switching language in the panel…
Is there a way to achieve this?
this is my try, which works only in english:
fields:
artist:
label:
en: Artist Name
he: Artist Name in Hebrew
this is how I set the hebrew language php file:
<?php
return [
'code' => 'he',
'default' => true,
'direction' => 'rtl',
'locale' => 'he_IL',
'name' => 'Hebrew',
];
and yes - I turned the language field on in the config file as described here : (Introduction | Kirby CMS)
thanks in advance!