first commit
This commit is contained in:
8
application/i18n/pl_PL/menu.php
Normal file
8
application/i18n/pl_PL/menu.php
Normal 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',
|
||||
);
|
||||
6
application/i18n/pl_PL/text.php
Normal file
6
application/i18n/pl_PL/text.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
||||
|
||||
$lang = array
|
||||
(
|
||||
|
||||
);
|
||||
39
application/i18n/pl_PL/user_form_errors.php
Normal file
39
application/i18n/pl_PL/user_form_errors.php
Normal 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.',
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user