69 lines
4.6 KiB
PHP
69 lines
4.6 KiB
PHP
<?php
|
|
/**
|
|
* CodeIgniter
|
|
*
|
|
* An open source application development framework for PHP
|
|
*
|
|
* This content is released under the MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2014 - 2019, British Columbia Institute of Technology
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*
|
|
* @package CodeIgniter
|
|
* @author EllisLab Dev Team
|
|
* @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)
|
|
* @copyright Copyright (c) 2014 - 2019, British Columbia Institute of Technology (https://bcit.ca/)
|
|
* @license https://opensource.org/licenses/MIT MIT License
|
|
* @link https://codeigniter.com
|
|
* @since Version 1.0.0
|
|
* @filesource
|
|
*/
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
$lang['form_validation_required'] = '{field} -kenttä vaaditaan.';
|
|
$lang['form_validation_isset'] = '{field} -kentässä tulee olla arvo.';
|
|
$lang['form_validation_valid_email'] = '{field} -kentässä tulee olla kelvollinen sähköpostiosoite.';
|
|
$lang['form_validation_valid_emails'] = '{field} -kentän tulee sisältää vain kelvollisia sähköpostiosoitteita.';
|
|
$lang['form_validation_valid_url'] = '{field} -kentässä tulee olla kelvollinen URL osoite.';
|
|
$lang['form_validation_valid_ip'] = '{field} -kentässä tulee olla kelvollinen IP-osoite.';
|
|
$lang['form_validation_valid_base64'] = '{field} -kentässä tulee olla kelvollinen Base64-arvo.';
|
|
$lang['form_validation_min_length'] = '{field} -kentässä tulee olla vähintään {param} merkkiä.';
|
|
$lang['form_validation_max_length'] = '{field} -kentässä saa olla enintään {param} merkkiä.';
|
|
$lang['form_validation_exact_length'] = '{field} -kentän tulee olla täsmälleen {param} merkkiä.';
|
|
$lang['form_validation_alpha'] = '{field} -kentässä saa olla vain kirjaimia.';
|
|
$lang['form_validation_alpha_numeric'] = '{field} -kentässä saa olla vain kirjaimia ja numeroita.';
|
|
$lang['form_validation_alpha_numeric_spaces'] = '{field} -kentässä saa olla vain kirjaimia, numeroita ja välilyöntejä.';
|
|
$lang['form_validation_alpha_dash'] = '{field} -kentässä saa olla vain kirjaimia, numeroita, alaviivoja (_) ja väliviivoja (-).';
|
|
$lang['form_validation_numeric'] = '{field} -kentässä saa olla vain numeroita.';
|
|
$lang['form_validation_is_numeric'] = '{field} -kentässä saa olla vain numeroita.';
|
|
$lang['form_validation_integer'] = '{field} -kentän tulee olla kokonaisluku.';
|
|
$lang['form_validation_regex_match'] = '{field} -kenttä ei ole kelvollinen.';
|
|
$lang['form_validation_matches'] = '{field} -kenttä ei täsmää kentän {param} kanssa.';
|
|
$lang['form_validation_differs'] = '{field} -kentän tulee olla eri kuin kentän {param}.';
|
|
$lang['form_validation_is_unique'] = '{field} -kentän tulee olla yksilöllinen.';
|
|
$lang['form_validation_is_natural'] = '{field} -kentän tulee sisältää vain lukuja.';
|
|
$lang['form_validation_is_natural_no_zero'] = '{field} -kentän tulee olla vain luku mikä on suurempi kuin 0.';
|
|
$lang['form_validation_decimal'] = '{field} -kentässä tulee olla desimaali.';
|
|
$lang['form_validation_less_than'] = '{field} -kentässä tulee olla pienempi luku kuin {param}.';
|
|
$lang['form_validation_less_than_equal_to'] = '{field} -kentässä tulee olla pienempi tai yhtäsuuri luku kuin {param}.';
|
|
$lang['form_validation_greater_than'] = '{field} -kentässä tulee olla suurempi luku kuin {param}.';
|
|
$lang['form_validation_greater_than_equal_to'] = '{field} -kentässä suurempi tai yhtäsuuri luku kuin {param}.';
|
|
$lang['form_validation_error_message_not_set'] = 'Kentälle {field} ei löytynyt virheviestiä.';
|
|
$lang['form_validation_in_list'] = '{field} -kentässä tulee olla yksi näistä: {param}.';
|