mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-06-15 02:57:28 -04: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'] = 'ટેસ્ટ Datatype';
|
|
$lang['ut_res_datatype'] = 'ઈચ્છિત 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'] = 'નોંધ';
|