Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 1 | <?php |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 2 | /** |
| 3 | * CodeIgniter |
| 4 | * |
Phil Sturgeon | 07c1ac8 | 2012-03-09 17:03:37 +0000 | [diff] [blame] | 5 | * An open source application development framework for PHP 5.2.4 or newer |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 6 | * |
| 7 | * NOTICE OF LICENSE |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame^] | 8 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 9 | * Licensed under the Open Software License version 3.0 |
Andrey Andreev | 34ed3f3 | 2012-06-08 00:24:54 +0300 | [diff] [blame^] | 10 | * |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 11 | * This source file is subject to the Open Software License (OSL 3.0) that is |
| 12 | * bundled with this package in the files license.txt / license.rst. It is |
| 13 | * also available through the world wide web at this URL: |
| 14 | * http://opensource.org/licenses/OSL-3.0 |
| 15 | * If you did not receive a copy of the license and are unable to obtain it |
| 16 | * through the world wide web, please send an email to |
| 17 | * licensing@ellislab.com so we can send you a copy immediately. |
| 18 | * |
| 19 | * @package CodeIgniter |
| 20 | * @author EllisLab Dev Team |
Greg Aker | 0defe5d | 2012-01-01 18:46:41 -0600 | [diff] [blame] | 21 | * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/) |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 22 | * @license http://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) |
| 23 | * @link http://codeigniter.com |
| 24 | * @since Version 1.0 |
| 25 | * @filesource |
| 26 | */ |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 27 | |
| 28 | $lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.'; |
| 29 | $lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.'; |
| 30 | $lang['db_unable_to_select'] = 'Unable to select the specified database: %s'; |
| 31 | $lang['db_unable_to_create'] = 'Unable to create the specified database: %s'; |
| 32 | $lang['db_invalid_query'] = 'The query you submitted is not valid.'; |
| 33 | $lang['db_must_set_table'] = 'You must set the database table to be used with your query.'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 34 | $lang['db_must_use_set'] = 'You must use the "set" method to update an entry.'; |
Derek Jones | 2a58e7a | 2010-03-02 17:53:38 -0600 | [diff] [blame] | 35 | $lang['db_must_use_index'] = 'You must specify an index to match on for batch updates.'; |
| 36 | $lang['db_batch_missing_index'] = 'One or more rows submitted for batch updating is missing the specified index.'; |
Derek Allard | 2067d1a | 2008-11-13 22:59:24 +0000 | [diff] [blame] | 37 | $lang['db_must_use_where'] = 'Updates are not allowed unless they contain a "where" clause.'; |
| 38 | $lang['db_del_must_use_where'] = 'Deletes are not allowed unless they contain a "where" or "like" clause.'; |
| 39 | $lang['db_field_param_missing'] = 'To fetch fields requires the name of the table as a parameter.'; |
| 40 | $lang['db_unsupported_function'] = 'This feature is not available for the database you are using.'; |
| 41 | $lang['db_transaction_failure'] = 'Transaction failure: Rollback performed.'; |
| 42 | $lang['db_unable_to_drop'] = 'Unable to drop the specified database.'; |
| 43 | $lang['db_unsuported_feature'] = 'Unsupported feature of the database platform you are using.'; |
| 44 | $lang['db_unsuported_compression'] = 'The file compression format you chose is not supported by your server.'; |
| 45 | $lang['db_filepath_error'] = 'Unable to write data to the file path you have submitted.'; |
| 46 | $lang['db_invalid_cache_path'] = 'The cache path you submitted is not valid or writable.'; |
| 47 | $lang['db_table_name_required'] = 'A table name is required for that operation.'; |
| 48 | $lang['db_column_name_required'] = 'A column name is required for that operation.'; |
| 49 | $lang['db_column_definition_required'] = 'A column definition is required for that operation.'; |
| 50 | $lang['db_unable_to_set_charset'] = 'Unable to set client connection character set: %s'; |
| 51 | $lang['db_error_heading'] = 'A Database Error Occurred'; |
| 52 | |
| 53 | /* End of file db_lang.php */ |
Derek Jones | a3ffbbb | 2008-05-11 18:18:29 +0000 | [diff] [blame] | 54 | /* Location: ./system/language/english/db_lang.php */ |