/ / yii2: як змінити мову ckeditor - yii2, yii2-extension

yii2: як змінити мову ckeditor - yii2, yii2-extension

Я використовував dosamigosckeditorCKEditor в моєму проекті в yii2 Я хочу змінити мову ckeditor в config!

як я можу вирішити мою проблему?

це мій код у _form.php

<?php

use dosamigosckeditorCKEditor;
<?=
$form->field($model, "text")->widget(CKEditor::className(), [
"options" => ["rows" => 6],
//        "language" => "fa",
"preset" => "full"
])
?>

Відповіді:

2 для відповіді № 1

Ви повинні використовувати clientOptions майно:

$form->field($model, "text")->widget(CKEditor::className(), [
"options" => ["rows" => 6],
"clientOptions" => ["language" => "fa"],    // here
"preset" => "full"
])