first commit

This commit is contained in:
2026-04-30 14:38:11 +02:00
commit e22bbde336
1994 changed files with 613950 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
'home' => 'Strona główna',
'contact' => 'Kontakt',
'news' => 'Aktualności',
);

View File

@@ -0,0 +1,6 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
$lang = array
(
);

View File

@@ -0,0 +1,39 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
$lang = array
(
'username' => Array
(
'required' => 'The name cannot be blank.',
'length' => 'The name must be between three and twenty letters.',
'chars' => 'Only alphabetic characters are allowed.',
'exist' => 'The username exist',
'default' => 'Invalid Input.',
),
'password' => Array
(
'required' => 'You must supply a password.',
'pwd_check' => 'The password is not correct.',
'default' => 'Invalid Input.',
),
'password2' => Array
(
'required' => 'You must supply a password.',
'pwd_check' => 'The password is not correct.',
'default' => 'Invalid Input.',
),
'number' => Array
(
'required' => 'The number cannot be blank.',
'numeric' => 'Only numbers are allowed.',
'length' => 'The number must be between three and five numerals.',
'default' => 'Invalid Input.',
),
'email' => Array
(
'email' => 'The e-mail is invalid',
'length' => 'The e-mail lenght is invalid',
'exist' => 'The e-mail exist',
'default' => 'Invalid Input.',
),
);