Hello there,
I made a virtual page from my page article,
How can I keep de translation in english or spanish from an article to the virtual page ?
Actually it only display in french
'routes' => [
[
'pattern' => '(:any)/print/(:all)',
'action' => function ($lang, $page_id) {
$p = page('print');
return $p->render([
'article' => page($lang, $page_id)
]);
}
],
]