|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
/*
|
|
* This file is part of open source system FreenetIS
|
|
* and it is released under GPLv3 licence.
|
|
*
|
|
* More info about licence can be found:
|
|
* http://www.gnu.org/licenses/gpl-3.0.html
|
|
*
|
|
* More info about project can be found:
|
|
* http://www.freenetis.org/
|
|
*
|
|
*/
|
|
|
|
$lang = array
|
|
(
|
|
'fee' => array
|
|
(
|
|
'numeric' => 'Only numbers are allowed.'
|
|
),
|
|
|
|
'from' => array
|
|
(
|
|
'date' => 'Invalid date format',
|
|
'bigger' => 'Date from haven\'t be bigger then date to.'
|
|
),
|
|
'to' => array
|
|
(
|
|
'date' => 'Invalid date format',
|
|
'minimal' => 'Minimal interval is one month.'
|
|
),
|
|
'type_id' => array
|
|
(
|
|
'collide' => 'Interval collides with other interval'
|
|
)
|
|
);
|