Files
opensourcepos/system/language/ru/unit_test_lang.php
2016-04-04 23:43:13 +02:00

31 lines
1.2 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
* @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'] = 'Булево';
$lang['ut_integer'] = 'Целое';
$lang['ut_float'] = 'Вещественное';
$lang['ut_double'] = 'Вещественное';
$lang['ut_string'] = 'Строка';
$lang['ut_array'] = 'Массив';
$lang['ut_object'] = 'Объект';
$lang['ut_resource'] = 'Ресурс';
$lang['ut_null'] = 'NULL';
$lang['ut_notes'] = 'Заметки';