3 ###############################################################################
5 # This is the Dutch language file for the Geeklog Polls plugin
7 # Copyright (C) 2001 Tony Bibbs
9 # Copyright (C) 2005 Trinity Bays
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License
14 # as published by the Free Software Foundation; either version 2
15 # of the License, or (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 ###############################################################################
30 ###############################################################################
32 # $LANGXX[YY]: $LANG - variable name
34 # YY - phrase id number
35 ###############################################################################
38 'polls' => 'Peilingen',
39 'results' => 'Resultaten',
40 'pollresults' => 'Peiling Resultaten',
43 'pastpolls' => 'Oudere peilingen',
44 'savedvotetitle' => 'Stem opgeslagen',
45 'savedvotemsg' => 'Uw stem is in de peling opgenomen',
46 'pollstitle' => 'Peilingen in systeem',
47 'polltopics' => 'Other polls',
48 'stats_top10' => 'Top Tien Peilingen',
49 'stats_topics' => 'Poll Topic',
50 'stats_votes' => 'Stemmen',
51 'stats_none' => 'Er zijn geen peilingen aanwezig of er is nog niet op gestemd.',
52 'stats_summary' => 'Peilingen (resultaten) in het systeem',
53 'open_poll' => 'Open voor stemmen',
54 'answer_all' => 'Please answer all remaining questions',
55 'not_saved' => 'Result not saved',
56 'upgrade1' => 'You installed a new version of the Polls plugin. Please',
57 'upgrade2' => 'upgrade',
58 'editinstructions' => 'Please fill in the Poll ID, at least one question and two answers for it.',
59 'pollclosed' => 'This poll is closed for voting.',
60 'pollhidden' => 'You have already voted. This poll results will only be shown when voting is closed.',
61 'start_poll' => 'Start Poll'
64 ###############################################################################
65 # admin/plugins/polls/index.php
69 2 => 'Please enter a topic, at least one question and at least one answer for that question.',
74 7 => '(do not use spaces)',
75 8 => 'Appears on Pollblock',
77 10 => 'Answers / Votes / Remark',
78 11 => 'There was an error getting poll answer data about the poll %s',
79 12 => 'There was an error getting poll question data about the poll %s',
84 17 => 'Please enter a Poll ID',
86 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.',
88 21 => 'Access Denied',
89 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>.",
97 30 => 'Limit Results',
99 32 => 'To remove this question from the poll, remove its question text',
100 33 => 'Open for voting',
102 35 => 'This poll has',
103 36 => 'more questions.',
104 37 => 'Hide results while poll is open',
105 38 => 'While the poll is open, only the owner & root can see the results',
106 39 => 'The topic will be only displayed if there are more than 1 questions.',
107 40 => 'See all answers to this poll'
110 $PLG_polls_MESSAGE15 = 'Your comment has been submitted for review and will be published when approved by a moderator.';
111 $PLG_polls_MESSAGE19 = 'Your poll has been successfully saved.';
112 $PLG_polls_MESSAGE20 = 'Your poll has been successfully deleted.';
114 // Messages for the plugin upgrade
115 $PLG_polls_MESSAGE3001 = 'Plugin upgrade not supported.';
116 $PLG_polls_MESSAGE3002 = $LANG32[9];
118 // Localization of the Admin Configuration UI
119 $LANG_configsections['polls'] = array(
121 'title' => 'Polls Configuration'
124 $LANG_confignames['polls'] = array(
125 'pollsloginrequired' => 'Polls Login Required?',
126 'hidepollsmenu' => 'Hide Polls Menu Entry?',
127 'maxquestions' => 'Max. Questions per Poll',
128 'maxanswers' => 'Max. Options per Question',
129 'answerorder' => 'Sort Results ...',
130 'pollcookietime' => 'Voter Cookie valid for',
131 'polladdresstime' => 'Voter IP Address valid for',
132 'delete_polls' => 'Delete Polls with Owner?',
133 'aftersave' => 'After Saving Poll',
134 'default_permissions' => 'Poll Default Permissions',
135 'meta_tags' => 'Enable Meta Tags'
138 $LANG_configsubgroups['polls'] = array(
139 'sg_main' => 'Main Settings'
142 $LANG_fs['polls'] = array(
143 'fs_main' => 'General Polls Settings',
144 'fs_permissions' => 'Default Permissions'
147 // Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
148 $LANG_configselects['polls'] = array(
149 0 => array('True' => 1, 'False' => 0),
150 1 => array('True' => true, 'False' => false),
151 2 => array('As Submitted' => 'submitorder', 'By Votes' => 'voteorder'),
152 9 => array('Forward to Poll' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
153 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)