* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ /** * Multilingual configuration */ return [ // 默认语言 'locale' => 'zh_CN', // 回退语言,当前语言中无法找到翻译时则尝试使用回退语言中的翻译 'fallback_locale' => ['zh_CN', 'en'], // Folder where language files are stored 'path' => base_path() . '/resource/translations', ];