| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @author HyeongJoo Kwon
|
|
|
7 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://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 |
|
|
|
13 |
$lang['profiler_database'] = 'DATABASE';
|
|
|
14 |
$lang['profiler_controller_info'] = 'CLASS/METHOD';
|
|
|
15 |
$lang['profiler_benchmarks'] = 'BENCHMARKS';
|
|
|
16 |
$lang['profiler_queries'] = 'QUERIES';
|
|
|
17 |
$lang['profiler_get_data'] = 'GET DATA';
|
|
|
18 |
$lang['profiler_post_data'] = 'POST DATA';
|
|
|
19 |
$lang['profiler_uri_string'] = 'URI STRING';
|
|
|
20 |
$lang['profiler_memory_usage'] = 'MEMORY USAGE';
|
|
|
21 |
$lang['profiler_config'] = 'CONFIG VARIABLES';
|
|
|
22 |
$lang['profiler_session_data'] = 'SESSION DATA';
|
|
|
23 |
$lang['profiler_headers'] = 'HTTP HEADERS';
|
|
|
24 |
$lang['profiler_no_db'] = '데이터베이스를 사용하지 않고 있습니다.';
|
|
|
25 |
$lang['profiler_no_queries'] = '실행된 쿼리가 없습니다.';
|
|
|
26 |
$lang['profiler_no_post'] = 'No POST data exists';
|
|
|
27 |
$lang['profiler_no_get'] = 'No GET data exists';
|
|
|
28 |
$lang['profiler_no_uri'] = 'No URI data exists';
|
|
|
29 |
$lang['profiler_no_memory'] = '메모리 정보를 확인할 수 없습니다.';
|
|
|
30 |
$lang['profiler_no_profiles'] = 'No Profile data - 프로파일러 정보가 존재하지 않습니다.';
|
|
|
31 |
$lang['profiler_section_hide'] = '감추기';
|
|
|
32 |
$lang['profiler_section_show'] = '보기';
|
|
|
33 |
$lang['profiler_seconds'] = '초';
|