-
Notifications
You must be signed in to change notification settings - Fork 2
/
db_lang.php
63 lines (62 loc) · 4.38 KB
/
db_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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
* CodeIgniter
*
* An open source application development framework for PHP
*
* This content is released under the MIT License (MIT)
*
* Copyright (c) 2014 - 2016, 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 - 2016, 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'] = 'バッチ更新のために投稿された 1つ以上の行にインデックスがありません。';
$lang['db_must_use_where'] = '"where"または"LIKE"句が指定されていないデータベースの更新は許可されません。';
$lang['db_del_must_use_where'] = '"where"句が指定されていない削除は許可されません。';
$lang['db_field_param_missing'] = 'フィールド名を取り出すには、テーブル名をパラメータで指定する必要があります。';
$lang['db_unsupported_function'] = 'この機能はお使いのデータベースでは利用できません。';
$lang['db_transaction_failure'] = 'トランザクションが失敗しました: ロールバックが実行されました。';
$lang['db_unable_to_drop'] = '指定したデータベースを削除できません。';
$lang['db_unsuported_feature'] = 'お使いのデータベースプラットフォームではサポートされない機能です。';
$lang['db_unsuported_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'] = 'データベースエラーが発生しました。';