* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ /** * Multilingual configuration */ return [ // Default language 'locale' => get_env('LANG_DEFAULT_LANG') ?? 'zh-CN', // Fallback language 'fallback_locale' => ['zh-CN', 'en-US'], // Folder where language files are stored 'path' => base_path() . '/resource/translations', ];