diff --git a/resources/lang/da-DK/validation.php b/resources/lang/da-DK/validation.php index 4c8a9a728..100398e03 100644 --- a/resources/lang/da-DK/validation.php +++ b/resources/lang/da-DK/validation.php @@ -31,63 +31,63 @@ return [ 'array' => ':attribute skal være et array.', 'before' => ':attribute skal være før den :date.', 'between' => [ - 'numeric' => ':attribute skal være mellem :min og :max.', - 'file' => ':attribute skal være mellem :min og :max kilobytes.', - 'string' => ':attribute skal være mellem :min og :max karakterer.', + 'numeric' => 'The :attribute must be between :min and :max.', + 'file' => 'The :attribute must be between :min and :max kilobytes.', + 'string' => 'The :attribute must be between :min and :max characters.', 'array' => ':attribute skal have mellem :min og :max emner.', ], - 'boolean' => ':attribute feltet skal være enten sandt eller falsk.', - 'confirmed' => ':attribute og bekræftelse er ikke ens.', - 'date' => ':attribute er ikke en gyldig dato.', - 'date_format' => ':attribute er ikke i formatet :format.', - 'different' => ':attribute og :other skal være forskellige.', - 'digits' => ':attribute skal være :digits cifre.', - 'digits_between' => ':attribute skal være mellem :min og :max cifre.', - 'email' => ':attribute skal være en gyldig email-adresse.', - 'exists' => ':attribute er ikke gyldig.', - 'distinct' => ':attribute feltet har en duplikeret værdi.', - 'filled' => ':attribute skal udfyldes.', + 'boolean' => 'The :attribute field must be true or false.', + 'confirmed' => 'The :attribute confirmation does not match.', + 'date' => 'The :attribute is not a valid date.', + 'date_format' => 'The :attribute does not match the format :format.', + 'different' => 'The :attribute and :other must be different.', + 'digits' => 'The :attribute must be :digits digits.', + 'digits_between' => 'The :attribute must be between :min and :max digits.', + 'email' => 'The :attribute must be a valid email address.', + 'exists' => 'The selected :attribute is invalid.', + 'distinct' => 'The :attribute field has a duplicate value.', + 'filled' => 'The :attribute field is required.', 'image' => ':attribute skal være et billede.', - 'in' => ':attribute er ikke gyldig.', - 'in_array' => ':attribute feltet findes ikke i :other.', - 'integer' => ':attribute skal være et heltal.', - 'ip' => ':attribute skal være en gyldig IP-adresse.', + 'in' => 'The selected :attribute is invalid.', + 'in_array' => 'The :attribute field does not exist in :other.', + 'integer' => 'The :attribute must be an integer.', + 'ip' => 'The :attribute must be a valid IP address.', 'json' => ':attribute skal være en gyldig JSON streng.', 'max' => [ - 'numeric' => ':attribute må ikke være større end :max.', - 'file' => ':attribute må ikke overstige :max kilobytes.', - 'string' => ':attribute må ikke være længere end :max karakterer.', + 'numeric' => 'The :attribute may not be greater than :max.', + 'file' => 'The :attribute may not be greater than :max kilobytes.', + 'string' => 'The :attribute may not be greater than :max characters.', 'array' => ':attribute må ikke have mere end :max emner.', ], - 'mimes' => ':attribute skal være en fil af typen: :values.', + 'mimes' => 'The :attribute must be a file of type: :values.', 'min' => [ - 'numeric' => ':attribute skal være mindst :min.', + 'numeric' => 'The :attribute must be at least :min.', 'file' => ':attribute skal være mindst :min kilobytes.', - 'string' => ':attribute skal være mindst :min karakterer.', - 'array' => ':attribute skal have mindst :min elementer.', + 'string' => 'The :attribute must be at least :min characters.', + 'array' => 'The :attribute must have at least :min items.', ], - 'not_in' => ':attribute er ikke gyldig.', - 'numeric' => ':attribute skal være et tal.', - 'present' => ':attribute feltet skal være til stede.', - 'regex' => 'Formatet af :attribute er ugyldigt.', - 'required' => ':attribute skal udfyldes.', - 'required_if' => ':attribute feltet er påkrævet når :other er :value.', + 'not_in' => 'The selected :attribute is invalid.', + 'numeric' => 'The :attribute must be a number.', + 'present' => 'The :attribute field must be present.', + 'regex' => 'The :attribute format is invalid.', + 'required' => 'The :attribute field is required.', + 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => ':attribute feltet er påkrævet, medmindre :other er i :values.', - 'required_with' => 'Feltet :attribute er krævet når :values eksisterer.', - 'required_with_all' => 'Feltet :attribute er krævet når :values eksisterer.', - 'required_without' => ':attribute feltet er påkrævet når :values ikke findes.', - 'required_without_all' => ':attribute er påkrævet når ingen af :values er defineret.', - 'same' => ':attribute og :other skal være éns.', + 'required_with' => 'The :attribute field is required when :values is present.', + 'required_with_all' => 'The :attribute field is required when :values is present.', + 'required_without' => 'The :attribute field is required when :values is not present.', + 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'same' => 'The :attribute and :other must match.', 'size' => [ - 'numeric' => ':attribute skal være :size.', + 'numeric' => 'The :attribute must be :size.', 'file' => ':attribute skal være :size kilobytes.', 'string' => ':attribute skal være :size karakterer.', - 'array' => ':attribute skal indeholde :size emner.', + 'array' => 'The :attribute must contain :size items.', ], - 'string' => ':attribute skal være en streng.', + 'string' => 'The :attribute must be a string.', 'timezone' => ':attribute skal være en gyldig zone.', 'unique' => ':attribute er allerede i brug.', - 'url' => 'Formatet af :attribute er ugyldigt.', + 'url' => 'The :attribute format is invalid.', /* |--------------------------------------------------------------------------