-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunit_test_lang.php
More file actions
executable file
·31 lines (27 loc) · 915 Bytes
/
unit_test_lang.php
File metadata and controls
executable file
·31 lines (27 loc) · 915 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
26
27
28
29
30
31
<?php
/**
*
* @version 2.1.2
*
*/
$lang['ut_test_name'] = 'Nom Test';
$lang['ut_test_datatype'] = 'Type de données Test';
$lang['ut_res_datatype'] = 'Type de données attendu';
$lang['ut_result'] = 'Résultat';
$lang['ut_undefined'] = 'Nom Test indéfini';
$lang['ut_file'] = 'Nom du fichier';
$lang['ut_line'] = 'Numéro de ligne';
$lang['ut_passed'] = 'Réussi';
$lang['ut_failed'] = 'Échec';
$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'] = 'Resource';
$lang['ut_null'] = 'Null';
$lang['ut_notes'] = 'Notes';
/* End of file unit_test_lang.php */
/* Location: ./system/language/french/unit_test_lang.php */