| 2418 |
lars |
1 |
<?php
|
|
|
2 |
/**
|
|
|
3 |
* System messages translation for CodeIgniter(tm)
|
|
|
4 |
*
|
|
|
5 |
* @author CodeIgniter community
|
|
|
6 |
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://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['db_invalid_connection_str'] = '無法根據送出的連接字串確定資料庫設定';
|
|
|
13 |
$lang['db_unable_to_connect'] = '無法使用提供的設定連接到資料庫伺服器';
|
|
|
14 |
$lang['db_unable_to_select'] = '無法選擇指定的資料庫:%s';
|
|
|
15 |
$lang['db_unable_to_create'] = '無法創建指定的資料庫:%s';
|
|
|
16 |
$lang['db_invalid_query'] = '送出的查詢無效';
|
|
|
17 |
$lang['db_must_set_table'] = '查詢中必須設定要查詢的表名';
|
|
|
18 |
$lang['db_must_use_set'] = '更新資料請使用 Set 方法';
|
|
|
19 |
$lang['db_must_use_index'] = '必須指定索引以符合批次更新';
|
|
|
20 |
$lang['db_batch_missing_index'] = '批次更新作業中一個或多個行缺少指定的索引';
|
|
|
21 |
$lang['db_must_use_where'] = '更新作業必須包含 Where 條件';
|
|
|
22 |
$lang['db_del_must_use_where'] = '刪除作業必須包含 Where 或 Like 條件';
|
|
|
23 |
$lang['db_field_param_missing'] = '取得欄位需要指定表名稱';
|
|
|
24 |
$lang['db_unsupported_function'] = '您目前使用的資料庫支援不支援此功能';
|
|
|
25 |
$lang['db_transaction_failure'] = '交易失敗:執行回溯 (Rollback performed)';
|
|
|
26 |
$lang['db_unable_to_drop'] = '無法刪除指定的資料庫';
|
|
|
27 |
$lang['db_unsupported_feature'] = '您目前使用的資料庫不支援此功能';
|
|
|
28 |
$lang['db_unsupported_compression'] = '伺服器不支援您選擇的檔案壓縮格式';
|
|
|
29 |
$lang['db_filepath_error'] = '送出的檔案路徑無法寫入';
|
|
|
30 |
$lang['db_invalid_cache_path'] = '送出的站純路徑無效或無法寫入';
|
|
|
31 |
$lang['db_table_name_required'] = '此操作需要指定表名稱';
|
|
|
32 |
$lang['db_column_name_required'] = '此操作需要指定列名稱';
|
|
|
33 |
$lang['db_column_definition_required'] = '此操作需要指定列定義';
|
|
|
34 |
$lang['db_unable_to_set_charset'] = '無法設定字元集:%s';
|
|
|
35 |
$lang['db_error_heading'] = '資料庫發生錯誤';
|