3 ###############################################################################
5 # This is the russian language file for the Geeklog Polls plugin
7 # Copyright (C) 2006 Volodymyr V. Prokurashko
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.
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.
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.
24 ###############################################################################
28 ###############################################################################
30 # $LANGXX[YY]: $LANG - variable name
32 # YY - phrase id number
33 ###############################################################################
37 'results' => 'Результаты',
38 'pollresults' => 'Результаты опроса',
40 'vote' => 'Голосовать',
41 'pastpolls' => 'Прошлые опросы',
42 'savedvotetitle' => 'Голос сохранено',
43 'savedvotemsg' => 'Ваш голос в опросе был учтён',
44 'pollstitle' => 'Опросы',
45 'polltopics' => 'Other polls',
46 'stats_top10' => '10 популярнейших опросов',
47 'stats_topics' => 'Poll Topic',
48 'stats_votes' => 'ГОлосов',
49 'stats_none' => 'На этом сайте нет опросов, или ещё никто в них не голосовал.',
50 'stats_summary' => 'Опросов (Голосов) в системе',
51 'open_poll' => 'Открытый для голосования',
52 'answer_all' => 'Please answer all remaining questions',
53 'not_saved' => 'Result not saved',
54 'upgrade1' => 'You installed a new version of the Polls plugin. Please',
55 'upgrade2' => 'upgrade',
56 'editinstructions' => 'Please fill in the Poll ID, at least one question and two answers for it.',
57 'pollclosed' => 'This poll is closed for voting.',
58 'pollhidden' => 'You have already voted. This poll results will only be shown when voting is closed.',
59 'start_poll' => 'Start Poll'
62 ###############################################################################
63 # admin/plugins/polls/index.php
67 2 => 'Please enter a topic, at least one question and at least one answer for that question.',
72 7 => '(do not use spaces)',
73 8 => 'Appears on Pollblock',
75 10 => 'Answers / Votes / Remark',
76 11 => 'There was an error getting poll answer data about the poll %s',
77 12 => 'There was an error getting poll question data about the poll %s',
82 17 => 'Please enter a Poll ID',
84 19 => 'To modify or delete a poll, click on the edit icon of the poll. To create a new poll, click on "Create New" above.',
86 21 => 'Access Denied',
87 22 => "You are trying to access a poll that you don't have rights to. This attempt has been logged. Please <a href=\"{$_CONF['site_admin_url']}/poll.php\">go back to the poll administration screen</a>.",
95 30 => 'Limit Results',
97 32 => 'To remove this question from the poll, remove its question text',
98 33 => 'Open for voting',
100 35 => 'This poll has',
101 36 => 'more questions.',
102 37 => 'Hide results while poll is open',
103 38 => 'While the poll is open, only the owner & root can see the results',
104 39 => 'The topic will be only displayed if there are more than 1 questions.',
105 40 => 'See all answers to this poll'
108 $PLG_polls_MESSAGE15 = 'Your comment has been submitted for review and will be published when approved by a moderator.';
109 $PLG_polls_MESSAGE19 = 'Ваш опрос успешно сохранён.';
110 $PLG_polls_MESSAGE20 = 'Your poll has been successfully deleted.';
112 // Messages for the plugin upgrade
113 $PLG_polls_MESSAGE3001 = 'Plugin upgrade not supported.';
114 $PLG_polls_MESSAGE3002 = $LANG32[9];
116 // Localization of the Admin Configuration UI
117 $LANG_configsections['polls'] = array(
119 'title' => 'Polls Configuration'
122 $LANG_confignames['polls'] = array(
123 'pollsloginrequired' => 'Polls Login Required?',
124 'hidepollsmenu' => 'Hide Polls Menu Entry?',
125 'maxquestions' => 'Max. Questions per Poll',
126 'maxanswers' => 'Max. Options per Question',
127 'answerorder' => 'Sort Results ...',
128 'pollcookietime' => 'Voter Cookie valid for',
129 'polladdresstime' => 'Voter IP Address valid for',
130 'delete_polls' => 'Delete Polls with Owner?',
131 'aftersave' => 'After Saving Poll',
132 'default_permissions' => 'Poll Default Permissions',
133 'meta_tags' => 'Enable Meta Tags'
136 $LANG_configsubgroups['polls'] = array(
137 'sg_main' => 'Main Settings'
140 $LANG_fs['polls'] = array(
141 'fs_main' => 'General Polls Settings',
142 'fs_permissions' => 'Default Permissions'
145 // Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
146 $LANG_configselects['polls'] = array(
147 0 => array('True' => 1, 'False' => 0),
148 1 => array('True' => true, 'False' => false),
149 2 => array('As Submitted' => 'submitorder', 'By Votes' => 'voteorder'),
150 9 => array('Forward to Poll' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
151 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)