| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
|
7 |
* @license http://opensource.org/licenses/MIT MIT License
|
|
|
8 |
* @link https://codeigniter.com
|
|
|
9 |
*/
|
|
|
10 |
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
11 |
|
|
|
12 |
$lang['profiler_database'] = '数据库';
|
|
|
13 |
$lang['profiler_controller_info'] = '类 / 方法';
|
|
|
14 |
$lang['profiler_benchmarks'] = '基准';
|
|
|
15 |
$lang['profiler_queries'] = '查询';
|
|
|
16 |
$lang['profiler_get_data'] = 'GET 数据';
|
|
|
17 |
$lang['profiler_post_data'] = 'POST 数据';
|
|
|
18 |
$lang['profiler_uri_string'] = 'URI 字符串';
|
|
|
19 |
$lang['profiler_memory_usage'] = '内存使用';
|
|
|
20 |
$lang['profiler_config'] = '设置值';
|
|
|
21 |
$lang['profiler_session_data'] = 'SESSION 数据';
|
|
|
22 |
$lang['profiler_headers'] = 'HTTP 头';
|
|
|
23 |
$lang['profiler_no_db'] = '当前没有已经载入的数据库驱动。 ';
|
|
|
24 |
$lang['profiler_no_queries'] = '运行,无查询。 ';
|
|
|
25 |
$lang['profiler_no_post'] = 'POST 数据不存在。';
|
|
|
26 |
$lang['profiler_no_get'] = 'GET 数据不存在。';
|
|
|
27 |
$lang['profiler_no_uri'] = 'URI 数据不存在。';
|
|
|
28 |
$lang['profiler_no_memory'] = '无法获得内存使用数据。';
|
|
|
29 |
$lang['profiler_no_profiles'] = '没有 Profile 数据 - 全部的 Profiler 都已被关闭。';
|
|
|
30 |
$lang['profiler_section_hide'] = '隐藏';
|
|
|
31 |
$lang['profiler_section_show'] = '显示';
|
|
|
32 |
$lang['profiler_seconds'] = '秒';
|