wyyl/resources/lang/ja/validation.php

199 lines
14 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'accepted' => ':attributeを承認してください。',
'accepted_if' => ':otherが:valueの場合、: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' => [
'array' => ':attributeの項目は、:min個から:max個にしてください。',
'file' => ':attributeには、:min KBから:max KBまでのサイズのファイルを指定してください。',
'numeric' => ':attributeには、:minから、:maxまでの数字を指定してください。',
'string' => ':attributeは、:min文字から:max文字にしてください。',
],
'boolean' => ':attributeには、\'true\'か\'false\'を指定してください。',
'confirmed' => ':attributeと:attribute確認が一致しません。',
'current_password' => 'パスワードが正しくありません。',
'date' => ':attributeは、正しい日付ではありません。',
'date_equals' => ':attributeは:dateに等しい日付でなければなりません。',
'date_format' => ':attributeの形式は、\':format\'と合いません。',
'declined' => ':attributeは 辞退する必要があります。',
'declined_if' => ':otherが:valueの場合、:attributeは拒否されなければならない。',
'different' => ':attributeと:otherには、異なるものを指定してください。',
'digits' => ':attributeは、:digits桁にしてください。',
'digits_between' => ':attributeは、:min桁から:max桁にしてください。',
'dimensions' => ':attributeの画像サイズが無効です',
'distinct' => ':attributeの値が重複しています。',
'email' => ':attributeは、有効なメールアドレス形式で指定してください。',
'ends_with' => ':attributeは、次のうちのいずれかで終わらなければなりません。: :values',
'enum' => '選択した :attributeは 無効です。',
'exists' => '選択された:attributeは、有効ではありません。',
'file' => ':attributeはファイルでなければいけません。',
'filled' => ':attributeは必須です。',
'gt' => [
'array' => ':attributeの項目数は、:value個より大きくなければなりません。',
'file' => ':attributeは、:value KBより大きくなければなりません。',
'numeric' => ':attributeは、:valueより大きくなければなりません。',
'string' => ':attributeは、:value文字より大きくなければなりません。',
],
'gte' => [
'array' => ':attributeの項目数は、:value個以上でなければなりません。',
'file' => ':attributeは、:value KB以上でなければなりません。',
'numeric' => ':attributeは、:value以上でなければなりません。',
'string' => ':attributeは、:value文字以上でなければなりません。',
],
'image' => ':attributeには、画像を指定してください。',
'in' => '選択された:attributeは、有効ではありません。',
'in_array' => ':attributeが:otherに存在しません。',
'integer' => ':attributeには、整数を指定してください。',
'ip' => ':attributeには、有効なIPアドレスを指定してください。',
'ipv4' => ':attributeはIPv4アドレスを指定してください。',
'ipv6' => ':attributeはIPv6アドレスを指定してください。',
'json' => ':attributeには、有効なJSON文字列を指定してください。',
'lt' => [
'array' => ':attributeの項目数は、:value個より小さくなければなりません。',
'file' => ':attributeは、:value KBより小さくなければなりません。',
'numeric' => ':attributeは、:valueより小さくなければなりません。',
'string' => ':attributeは、:value文字より小さくなければなりません。',
],
'lte' => [
'array' => ':attributeの項目数は、:value個以下でなければなりません。',
'file' => ':attributeは、:value KB以下でなければなりません。',
'numeric' => ':attributeは、:value以下でなければなりません。',
'string' => ':attributeは、:value文字以下でなければなりません。',
],
'mac_address' => ':attributeは有効なMACアドレスである必要があります。',
'max' => [
'array' => ':attributeの項目は、:max個以下にしてください。',
'file' => ':attributeには、:max KB以下のファイルを指定してください。',
'numeric' => ':attributeには、:max以下の数字を指定してください。',
'string' => ':attributeは、:max文字以下にしてください。',
],
'mimes' => ':attributeには、:valuesタイプのファイルを指定してください。',
'mimetypes' => ':attributeには、:valuesタイプのファイルを指定してください。',
'min' => [
'array' => ':attributeの項目は、:min個以上にしてください。',
'file' => ':attributeには、:min KB以上のファイルを指定してください。',
'numeric' => ':attributeには、:min以上の数字を指定してください。',
'string' => ':attributeは、:min文字以上にしてください。',
],
'multiple_of' => ':attributeは:valueの倍数でなければなりません',
'not_in' => '選択された:attributeは、有効ではありません。',
'not_regex' => ':attributeの形式が無効です。',
'numeric' => ':attributeには、数字を指定してください。',
'password' => 'パスワードが正しくありません。',
'present' => ':attributeが存在している必要があります。',
'prohibited' => ':attributeフィールドは禁止されています。',
'prohibited_if' => ':attributeフィールドは、:otherが:valueの場合は禁止されています。',
'prohibited_unless' => ':attributeフィールドは、:otherが:valuesでない限り禁止されています。',
'prohibits' => ':attribute フィールドは、:other が存在することを禁止します。',
'regex' => ':attributeには、有効な正規表現を指定してください。',
'required' => ':attributeは、必ず指定してください。',
'required_array_keys' => ':attributeフィールドには、valuesのエントリを含める必要があります。',
'required_if' => ':otherが:valueの場合、:attributeを指定してください。',
'required_unless' => ':otherが:values以外の場合、:attributeを指定してください。',
'required_with' => ':valuesが指定されている場合、:attributeも指定してください。',
'required_with_all' => ':valuesが全て指定されている場合、:attributeも指定してください。',
'required_without' => ':valuesが指定されていない場合、:attributeを指定してください。',
'required_without_all' => ':valuesが全て指定されていない場合、:attributeを指定してください。',
'same' => ':attributeと:otherが一致しません。',
'size' => [
'array' => ':attributeの項目は、:size個にしてください。',
'file' => ':attributeには、:size KBのファイルを指定してください。',
'numeric' => ':attributeには、:sizeを指定してください。',
'string' => ':attributeは、:size文字にしてください。',
],
'starts_with' => ':attributeは、次のいずれかで始まる必要があります。:values',
'string' => ':attributeには、文字を指定してください。',
'timezone' => ':attributeには、有効なタイムゾーンを指定してください。',
'unique' => '指定の:attributeは既に使用されています。',
'uploaded' => ':attributeのアップロードに失敗しました。',
'url' => ':attributeは、有効なURL形式で指定してください。',
'uuid' => ':attributeは、有効なUUIDでなければなりません。',
'attributes' => [
'address' => '住所',
'age' => '年',
'amount' => '額',
'area' => 'エリア',
'available' => '利用可能',
'birthday' => '誕生日',
'body' => 'ボディ',
'city' => '市',
'content' => 'コンテンツ',
'country' => '国',
'created_at' => '作成日',
'creator' => 'クリエーター',
'current_password' => '現在のパスワード',
'date' => '日付',
'date_of_birth' => '生年月日',
'day' => '日',
'deleted_at' => 'で削除',
'description' => '説明',
'district' => '地区',
'duration' => '期間',
'email' => 'Eメール',
'excerpt' => '抜粋',
'filter' => 'フィルタ',
'first_name' => '名',
'gender' => '性別',
'group' => 'グループ',
'hour' => '時間',
'image' => '画像',
'last_name' => '姓',
'lesson' => 'レッスン',
'line_address_1' => '回線アドレス1',
'line_address_2' => '回線アドレス2',
'message' => 'メッセージ',
'middle_name' => 'ミドルネーム',
'minute' => '分',
'mobile' => 'モバイル',
'month' => '月',
'name' => '名前',
'national_code' => '国コード',
'number' => '番号',
'password' => 'パスワード',
'password_confirmation' => 'パスワードの確認',
'phone' => '電話番号',
'photo' => '写真',
'postal_code' => '郵便番号',
'price' => '価格',
'province' => '都道府県',
'recaptcha_response_field' => 'Recaptcha応答フィールド',
'remember' => '覚えて',
'restored_at' => 'で復元',
'result_text_under_image' => '画像の下の結果テキスト',
'role' => 'ロール',
'second' => 'セカンド',
'sex' => 'ジェンダー',
'short_text' => '短いテキスト',
'size' => 'サイズ',
'state' => '状態',
'street' => 'ストリート',
'student' => 'スチューデント',
'subject' => '課題',
'teacher' => '先生',
'terms' => '利用規約',
'test_description' => 'テスト内容',
'test_locale' => 'テストロケール',
'test_name' => 'テスト名',
'text' => 'テキスト',
'time' => 'てま',
'title' => 'タイトル',
'updated_at' => '更新日',
'username' => 'ユーザー名',
'year' => '年',
],
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
];