-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit_test_lang.php
More file actions
25 lines (22 loc) · 844 Bytes
/
unit_test_lang.php
File metadata and controls
25 lines (22 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
$lang['ut_test_name'] = 'Testname';
$lang['ut_test_datatype'] = 'Test-Datentyp ';
$lang['ut_res_datatype'] = 'Erwarteter Datentyp';
$lang['ut_result'] = 'Ergebnis';
$lang['ut_undefined'] = 'Undefinierter Testname';
$lang['ut_file'] = 'Dateiname';
$lang['ut_line'] = 'Zeilennummer';
$lang['ut_passed'] = 'Erfolgreich';
$lang['ut_failed'] = 'Fehlgeschlagen';
$lang['ut_boolean'] = 'Boolescher Wert';
$lang['ut_integer'] = 'Integer';
$lang['ut_float'] = 'Fliesskommazahl';
$lang['ut_double'] = 'Fliesskommazahl (Double)';
$lang['ut_string'] = 'String';
$lang['ut_array'] = 'Array';
$lang['ut_object'] = 'Objekt';
$lang['ut_resource'] = 'Ressource';
$lang['ut_null'] = 'Null';
$lang['ut_notes'] = 'Anmerkungen';
/* End of file unit_test_lang.php */
/* Location: ./system/language/german/unit_test_lang.php */