You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

7 years ago
  1. <?php
  2. /**
  3. * System messages translation for CodeIgniter(tm)
  4. *
  5. * @author CodeIgniter community
  6. * @author HyeongJoo Kwon
  7. * @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)
  8. * @license http://opensource.org/licenses/MIT MIT License
  9. * @link https://codeigniter.com
  10. */
  11. defined('BASEPATH') OR exit('No direct script access allowed');
  12. $lang['ut_test_name'] = 'Test Name';
  13. $lang['ut_test_datatype'] = 'Test Datatype';
  14. $lang['ut_res_datatype'] = 'Expected Datatype';
  15. $lang['ut_result'] = 'Result';
  16. $lang['ut_undefined'] = 'Undefined Test Name';
  17. $lang['ut_file'] = 'File Name';
  18. $lang['ut_line'] = 'Line Number';
  19. $lang['ut_passed'] = 'Passed';
  20. $lang['ut_failed'] = 'Failed';
  21. $lang['ut_boolean'] = 'Boolean';
  22. $lang['ut_integer'] = 'Integer';
  23. $lang['ut_float'] = 'Float';
  24. $lang['ut_double'] = 'Float'; // can be the same as float
  25. $lang['ut_string'] = 'String';
  26. $lang['ut_array'] = 'Array';
  27. $lang['ut_object'] = 'Object';
  28. $lang['ut_resource'] = 'Resource';
  29. $lang['ut_null'] = 'Null';
  30. $lang['ut_notes'] = 'Notes';