-
Notifications
You must be signed in to change notification settings - Fork 20
/
profiler_lang.php
32 lines (31 loc) · 1.37 KB
/
profiler_lang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
* System messages translation for CodeIgniter(tm)
*
* @author CodeIgniter community
* @copyright Copyright (c) 2014 - 2015, 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['profiler_database'] = '資料庫';
$lang['profiler_controller_info'] = '類別 / 方法';
$lang['profiler_benchmarks'] = '基準';
$lang['profiler_queries'] = '查詢';
$lang['profiler_get_data'] = 'GET 資料';
$lang['profiler_post_data'] = 'POST 資料';
$lang['profiler_uri_string'] = 'URI 字串';
$lang['profiler_memory_usage'] = '記憶體使用';
$lang['profiler_config'] = '設定值';
$lang['profiler_session_data'] = 'SESSION 資料';
$lang['profiler_headers'] = 'HTTP 標頭';
$lang['profiler_no_db'] = '當前沒有已經載入的資料庫Driver';
$lang['profiler_no_queries'] = '沒有查詢';
$lang['profiler_no_post'] = 'POST 資料不存在';
$lang['profiler_no_get'] = 'GET 資料不存在';
$lang['profiler_no_uri'] = 'URI 資料不存在';
$lang['profiler_no_memory'] = '無法取得記憶體使用資料';
$lang['profiler_no_profiles'] = '沒有 Profile 資料 - 全部的 Profiler 都已被關閉';
$lang['profiler_section_hide'] = '隱藏';
$lang['profiler_section_show'] = '顯示';
$lang['profiler_seconds'] = '秒';