laravel-admin-extensions / ckeditor

Integrate CKEDITOR into laravel-admin
MIT License
30 stars 18 forks source link

lang 设置无效 #5

Closed faydanube closed 4 years ago

faydanube commented 4 years ago

如题 @z-song

faydanube commented 4 years ago

@z-song 求修復…… $form->ckeditor('content', __('admin.content'))->options(['lang' => 'zh-TW', 'height' => 400]); image 如圖,依然是簡體

faydanube commented 4 years ago

找到 lang 文件夾,設置lang=zh,依然無效,目前只能把zh的內容完全複製進zh-cn進行替換……

vthwang commented 4 years ago

@faydanube I met the same problem here. You can change the configuration in config/admin.php as the following.

'ckeditor' => [
    'enable' => true,
    'config' => [
        'language'   => 'zh',
        'height' => 200,
    ]
]
faydanube commented 4 years ago

@faydanube I met the same problem here. You can change the configuration in config/admin.php as the following.

'ckeditor' => [
    'enable' => true,
    'config' => [
        'language'   => 'zh',
        'height' => 200,
    ]
]

3q