| 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['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'] = '事务失败:执行回滚。';
|
|
|
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'] = '数据库发生错误。';
|