kopia lustrzana https://github.com/magicbug/Cloudlog
32 wiersze
1.1 KiB
PHP
32 wiersze
1.1 KiB
PHP
<?php
|
|
/**
|
|
* System messages translation for CodeIgniter(tm)
|
|
*
|
|
* @author CodeIgniter community
|
|
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
* @copyright Pieter Krul
|
|
* @license http://opensource.org/licenses/MIT MIT License
|
|
* @link https://codeigniter.com
|
|
*/
|
|
defined('BASEPATH') OR exit('Directe toegang tot scripts is niet toegestaan');
|
|
|
|
$lang['ut_test_name'] = 'Naam test';
|
|
$lang['ut_test_datatype'] = 'Test datatype';
|
|
$lang['ut_res_datatype'] = 'Verwachte datatype';
|
|
$lang['ut_result'] = 'Resultaat';
|
|
$lang['ut_undefined'] = 'Naam test niet opgegeven';
|
|
$lang['ut_file'] = 'Bestandsnaam';
|
|
$lang['ut_line'] = 'Regelnummer';
|
|
$lang['ut_passed'] = 'In orde';
|
|
$lang['ut_failed'] = 'Mislukt';
|
|
$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'] = 'Bron';
|
|
$lang['ut_null'] = 'Null';
|
|
$lang['ut_notes'] = 'Notities';
|