plugins/links/language/russian.php
author Dirk Haun <dirk@haun-online.de>
Sun, 11 Oct 2009 19:18:47 +0200
branchHEAD
changeset 7371 6f0fe25ffbc7
parent 6791 ba2231f87362
child 7992 5efb7abbd4b8
permissions -rw-r--r--
Synced all language files with their English equivalents
     1 <?php
     2 
     3 ###############################################################################
     4 # russian.php
     5 # This is the russian language page for the Geeklog Links Plug-in!
     6 #
     7 # Copyright (C) 2006 Volodymyr V. Prokurashko
     8 # vvprok@ukr.net
     9 #
    10 # This program is free software; you can redistribute it and/or
    11 # modify it under the terms of the GNU General Public License
    12 # as published by the Free Software Foundation; either version 2
    13 # of the License, or (at your option) any later version.
    14 #
    15 # This program is distributed in the hope that it will be useful,
    16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    18 # GNU General Public License for more details.
    19 #
    20 # You should have received a copy of the GNU General Public License
    21 # along with this program; if not, write to the Free Software
    22 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    23 #
    24 ###############################################################################
    25 
    26 global $LANG32;
    27 
    28 ###############################################################################
    29 # Array Format:
    30 # $LANGXX[YY]:  $LANG - variable name
    31 #               XX    - file id number
    32 #               YY    - phrase id number
    33 ###############################################################################
    34 
    35 $LANG_LINKS = array(
    36     10 => 'Присланные',
    37     14 => 'Ссылка',
    38     84 => 'Ссылки',
    39     88 => 'Нет новых ссылок',
    40     114 => 'Ссылки',
    41     116 => 'Добавить ссылку',
    42     117 => 'Report Broken Link',
    43     118 => 'Broken Link Report',
    44     119 => 'The following link has been reported to be broken: ',
    45     120 => 'To edit the link, click here: ',
    46     121 => 'The broken Link was reported by: ',
    47     122 => 'Thank you for reporting this broken link. The administrator will correct the problem as soon as possible',
    48     123 => 'Thank you',
    49     124 => 'Go',
    50     125 => 'Categories',
    51     126 => 'You are here:',
    52     'root' => 'Root'
    53 );
    54 
    55 ###############################################################################
    56 # for stats
    57 
    58 $LANG_LINKS_STATS = array(
    59     'links' => 'Ссылок (Кликов) в системе',
    60     'stats_headline' => '10 самых популярных ссылок',
    61     'stats_page_title' => 'Ссылки',
    62     'stats_hits' => 'Хиты',
    63     'stats_no_hits' => 'На этом сайте нет ссылок, или никто ими не пользовался.'
    64 );
    65 
    66 ###############################################################################
    67 # for the search
    68 
    69 $LANG_LINKS_SEARCH = array(
    70     'results' => 'Результаты из каталога ссылок',
    71     'title' => 'Заголовок',
    72     'date' => 'Добавлено',
    73     'author' => 'Автор',
    74     'hits' => 'Кликов'
    75 );
    76 
    77 ###############################################################################
    78 # for the submission form
    79 
    80 $LANG_LINKS_SUBMIT = array(
    81     1 => 'Отослать ссылку',
    82     2 => 'Ссылка',
    83     3 => 'Категория',
    84     4 => 'Другое',
    85     5 => 'Если "Другое", укажите',
    86     6 => 'Ошибка: Отсутствует категория',
    87     7 => 'Выбирая "Другое", пожалйста, укажите название категории',
    88     8 => 'Заголовок',
    89     9 => 'URL',
    90     10 => 'Категория',
    91     11 => 'Входящие ссылки'
    92 );
    93 
    94 ###############################################################################
    95 # Messages for COM_showMessage the submission form
    96 
    97 $PLG_links_MESSAGE1 = "Спасибо за присланную на {$_CONF['site_name']} ссылку!  Ссылка отправлена администрацией сайта на одобрение.  В случае одобрения, ссылку будет добавлено в раздел <a href={$_CONF['site_url']}/links/index.php>Ссылки</a>.";
    98 $PLG_links_MESSAGE2 = 'Ваша ссылка успешно добавлена.';
    99 $PLG_links_MESSAGE3 = 'Ссылка успешно удалена.';
   100 $PLG_links_MESSAGE4 = "Спасибо за присланную на {$_CONF['site_name']} ссылку!  Ссылка добавлена в раздел <a href={$_CONF['site_url']}/links/index.php>Ссылки</a>.";
   101 $PLG_links_MESSAGE5 = 'You do not have sufficient access rights to view this category.';
   102 $PLG_links_MESSAGE6 = 'You do not have sufficient rights to edit this category.';
   103 $PLG_links_MESSAGE7 = 'Please enter a Category Name and Description.';
   104 $PLG_links_MESSAGE10 = 'Your category has been successfully saved.';
   105 $PLG_links_MESSAGE11 = 'You are not allowed to set the id of a category to "site" or "user" - these are reserved for internal use.';
   106 $PLG_links_MESSAGE12 = 'You are trying to make a parent category the child of it\'s own subcategory. This would create an orphan category, so please first move the child category or categories up to a higher level.';
   107 $PLG_links_MESSAGE13 = 'The category has been successfully deleted.';
   108 $PLG_links_MESSAGE14 = 'Category contains links and/or categories. Please remove these first.';
   109 $PLG_links_MESSAGE15 = 'You do not have sufficient rights to delete this category.';
   110 $PLG_links_MESSAGE16 = 'No such category exists.';
   111 $PLG_links_MESSAGE17 = 'This category id is already in use.';
   112 
   113 // Messages for the plugin upgrade
   114 $PLG_links_MESSAGE3001 = 'Plugin upgrade not supported.';
   115 $PLG_links_MESSAGE3002 = $LANG32[9];
   116 
   117 ###############################################################################
   118 # admin/plugins/links/index.php
   119 
   120 $LANG_LINKS_ADMIN = array(
   121     1 => 'Редактор ссылок',
   122     2 => 'ID ссылки',
   123     3 => 'Заголовок',
   124     4 => 'URL',
   125     5 => 'Категория',
   126     6 => '(включая http://)',
   127     7 => 'Другое',
   128     8 => 'Клики на ссылку',
   129     9 => 'Описание',
   130     10 => 'Вы должны указать заголовок, URL и описание.',
   131     11 => 'Менеджер ссылок',
   132     12 => 'Что бы изменить или удалить ссылку, нажмите на иконку редактирования, которая находиться ниже.  Что бы создать новую ссылку, выберете "Создать новую" вверху.',
   133     14 => 'Категория ссылки',
   134     16 => 'Доступ запрещён',
   135     17 => "Вы попытались доступиться до ссылки с ограниченными правами на просмотр.  Инфрмация об этой попыткой записана.  Пожалуйста, <a href=\"{$_CONF['site_admin_url']}/plugins/links/index.php\">вернитесь к администрированию</a>.",
   136     20 => 'Если другое, укажите',
   137     21 => 'сохранить',
   138     22 => 'отменить',
   139     23 => 'удалить',
   140     24 => 'Link not found',
   141     25 => 'The link you selected for editing could not be found.',
   142     26 => 'Validate Links',
   143     27 => 'HTML Status',
   144     28 => 'Edit category',
   145     29 => 'Enter or edit the details below.',
   146     30 => 'Category',
   147     31 => 'Description',
   148     32 => 'Category ID',
   149     33 => 'Topic',
   150     34 => 'Parent',
   151     35 => 'All',
   152     40 => 'Edit this category',
   153     41 => 'Create child category',
   154     42 => 'Delete this category',
   155     43 => 'Site categories',
   156     44 => 'Add&nbsp;child',
   157     46 => 'User %s tried to delete a category to which they do not have access rights',
   158     50 => 'List categories',
   159     51 => 'New link',
   160     52 => 'New category',
   161     53 => 'List links',
   162     54 => 'Category Manager',
   163     55 => 'Edit categories below. Note that you cannot delete a category that contains other categories or links - you should delete these first, or move them to another category.',
   164     56 => 'Category Editor',
   165     57 => 'Not validated yet',
   166     58 => 'Validate now',
   167     59 => '<p>To validate all links displayed, please click on the "Validate now" link below. Please note that this might take some time depending on the amount of links displayed.</p>',
   168     60 => 'User %s tried illegally to edit category %s.',
   169     61 => 'Links in Category'
   170 );
   171 
   172 
   173 $LANG_LINKS_STATUS = array(
   174     100 => 'Continue',
   175     101 => 'Switching Protocols',
   176     200 => 'OK',
   177     201 => 'Created',
   178     202 => 'Accepted',
   179     203 => 'Non-Authoritative Information',
   180     204 => 'No Content',
   181     205 => 'Reset Content',
   182     206 => 'Partial Content',
   183     300 => 'Multiple Choices',
   184     301 => 'Moved Permanently',
   185     302 => 'Found',
   186     303 => 'See Other',
   187     304 => 'Not Modified',
   188     305 => 'Use Proxy',
   189     307 => 'Temporary Redirect',
   190     400 => 'Bad Request',
   191     401 => 'Unauthorized',
   192     402 => 'Payment Required',
   193     403 => 'Forbidden',
   194     404 => 'Not Found',
   195     405 => 'Method Not Allowed',
   196     406 => 'Not Acceptable',
   197     407 => 'Proxy Authentication Required',
   198     408 => 'Request Timeout',
   199     409 => 'Conflict',
   200     410 => 'Gone',
   201     411 => 'Length Required',
   202     412 => 'Precondition Failed',
   203     413 => 'Request Entity Too Large',
   204     414 => 'Request-URI Too Long',
   205     415 => 'Unsupported Media Type',
   206     416 => 'Requested Range Not Satisfiable',
   207     417 => 'Expectation Failed',
   208     500 => 'Internal Server Error',
   209     501 => 'Not Implemented',
   210     502 => 'Bad Gateway',
   211     503 => 'Service Unavailable',
   212     504 => 'Gateway Timeout',
   213     505 => 'HTTP Version Not Supported',
   214     999 => 'Connection Timed out'
   215 );
   216 
   217 // Localization of the Admin Configuration UI
   218 $LANG_configsections['links'] = array(
   219     'label' => 'Links',
   220     'title' => 'Links Configuration'
   221 );
   222 
   223 $LANG_confignames['links'] = array(
   224     'linksloginrequired' => 'Links Login Required?',
   225     'linksubmission' => 'Enable Submission Queue?',
   226     'newlinksinterval' => 'New Links Interval',
   227     'hidenewlinks' => 'Hide New Links?',
   228     'hidelinksmenu' => 'Hide Links Menu Entry?',
   229     'linkcols' => 'Categories per Column',
   230     'linksperpage' => 'Links per Page',
   231     'show_top10' => 'Show Top 10 Links?',
   232     'notification' => 'Notification Email?',
   233     'delete_links' => 'Delete Links with Owner?',
   234     'aftersave' => 'After Saving Link',
   235     'show_category_descriptions' => 'Show Category Description?',
   236     'new_window' => 'Open external links in new window?',
   237     'root' => 'ID of Root Category',
   238     'default_permissions' => 'Link Default Permissions',
   239     'category_permissions' => 'Category Default Permissions'
   240 );
   241 
   242 $LANG_configsubgroups['links'] = array(
   243     'sg_main' => 'Main Settings'
   244 );
   245 
   246 $LANG_fs['links'] = array(
   247     'fs_public' => 'Public Links List Settings',
   248     'fs_admin' => 'Links Admin Settings',
   249     'fs_permissions' => 'Default Permissions',
   250     'fs_cpermissions' => 'Category Permissions'
   251 );
   252 
   253 // Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
   254 $LANG_configselects['links'] = array(
   255     0 => array('True' => 1, 'False' => 0),
   256     1 => array('True' => true, 'False' => false),
   257     9 => array('Forward to Linked Site' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
   258     12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)
   259 );
   260 
   261 ?>