3 ###############################################################################
5 # This is the spanish language page for the Geeklog Polls Plug-in!
7 # Copyright (C) 2007 José R. Valverde
8 # jrvalverde@cnb.uam.es
10 # Copyright (C) 2001 Tony Bibbs
12 # Copyright (C) 2005 Trinity Bays
15 # This program is free software; you can redistribute it and/or
16 # modify it under the terms of the GNU General Public License
17 # as published by the Free Software Foundation; either version 2
18 # of the License, or (at your option) any later version.
20 # This program is distributed in the hope that it will be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 # GNU General Public License for more details.
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 ###############################################################################
33 ###############################################################################
35 # $LANGXX[YY]: $LANG - variable name
37 # YY - phrase id number
38 ###############################################################################
41 'polls' => 'Encuestas',
42 'results' => 'Resultados',
43 'pollresults' => 'Resultados de la encuesta',
46 'pastpolls' => 'Encuestas anteriores',
47 'savedvotetitle' => 'Voto guardado',
48 'savedvotemsg' => 'Se ha guardado tu voto para la encuesta',
49 'pollstitle' => 'Encuestas disponibles',
50 'polltopics' => 'Other polls',
51 'stats_top10' => '10 encuestas principales',
52 'stats_topics' => 'Poll Topic',
53 'stats_votes' => 'Votos',
54 'stats_none' => 'Parece no haber encuestas o que nadie ha votado.',
55 'stats_summary' => 'Encuestas (Respuestas) en el sistema',
56 'open_poll' => 'Abierto para votar',
57 'answer_all' => 'Please answer all remaining questions',
58 'not_saved' => 'Result not saved',
59 'upgrade1' => 'You installed a new version of the Polls plugin. Please',
60 'upgrade2' => 'upgrade',
61 'editinstructions' => 'Please fill in the Poll ID, at least one question and two answers for it.',
62 'pollclosed' => 'This poll is closed for voting.',
63 'pollhidden' => 'You have already voted. This poll results will only be shown when voting is closed.',
64 'start_poll' => 'Start Poll'
67 ###############################################################################
68 # admin/plugins/polls/index.php
72 2 => 'Please enter a topic, at least one question and at least one answer for that question.',
77 7 => '(do not use spaces)',
78 8 => 'Appears on Pollblock',
80 10 => 'Answers / Votes / Remark',
81 11 => 'There was an error getting poll answer data about the poll %s',
82 12 => 'There was an error getting poll question data about the poll %s',
87 17 => 'Please enter a Poll ID',
89 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.',
91 21 => 'Access Denied',
92 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>.",
100 30 => 'Limit Results',
102 32 => 'To remove this question from the poll, remove its question text',
103 33 => 'Open for voting',
105 35 => 'This poll has',
106 36 => 'more questions.',
107 37 => 'Hide results while poll is open',
108 38 => 'While the poll is open, only the owner & root can see the results',
109 39 => 'The topic will be only displayed if there are more than 1 questions.',
110 40 => 'See all answers to this poll'
113 $PLG_polls_MESSAGE15 = 'Your comment has been submitted for review and will be published when approved by a moderator.';
114 $PLG_polls_MESSAGE19 = 'Tu encuesta se guardó satisfactoriamente.';
115 $PLG_polls_MESSAGE20 = 'Tu encuesta se ha borrado satisfactoriamente.';
117 // Messages for the plugin upgrade
118 $PLG_polls_MESSAGE3001 = 'Plugin upgrade not supported.';
119 $PLG_polls_MESSAGE3002 = $LANG32[9];
121 // Localization of the Admin Configuration UI
122 $LANG_configsections['polls'] = array(
124 'title' => 'Polls Configuration'
127 $LANG_confignames['polls'] = array(
128 'pollsloginrequired' => 'Polls Login Required?',
129 'hidepollsmenu' => 'Hide Polls Menu Entry?',
130 'maxquestions' => 'Max. Questions per Poll',
131 'maxanswers' => 'Max. Options per Question',
132 'answerorder' => 'Sort Results ...',
133 'pollcookietime' => 'Voter Cookie valid for',
134 'polladdresstime' => 'Voter IP Address valid for',
135 'delete_polls' => 'Delete Polls with Owner?',
136 'aftersave' => 'After Saving Poll',
137 'default_permissions' => 'Poll Default Permissions',
138 'meta_tags' => 'Enable Meta Tags'
141 $LANG_configsubgroups['polls'] = array(
142 'sg_main' => 'Main Settings'
145 $LANG_fs['polls'] = array(
146 'fs_main' => 'General Polls Settings',
147 'fs_permissions' => 'Default Permissions'
150 // Note: entries 0, 1, and 12 are the same as in $LANG_configselects['Core']
151 $LANG_configselects['polls'] = array(
152 0 => array('True' => 1, 'False' => 0),
153 1 => array('True' => true, 'False' => false),
154 2 => array('As Submitted' => 'submitorder', 'By Votes' => 'voteorder'),
155 9 => array('Forward to Poll' => 'item', 'Display Admin List' => 'list', 'Display Public List' => 'plugin', 'Display Home' => 'home', 'Display Admin' => 'admin'),
156 12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3)