Search code examples
yii2yii2-extension

yii2 : how to change language of ckeditor


i used use dosamigos\ckeditor\CKEditor in my project in yii2 i want change language of ckeditor in config !

how can i solve my problem?

this is my code in _form.php

<?php

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

Solution

  • You have to use clientOptions property:

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