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
 * @author    Gabriel Potkány <gadelat+codeigniter@gmail.com>
7
 * @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
8
 * @license   http://opensource.org/licenses/MIT MIT License
9
 * @link      https://codeigniter.com
10
 */
11
defined('BASEPATH') OR exit('No direct script access allowed');
12
 
13
$lang['ut_test_name']     = 'Názov Testu';
14
$lang['ut_test_datatype'] = 'Dátový typ testu';
15
$lang['ut_res_datatype']  = 'očakávaný dátový typ';
16
$lang['ut_result']        = 'Výsledok';
17
$lang['ut_undefined']     = 'Nešpecifikované meno testu';
18
$lang['ut_file']          = 'Meno súboru';
19
$lang['ut_line']          = 'Číslo riadku';
20
$lang['ut_passed']        = 'Prešlo';
21
$lang['ut_failed']        = 'Neprešlo';
22
$lang['ut_boolean']       = 'Logické 1/0';
23
$lang['ut_integer']       = 'Celé číslo';
24
$lang['ut_float']         = 'Desatinné číslo';
25
$lang['ut_double']        = 'Presné desatinné číslo'; // can be the same as float
26
$lang['ut_string']        = 'Reťazec';
27
$lang['ut_array']         = 'Pole';
28
$lang['ut_object']        = 'Objekt';
29
$lang['ut_resource']      = 'Zdroj';
30
$lang['ut_null']          = 'Null';
31
$lang['ut_notes']         = 'Poznámky';