mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 14:37:41 -07:00
Initial commit
This commit is contained in:
14
app/lang/en/app.php
Normal file
14
app/lang/en/app.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
Asatru PHP - English language file
|
||||
|
||||
Extend this with your phrases
|
||||
|
||||
Set variables with {variable-name}
|
||||
*/
|
||||
|
||||
return [
|
||||
'welcome' => 'Welcome to the Asatru PHP framework',
|
||||
'description' => 'You have successfully installed the Asatru PHP framework. You may now want to start developing your app. Consider the documentation located in /doc for help. Have fun with the framework!'
|
||||
];
|
20
app/lang/en/errors.php
Normal file
20
app/lang/en/errors.php
Normal 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}'
|
||||
];
|
Reference in New Issue
Block a user