### How to translate `en_US` to `it`
for example `shop`.
this shop dir has a dir named `messages`.
full dir like `shop/messages/en_US`,its a default language.
codeing in `shop/messages/I18N.php`.
global $allowLanguage;
$allowLanguage = ['en_US','it'];
$open_translate = true;
$language_id = isset($_GET['lang'])?$_GET['lang']:$language_id;
$language_id = 'en_US'; //change here
if change shop's language ,they all will change to .
default language `en_US` php file in `shop/messages/en_US/app.php`
copy `shop/messages/en_US/app.php` to `shop/messages/it/app.php` then translate.
try language changed. modify `shop/messages/I18N.php`
$language_id = 'en_US'; //en_US change to it