397 lines
19 KiB
PHP
397 lines
19 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines contain the default error messages used by
|
|
| the validator class. Some of these rules have multiple versions such
|
|
| as the size rules. Feel free to tweak each of these messages.
|
|
|
|
|
*/
|
|
|
|
'accepted' => ':attributeを承認してください。',
|
|
'active_url' => ':attributeは、有効なURLではありません。',
|
|
'after' => ':attributeには、:date以降の日付を指定してください。',
|
|
'after_or_equal' => ':attributeには、:date以降もしくは同日時を指定してください。',
|
|
'alpha' => ':attributeには、アルファベッドのみ使用できます。',
|
|
'alpha_dash' => ":attributeには、英数字('A-Z','a-z','0-9')とハイフンと下線('-','_')が使用できます。",
|
|
'alpha_num' => ":attributeには、英数字('A-Z','a-z','0-9')が使用できます。",
|
|
'array' => ':attributeには、配列を指定してください。',
|
|
'before' => ':attributeには、:date以前の日付を指定してください。',
|
|
'before_or_equal' => ':attributeには、:date以前もしくは同日時を指定してください。',
|
|
'between' => [
|
|
'numeric' => ':attributeには、:minから、:maxまでの数字を指定してください。',
|
|
'file' => ':attributeには、:min KBから:max KBまでのサイズのファイルを指定してください。',
|
|
'string' => ':attributeは、:min文字から:max文字にしてください。',
|
|
'array' => ':attributeの項目は、:min個から:max個にしてください。',
|
|
],
|
|
'boolean' => ":attributeには、'true'か'false'を指定してください。",
|
|
'confirmed' => ':attributeと:attribute確認が一致しません。',
|
|
'date' => ':attributeは、正しい日付ではありません。',
|
|
'date_format' => ":attributeの形式は、':format'と合いません。",
|
|
'different' => ':attributeと:otherには、異なるものを指定してください。',
|
|
'digits' => ':attributeは、:digits桁にしてください。',
|
|
'digits_between' => ':attributeは、:min桁から:max桁にしてください。',
|
|
|
|
'dimensions' => ':attributeは、正しい縦横比ではありません。',
|
|
'distinct' => ':attributeに重複した値があります。',
|
|
'email' => ':attributeは、有効なメールアドレス形式で指定してください。',
|
|
'exists' => '選択された:attributeは、有効ではありません。',
|
|
'file' => ':attributeはファイルでなければいけません。',
|
|
'filled' => ':attributeは必須です。',
|
|
'gt' => [
|
|
'numeric' => 'The :attribute must be greater than :value.',
|
|
'file' => 'The :attribute must be greater than :value kilobytes.',
|
|
'string' => 'The :attribute must be greater than :value characters.',
|
|
'array' => 'The :attribute must have more than :value items.',
|
|
],
|
|
'gte' => [
|
|
'numeric' => 'The :attribute must be greater than or equal :value.',
|
|
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
|
|
'string' => 'The :attribute must be greater than or equal :value characters.',
|
|
'array' => 'The :attribute must have :value items or more.',
|
|
],
|
|
'image' => ':attributeには、画像を指定してください。',
|
|
'in' => '選択された:attributeは、有効ではありません。',
|
|
'in_array' => ':attributeは、:otherに存在しません。',
|
|
'integer' => ':attributeには、整数を指定してください。',
|
|
'ip' => ':attributeには、有効なIPアドレスを指定してください。',
|
|
'ipv4' => ':attributeはIPv4アドレスを指定してください。',
|
|
'ipv6' => ':attributeはIPv6アドレスを指定してください。',
|
|
'json' => ':attributeには、有効なJSON文字列を指定してください。',
|
|
'lt' => [
|
|
'numeric' => 'The :attribute must be less than :value.',
|
|
'file' => 'The :attribute must be less than :value kilobytes.',
|
|
'string' => 'The :attribute must be less than :value characters.',
|
|
'array' => 'The :attribute must have less than :value items.',
|
|
],
|
|
'lte' => [
|
|
'numeric' => 'The :attribute must be less than or equal :value.',
|
|
'file' => 'The :attribute must be less than or equal :value kilobytes.',
|
|
'string' => 'The :attribute must be less than or equal :value characters.',
|
|
'array' => 'The :attribute must not have more than :value items.',
|
|
],
|
|
'max' => [
|
|
'numeric' => ':attributeには、:max以下の数字を指定してください。',
|
|
'file' => ':attributeには、:max KB以下のファイルを指定してください。',
|
|
'string' => ':attributeは、:max文字以下にしてください。',
|
|
'array' => ':attributeの項目は、:max個以下にしてください。',
|
|
],
|
|
'mimes' => ':attributeには、:valuesタイプのファイルを指定してください。',
|
|
'mimetypes' => ':attributeには、:valuesタイプのファイルを指定してください。',
|
|
'min' => [
|
|
'numeric' => ':attributeには、:min以上の数字を指定してください。',
|
|
'file' => ':attributeには、:min KB以上のファイルを指定してください。',
|
|
'string' => ':attributeは、:min文字以上にしてください。',
|
|
'array' => ':attributeの項目は、:max個以上にしてください。',
|
|
],
|
|
'not_in' => '選択された:attributeは、有効ではありません。',
|
|
'not_regex' => 'The :attribute format is invalid.',
|
|
'numeric' => ':attributeには、数字を指定してください。',
|
|
'present' => ':attributeは、必ず存在しなくてはいけません。',
|
|
'regex' => ':attributeには、有効な正規表現を指定してください。',
|
|
'required' => ':attributeは、必ず指定してください。',
|
|
'required_if' => ':otherが:valueの場合、:attributeを指定してください。',
|
|
'required_unless' => ':otherが:value以外の場合、:attributeを指定してください。',
|
|
'required_with' => ':valuesが指定されている場合、:attributeも指定してください。',
|
|
'required_with_all' => ':valuesが全て指定されている場合、:attributeも指定してください。',
|
|
'required_without' => ':valuesが指定されていない場合、:attributeを指定してください。',
|
|
'required_without_all' => ':valuesが全て指定されていない場合、:attributeを指定してください。',
|
|
'same' => ':attributeと:otherが一致しません。',
|
|
'size' => [
|
|
'numeric' => ':attributeには、:sizeを指定してください。',
|
|
'file' => ':attributeには、:size KBのファイルを指定してください。',
|
|
'string' => ':attributeは、:size文字にしてください。',
|
|
'array' => ':attributeの項目は、:size個にしてください。',
|
|
],
|
|
'string' => ':attributeには、文字を指定してください。',
|
|
'timezone' => ':attributeには、有効なタイムゾーンを指定してください。',
|
|
'unique' => '指定の:attributeは既に使用されています。',
|
|
'uploaded' => ':attributeのアップロードに失敗しました。',
|
|
'url' => ':attributeは、有効なURL形式で指定してください。',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Custom Validation Language Lines
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here you may specify custom validation messages for attributes using the
|
|
| convention "attribute.rule" to name the lines. This makes it quick to
|
|
| specify a specific custom language line for a given attribute rule.
|
|
|
|
|
*/
|
|
|
|
'custom' => [
|
|
'attribute-name' => [
|
|
'rule-name' => 'custom-message',
|
|
],
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Custom Validation Attributes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The following language lines are used to swap attribute place-holders
|
|
| with something more reader friendly such as E-Mail Address instead
|
|
| of "email". This simply helps us make messages a little cleaner.
|
|
|
|
|
*/
|
|
|
|
'attributes' => [
|
|
'password' => 'パスワード',
|
|
'user_id' => '利用者ID',
|
|
'user_seq' => '利用者連番',
|
|
'member_id' => '会員ID',
|
|
'user_pass' => 'パスワード',
|
|
'user_manual_regist_flag' => '手動登録フラグ',
|
|
'user_mailing_flag' => '郵送必要フラグ',
|
|
'contract_number' => '旧定期契約番号',
|
|
'user_tag_serial' => 'タグシリアル',
|
|
'qr_code' => 'QRコード',
|
|
'user_aid' => 'AID',
|
|
'user_park_number' => '駐輪位置番号',
|
|
'user_place_qrid' => '居場所通知用QRID',
|
|
'user_phonetic' => 'フリガナ',
|
|
'user_gender' => '性別',
|
|
'user_birthdate' => '生年月日',
|
|
'user_age' => '年齢',
|
|
'user_mobile' => '携帯電話番号',
|
|
'user_homephone' => '自宅電話番号',
|
|
'user_primemail' => 'メールアドレス',
|
|
'user_submail' => '予備メールアドレス',
|
|
'user_regident_zip' => '居住所:郵便番号',
|
|
'user_regident_pre' => '居住所:都道府県',
|
|
'user_regident_city' => '居住所:市区群',
|
|
'user_regident_add' => '居住所:住所',
|
|
'user_relate_zip' => '関連住所:郵便番号',
|
|
'user_relate_pre' => '関連住所:都道府県',
|
|
'user_relate_city' => '関連住所:市区群',
|
|
'user_relate_add' => '関連住所:住所',
|
|
'user_workplace' => '勤務先名',
|
|
'user_school' => '学校',
|
|
'user_graduate' => '卒業予定',
|
|
'user_reduction' => '減免区分',
|
|
'user_idcard' => '本人確認書類',
|
|
'user_idcard_chk_flag' => '本人確認チェック済',
|
|
'user_chk_day' => '本人確認日時',
|
|
'user_chk_opeid' => '本人確認オペレータID',
|
|
'user_tag_issue' => 'タグ発行数',
|
|
'issue_permission' => 'タグ発行許可',
|
|
'user_quit_flag' => '退会フラグ',
|
|
'user_quitday' => '退会日',
|
|
'user_remarks' => '備考',
|
|
'created_at' => '登録日時',
|
|
'updated_at' => '更新日時',
|
|
'edit_oprator_id' => 'オペレータID',
|
|
'phone' => '電話番号',
|
|
'crime_prevention_registration_number' => '|防犯登録番号',
|
|
'note_search' => 'キーワードを入力して検索ボタンをクリックしてください。',
|
|
'add' => '加算',
|
|
'password_confirmation' => 'パスワード確認',
|
|
|
|
'black_list' => "ブラックリスト",
|
|
'ward_residents' => "区民",
|
|
'user_tag_serial_64' => "タグシリアル64進",
|
|
'photo_filename1' => '本人確認写真ファイル名1',
|
|
'photo_filename2' => '本人確認写真ファイル名2',
|
|
|
|
// SWA-56
|
|
//TODO 定期契約ID not found in database specs
|
|
|
|
|
|
// SWA-56
|
|
'contract_id' => '定期契約ID',
|
|
'contract_qr_id' => '定期契約QRID',
|
|
'user_name' => '利用者名',
|
|
'user_category_name' => '利用者分類',
|
|
'reserve_name' => '定期予約',
|
|
'reserve_id' => '定期予約ID',
|
|
'price_parkplace_name' => '駐輪場所',
|
|
'user_securitynum' => '防犯登録番号',
|
|
'reserve_date' => '予約日時',
|
|
'contract_reserve' => '予約移行フラグ',
|
|
'contract_created_at' => '契約日時',
|
|
'contract_updated_at' => '更新可能日',
|
|
'contract_cancelday' => '解約日時',
|
|
'contract_reduction' => '減免措置',
|
|
'contract_periods' => '開始日',
|
|
'contract_periode' => '終了日',
|
|
'contract_tax_name' => '消費税',
|
|
'contract_taxid' => '消費税ID',
|
|
'billing_amount' => '請求金額',
|
|
'contract_payment_day' => '授受日時',
|
|
'contract_money' => '授受金額',
|
|
'refunds' => '解約時返戻金',
|
|
'refunds_comment' => '返戻金付随情報',
|
|
'repayment_at' => '返金日',
|
|
'contact_guid' => '決済コード',
|
|
'contact_shop_code' => '店舗コード',
|
|
'contract_cvs_class' => '授受種別',
|
|
'contract_flag' => '授受フラグ',
|
|
'contract_seal_issue' => '発行回数',
|
|
'seal_reissue_request' => 'シール再発行リクエスト',
|
|
'contract_permission' => 'シール発行許可',
|
|
'contract_cancel_flag' => '解約フラグ',
|
|
'tag_qr_flag' => 'タグ/QRフラグ',
|
|
'tag_change_flag' => 'オペレータータグ変更フラグ',
|
|
'park_position' => '駐輪位置番号',
|
|
'contract_manual' => '手動通知',
|
|
'contract_notice' => '通知方法',
|
|
'contract_payment_number' => '受付番号',
|
|
// SWA-58
|
|
'price_parkplaceid' => '駐輪場所ID',
|
|
'prine_name' => '商品名',
|
|
'price_month' => '期間',
|
|
'park_id' => '駐輪場ID',
|
|
// 'park_id' => '駐輪場名',
|
|
'psection_id' => '車種区分ID',
|
|
'psection_subject' => '車種区分',
|
|
'price_ptypeid' => '駐輪分類ID',
|
|
'user_categoryid' => '利用者分類ID',
|
|
'pplace_id' => '駐輪車室ID',
|
|
'price' => '駐輪料金(税込)',
|
|
// SWA-59
|
|
'ope_id' => 'オペレータID',
|
|
// 'ope_id' => 'オペレータ名',
|
|
'ope_name' => 'オペレータ名',
|
|
'ope_type' => 'オペレータ種別',
|
|
'ope_mail' => 'メールアドレス',
|
|
'ope_phone' => '電話番号',
|
|
'ope_sendalart_que1' => 'キュー1アラート送信',
|
|
'ope_sendalart_que2' => 'キュー2アラート送信',
|
|
'ope_sendalart_que3' => 'キュー3アラート送信',
|
|
'ope_sendalart_que4' => 'キュー4アラート送信',
|
|
'ope_sendalart_que5' => 'キュー5アラート送信',
|
|
'ope_sendalart_que6' => 'キュー6アラート送信',
|
|
'ope_sendalart_que7' => 'キュー7アラート送信',
|
|
'ope_sendalart_que8' => 'キュー8アラート送信',
|
|
'ope_sendalart_que9' => 'キュー9アラート送信',
|
|
'ope_sendalart_que10' => 'キュー10アラート送信',
|
|
'ope_sendalart_que11' => 'キュー11アラート送信',
|
|
'ope_sendalart_que12' => 'キュー12アラート送信',
|
|
'ope_sendalart_que13' => 'キュー13アラート送信',
|
|
'ope_auth1' => '管理者権限付与',
|
|
'ope_auth2' => 'エリアマネージャー権限付与',
|
|
'ope_auth3' => 'エリアオペレーター権限付与',
|
|
'ope_auth4' => 'オペレーター権限付与',
|
|
'ope_auth5' => '操作権限5',
|
|
'ope_auth6' => '操作権限6',
|
|
//TODO 管理者権限付与 not found in database specs
|
|
|
|
//TODO エリアマネージャー権限付与. not found in database specs
|
|
|
|
//TODO エリアオペレーター権限付与. not found in database specs
|
|
|
|
//TODO オペレーター権限付与. not found in database specs
|
|
|
|
'ope_quit_flag' => '退職フラグ',
|
|
'ope_quitday' => '退職日',
|
|
// SWA-60
|
|
'city_id' => '市区',
|
|
'park_name' => '駐輪場名',
|
|
'park_ruby' => '駐輪場ふりがな',
|
|
'park_syllabary' => '駐輪場五十音',
|
|
'park_adrs' => '住所',
|
|
'park_close_flag' => '閉設フラグ',
|
|
'park_day' => '閉設日',
|
|
//TODO 現収容台数 not found in database specs
|
|
|
|
//TODO 標準収容台数 not found in database specs
|
|
|
|
//TODO 限界収容台数 not found in database specs
|
|
|
|
'alert_flag' => '残警告チェックフラグ',
|
|
'print_number' => '印字数',
|
|
'keep_alive' => '最新キープアライブ',
|
|
// SWA-62
|
|
//TODO 駐輪分類ID not found in database specs
|
|
|
|
'ptype_subject' => '駐輪分類名',
|
|
'ptype_remarks' => '備考',
|
|
// SWA-64
|
|
'ptype_id' => '利用者分類ID',
|
|
'usertype_subject' => '分類名',
|
|
'print_name' => '分類名',
|
|
'usertype_money' => '適用料率',
|
|
'usertype_remarks' => '備考',
|
|
// SWA-89
|
|
'settlement_transaction_id' => '決済トランザクションID',
|
|
'status' => 'ステータス',
|
|
'pay_code' => '支払いコード',
|
|
'corp_code' => '企業コード',
|
|
'mms_date' => 'MMS予約照会日時',
|
|
'cvs_code' => 'CVS本部コード',
|
|
'shop_code' => '店舗コード',
|
|
'pay_date' => '入金日時',
|
|
'settlement_amount' => '決済金額',
|
|
'stamp_flag' => '印紙貼付フラグ',
|
|
'md5_string' => 'MD5ハッシュ値',
|
|
// SWA-91
|
|
//TODO not found in database specs
|
|
'seal_issueid' => 'シール発行履歴ID',
|
|
'seal_userid' => '定期契約ID',
|
|
'seal_day' => '発行日',
|
|
'seal_number' => '発行回数',
|
|
'seal_reason' => '理由',
|
|
// SWA-94
|
|
'jurisdiction_parking_id' => "管轄駐輪場ID",
|
|
'jurisdiction_parking_name' => "管轄名",
|
|
|
|
//TODO ▼ not found in database specs
|
|
// SWA-95
|
|
|
|
'print_area_id' => '印刷範囲ID',
|
|
'print_area_name' => '印刷範囲名',
|
|
//TODO 駐輪場 not found in database specs
|
|
// SWA-79
|
|
'manager_id' => '駐輪場管理者ID',
|
|
'manager_name' => '駐輪場管理者名',
|
|
'manager_type' => '種別',
|
|
'manager_parkid' => '所属駐輪場',
|
|
'manager_device1' => '管理デバイス1_ID',
|
|
'manager_device2' => '管理デバイス2_ID',
|
|
'manager_mail' => 'メールアドレス',
|
|
'manager_tel' => '電話番号',
|
|
'manager_alert1' => 'アラート1送信',
|
|
'manager_alert2' => 'アラート2送信',
|
|
'manager_quit_flag' => '退職フラグ',
|
|
'manager_quitday' => '退職日',
|
|
|
|
// SWA-82
|
|
'que_id' => 'キューID',
|
|
'processing' => '処理リンク',
|
|
'que_class' => 'キュー種別',
|
|
'que_comment' => 'キューコメント',
|
|
'que_status' => 'キューステータス',
|
|
'que_status_comment' => 'キューステータスコメント',
|
|
|
|
// SWA-87
|
|
'city_name' => '市区名',
|
|
'regular_type_id' => '定期種別ID',
|
|
'regular_class_1' => '定期種別1',
|
|
'regular_class_2' => '定期種別2',
|
|
'regular_class_3' => '定期種別3',
|
|
'regular_class_6' => '定期種別6',
|
|
'regular_class_12' => '定期種別12',
|
|
'memo' => '備考',
|
|
// SWA-88
|
|
'city_id' => '市区ID',
|
|
'terms_revision' => 'リビジョン',
|
|
'terms_effective_date' => '契約内容有効日',
|
|
'terms_type' => '契約内容種別',
|
|
'terms_text' => '契約内容',
|
|
'use_flag' => '契約内容フラグ',
|
|
'terms_created_at' => '契約内容作成日',
|
|
'terms_updated_at' => '契約内容更新日',
|
|
//SWA-98
|
|
'contract_allowable_city_id' => '契約許容市区マスタID',
|
|
'contract_allowable_city_name' => '許容市区名',
|
|
'same_district_flag' => '隣接区フラグ',
|
|
|
|
],
|
|
];
|