mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-17 22:47:58 -04:00
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?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'] = 'Бележки';
|