Sure mate. (and tx for taking the time to take a look)
config.php
<?php
return [
'debug' => true,
'languages' => true,
'urls' => [
'nl' => 'http://mijngeldenik.int',
'fr' => 'http://financesetmoi.int',
],
'placeholders' => [
'year' => date('Y'),
],
'panel.install' => true,
'omz13.xmlsitemap' => [
'cacheTTL' => 60,
'includeUnlistedWhenSlugIs' => [],
'includeUnlistedWhenTemplateIs' => ['blog', 'blog-post'],
'excludePageWhenTemplateIs' => ['block-centered-content', 'block-comp-content', 'block-hero', 'block-table'],
'excludePageWhenSlugIs' => [],
'excludeChildrenWhenTemplateIs' => ['block-centered-content', 'block-comp-content', 'block-hero', 'block-table'],
'disableImages' => false,
],
'block' => [
'background' => [
'default' => '',
'primary' => 'bgc--primary-1',
'secondary' => 'bgc--secondary-1',
],
'position' => [
'normal' => '',
'alt' => 'type-alt',
],
'navigato-navigate' => [
'class' => 'trigger--navigato-navigate',
],
],
'date' => [
'handler' => 'strftime'
],
'bnomei.robots-txt.content' => null,
'bnomei.robots-txt.sitemap' => null,
'bnomei.robots-txt.groups' => [
'*' => [
'disallow' => [
'/kirby/',
'/site/',
],
'allow' => [
'/media/',
]
]
]
];
config.mijngeldenik.xxxx.be.php
<?php
return [
'debug' => false,
'urls' => [
'nl' => 'https://mijngeldenik.xxxx.be',
'fr' => 'https://financesetmoi.xxxx.be',
],
];
config.financesetmoi.xxxx.be.php
<?php
return [
'debug' => false,
'urls' => [
'nl' => 'https://mijngeldenik.xxxx.be',
'fr' => 'https://financesetmoi.xxxx.be',
],
];
nl.php
<?php
return [
'code' => 'nl',
'default' => true,
'direction' => 'ltr',
'locale' => [
'LC_ALL' => 'nl_BE'
],
'name' => 'Nederlands',
'translations' => [
'header.back_to_home' => 'Terug naar de homepagina',
'header.mobile.back_to_home' => 'Homepage',
],
'url' => option('urls.nl'),
];
fr.php
<?php
return [
'code' => 'fr',
'default' => false,
'direction' => 'ltr',
'locale' => [
'LC_ALL' => 'fr_FR'
],
'name' => 'Français',
'translations' => [
'header.back_to_home' => 'Retour à l\'accueil',
'header.mobile.back_to_home' => 'Homepage',
],
'url' => option('urls.fr'),
];