BookStack/resources/lang/nl
Jamie Schouten 6f710225b5
Update Dutch password_hint translation to correspond with validation rule
At the moment the translation says ```Minimaal 5 tekens``` which means your password should be at least 5 characters long. But a 5 character long password is not allowed by the validator. 

I think this was a translation error from the English one where it says ```Must be over 5 characters```. To make the Dutch translation correct the Dutch translation should be changed to ```Minimaal 6 tekens```.

```
    /**
     * Get a validator for an incoming registration request.
     *
     * @param  array $data
     * @return \Illuminate\Contracts\Validation\Validator
     */
    protected function validator(array $data)
    {
        return Validator::make($data, [
            'name' => 'required|max:255',
            'email' => 'required|email|max:255|unique:users',
            'password' => 'required|min:6',
        ]);
    }
```
2019-03-06 17:10:15 +01:00
..
activities.php Update dutch translations 2017-09-23 00:28:25 +02:00
auth.php Update Dutch password_hint translation to correspond with validation rule 2019-03-06 17:10:15 +01:00
common.php Merge branch 'BookStackApp-master' of git://github.com/OsmosysSoftware/BookStack into OsmosysSoftware-BookStackApp-master 2017-12-06 15:52:54 +00:00
components.php Started work on drawing revisions 2018-05-13 12:07:38 +01:00
entities.php Adds tests and few fixes. 2018-09-15 21:05:51 +05:30
errors.php Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
pagination.php Started with Dutch translation 2017-02-10 22:10:41 +01:00
passwords.php Started with Dutch translation 2017-02-10 22:10:41 +01:00
settings.php Merge branch 'disable-comments' of git://github.com/Abijeet/BookStack into Abijeet-disable-comments 2017-12-07 19:15:26 +00:00
validation.php Started with Dutch translation 2017-02-10 22:10:41 +01:00