Files
projectsend/lang/ja/validation.php
ignacionelson 6e47d76ba6 ProjectSend 2.0.0
Client file sharing, rebuilt from the ground up: a private area per
client, resumable uploads, folders, groups and categories, sharing with
expiry dates and download limits, comments, file versions, an activity
log, a REST API, and sixteen languages.

This repository begins here. ProjectSend 2 was developed privately, and
that development history is not published — the previous generation
remains available, with its own history, at projectsend/legacy.

Free software under the GNU General Public License v2, or (at your
option) any later version.
2026-08-14 01:38:12 -03:00

289 lines
20 KiB
PHP

<?php
declare(strict_types=1);
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\')が使用できます。',
'any_of' => ':attributeは、有効ではありません。',
'array' => ':attributeには、配列を指定してください。',
'ascii' => ':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\'を指定してください。',
'can' => ':attributeに権限のない値が含まれています。',
'confirmed' => ':attributeと:attribute確認が一致しません。',
'contains' => ':attributeに必須項目が含まれていません。',
'current_password' => 'パスワードが正しくありません。',
'date' => ':attributeは、正しい日付ではありません。',
'date_equals' => ':attributeは:dateと同じ日付を入力してください。',
'date_format' => ':attributeの形式が\':format\'と一致しません。',
'decimal' => ':attributeは、小数点以下が:decimalである必要があります。',
'declined' => ':attributeを拒否する必要があります。',
'declined_if' => ':otherが:valueの場合、:attributeを拒否する必要があります。',
'different' => ':attributeと:otherには、異なるものを指定してください。',
'digits' => ':attributeは、:digits桁にしてください。',
'digits_between' => ':attributeは、:min桁から:max桁にしてください。',
'dimensions' => ':attributeの画像サイズが無効です',
'distinct' => ':attributeの値が重複しています。',
'doesnt_contain' => ':attributeには、次のいずれも含めてはなりません: :values。',
'doesnt_end_with' => ':attributeの終わりは「:values」以外である必要があります。',
'doesnt_start_with' => ':attributeの始まりは「:values」以外である必要があります。',
'email' => ':attributeは、有効なメールアドレス形式で指定してください。',
'encoding' => ':attributeは、:encodingでエンコードされている必要があります。',
'ends_with' => ':attributeの終わりは「:values」である必要があります。',
'enum' => '選択した :attributeは 無効です。',
'exists' => '選択された:attributeは、有効ではありません。',
'extensions' => ':attribute には、次のいずれかの拡張子が必要です: :values',
'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文字以上である必要があります。',
],
'hex_color' => ':attributeは、有効な16進数カラーコードを指定してください。',
'image' => ':attributeには、画像を指定してください。',
'in' => '選択された:attributeは、有効ではありません。',
'in_array' => ':attributeが:otherに存在しません。',
'in_array_keys' => ':attributeには、次のいずれかのキーを少なくとも1つ含める必要があります: :values。',
'integer' => ':attributeには、整数を指定してください。',
'ip' => ':attributeには、有効なIPアドレスを指定してください。',
'ipv4' => ':attributeはIPv4アドレスを指定してください。',
'ipv6' => ':attributeはIPv6アドレスを指定してください。',
'json' => ':attributeには、有効なJSON文字列を指定してください。',
'list' => ':attribute フィールドはリストでなければなりません。',
'lowercase' => ':attributeは、小文字で入力してください。',
'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文字以下である必要があります。',
],
'max_digits' => ':attributeは、:max桁以下の数字である必要があります。',
'mimes' => ':attributeには、以下のファイルタイプを指定してください。:values',
'mimetypes' => ':attributeには、以下のファイルタイプを指定してください。:values',
'min' => [
'array' => ':attributeの項目数は、:min個以上にしてください。',
'file' => ':attributeには、:min KB以上のファイルを指定してください。',
'numeric' => ':attributeには、:min以上の数値を指定してください。',
'string' => ':attributeの文字数は、:min文字以上である必要があります。',
],
'min_digits' => ':attributeは、:min桁以上の数字である必要があります。',
'missing' => ':attribute を入力する必要はありません。',
'missing_if' => ':other が :value の場合、:attribute を入力する必要はありません。',
'missing_unless' => ':other が :value でない限り、:attribute をは入力する必要はありません。',
'missing_with' => ':values が存在する場合、:attribute をは入力する必要はありません。',
'missing_with_all' => ':values が存在する場合、:attribute をは入力する必要はありません。',
'multiple_of' => ':attributeは:valueの倍数である必要があります',
'not_in' => '選択された:attributeは、有効ではありません。',
'not_regex' => ':attributeの形式が正しくありません。',
'numeric' => ':attributeには、数値を指定してください。',
'password' => [
'letters' => ':attributeは文字を1文字以上含める必要があります。',
'mixed' => ':attributeは大文字と小文字をそれぞれ1文字以上含める必要があります。',
'numbers' => ':attributeは数字を1文字以上含める必要があります。',
'symbols' => ':attributeは記号を1文字以上含める必要があります。',
'uncompromised' => ':attributeは情報漏洩した可能性があります。他の:attributeを選択してください。',
],
'present' => ':attributeが存在している必要があります。',
'present_if' => ':other が :value の場合、:attributeが存在する必要があります。',
'present_unless' => ':other が :value でない限り、:attributeが存在する必要があります。',
'present_with' => ':values が存在する場合は、:attributeも存在する必要があります。',
'present_with_all' => ':values が存在する場合は、:attributeが存在する必要があります。',
'prohibited' => ':attributeの入力は禁止されています。',
'prohibited_if' => ':otherが:valueの場合は、:attributeの入力が禁止されています。',
'prohibited_if_accepted' => ':otherが承認された場合、この項目の入力は禁止されています。',
'prohibited_if_declined' => ':otherが拒否された場合、この項目の入力は禁止されています。',
'prohibited_unless' => ':otherが:valuesでない限り、:attributeの入力は禁止されています。',
'prohibits' => ':otherが存在している場合、:attributeの入力は禁止されています。',
'regex' => ':attributeには、正しい形式を指定してください。',
'required' => ':attributeは必須項目です。',
'required_array_keys' => ':attributeには、:valuesのエントリを含める必要があります。',
'required_if' => ':otherが:valueの場合、:attributeを指定してください。',
'required_if_accepted' => ':otherを承認した場合、:attributeは必須項目です。',
'required_if_declined' => ':otherを拒否した場合、: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には、有効なタイムゾーンを指定してください。',
'ulid' => ':attributeは、有効なULIDである必要があります。',
'unique' => '指定の:attributeは既に使用されています。',
'uploaded' => ':attributeのアップロードに失敗しました。',
'uppercase' => ':attributeは、大文字で入力してください。',
'url' => ':attributeは、有効なURL形式で指定してください。',
'uuid' => ':attributeは、有効なUUIDである必要があります。',
'attributes' => [
'address' => '住所',
'affiliate_url' => 'アフィリエイトURL',
'age' => '年齢',
'amount' => '金額',
'announcement' => 'アナウンス',
'area' => 'エリア',
'audience_prize' => '観客賞',
'audience_winner' => '観客賞受賞者',
'available' => '利用可能',
'birthday' => '誕生日',
'body' => '本文',
'city' => '市',
'color' => '色',
'company' => '会社',
'compilation' => '編集',
'concept' => 'コンセプト',
'conditions' => '条件',
'content' => 'コンテンツ',
'contest' => 'コンテスト',
'country' => '国',
'cover' => 'カバー',
'created_at' => '作成日',
'creator' => 'クリエーター',
'currency' => '通貨',
'current_password' => '現在のパスワード',
'customer' => 'お客様',
'date' => '日付',
'date_of_birth' => '生年月日',
'dates' => '日付',
'day' => '日',
'deleted_at' => '削除日',
'description' => '説明',
'display_type' => '表示タイプ',
'district' => '地区',
'duration' => '期間',
'email' => 'メール',
'excerpt' => '抜粋',
'filter' => 'フィルタ',
'finished_at' => '終了日',
'first_name' => '名',
'gender' => '性別',
'grand_prize' => '大賞',
'group' => 'グループ',
'hour' => '時',
'image' => '画像',
'image_desktop' => 'デスクトップ画像',
'image_main' => 'メイン画像',
'image_mobile' => 'モバイル画像',
'images' => '画像',
'is_audience_winner' => '観客賞受賞者',
'is_hidden' => '非表示中',
'is_subscribed' => 'サブスクライブ済',
'is_visible' => '表示中',
'is_winner' => '受賞者',
'items' => 'アイテム',
'key' => '鍵',
'last_name' => '姓',
'lesson' => 'レッスン',
'line_address_1' => '住所1行目',
'line_address_2' => '住所2行目',
'login' => 'ログイン',
'message' => 'メッセージ',
'middle_name' => 'ミドルネーム',
'minute' => '分',
'mobile' => 'モバイル',
'month' => '月',
'name' => '名前',
'national_code' => '国コード',
'number' => '番号',
'password' => 'パスワード',
'password_confirmation' => 'パスワードの確認',
'phone' => '電話番号',
'photo' => '写真',
'portfolio' => 'ポートフォリオ',
'postal_code' => '郵便番号',
'preview' => 'プレビュー',
'price' => '価格',
'product_id' => '製品番号',
'product_uid' => '製品UID',
'product_uuid' => '製品UUID',
'promo_code' => 'プロモーションコード',
'province' => '都道府県',
'quantity' => '量',
'reason' => '理由',
'recaptcha_response_field' => 'reCAPTCHAの応答欄',
'referee' => '審判',
'referees' => '審判',
'region' => '地域',
'reject_reason' => '拒否理由',
'remember' => 'ログイン状態を保持',
'restored_at' => '復元日',
'result_text_under_image' => '画像下の結果テキスト',
'role' => 'ロール',
'rule' => 'ルール',
'rules' => 'ルール',
'second' => '秒',
'sex' => '性別',
'shipment' => '発送',
'short_text' => '短いテキスト',
'size' => 'サイズ',
'skills' => 'スキル',
'slug' => 'スラッグ',
'specialization' => '専門化',
'started_at' => '開始日',
'state' => '状態',
'status' => 'ステータス',
'street' => '町名・番地',
'student' => '生徒',
'subject' => '課題',
'tag' => 'タグ',
'tags' => 'タグ',
'teacher' => '先生',
'terms' => '利用規約',
'test_description' => 'テスト内容',
'test_locale' => 'テストロケール',
'test_name' => 'テスト名',
'text' => 'テキスト',
'time' => '時間',
'title' => 'タイトル',
'type' => 'タイプ',
'updated_at' => '更新日',
'user' => 'ユーザー',
'username' => 'ユーザー名',
'value' => '値',
'winner' => '受賞者',
'work' => '仕事',
'year' => '年',
],
];