123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- return array(
-
- "accepted" => ":attribute måste accepteras.",
- "active_url" => ":attribute är inte en giltig webbadress.",
- "after" => ":attribute måste vara ett datum efter den :date.",
- "alpha" => ":attribute får endast innehålla bokstäver.",
- "alpha_dash" => ":attribute får endast innehålla bokstäver, nummer och bindestreck.",
- "alpha_num" => ":attribute får endast innehålla bokstäver och nummer.",
- "array" => ":attribute måste ha valda element.",
- "before" => ":attribute måste vara ett datum innan den :date.",
- "between" => array(
- "numeric" => ":attribute måste vara ett nummer mellan :min och :max.",
- "file" => ":attribute måste vara mellan :min till :max kilobytes stor.",
- "string" => ":attribute måste innehålla :min till :max tecken.",
- ),
- "confirmed" => ":attribute bekräftelsen matchar inte.",
- "count" => ":attribute måste exakt ha :count valda element.",
- "countbetween" => ":attribute får endast ha :min till :max valda element.",
- "countmax" => ":attribute får max ha :max valda element.",
- "countmin" => ":attribute måste minst ha :min valda element.",
- "different" => ":attribute och :other får ej vara lika.",
- "email" => ":attribute formatet är ogiltig.",
- "exists" => "Det valda :attribute är ogiltigt.",
- "image" => ":attribute måste vara en bild.",
- "in" => "Det valda :attribute är ogiltigt.",
- "integer" => ":attribute måste vara en siffra.",
- "ip" => ":attribute måste vara en giltig IP-adress.",
- "match" => ":attribute formatet är ogiltig.",
- "max" => array(
- "numeric" => ":attribute får inte vara större än :max.",
- "file" => ":attribute får max vara :max kilobytes stor.",
- "string" => ":attribute får max innehålla :max tecken.",
- ),
- "mimes" => ":attribute måste vara en fil av typen: :values.",
- "min" => array(
- "numeric" => ":attribute måste vara större än :min.",
- "file" => ":attribute måste minst vara :min kilobytes stor.",
- "string" => ":attribute måste minst innehålla :min tecken.",
- ),
- "not_in" => "Det valda :attribute är ogiltigt.",
- "numeric" => ":attribute måste vara ett nummer.",
- "required" => ":attribute fältet är obligatoriskt.",
- "same" => ":attribute och :other måste vara likadana.",
- "size" => array(
- "numeric" => ":attribute måste vara :size.",
- "file" => ":attribute får endast vara :size kilobyte stor.",
- "string" => ":attribute måste innehålla :size tecken.",
- ),
- "unique" => ":attribute används redan.",
- "url" => ":attribute formatet är ogiltig",
-
- 'custom' => array(),
-
- 'attributes' => array(),
- );
|