Subversion-Projekte lars-tiefland.ci

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
2418 lars 1
<?php
2
/**
3
 * System messages translation for CodeIgniter(tm)
4
 *
5
 * @author	CodeIgniter community
6
 * @copyright	Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
7
 * @license	http://opensource.org/licenses/MIT	MIT License
8
 * @link	https://codeigniter.com
9
 */
10
defined('BASEPATH') OR exit('No direct script access allowed');
11
 
12
$lang['ut_test_name']     = 'Jméno Testu';
13
$lang['ut_test_datatype'] = 'Datový typ testu';
14
$lang['ut_res_datatype']  = 'očekávaný datový typ';
15
$lang['ut_result']        = 'Výsledek';
16
$lang['ut_undefined']     = 'Nespecifikované jméno testu';
17
$lang['ut_file']          = 'Jméno souboru';
18
$lang['ut_line']          = 'Číslo řádku';
19
$lang['ut_passed']        = 'Prošlo';
20
$lang['ut_failed']        = 'Neprošlo';
21
$lang['ut_boolean']       = 'Boolean';
22
$lang['ut_integer']       = 'Integer';
23
$lang['ut_float']         = 'Float';
24
$lang['ut_double']        = 'Float'; // can be the same as float
25
$lang['ut_string']        = 'Řetězec';
26
$lang['ut_array']         = 'Pole';
27
$lang['ut_object']        = 'Objekt';
28
$lang['ut_resource']      = 'Zdroj';
29
$lang['ut_null']          = 'Null';
30
$lang['ut_notes']         = 'Poznámky';