Projekt

Obecné

Profil

<?php defined('SYSPATH') or die('No direct access allowed.');

$lang = array
(
// Class errors
'error_format' => 'Your error message string must contain the string {message} .',
'invalid_rule' => 'Invalid validation rule used: %s',

// General errors
'unknown_error' => 'Unknown validation error while validating the %s field.',
'required' => 'Pole %s musí být vyplněno.',
'min_length' => 'Pole %s musí obsahovat min. %d znaků.',
'max_length' => 'Pole %s musí obsahovat max. %d znaků.',
'exact_length' => 'Pole %s musí obsahovat přesně %d znaků.',
'in_array' => 'Pole %s musí být vybráno ze seznamu.',
'matches' => 'Pole %s se musí shodovat s polem %s.',
'valid_url' => 'Pole %s musí obsahovat platnou URL.',
'valid_email' => 'Pole %s musí obsahovat platnou emailovou adresu.',
'valid_ip' => 'Pole %s musí obsahovat platnou IP adresu.',
'valid_type' => 'Pole %s musí obsahovat pouze %s.',
'range' => 'Pole %s musí být v definovaném rozsahu.',
'regex' => 'The %s field does not match accepted input.',
'depends_on' => 'The %s field depends on the %s field.',

// Upload errors
'user_aborted' => 'The %s file was aborted during upload.',
'invalid_type' => 'Soubor nemá povolený typ souboru.',
'max_size' => 'The %s file you uploaded was too large. The maximum size allowed is %s.',
'max_width' => 'The %s file you uploaded was too big. The maximum allowed width is %spx.',
'max_height' => 'The %s file you uploaded was too big. The maximum allowed height is %spx.',
'min_width' => 'The %s file you uploaded was too small. The minimum allowed width is %spx.',
'min_height' => 'The %s file you uploaded was too small. The minimum allowed height is %spx.',

// Field types
'alpha' => 'písmena abecedy',
'alpha_dash' => 'alphabetical, dash, and underscore',
'digit' => 'číslice',
'numeric' => 'číslo',
'gps' => 'Chybný formát GPS souřadnice',

'phone' => 'číslo ve středoevropském tvaru',
'suffix' => 'příponu',

'valid_suffix' => 'Přípona musí začínat lomítkem a musí končit lomítkem.',
);
(9-9/9)