Skip to content

Kirby 3.9.8

languages

Enables language definitions via the Panel

Enable multi-lang feature in the Panel

To allow users to define and switch languages from the Panel, you have to enable the feature:

return [
    'languages' => true
];

Automatic language detection

Kirby can detect the preferred language of the visitor. This has to be enabled in your config:

/site/config/config.php
return [
    'languages' => [
        'detect' => true
  ]
]

Using the root URL for the default language will disable automatic language detection.