-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1bf3ac
commit 3aba05b
Showing
14 changed files
with
600 additions
and
508 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,64 @@ | ||
<?php | ||
/** | ||
* System messages translation for CodeIgniter(tm) | ||
* CodeIgniter | ||
* | ||
* @author CodeIgniter community | ||
* @copyright Copyright (c) 2014-2018, British Columbia Institute of Technology (http://bcit.ca/) | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @link https://codeigniter.com | ||
* An open source application development framework for PHP | ||
* | ||
* This content is released under the MIT License (MIT) | ||
* | ||
* Copyright (c) 2014 - 2017, British Columbia Institute of Technology | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
* | ||
* @package CodeIgniter | ||
* @author EllisLab Dev Team | ||
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/) | ||
* @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/) | ||
* @license http://opensource.org/licenses/MIT MIT License | ||
* @link https://codeigniter.com | ||
* @since Version 1.0.0 | ||
* @filesource | ||
*/ | ||
defined('BASEPATH') OR exit('No direct script access allowed'); | ||
|
||
$lang['db_invalid_connection_str'] = '无法根据提交的连接字符串确定数据库设置。 '; | ||
$lang['db_unable_to_connect'] = '无法使用提供的设置连接到数据库服务器。'; | ||
$lang['db_unable_to_select'] = '无法选择指定的数据库: %s'; | ||
$lang['db_unable_to_create'] = '无法创建指定的数据库:%s'; | ||
$lang['db_invalid_query'] = '提交的查询无效。'; | ||
$lang['db_must_set_table'] = '查询中必须设置要查询的表名。'; | ||
$lang['db_must_use_set'] = '更新数据请使用 Set 方法。'; | ||
$lang['db_must_use_index'] = '必须指定索引以匹配批量更新。'; | ||
$lang['db_batch_missing_index'] = '批量更新操作中一个或多个行缺少指定的索引。'; | ||
$lang['db_must_use_where'] = '更新操作必须包含 Where 条件。'; | ||
$lang['db_del_must_use_where'] = '删除操作必须包含 Where 或 Like 条件。'; | ||
$lang['db_field_param_missing'] = '获取字段需要指定表名。'; | ||
$lang['db_unsupported_function'] = '功能不被您当前使用的数据库支持。'; | ||
$lang['db_transaction_failure'] = '事务失败:执行回滚。'; | ||
$lang['db_unable_to_drop'] = '无法删除指定的数据库。'; | ||
$lang['db_unsupported_feature'] = '特性不被您当前使用的数据库支持。 '; | ||
$lang['db_unsupported_compression'] = '您选择的文件压缩格式不被服务器支持。 '; | ||
$lang['db_filepath_error'] = '提交的文件路径无法写入。 '; | ||
$lang['db_invalid_cache_path'] = '提交的缓存路径无效或无法写入。'; | ||
$lang['db_table_name_required'] = '操作需要指定表名。 '; | ||
$lang['db_column_name_required'] = '操作需要指定列名。 '; | ||
$lang['db_column_definition_required'] = '操作需要指定列定义。'; | ||
$lang['db_unable_to_set_charset'] = '无法设置字符集: %s'; | ||
$lang['db_error_heading'] = '数据库发生错误。'; | ||
$lang['db_invalid_connection_str'] = 'Nije moguće odrediti postavke baze podataka na temelju dostavljenog niza za povezivanje.'; | ||
$lang['db_unable_to_connect'] = 'Nije moguće povezati se s poslužiteljem baze podataka pomoću navedenih postavki.'; | ||
$lang['db_unable_to_select'] = 'Nije moguće odabrati navedenu bazu podataka: %s'; | ||
$lang['db_unable_to_create'] = 'Nije moguće stvoriti navedenu bazu podataka: %s'; | ||
$lang['db_invalid_query'] = 'Upit koji ste poslali nije važeći.'; | ||
$lang['db_must_set_table'] = 'Morate postaviti tablicu baze podataka koja će se koristiti s vašim upitom.'; | ||
$lang['db_must_use_set'] = 'Morate koristiti metodu "set" za ažuriranje unosa.'; | ||
$lang['db_must_use_index'] = 'Morate navesti indeks za usklađivanje za serije ažuriranja.'; | ||
$lang['db_batch_missing_index'] = 'Jedan ili više redaka poslanih za serije ažuriranja nedostaje navedeni indeks.'; | ||
$lang['db_must_use_where'] = 'Ažuriranja nisu dopuštena osim ako sadrže klauzulu "where".'; | ||
$lang['db_del_must_use_where'] = 'Brisanja nisu dopuštena osim ako sadrže klauzulu "where" ili "like".'; | ||
$lang['db_field_param_missing'] = 'Za dohvaćanje polja potrebno je ime tablice kao parametar.'; | ||
$lang['db_unsupported_function'] = 'Ova značajka nije dostupna za bazu podataka koju koristite.'; | ||
$lang['db_transaction_failure'] = 'Pogreška u transakciji: Izvršeno vraćanje.'; | ||
$lang['db_unable_to_drop'] = 'Nije moguće odbaciti navedenu bazu podataka.'; | ||
$lang['db_unsupported_feature'] = 'Nepodržana značajka platforme baze podataka koju koristite.'; | ||
$lang['db_unsupported_compression'] = 'Format kompresije datoteka koji ste odabrali nije podržan na vašem poslužitelju.'; | ||
$lang['db_filepath_error'] = 'Nije moguće pisati podatke na putanju datoteke koju ste poslali.'; | ||
$lang['db_invalid_cache_path'] = 'Putanja predmemorije koju ste poslali nije važeća ili se ne može pisati na nju.'; | ||
$lang['db_table_name_required'] = 'Za tu operaciju potrebno je ime tablice.'; | ||
$lang['db_column_name_required'] = 'Za tu operaciju potrebno je ime stupca.'; | ||
$lang['db_column_definition_required'] = 'Za tu operaciju potrebna je definicija stupca.'; | ||
$lang['db_unable_to_set_charset'] = 'Nije moguće postaviti skup znakova za klijentsku vezu: %s'; | ||
$lang['db_error_heading'] = 'Došlo je do pogreške u bazi podataka'; | ||
|
Oops, something went wrong.