mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-28 19:21:05 -05:00
26 lines
914 B
PHP
26 lines
914 B
PHP
<?php
|
|
|
|
$lang['ut_test_name'] = 'Nom du Test';
|
|
$lang['ut_test_datatype'] = 'Type de données du Test';
|
|
$lang['ut_res_datatype'] = 'Type de données attendu';
|
|
$lang['ut_result'] = 'Résultat';
|
|
$lang['ut_undefined'] = 'Nom de Test non spécifié';
|
|
$lang['ut_file'] = 'Nom de Fichier';
|
|
$lang['ut_line'] = 'Numéro de Ligne';
|
|
$lang['ut_passed'] = 'Réussi';
|
|
$lang['ut_failed'] = 'Echoué';
|
|
$lang['ut_boolean'] = 'Booléen';
|
|
$lang['ut_integer'] = 'Entier';
|
|
$lang['ut_float'] = 'Flottant';
|
|
$lang['ut_double'] = 'Flottant'; // can be the same as float
|
|
$lang['ut_string'] = 'Chaîne';
|
|
$lang['ut_array'] = 'Tableau';
|
|
$lang['ut_object'] = 'Objet';
|
|
$lang['ut_resource'] = 'Ressource';
|
|
$lang['ut_null'] = 'Null';
|
|
$lang['ut_notes'] = 'Notes';
|
|
|
|
|
|
/* End of file unit_test_lang.php */
|
|
/* Location: ./system/language/fr/unit_test_lang.php */
|