xref: /dokuwiki/lib/plugins/config/lang/ru/lang.php (revision 1fb550bbd9bd4b616ae1f07b3732431c94c64af7)
18634734fSDenis Simakov<?php
28634734fSDenis Simakov/**
38634734fSDenis Simakov * Russian language file
48634734fSDenis Simakov *
58634734fSDenis Simakov * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
68634734fSDenis Simakov * @author     Denis Simakov <akinoame1@gmail.com>
78634734fSDenis Simakov */
88634734fSDenis Simakov
98634734fSDenis Simakov// for admin plugins, the menu prompt to be displayed in the admin menu
108634734fSDenis Simakov// if set here, the plugin doesn't need to override the getMenuText() method
118634734fSDenis Simakov$lang['menu']       = 'Настройки Вики';
128634734fSDenis Simakov
138634734fSDenis Simakov$lang['error']      = 'Настройки не были сохранены из-за ошибки в одном из значений. Пожалуйста, проверьте ваши изменения и попробуйте еще раз.
148634734fSDenis Simakov                       <br />Неправильные значения будут обведены красной рамкой.';
158634734fSDenis Simakov$lang['updated']    = 'Настройки успешно сохранены.';
168634734fSDenis Simakov$lang['nochoice']   = '(нет других вариантов)';
178634734fSDenis Simakov$lang['locked']     = 'Файл настройки недоступен для изменения. Если это не специально, <br />
188634734fSDenis Simakov                       убедитесь, что файл локальной настройки имеет правильное имя и права доступа.';
198634734fSDenis Simakov
20*1fb550bbSDenis Simakov/* --- Config Setting Headers --- */
21*1fb550bbSDenis Simakov$lang['_configuration_manager'] = 'Настройки Вики'; //same as heading in intro.txt
22*1fb550bbSDenis Simakov$lang['_header_dokuwiki'] = 'Параметры ДокуВики';
23*1fb550bbSDenis Simakov$lang['_header_plugin'] = 'Параметры плагинов';
24*1fb550bbSDenis Simakov$lang['_header_template'] = 'Параметры шаблонов';
25*1fb550bbSDenis Simakov$lang['_header_undefined'] = 'Прочие параметры';
26*1fb550bbSDenis Simakov
27*1fb550bbSDenis Simakov/* --- Config Setting Groups --- */
28*1fb550bbSDenis Simakov$lang['_basic'] = 'Основные параметры';
29*1fb550bbSDenis Simakov$lang['_display'] = 'Параметры отображения';
30*1fb550bbSDenis Simakov$lang['_authentication'] = 'Параметры аутентификации';
31*1fb550bbSDenis Simakov$lang['_anti_spam'] = 'Параметры блокировки спама';
32*1fb550bbSDenis Simakov$lang['_editing'] = 'Параметры правки';
33*1fb550bbSDenis Simakov$lang['_links'] = 'Параметры ссылок';
34*1fb550bbSDenis Simakov$lang['_media'] = 'Параметры медиа-файлов';
35*1fb550bbSDenis Simakov$lang['_advanced'] = 'Тонкая настройка';
36*1fb550bbSDenis Simakov$lang['_network'] = 'Параметры сети';
37*1fb550bbSDenis Simakov// The settings group name for plugins and templates can be set with
38*1fb550bbSDenis Simakov// plugin_settings_name and template_settings_name respectively. If one
39*1fb550bbSDenis Simakov// of these lang properties is not set, the group name will be generated
40*1fb550bbSDenis Simakov// from the plugin or template name and the localized suffix.
41*1fb550bbSDenis Simakov$lang['_plugin_sufix'] = 'Параметры плагина';
42*1fb550bbSDenis Simakov$lang['_template_sufix'] = 'Параметры шаблона';
43*1fb550bbSDenis Simakov
44*1fb550bbSDenis Simakov/* --- Undefined Setting Messages --- */
45*1fb550bbSDenis Simakov$lang['_msg_setting_undefined'] = 'Не найдены метаданные настроек.';
46*1fb550bbSDenis Simakov$lang['_msg_setting_no_class'] = 'Не найден класс настроек.';
47*1fb550bbSDenis Simakov$lang['_msg_setting_no_default'] = 'Не задано значение по умолчанию.';
48*1fb550bbSDenis Simakov
49*1fb550bbSDenis Simakov/* -------------------- Config Options --------------------------- */
50*1fb550bbSDenis Simakov
518634734fSDenis Simakov$lang['fmode']       = 'Права для создаваемых файлов';         //directory mask accordingly
528634734fSDenis Simakov$lang['dmode']       = 'Права для создаваемых директорий';    //directory mask accordingly
538634734fSDenis Simakov$lang['lang']        = 'Язык';           //your language
548634734fSDenis Simakov$lang['basedir']     = 'Корневая директория';     //absolute dir from serveroot - blank for autodetection
558634734fSDenis Simakov$lang['baseurl']     = 'Корневой адрес (URL)';           //URL to server including protocol - blank for autodetect
568634734fSDenis Simakov$lang['savedir']     = 'Директория для данных';     //where to store all the files
578634734fSDenis Simakov$lang['start']       = 'Имя стартовой страницы';    //name of start page
588634734fSDenis Simakov$lang['title']       = 'Название Вики';         //what to show in the title
598634734fSDenis Simakov$lang['template']    = 'Шаблон';           //see tpl directory
608634734fSDenis Simakov$lang['fullpath']    = 'Полный путь к документу';      //show full path of the document or relative to datadir only? 0|1
618634734fSDenis Simakov$lang['recent']      = 'Недавние изменения (кол-во)';     //how many entries to show in recent
628634734fSDenis Simakov$lang['breadcrumbs'] = 'Вы посетили (кол-во)';        //how many recent visited pages to show
638634734fSDenis Simakov$lang['youarehere'] = 'Показывать "Вы находитесь здесь"';     //show "You are here" navigation? 0|1
648634734fSDenis Simakov$lang['typography']  = 'Типографские символы';         //convert quotes, dashes and stuff to typographic equivalents? 0|1
658634734fSDenis Simakov$lang['htmlok']      = 'Разрешить HTML';//may raw HTML be embedded? This may break layout and XHTML validity 0|1
668634734fSDenis Simakov$lang['phpok']       = 'Разрешить PHP'; //may PHP code be embedded? Never do this on the internet! 0|1
678634734fSDenis Simakov$lang['dformat']     = 'Формат даты и времени';        //dateformat accepted by PHPs date() function
688634734fSDenis Simakov$lang['signature']   = 'Шаблон подписи';          //signature see wiki:langig for details
698634734fSDenis Simakov$lang['toptoclevel'] = 'Мин. уровень в содержании';      //Level starting with and below to include in AutoTOC (max. 5)
708634734fSDenis Simakov$lang['maxtoclevel'] = 'Макс. уровень в содержании';      //Up to which level include into AutoTOC (max. 5)
718634734fSDenis Simakov$lang['maxseclevel'] = 'Макс. уровень для правки';   //Up to which level create editable sections (max. 5)
728634734fSDenis Simakov$lang['camelcase']   = 'Использовать ВикиРегистр для ссылок';  //Use CamelCase for linking? (I don't like it) 0|1
73f8a94648SDenis Simakov$lang['deaccent']    = 'Транслитерация в именах страниц';    //convert accented chars to unaccented ones in pagenames?
748634734fSDenis Simakov$lang['useheading']  = 'Первый заголовок вместо имени';        //use the first heading in a page as its name
758634734fSDenis Simakov$lang['refcheck']    = 'Проверять ссылки на медиа-файлы';    //check for references before deleting media files
768634734fSDenis Simakov$lang['refshow']     = 'Показывать ссылок на медиа-файлы'; //how many references should be shown, 5 is a good value
778634734fSDenis Simakov$lang['allowdebug']  = 'Включить отладку (отключите!)';   //make debug possible, disable after install! 0|1
788634734fSDenis Simakov
798634734fSDenis Simakov$lang['usewordblock']= 'Блокировать спам по ключевым словам';  //block spam based on words? 0|1
808634734fSDenis Simakov$lang['indexdelay']  = 'Задержка перед индексированием'; //allow indexing after this time (seconds) default is 5 days
818634734fSDenis Simakov$lang['relnofollow'] = 'rel="nofollow" для внешних ссылок';         //use rel="nofollow" for external links?
828634734fSDenis Simakov$lang['mailguard']   = 'Кодировать адреса е-мэйл';  //obfuscate email addresses against spam harvesters?
838634734fSDenis Simakov
848634734fSDenis Simakov/* Authentication Options - read http://www.splitbrain.org/dokuwiki/wiki:acl */
858634734fSDenis Simakov$lang['useacl']      = 'Использовать списки прав доступа';                //Use Access Control Lists to restrict access?
868634734fSDenis Simakov$lang['openregister']= 'Открытая регистрация';          //Should users to be allowed to register?
878634734fSDenis Simakov$lang['autopasswd']  = 'Автогенерация паролей'; //autogenerate passwords and email them to user
888634734fSDenis Simakov$lang['resendpasswd']= 'Разрешить напоминание пароля';  //allow resend password function?
898634734fSDenis Simakov$lang['authtype']    = 'Механизм аутентификации'; //which authentication backend should be used
908634734fSDenis Simakov$lang['passcrypt']   = 'Метод шифрования пароля';    //Used crypt method (smd5,md5,sha1,ssha,crypt,mysql,my411)
918634734fSDenis Simakov$lang['defaultgroup']= 'Группа по умолчанию';          //Default groups new Users are added to
928634734fSDenis Simakov$lang['superuser']   = 'Администратор';              //The admin can be user or @group
938634734fSDenis Simakov$lang['profileconfirm'] = 'Пароль для изменения профиля';     //Require current password to langirm changes to user profile
948634734fSDenis Simakov
958634734fSDenis Simakov/* Advanced Options */
968634734fSDenis Simakov$lang['userewrite']  = 'Удобочитаемые адреса (URL)';             //this makes nice URLs: 0: off 1: .htaccess 2: internal
978634734fSDenis Simakov$lang['useslash']    = 'Использовать слэш';                 //use slash instead of colon? only when rewrite is on
98*1fb550bbSDenis Simakov$lang['usedraft']    = 'Автоматически сохранять черновик в время правки';
998634734fSDenis Simakov$lang['sepchar']     = 'Разделитель слов в имени страницы';  //word separator character in page names; may be a
1008634734fSDenis Simakov$lang['canonical']   = 'Полные канонические адреса (URL)';  //Should all URLs use full canonical http://... style?
1018634734fSDenis Simakov$lang['autoplural']  = 'Автоматическое мн. число';               //try (non)plural form of nonexisting files?
1028634734fSDenis Simakov$lang['usegzip']     = 'Использовать gzip (для истории правок)';      //gzip old revisions?
1038634734fSDenis Simakov$lang['cachetime']   = 'Время жизни кэш-файла (сек.)';  //maximum age for cachefile in seconds (defaults to a day)
1048634734fSDenis Simakov$lang['purgeonadd']  = 'Обнулять кэш при создании страницы';        //purge cache when a new file is added (needed for up to date links)
1058634734fSDenis Simakov$lang['locktime']    = 'Время блокировки страницы (сек.)';  //maximum age for lockfiles (defaults to 15 minutes)
1068634734fSDenis Simakov$lang['notify']      = 'Е-мэйл для извещений';      //send change info to this email (leave blank for nobody)
1078634734fSDenis Simakov$lang['mailfrom']    = 'Е-мэйл Вики (От:)';            //use this email when sending mails
108*1fb550bbSDenis Simakov$lang['gzip_output'] = 'Использовать gzip Content-Encoding для xhtml';
1098634734fSDenis Simakov$lang['gdlib']       = 'Версия GD Lib';              //the GDlib version (0, 1 or 2) 2 tries to autodetect
1108634734fSDenis Simakov$lang['im_convert']  = 'Путь к imagemagick';            //path to ImageMagicks convert (will be used instead of GD)
111*1fb550bbSDenis Simakov$lang['jpg_quality'] = 'Качество сжатия JPG (0-100)';
1128634734fSDenis Simakov$lang['spellchecker']= 'Включить проверку орфографии';         //enable Spellchecker (needs PHP >= 4.3.0 and aspell installed)
1138634734fSDenis Simakov$lang['subscribers'] = 'Разрешить подписку на изменения'; //enable change notice subscription support
1148634734fSDenis Simakov$lang['compress']    = 'Сжимать файлы CSS и javascript';  //Strip whitespaces and comments from Styles and JavaScript? 1|0
1158634734fSDenis Simakov$lang['hidepages']   = 'Скрыть страницы (рег. выражение)';      //Regexp for pages to be skipped from RSS, Search and Recent Changes
1168634734fSDenis Simakov$lang['send404']     = 'Посылать "HTTP404/Page Not Found"';    //Send a HTTP 404 status for non existing pages?
1178634734fSDenis Simakov$lang['sitemap']     = 'Карта сайта для Google (дни)';   //Create a google sitemap? How often? In days.
1188634734fSDenis Simakov
1198634734fSDenis Simakov$lang['rss_type']    = 'Тип RSS';             //type of RSS feed to provide, by default:
1208634734fSDenis Simakov$lang['rss_linkto']  = 'Ссылки в RSS';              //what page RSS entries link to:
121*1fb550bbSDenis Simakov$lang['rss_update']  = 'XML feed update interval (sec)';
1228634734fSDenis Simakov
1238634734fSDenis Simakov//Set target to use when creating links - leave empty for same window
1248634734fSDenis Simakov$lang['target____wiki']      = 'target для внутренних ссылок';
1258634734fSDenis Simakov$lang['target____interwiki'] = 'target для ссылок между Вики';
1268634734fSDenis Simakov$lang['target____extern']    = 'target для внешних ссылок';
1278634734fSDenis Simakov$lang['target____media']     = 'target для ссылок на медиа-файлы';
1288634734fSDenis Simakov$lang['target____windows']   = 'target для ссылок на сетевые каталоги';
1298634734fSDenis Simakov
1308634734fSDenis Simakov//Proxy setup - if your Server needs a proxy to access the web set these
1318634734fSDenis Simakov$lang['proxy____host'] = 'proxy - адрес';
1328634734fSDenis Simakov$lang['proxy____port'] = 'proxy - порт';
1338634734fSDenis Simakov$lang['proxy____user'] = 'proxy - имя пользователя';
1348634734fSDenis Simakov$lang['proxy____pass'] = 'proxy - пароль';
1358634734fSDenis Simakov$lang['proxy____ssl']  = 'proxy - ssl';
1368634734fSDenis Simakov
1378634734fSDenis Simakov/* Safemode Hack */
1388634734fSDenis Simakov$lang['safemodehack'] = 'Включить обход safemode';  //read http://wiki.splitbrain.org/wiki:safemodehack !
1398634734fSDenis Simakov$lang['ftp____host'] = 'ftp - адрес';
1408634734fSDenis Simakov$lang['ftp____port'] = 'ftp - порт';
1418634734fSDenis Simakov$lang['ftp____user'] = 'ftp - имя пользователя';
1428634734fSDenis Simakov$lang['ftp____pass'] = 'ftp - пароль';
1438634734fSDenis Simakov$lang['ftp____root'] = 'ftp - корневая директория';
1448634734fSDenis Simakov
1458634734fSDenis Simakov/* userewrite options */
1468634734fSDenis Simakov$lang['userewrite_o_0'] = '(нет)';
1478634734fSDenis Simakov$lang['userewrite_o_1'] = 'htaccess';
1488634734fSDenis Simakov$lang['userewrite_o_2'] = 'средствами ДокуВики';
1498634734fSDenis Simakov
150f8a94648SDenis Simakov/* deaccent options */
151f8a94648SDenis Simakov$lang['deaccent_o_0'] = 'отключить';
152f8a94648SDenis Simakov$lang['deaccent_o_1'] = 'убирать только диакр. знаки';
153f8a94648SDenis Simakov$lang['deaccent_o_2'] = 'полная транслитерация';
154f8a94648SDenis Simakov
1558634734fSDenis Simakov/* gdlib options */
1568634734fSDenis Simakov$lang['gdlib_o_0'] = 'GD Lib недоступна';
1578634734fSDenis Simakov$lang['gdlib_o_1'] = 'версия 1.x';
1588634734fSDenis Simakov$lang['gdlib_o_2'] = 'автоопределение';
1598634734fSDenis Simakov
1608634734fSDenis Simakov/* rss_type options */
1618634734fSDenis Simakov$lang['rss_type_o_rss']  = 'RSS 0.91';
1628634734fSDenis Simakov$lang['rss_type_o_rss1'] = 'RSS 1.0';
1638634734fSDenis Simakov$lang['rss_type_o_rss2'] = 'RSS 2.0';
1648634734fSDenis Simakov$lang['rss_type_o_atom'] = 'Atom 0.3';
1658634734fSDenis Simakov
1668634734fSDenis Simakov/* rss_linkto options */
1678634734fSDenis Simakov$lang['rss_linkto_o_diff']    = 'отличия от текущей';
1688634734fSDenis Simakov$lang['rss_linkto_o_page']    = 'текст страницы';
1698634734fSDenis Simakov$lang['rss_linkto_o_rev']     = 'история правок';
1708634734fSDenis Simakov$lang['rss_linkto_o_current'] = 'текущая версия';
1718634734fSDenis Simakov
172