Files
opensourcepos/application/language/catalan/unit_test_lang.php
2016-08-18 13:33:01 +02:00

32 lines
1.1 KiB
PHP

<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @author Ignasi Molsosa
* @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/)
* @license http://opensource.org/licenses/MIT MIT License
* @link http://codeigniter.com
*/
defined('BASEPATH') OR exit('No direct script access allowed');
$lang['ut_test_name'] = 'Nom del test';
$lang['ut_test_datatype'] = 'Tipús de dades del test';
$lang['ut_res_datatype'] = 'Tipús de dades esperades';
$lang['ut_result'] = 'Resultat';
$lang['ut_undefined'] = 'Nom de test indefinit';
$lang['ut_file'] = 'Nom de fitxer';
$lang['ut_line'] = 'Número de línia';
$lang['ut_passed'] = 'Correcte';
$lang['ut_failed'] = 'Fallat';
$lang['ut_boolean'] = 'Booleà';
$lang['ut_integer'] = 'Enter';
$lang['ut_float'] = 'Real';
$lang['ut_double'] = 'Real'; // can be the same as float
$lang['ut_string'] = 'Text';
$lang['ut_array'] = 'Array';
$lang['ut_object'] = 'Objecte';
$lang['ut_resource'] = 'Recurs';
$lang['ut_null'] = 'Nul';
$lang['ut_notes'] = 'Notes';