mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-03-11 11:41:08 -04:00
31 lines
1.5 KiB
PHP
31 lines
1.5 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'] = 'பூலியன்';
|
|
$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'] = 'Null';
|
|
$lang['ut_notes'] = 'குறிப்புகள்';
|