我在 yii2 的项目中使用了 dosamigos\ckeditor\CKEditor 我想在配置中更改 ckeditor 的语言!
我该如何解决我的问题?
这是我在 _form.php 中的代码
<?php
use dosamigos\ckeditor\CKEditor;
<?=
$form->field($model, 'text')->widget(CKEditor::className(), [
'options' => ['rows' => 6],
// 'language' => 'fa',
'preset' => 'full'
])
?>