<?php

class LocaleTexten extends LocaleText
{
  function Load(): void
  {
    $this->Code = 'en';
    $this->Title = 'English';
    $this->Data = array(
      '' => array(
        'Can\'t connect to database' => '',
      ),
    );
  }
}
