Initial commit

This commit is contained in:
Daniel Brendel
2022-08-16 13:54:30 +02:00
commit 94353ac3c8
64 changed files with 32771 additions and 0 deletions

20
app/lang/en/errors.php Normal file
View File

@ -0,0 +1,20 @@
<?php
/*
Asatru PHP - English language file for errors
Modify and add error related messages here
Set variables with {variable-name}
*/
return [
'csrf_token_invalid' => 'CSRF token is missing or invalid',
'item_required' => 'Item {key} is required.',
'item_email' => 'Item {key} must be a valid E-Mail address',
'item_too_short' => 'Item length of {key} must be greater than {min}',
'item_too_large' => 'Item length of {key} must be less than {max}',
'item_datetime' => 'Item {key} is not a valid datetime object',
'item_number' => 'Item {key} is not a valid number',
'item_regex' => 'Item {key} does not fit pattern {pattern}'
];