mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-26 02:08:05 -05:00
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @author Mutasim Ridlo, S.Kom
|
|
* @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'] = 'Nama Uji';
|
|
$lang['ut_test_datatype'] = 'Uji Tipe Data';
|
|
$lang['ut_res_datatype'] = 'Tipe Data yang Diharapkan';
|
|
$lang['ut_result'] = 'Hasil';
|
|
$lang['ut_undefined'] = 'Nama Uji tidak Didefinisikan';
|
|
$lang['ut_file'] = 'Nama Berkas';
|
|
$lang['ut_line'] = 'Nomor Baris';
|
|
$lang['ut_passed'] = 'Lulus';
|
|
$lang['ut_failed'] = 'Gagal';
|
|
$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'] = 'Sumber Daya';
|
|
$lang['ut_null'] = 'Null';
|
|
$lang['ut_notes'] = 'Catatan'; |