Files
opensourcepos/system/language/tr/unit_test_lang.php
2016-04-04 23:43:13 +02:00

31 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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';