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.

33 lines
1.5 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['profiler_database'] = 'DATABASE';
  13. $lang['profiler_controller_info'] = 'CLASS/METHOD';
  14. $lang['profiler_benchmarks'] = 'BENCHMARKS';
  15. $lang['profiler_queries'] = 'QUERIES';
  16. $lang['profiler_get_data'] = 'GET DATA';
  17. $lang['profiler_post_data'] = 'POST DATA';
  18. $lang['profiler_uri_string'] = 'URI STRING';
  19. $lang['profiler_memory_usage'] = 'MEMORY USAGE';
  20. $lang['profiler_config'] = 'CONFIG VARIABLES';
  21. $lang['profiler_session_data'] = 'SESSION DATA';
  22. $lang['profiler_headers'] = 'HTTP HEADERS';
  23. $lang['profiler_no_db'] = '데이터베이스를 사용하지 않고 있습니다.';
  24. $lang['profiler_no_queries'] = '실행된 쿼리가 없습니다.';
  25. $lang['profiler_no_post'] = 'No POST data exists';
  26. $lang['profiler_no_get'] = 'No GET data exists';
  27. $lang['profiler_no_uri'] = 'No URI data exists';
  28. $lang['profiler_no_memory'] = '메모리 정보를 확인할 수 없습니다.';
  29. $lang['profiler_no_profiles'] = 'No Profile data - 프로파일러 정보가 존재하지 않습니다.';
  30. $lang['profiler_section_hide'] = '감추기';
  31. $lang['profiler_section_show'] = '보기';
  32. $lang['profiler_seconds'] = '초';