You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
31 lines
1.1 KiB
<?php |
|
/** |
|
* System messages translation for CodeIgniter(tm) |
|
* |
|
* @author CodeIgniter community |
|
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/) |
|
* @copyright Pieter Krul |
|
* @license http://opensource.org/licenses/MIT MIT License |
|
* @link http://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';
|
|
|