mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 03:13:45 +08:00
6f710225b5
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', ]); } ``` |
||
---|---|---|
.. | ||
ar | ||
de | ||
de_informal | ||
en | ||
es | ||
es_AR | ||
fr | ||
it | ||
ja | ||
kr | ||
nl | ||
pl | ||
pt_BR | ||
ru | ||
sk | ||
sv | ||
uk | ||
zh_CN | ||
zh_TW | ||
check.php | ||
format.php |