BookStack/resources/lang
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
..
ar Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
de Merge branch 'master' into dropzone-timeout 2018-12-22 15:08:54 +00:00
de_informal Extended translations system for arrays & extension 2018-12-12 20:46:27 +00:00
en Added check for last admin on role change 2018-12-30 16:11:58 +00:00
es Format update 2018-12-24 12:41:42 +01:00
es_AR Merge branch 'master' into dropzone-timeout 2018-12-22 15:08:54 +00:00
fr Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
it Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
ja Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
kr Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
nl Update Dutch password_hint translation to correspond with validation rule 2019-03-06 17:10:15 +01:00
pl Merge branch 'master' into dropzone-timeout 2018-12-22 15:08:54 +00:00
pt_BR Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
ru Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
sk Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
sv Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
uk Add files via upload 2018-12-18 10:01:50 +02:00
zh_CN Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
zh_TW Added a default timeout of 60 seconds to dropzone. 2018-11-18 00:22:08 +05:30
check.php Added script to check translation files 2017-12-04 20:25:04 +00:00
format.php Made some further fixes to the formatting script 2018-12-16 14:04:04 +00:00