page not found version 8.

2020年3月20日 at 15:53

How can I setting on file page not found [page_not_found.php] for between 2 language ( ja and en).
お世話になります。
I am using this code on [page_not_found.php]:


<?php $currentLocale = Localization::activeLocale(); if ($currentLocale == 'ja_JP') {?>
// 日本語
<?php } else {?>
// English
<?php }?>



but it seem not working..
Do you have any idea?

タグ:

Re: page not found version 8.

2020年3月20日 at 18:38
I found



<?php $currentLocale = Localization::activeLanguage();
if ($currentLocale == 'ja') {
// ja
} else {
// else ...
}
?>