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

32 lines
1.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author Ivan Tcholakov
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link http://codeigniter.com
*/
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['ut_test_name'] = 'Име на теста';
$lang['ut_test_datatype'] = 'Тип на тестови данни';
$lang['ut_res_datatype'] = 'Очакван тип данни';
$lang['ut_result'] = 'Резултат';
$lang['ut_undefined'] = 'Не е зададено име на тест';
$lang['ut_file'] = 'Име на файл';
$lang['ut_line'] = 'Номер на ред';
$lang['ut_passed'] = 'Приет';
$lang['ut_failed'] = 'Провален';
$lang['ut_boolean'] = 'Boolean';
$lang['ut_integer'] = 'Integer';
$lang['ut_float'] = 'Float';
$lang['ut_double'] = 'Double';
$lang['ut_string'] = 'String';
$lang['ut_array'] = 'Array';
$lang['ut_object'] = 'Object';
$lang['ut_resource'] = 'Resource';
$lang['ut_null'] = 'NULL';
$lang['ut_notes'] = 'Бележки';