1<?php
2/**
3 * russian language file
4 *
5 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author     GiNeR <ginermail@gmail.com>
7 */
8
9// settings must be present and set appropriately for the language
10$lang['encoding']   = 'utf-8';
11$lang['direction']  = 'ltr';
12
13// for admin plugins, the menu prompt to be displayed in the admin menu
14// if set here, the plugin doesn't need to override the getMenuText() method
15$lang['menu'] = 'Contact Form';
16
17// custom language strings for the plugin
18$lang["field"] = 'Поле';
19$lang["value"] = 'Значение';
20$lang["name"] = 'Ваше имя';
21$lang["email"] = 'Ваш email';
22$lang["subject"] = 'Тема';
23$lang["content"] = 'Сообщение';
24$lang["send"] = 'Отправить';
25
26// FIXME - provide translation:
27$lang["from"] = 'отправлено ';
28$lang["datetime"] = ' в %Y-%m-%d %H:%M';
29$lang["sent by"] = 'sent by';
30$lang["via"] = 'via DokuWiki at ';
31$lang["viewonline"] = 'view the message online at ';
32
33// error messages
34$lang["error"]["unknown"] = 'Mail not sent. Please contact the administrator.';
35$lang["error"]["name"] = 'Please enter a name. Should be at least 2 characters.';
36$lang["error"]["email"] = 'Please enter your email address. It must be valid.';
37$lang["error"]["content"] = 'Please add a comment. Should be at least 10 characters.';
38$lang["error"]["captcha"] = 'Mail not sent. You could not be verified as a human.';
39$lang["error"]["valid_name"] = 'Name has invalid input.';
40$lang["error"]["valid_email"] = 'Email address has invalid input.';
41$lang["error"]["valid_subject"] = 'Subject has invalid input.';
42$lang["error"]["valid_to"] = 'Destination address has invalid input.';
43$lang["error"]["valid_content"] = 'Comment has invalid input.';
44$lang["success"] = 'Mail sent successfully.';
45