Files
opensourcepos/application/language/serbian/unit_test_lang.php
2016-08-18 13:33:01 +02:00

32 lines
1.1 KiB
PHP

<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
* @copyright Novak Urošević
* @license http://opensource.org/licenses/MIT MIT License
* @link http://codeigniter.com
*/
defined('BASEPATH') OR exit('Nije dozvoljen direktan pristup');
$lang['ut_test_name'] = 'Test Ime';
$lang['ut_test_datatype'] = 'Test Tip Podataka';
$lang['ut_res_datatype'] = 'Očekivan Tip Podataka';
$lang['ut_result'] = 'Rezultat';
$lang['ut_undefined'] = 'Nedefinisano Test Ime';
$lang['ut_file'] = 'Ime Fajla';
$lang['ut_line'] = 'Broj Linije';
$lang['ut_passed'] = 'Uspešno';
$lang['ut_failed'] = 'Neuspešno';
$lang['ut_boolean'] = 'Logički Operator (Boolean)';
$lang['ut_integer'] = 'Ceo Broj';
$lang['ut_float'] = 'Razlomak';
$lang['ut_double'] = 'Razlomal'; // can be the same as float
$lang['ut_string'] = 'String';
$lang['ut_array'] = 'Niz';
$lang['ut_object'] = 'Objekat';
$lang['ut_resource'] = 'Resurs';
$lang['ut_null'] = 'Null';
$lang['ut_notes'] = 'Beleške';