kopia lustrzana https://github.com/magicbug/Cloudlog
31 wiersze
1.0 KiB
PHP
31 wiersze
1.0 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @copyright Copyright (c) 2014 - 2015, 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'] = 'Float'; // can be the same as float
|
|
$lang['ut_string'] = 'String';
|
|
$lang['ut_array'] = 'Array';
|
|
$lang['ut_object'] = 'Object';
|
|
$lang['ut_resource'] = 'Resource';
|
|
$lang['ut_null'] = 'Null';
|
|
$lang['ut_notes'] = '笔记';
|