mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-25 09:48:02 -05:00
31 lines
1.2 KiB
PHP
31 lines
1.2 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'] = 'Test Adı';
|
||
$lang['ut_test_datatype'] = 'Test Veri Türü';
|
||
$lang['ut_res_datatype'] = 'Beklenen Veri Türü';
|
||
$lang['ut_result'] = 'Sonuç';
|
||
$lang['ut_undefined'] = 'Belirsiz Test Adı';
|
||
$lang['ut_file'] = 'Dosya Adı';
|
||
$lang['ut_line'] = 'Satır Numarası';
|
||
$lang['ut_passed'] = 'Geçti';
|
||
$lang['ut_failed'] = 'Başarısız';
|
||
$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'] = 'Nesne';
|
||
$lang['ut_resource'] = 'Kaynak';
|
||
$lang['ut_null'] = 'Null';
|
||
$lang['ut_notes'] = 'Notlar';
|