mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
113 lines
5.8 KiB
PHP
113 lines
5.8 KiB
PHP
|
<?php
|
||
|
|
||
|
return array(
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| 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
|
||
|
| such as the size rules. Feel free to tweak each of these messages.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
"accepted" => ":attribute muss akzeptiert werden.",
|
||
|
"active_url" => ":attribute ist keine gültige Internet-Adresse.",
|
||
|
"after" => ":attribute muss ein Datum nach dem :date sein.",
|
||
|
"alpha" => ":attribute darf nur aus Buchstaben bestehen.",
|
||
|
"alpha_dash" => ":attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen. Umlaute (ä, ö, ü) und Eszett (ß) sind nicht erlaubt.",
|
||
|
"alpha_num" => ":attribute darf nur aus Buchstaben und Zahlen bestehen.",
|
||
|
"array" => ":attribute muss ein Array sein.",
|
||
|
"before" => ":attribute muss ein Datum vor dem :date sein.",
|
||
|
"between" => array(
|
||
|
"numeric" => ":attribute muss zwischen :min & :max liegen.",
|
||
|
"file" => ":attribute muss zwischen :min & :max Kilobytes groß sein.",
|
||
|
"string" => ":attribute muss zwischen :min & :max Zeichen lang sein.",
|
||
|
"array" => ":attribute muss zwischen :min & :max Elemente haben.",
|
||
|
),
|
||
|
"confirmed" => ":attribute stimmt nicht mit der Bestätigung überein.",
|
||
|
"date" => ":attribute muss ein gültiges Datum sein.",
|
||
|
"date_format" => ":attribute entspricht nicht dem gültigen Format für :format.",
|
||
|
"different" => ":attribute und :other müssen sich unterscheiden.",
|
||
|
"digits" => ":attribute muss :digits Stellen haben.",
|
||
|
"digits_between" => ":attribute muss zwischen :min und :max Stellen haben.",
|
||
|
"email" => ":attribute Format ist ungültig.",
|
||
|
"exists" => "Der gewählte Wert für :attribute ist ungültig.",
|
||
|
"image" => ":attribute muss ein Bild sein.",
|
||
|
"in" => "Der gewählte Wert für :attribute ist ungültig.",
|
||
|
"integer" => ":attribute muss eine ganze Zahl sein.",
|
||
|
"ip" => ":attribute muss eine gültige IP-Adresse sein.",
|
||
|
"max" => array(
|
||
|
"numeric" => ":attribute darf maximal :max sein.",
|
||
|
"file" => ":attribute darf maximal :max Kilobytes groß sein.",
|
||
|
"string" => ":attribute darf maximal :max Zeichen haben.",
|
||
|
"array" => ":attribute darf nicht mehr als :max Elemente haben.",
|
||
|
),
|
||
|
"mimes" => ":attribute muss den Dateityp :values haben.",
|
||
|
"min" => array(
|
||
|
"numeric" => ":attribute muss mindestens :min sein.",
|
||
|
"file" => ":attribute muss mindestens :min Kilobytes groß sein.",
|
||
|
"string" => ":attribute muss mindestens :min Zeichen lang sein.",
|
||
|
"array" => ":attribute muss mindestens :min Elemente haben.",
|
||
|
),
|
||
|
"not_in" => "Der gewählte Wert für :attribute ist ungültig.",
|
||
|
"numeric" => ":attribute muss eine Zahl sein.",
|
||
|
"regex" => ":attribute Format ist ungültig.",
|
||
|
"required" => ":attribute muss ausgefüllt sein.",
|
||
|
"required_if" => ":attribute muss ausgefüllt sein wenn :other :value ist.",
|
||
|
"required_with" => ":attribute muss angegeben werden wenn :values ausgefüllt wurde.",
|
||
|
"required_with_all" => ":attribute muss ausgefüllt werden, wenn :values vorhanden ist.",
|
||
|
"required_without" => ":attribute muss angegeben werden wenn :values nicht ausgefüllt wurde.",
|
||
|
"required_without_all" => ":attribute muss angegeben werden wenn keines der Felder :values ausgefüllt wurde.",
|
||
|
"same" => ":attribute und :other müssen übereinstimmen.",
|
||
|
"size" => array(
|
||
|
"numeric" => ":attribute muss gleich :size sein.",
|
||
|
"file" => ":attribute muss :size Kilobyte groß sein.",
|
||
|
"string" => ":attribute muss :size Zeichen lang sein.",
|
||
|
"array" => ":attribute muss genau :size Elemente haben.",
|
||
|
),
|
||
|
"unique" => ":attribute ist schon vergeben.",
|
||
|
"url" => "Das Format von :attribute ist ungültig.",
|
||
|
|
||
|
"positive" => ":attribute muss größer als null sein.",
|
||
|
"has_credit" => "Der Kunde hat nicht genug Guthaben.",
|
||
|
"notmasked" => "Die Werte sind maskiert",
|
||
|
"less_than" => ':attribute muss weniger als :value sein',
|
||
|
"has_counter" => 'Der Wert muss {$counter} beinhalten',
|
||
|
"valid_contacts" => "Alle Kontakte müssen entweder einen Namen oder eine E-Mail Adresse haben",
|
||
|
"valid_invoice_items" => "Die Rechnung übersteigt den maximalen Betrag",
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| 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' => array(
|
||
|
'attribute-name' => array(
|
||
|
'rule-name' => 'custom-message',
|
||
|
),
|
||
|
),
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Custom Validation Attributes
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| The following language lines are used to swap attribute place-holders
|
||
|
| with something more reader friendly such as E-Mail Address instead
|
||
|
| of "email". This simply helps us make messages a little cleaner.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'attributes' => array(),
|
||
|
|
||
|
);
|