1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/lang/nl/validation.php
David Bomba ba75a44eb8
Laravel 7.x Shift (#40)
* Adopt Laravel coding style

The Laravel framework adopts the PSR-2 coding style with some additions.
Laravel apps *should* adopt this coding style as well.

However, Shift allows you to customize the adopted coding style by
adding your own [PHP CS Fixer][1] `.php_cs` config to your project.

You may use [Shift's .php_cs][2] file as a base.

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200

* Shift bindings

PHP 5.5.9+ adds the new static `class` property which provides the fully qualified class name. This is preferred over using class name strings as these references are checked by the parser.

* Shift core files

* Shift to Throwable

* Add laravel/ui dependency

* Unindent vendor mail templates

* Shift config files

* Default config files

In an effort to make upgrading the constantly changing config files
easier, Shift defaulted them so you can review the commit diff for
changes. Moving forward, you should use ENV variables or create a
separate config file to allow the core config files to remain
automatically upgradeable.

* Shift Laravel dependencies

* Shift cleanup

* Upgrade to Laravel 7

Co-authored-by: Laravel Shift <shift@laravelshift.com>
2020-09-06 19:38:10 +10:00

118 lines
5.8 KiB
PHP

<?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
| such as the size rules. Feel free to tweak each of these messages.
|
*/
'accepted' => ':attribute moet geaccepteerd zijn.',
'active_url' => ':attribute is geen geldige URL.',
'after' => ':attribute moet een datum na :date zijn.',
'alpha' => ':attribute mag alleen letters bevatten.',
'alpha_dash' => ':attribute mag alleen letters, nummers, lage streep (_) en liggende streep (-) bevatten.',
'alpha_num' => ':attribute mag alleen letters en nummers bevatten.',
'array' => ':attribute moet geselecteerde elementen bevatten.',
'before' => ':attribute moet een datum voor :date zijn.',
'between' => [
'numeric' => ':attribute moet tussen :min en :max zijn.',
'file' => ':attribute moet tussen :min en :max kilobytes zijn.',
'string' => ':attribute moet tussen :min en :max tekens zijn.',
'array' => ':attribute moet tussen :min en :max items bevatten.',
],
'confirmed' => ':attribute bevestiging komt niet overeen.',
'count' => ':attribute moet precies :count geselecteerde elementen bevatten.',
'countbetween' => ':attribute moet tussen :min en :max geselecteerde elementen bevatten.',
'countmax' => ':attribute moet minder dan :max geselecteerde elementen bevatten.',
'countmin' => ':attribute moet minimaal :min geselecteerde elementen bevatten.',
'date' => ':attribute is een ongeldige datum.',
'date_format' => ':attribute moet een geldig datum formaat bevatten.',
'different' => ':attribute en :other moeten verschillend zijn.',
'digits' => ':attribute moet :digits cijfers bevatten.',
'digits_between' => ':attribute moet minimaal :min en maximaal :max cijfers bevatten.',
'email' => ':attribute is geen geldig e-mailadres.',
'exists' => ':attribute bestaat niet.',
'image' => ':attribute moet een afbeelding zijn.',
'in' => ':attribute is ongeldig.',
'integer' => ':attribute moet een getal zijn.',
'ip' => ':attribute moet een geldig IP-adres zijn.',
'match' => 'Het formaat van :attribute is ongeldig.',
'max' => [
'numeric' => ':attribute moet minder dan :max zijn.',
'file' => ':attribute moet minder dan :max kilobytes zijn.',
'string' => ':attribute moet minder dan :max tekens zijn.',
'array' => ':attribute mag maximaal :max items bevatten.',
],
'mimes' => ':attribute moet een bestand zijn van het bestandstype :values.',
'min' => [
'numeric' => ':attribute moet minimaal :min zijn.',
'file' => ':attribute moet minimaal :min kilobytes zijn.',
'string' => ':attribute moet minimaal :min tekens zijn.',
'array' => ':attribute moet minimaal :min items bevatten.',
],
'not_in' => 'Het geselecteerde :attribute is ongeldig.',
'numeric' => ':attribute moet een nummer zijn.',
'regex' => ':attribute formaat is ongeldig.',
'required' => ':attribute is verplicht.',
'required_if' => ':attribute is verplicht wanneer in het veld :other gekozen is voor :value.',
'required_with' => ':attribute is verplicht wanneer :values ingevuld is.',
'required_with_all' => ':attribute is verplicht i.c.m. :values',
'required_without' => ':attribute is verplicht als :values niet ingevuld is.',
'required_without_all' => ':attribute is verplicht als :values niet ingevuld zijn.',
'same' => ':attribute en :other moeten overeenkomen.',
'size' => [
'numeric' => ':attribute moet :size zijn.',
'file' => ':attribute moet :size kilobyte zijn.',
'string' => ':attribute moet :size tekens lang zijn.',
'array' => ':attribute moet :size items bevatten.',
],
'unique' => ':attribute is al in gebruik.',
'url' => ':attribute is geen geldige URL.',
'positive' => ':attribute moet groter zijn dan nul.',
'has_credit' => 'De klant heeft niet voldoende krediet.',
'notmasked' => 'De waarden zijn verborgen',
'less_than' => 'Het :attribute moet minder zijn dan :value',
'has_counter' => 'De waarde moet {$counter} bevatten',
'valid_contacts' => 'Alle contactpersonen moeten een e-mailadres of een naam hebben',
'valid_invoice_items' => 'De factuur overschrijd het maximale aantal',
/*
|--------------------------------------------------------------------------
| 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 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' => [],
];