source: trunk/locale/cs.php

Last change on this file was 887, checked in by chronos, 3 years ago
  • Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
  • Fixed: Various found code issues.
File size: 269 bytes
Line 
1<?php
2
3class LocaleTextcs extends LocaleText
4{
5 function Load(): void
6 {
7 $this->Code = 'cs';
8 $this->Title = 'Česky';
9 $this->Data = array(
10 '' => array(
11 'Can\'t connect to database' => 'Nelze se připojit do databáze',
12 ),
13 );
14 }
15}
Note: See TracBrowser for help on using the repository browser.