| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
7 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
8 |
* @link https://codeigniter.com
|
|
|
9 |
*/
|
|
|
10 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
11 |
|
|
|
12 |
$lang['ut_test_name'] = 'Testnavn';
|
|
|
13 |
$lang['ut_test_datatype'] = 'Testdatatype';
|
|
|
14 |
$lang['ut_res_datatype'] = 'Forventet datatype';
|
|
|
15 |
$lang['ut_result'] = 'Resultat';
|
|
|
16 |
$lang['ut_undefined'] = 'Udefinert testnavn';
|
|
|
17 |
$lang['ut_file'] = 'Filnavn';
|
|
|
18 |
$lang['ut_line'] = 'Linjenummer';
|
|
|
19 |
$lang['ut_passed'] = 'Bestått';
|
|
|
20 |
$lang['ut_failed'] = 'Stryk';
|
|
|
21 |
$lang['ut_boolean'] = 'Boolsk';
|
|
|
22 |
$lang['ut_integer'] = 'Heltall';
|
|
|
23 |
$lang['ut_float'] = 'Float';
|
|
|
24 |
$lang['ut_double'] = 'Float'; // can be the same as float
|
|
|
25 |
$lang['ut_string'] = 'Streng';
|
|
|
26 |
$lang['ut_array'] = 'Matrise';
|
|
|
27 |
$lang['ut_object'] = 'Objekt';
|
|
|
28 |
$lang['ut_resource'] = 'Ressurs';
|
|
|
29 |
$lang['ut_null'] = 'Null';
|
|
|
30 |
$lang['ut_notes'] = 'Notater';
|