I found a typo in the install file (emabled -> enabled):

    $config->set('third_party_settings', [
      'content_translation' => [
        'emabled' => TRUE,
      ],
    ]);
    $config->save();
  }

It should be looks like here

    $config->set('third_party_settings', [
      'content_translation' => [
        'enabled' => TRUE,
      ],
    ]);
    $config->save();
  }
CommentFileSizeAuthor
#2 typoFix-3125632-2.patch451 bytescsakiistvan

Comments

csakiistvan created an issue. See original summary.

csakiistvan’s picture

StatusFileSize
new451 bytes
csakiistvan’s picture

Status: Active » Needs review

tikaszvince’s picture

Status: Needs review » Fixed

Thank you your contribution. This will be part of the next release

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.