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
 * @copyright	Novak Urošević
8
 * @license	http://opensource.org/licenses/MIT	MIT License
9
 * @link	https://codeigniter.com
10
 */
11
defined('BASEPATH') OR exit('Nije dozvoljen direktan pristup');
12
 
13
$lang['ut_test_name'] = 'Test Ime';
14
$lang['ut_test_datatype'] = 'Test Tip Podataka';
15
$lang['ut_res_datatype'] = 'Očekivan Tip Podataka';
16
$lang['ut_result'] = 'Rezultat';
17
$lang['ut_undefined'] = 'Nedefinisano Test Ime';
18
$lang['ut_file'] = 'Ime Fajla';
19
$lang['ut_line'] = 'Broj Linije';
20
$lang['ut_passed'] = 'Uspešno';
21
$lang['ut_failed'] = 'Neuspešno';
22
$lang['ut_boolean'] = 'Logički Operator (Boolean)';
23
$lang['ut_integer'] = 'Ceo Broj';
24
$lang['ut_float'] = 'Razlomak';
25
$lang['ut_double'] = 'Razlomal'; // can be the same as float
26
$lang['ut_string'] = 'String';
27
$lang['ut_array'] = 'Niz';
28
$lang['ut_object'] = 'Objekat';
29
$lang['ut_resource'] = 'Resurs';
30
$lang['ut_null'] = 'Null';
31
$lang['ut_notes'] = 'Beleške';