<?php
/**
 * russian language file
 *
 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
 * @author     GiNeR <ginermail@gmail.com>
 */

// settings must be present and set appropriately for the language
$lang['encoding']   = 'utf-8';
$lang['direction']  = 'ltr';

// for admin plugins, the menu prompt to be displayed in the admin menu
// if set here, the plugin doesn't need to override the getMenuText() method
$lang['menu'] = 'Contact Form';

// custom language strings for the plugin
$lang["field"] = 'Поле';
$lang["value"] = 'Значение';
$lang["name"] = 'Ваше имя';
$lang["email"] = 'Ваш email';
$lang["subject"] = 'Тема';
$lang["content"] = 'Сообщение';
$lang["verify"] = 'Введите \'HUMAN\'';
$lang["contact"] = 'Отправить';

// error messages
$lang["error"] = 'Возникла неизвестная ошибка.';

//Setup VIM: ex: et ts=2 enc=utf-8 :
?>