Вход Регистрация
Файл: lang/zh-HK/validation.php
Строк: 97
<?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 here.
    |
    */

    
'accepted'             => '必須接受 :attribute。',
    
'active_url'           => ':attribute 並非一個有效的網址。',
    
'after'                => ':attribute 必須要晚於 :date。',
    
'after_or_equal'       => ':attribute 必須要等於 :date 或更晚。',
    
'alpha'                => ':attribute 只能以字母組成。',
    
'alpha_dash'           => ':attribute 只能以字母、數字、連接線(-)及底線(_)組成。',
    
'alpha_num'            => ':attribute 只能以字母及數字組成。',
    
'array'                => ':attribute 必須為陣列。',
    
'before'               => ':attribute 必須要早於 :date。',
    
'before_or_equal'      => ':attribute 必須要等於 :date 或更早。',
    
'between'              => [
        
'numeric' => ':attribute 必須介乎 :min 至 :max 之間。',
        
'file'    => ':attribute 必須介乎 :min 至 :max KB 之間。 ',
        
'string'  => ':attribute 必須介乎 :min 至 :max 個字符之間。',
        
'array'   => ':attribute: 必須有 :min 至 :max 個項目。',
    ],
    
'boolean'              => ':attribute 必須是布爾值。',
    
'confirmed'            => ':attribute 確認欄位的輸入並不相符。',
    
'date'                 => ':attribute 並非一個有效的日期。',
    
'date_equals'          => ':attribute 必須等於 :date。',
    
'date_format'          => ':attribute 與 :format 格式不相符。',
    
'different'            => ':attribute 與 :other 必須不同。',
    
'digits'               => ':attribute 必須是 :digits 位數字。',
    
'digits_between'       => ':attribute 必須介乎 :min 至 :max 位數字。',
    
'dimensions'           => ':attribute 圖片尺寸不正確。',
    
'distinct'             => ':attribute 已經存在。',
    
'email'                => ':attribute 必須是有效的電郵地址。',
    
'ends_with'            => ':attribute 結尾必須包含下列之一::values',
    
'exists'               => ':attribute 不存在。',
    
'file'                 => ':attribute 必須是文件。',
    
'filled'               => ':attribute 不能留空。',
    
'gt'                   => [
        
'numeric' => ':attribute 必須大於 :value。',
        
'file'    => ':attribute 必須大於 :value KB。',
        
'string'  => ':attribute 必須多於 :value 個字符。',
        
'array'   => ':attribute 必須多於 :value 個項目。',
    ],
    
'gte'                  => [
        
'numeric' => ':attribute 必須大於或等於 :value。',
        
'file'    => ':attribute 必須大於或等於 :value KB。',
        
'string'  => ':attribute 必須多於或等於 :value 個字符。',
        
'array'   => ':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'                   => [
        
'numeric' => ':attribute 必須小於 :value。',
        
'file'    => ':attribute 必須小於 :value KB。',
        
'string'  => ':attribute 必須少於 :value 個字符。',
        
'array'   => ':attribute 必須少於 :value 個項目。',
    ],
    
'lte'                  => [
        
'numeric' => ':attribute 必須小於或等於 :value。',
        
'file'    => ':attribute 必須小於或等於 :value KB。',
        
'string'  => ':attribute 必須少於或等於 :value 個字符。',
        
'array'   => ':attribute 必須少於或等於 :value 個項目。',
    ],
    
'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 不能小於 :min 個項目。',
    ],
    
'not_in'               => '所揀選的 :attribute 選項無效。',
    
'not_regex'            => ':attribute 的格式錯誤。',
    
'numeric'              => ':attribute 必須為一個數字。',
    
'present'              => ':attribute 必須存在。',
    
'regex'                => ':attribute 的格式錯誤。',
    
'required'             => ':attribute 不能留空。',
    
'required_if'          => '當 :other 是 :value 時 :attribute 不能留空。',
    
'required_unless'      => '當 :other 不是 :values 時 :attribute 不能留空。',
    
'required_with'        => '當 :values 出現時 :attribute 不能留空。',
    
'required_with_all'    => '當 :values 出現時 :attribute 不能留空。',
    
'required_without'     => '當 :values 留空時 :attribute field 不能留空。',
    
'required_without_all' => '當 :values 都不出現時 :attribute 不能留空。',
    
'same'                 => ':attribute 與 :other 必須相同。',
    
'size'                 => [
        
'numeric' => ':attribute 的大小必須是 :size。',
        
'file'    => ':attribute 的大小必須是 :size KB。',
        
'string'  => ':attribute 必須是 :size 個字符。',
        
'array'   => ':attribute 必須是 :size 個單元。',
    ],
    
'starts_with'          => ':attribute 必須以 :values 其中之一開頭。',
    
'string'               => ':attribute 必須是一個字符串',
    
'timezone'             => ':attribute 必須是一個正確的時區值。',
    
'unique'               => ':attribute 已經存在。',
    
'uploaded'             => ':attribute 上傳失敗。',
    
'url'                  => ':attribute 的格式錯誤。',
    
'uuid'                 => ':attribute 必須是有效的 UUID。',

    
/*
    |--------------------------------------------------------------------------
    | 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 our attribute placeholder
    | with something more reader friendly such as "E-Mail Address" instead
    | of "email". This simply helps us make our message more expressive.
    |
    */

    
'attributes' => [
        
'name'                  => '名稱',
        
'username'              => '使用者名',
        
'email'                 => '電郵',
        
'first_name'            => '名',
        
'last_name'             => '姓',
        
'password'              => '密碼',
        
'password_confirmation' => '確認密碼',
        
'city'                  => '城市',
        
'country'               => '國家',
        
'address'               => '地址',
        
'phone'                 => '電話',
        
'mobile'                => '手機',
        
'age'                   => '年齡',
        
'sex'                   => '性別',
        
'gender'                => '性別',
        
'day'                   => '天',
        
'month'                 => '月',
        
'year'                  => '年',
        
'hour'                  => '時',
        
'minute'                => '分',
        
'second'                => '秒',
        
'title'                 => '標題',
        
'content'               => '內容',
        
'description'           => '描述',
        
'excerpt'               => '摘要',
        
'date'                  => '日期',
        
'time'                  => '時間',
        
'available'             => '可用的',
        
'size'                  => '大小',
    ],
];
Онлайн: 0
Реклама