mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-26 10:17:59 -05:00
31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
<?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'] = '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'] = 'บันทึกเพิ่มเติม';
|