-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathunit_test_lang.php
More file actions
executable file
·50 lines (48 loc) · 2.11 KB
/
unit_test_lang.php
File metadata and controls
executable file
·50 lines (48 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* CodeIgniter
*
* An open source application development framework for PHP 5.2.4 or newer
*
* NOTICE OF LICENSE
*
* Licensed under the Open Software License version 3.0
*
* This source file is subject to the Open Software License (OSL 3.0) that is
* bundled with this package in the files license.txt / license.rst. It is
* also available through the world wide web at this URL:
* http://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to obtain it
* through the world wide web, please send an email to
* licensing@ellislab.com so we can send you a copy immediately.
*
* @package CodeIgniter
* @author EllisLab Dev Team
* @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/)
* @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
* @link http://codeigniter.com
* @since Version 1.0
* @filesource
*/
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'] = 'ទសភាគ'; // can be the same as float
$lang['ut_string'] = 'អក្សរ';
$lang['ut_array'] = 'អារេ';
$lang['ut_object'] = 'វត្ថុ';
$lang['ut_resource'] = 'ធនធាន';
$lang['ut_null'] = 'ទទេ';
$lang['ut_notes'] = 'ចំណាំ';
/* End of file unit_test_lang.php */
/* Location: ./system/language/english/unit_test_lang.php */