WP-Polls - Version 2.69

Version Description

N/A

Download this release

Release Info

Developer GamerZ
Plugin Icon WP-Polls
Version 2.69
Comparing to
See all releases

Code changes from version 2.68 to 2.69

Files changed (4) hide show
  1. polls-logs.php +2 -2
  2. readme.txt +10 -3
  3. wp-polls.php +48 -49
  4. wp-polls.pot +357 -364
polls-logs.php CHANGED
@@ -134,7 +134,7 @@ if(!empty($_POST['do'])) {
134
  <?php printf(_n('<strong>&raquo;</strong> <strong>%s</strong> vote is cast by guests', '<strong>&raquo;</strong> <strong>%s</strong> votes are cast by guests', $poll_guest, 'wp-polls'), number_format_i18n($poll_guest)); ?>
135
  </p>
136
  </div>
137
- <?php if($poll_totalrecorded > 0) { ?>
138
  <div class="wrap">
139
  <h3><?php _e('Filter Poll\'s Logs', 'wp-polls') ?></h3>
140
  <table width="100%" border="0" cellspacing="0" cellpadding="0">
@@ -323,7 +323,7 @@ if(!empty($_POST['do'])) {
323
  } else {
324
  foreach($poll_ips as $poll_ip) {
325
  $pollip_aid = intval($poll_ip->pollip_aid);
326
- $pollip_user = stripslashes($poll_ip->pollip_user);
327
  $pollip_ip = $poll_ip->pollip_ip;
328
  $pollip_host = $poll_ip->pollip_host;
329
  $pollip_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_ip->pollip_timestamp));
134
  <?php printf(_n('<strong>&raquo;</strong> <strong>%s</strong> vote is cast by guests', '<strong>&raquo;</strong> <strong>%s</strong> votes are cast by guests', $poll_guest, 'wp-polls'), number_format_i18n($poll_guest)); ?>
135
  </p>
136
  </div>
137
+ <?php if($poll_totalrecorded > 0 && apply_filters( 'poll_log_show_log_filter', true )) { ?>
138
  <div class="wrap">
139
  <h3><?php _e('Filter Poll\'s Logs', 'wp-polls') ?></h3>
140
  <table width="100%" border="0" cellspacing="0" cellpadding="0">
323
  } else {
324
  foreach($poll_ips as $poll_ip) {
325
  $pollip_aid = intval($poll_ip->pollip_aid);
326
+ $pollip_user = apply_filters( 'poll_log_secret_ballot', stripslashes($poll_ip->pollip_user) );
327
  $pollip_ip = $poll_ip->pollip_ip;
328
  $pollip_host = $poll_ip->pollip_host;
329
  $pollip_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_ip->pollip_timestamp));
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: GamerZ
3
  Donate link: http://lesterchan.net/site/donation/
4
  Tags: poll, polls, polling, vote, booth, democracy, ajax, survey, post, widget
5
  Requires at least: 3.9
6
- Tested up to: 4.1
7
- Stable tag: 2.68
8
 
9
  Adds an AJAX poll system to your WordPress blog. You can also easily add a poll into your WordPress's blog post/page.
10
 
@@ -24,9 +24,16 @@ WP-Polls is extremely customizable via templates and css styles and there are to
24
  * Plugin icon by [Freepik](http://www.freepik.com) from [Flaticon](http://www.flaticon.com)
25
 
26
  = Donations =
27
- I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appericiate it. If not feel free to use it without any obligations.
28
 
29
  == Changelog ==
 
 
 
 
 
 
 
30
  = Version 2.68 =
31
  * NEW: Poll answer percentage are now not rounded off, previously it was always rounded to add up to 100%
32
  * NEW: Support WordPress MultiSite Network Activation
3
  Donate link: http://lesterchan.net/site/donation/
4
  Tags: poll, polls, polling, vote, booth, democracy, ajax, survey, post, widget
5
  Requires at least: 3.9
6
+ Tested up to: 4.2
7
+ Stable tag: 2.69
8
 
9
  Adds an AJAX poll system to your WordPress blog. You can also easily add a poll into your WordPress's blog post/page.
10
 
24
  * Plugin icon by [Freepik](http://www.freepik.com) from [Flaticon](http://www.flaticon.com)
25
 
26
  = Donations =
27
+ I spent most of my free time creating, updating, maintaining and supporting these plugins, if you really love my plugins and could spare me a couple of bucks, I will really appreciate it. If not feel free to use it without any obligations.
28
 
29
  == Changelog ==
30
+ = Version 2.69 =
31
+ * NEW: Make use of wp_add_inline_style. Props @pathawks.
32
+ * NEW: Create 2 filters for secret ballot. Props @afragen.
33
+ * FIXED: Added new index to wp_pollsip. Props ArtemR.
34
+ * FIXED: Integration with WP-Stats
35
+ * FIXED: Proper IP checking
36
+
37
  = Version 2.68 =
38
  * NEW: Poll answer percentage are now not rounded off, previously it was always rounded to add up to 100%
39
  * NEW: Support WordPress MultiSite Network Activation
wp-polls.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP-Polls
4
  Plugin URI: http://lesterchan.net/portfolio/programming/php/
5
  Description: Adds an AJAX poll system to your WordPress blog. You can easily include a poll into your WordPress's blog post/page. WP-Polls is extremely customizable via templates and css styles and there are tons of options for you to choose to ensure that WP-Polls runs the way you wanted. It now supports multiple selection of answers.
6
- Version: 2.68
7
  Author: Lester 'GaMerZ' Chan
8
  Author URI: http://lesterchan.net
9
  Text Domain: wp-polls
@@ -11,7 +11,7 @@ Text Domain: wp-polls
11
 
12
 
13
  /*
14
- Copyright 2014 Lester Chan (email : lesterchan@gmail.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License as published by
@@ -30,7 +30,7 @@ Text Domain: wp-polls
30
 
31
 
32
  ### Version
33
- define( 'WP_POLLS_VERSION', 2.68 );
34
 
35
 
36
  ### Create Text Domain For Translations
@@ -168,28 +168,6 @@ function get_poll($temp_poll_id = 0, $display = true) {
168
  ### Function: Print Polls Stylesheets That Are Dynamic And jQuery At The Top
169
  add_action('wp_head', 'poll_head_scripts');
170
  function poll_head_scripts() {
171
- $pollbar = get_option('poll_bar');
172
- echo '<style type="text/css">'."\n";
173
- if($pollbar['style'] == 'use_css') {
174
- echo '.wp-polls .pollbar {'."\n";
175
- echo "\t".'margin: 1px;'."\n";
176
- echo "\t".'font-size: '.($pollbar['height']-2).'px;'."\n";
177
- echo "\t".'line-height: '.$pollbar['height'].'px;'."\n";
178
- echo "\t".'height: '.$pollbar['height'].'px;'."\n";
179
- echo "\t".'background: #'.$pollbar['background'].';'."\n";
180
- echo "\t".'border: 1px solid #'.$pollbar['border'].';'."\n";
181
- echo '}'."\n";
182
- } else {
183
- echo '.wp-polls .pollbar {'."\n";
184
- echo "\t".'margin: 1px;'."\n";
185
- echo "\t".'font-size: '.($pollbar['height']-2).'px;'."\n";
186
- echo "\t".'line-height: '.$pollbar['height'].'px;'."\n";
187
- echo "\t".'height: '.$pollbar['height'].'px;'."\n";
188
- echo "\t".'background-image: url(\''.plugins_url('wp-polls/images/'.$pollbar['style'].'/pollbg.gif').'\');'."\n";
189
- echo "\t".'border: 1px solid #'.$pollbar['border'].';'."\n";
190
- echo '}'."\n";
191
- }
192
- echo '</style>'."\n";
193
  wp_print_scripts('jquery');
194
  }
195
 
@@ -209,6 +187,27 @@ function poll_scripts() {
209
  wp_enqueue_style('wp-polls-rtl', plugins_url('wp-polls/polls-css-rtl.css'), false, WP_POLLS_VERSION, 'all');
210
  }
211
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
212
  $poll_ajax_style = get_option('poll_ajax_style');
213
  $pollbar = get_option('poll_bar');
214
  wp_enqueue_script('wp-polls', plugins_url('wp-polls/polls-js.js'), array('jquery'), WP_POLLS_VERSION, true);
@@ -723,16 +722,16 @@ function display_pollresult($poll_id, $user_voted = '', $display_loading = true)
723
  ### Function: Get IP Address
724
  if(!function_exists('get_ipaddress')) {
725
  function get_ipaddress() {
726
- if (empty($_SERVER["HTTP_X_FORWARDED_FOR"])) {
727
- $ip_address = $_SERVER["REMOTE_ADDR"];
728
- } else {
729
- $ip_address = $_SERVER["HTTP_X_FORWARDED_FOR"];
730
- }
731
- if(strpos($ip_address, ',') !== false) {
732
- $ip_address = explode(',', $ip_address);
733
- $ip_address = $ip_address[0];
 
734
  }
735
- return esc_attr($ip_address);
736
  }
737
  }
738
 
@@ -1495,14 +1494,10 @@ function manage_poll() {
1495
 
1496
 
1497
  ### Function: Plug Into WP-Stats
1498
- add_action('wp','polls_wp_stats');
1499
  function polls_wp_stats() {
1500
- if(function_exists('stats_page')) {
1501
- if(strpos(get_option('stats_url'), $_SERVER['REQUEST_URI']) || strpos($_SERVER['REQUEST_URI'], 'stats-options.php') || strpos($_SERVER['REQUEST_URI'], 'wp-stats/wp-stats.php')) {
1502
- add_filter('wp_stats_page_admin_plugins', 'polls_page_admin_general_stats');
1503
- add_filter('wp_stats_page_plugins', 'polls_page_general_stats');
1504
- }
1505
- }
1506
  }
1507
 
1508
 
@@ -1795,20 +1790,24 @@ function polls_activate() {
1795
  $key_name[]= $i->Key_name;
1796
  }
1797
  }
1798
- if ( !in_array( 'pollip_ip', $key_name ) ) {
1799
  $wpdb->query( "ALTER TABLE $wpdb->pollsip ADD INDEX pollip_ip (pollip_ip);" );
1800
  }
1801
- if ( !in_array( 'pollip_qid', $key_name ) ) {
1802
  $wpdb->query( "ALTER TABLE $wpdb->pollsip ADD INDEX pollip_qid (pollip_qid);" );
1803
  }
1804
- if ( !in_array( 'pollip_ip_qid', $key_name ) ) {
1805
- $wpdb->query( "ALTER TABLE $wpdb->pollsip ADD INDEX pollip_ip_qid (pollip_ip, pollip_qid);" );
 
 
 
 
1806
  }
1807
 
1808
  // Set 'manage_polls' Capabilities To Administrator
1809
- $role = get_role('administrator');
1810
- if(!$role->has_cap('manage_polls')) {
1811
- $role->add_cap('manage_polls');
1812
  }
1813
  cron_polls_place();
1814
- }
3
  Plugin Name: WP-Polls
4
  Plugin URI: http://lesterchan.net/portfolio/programming/php/
5
  Description: Adds an AJAX poll system to your WordPress blog. You can easily include a poll into your WordPress's blog post/page. WP-Polls is extremely customizable via templates and css styles and there are tons of options for you to choose to ensure that WP-Polls runs the way you wanted. It now supports multiple selection of answers.
6
+ Version: 2.69
7
  Author: Lester 'GaMerZ' Chan
8
  Author URI: http://lesterchan.net
9
  Text Domain: wp-polls
11
 
12
 
13
  /*
14
+ Copyright 2015 Lester Chan (email : lesterchan@gmail.com)
15
 
16
  This program is free software; you can redistribute it and/or modify
17
  it under the terms of the GNU General Public License as published by
30
 
31
 
32
  ### Version
33
+ define( 'WP_POLLS_VERSION', 2.69 );
34
 
35
 
36
  ### Create Text Domain For Translations
168
  ### Function: Print Polls Stylesheets That Are Dynamic And jQuery At The Top
169
  add_action('wp_head', 'poll_head_scripts');
170
  function poll_head_scripts() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  wp_print_scripts('jquery');
172
  }
173
 
187
  wp_enqueue_style('wp-polls-rtl', plugins_url('wp-polls/polls-css-rtl.css'), false, WP_POLLS_VERSION, 'all');
188
  }
189
  }
190
+ $pollbar = get_option('poll_bar');
191
+ if($pollbar['style'] == 'use_css') {
192
+ $pollbar_css = '.wp-polls .pollbar {'."\n";
193
+ $pollbar_css .= "\t".'margin: 1px;'."\n";
194
+ $pollbar_css .= "\t".'font-size: '.($pollbar['height']-2).'px;'."\n";
195
+ $pollbar_css .= "\t".'line-height: '.$pollbar['height'].'px;'."\n";
196
+ $pollbar_css .= "\t".'height: '.$pollbar['height'].'px;'."\n";
197
+ $pollbar_css .= "\t".'background: #'.$pollbar['background'].';'."\n";
198
+ $pollbar_css .= "\t".'border: 1px solid #'.$pollbar['border'].';'."\n";
199
+ $pollbar_css .= '}'."\n";
200
+ } else {
201
+ $pollbar_css = '.wp-polls .pollbar {'."\n";
202
+ $pollbar_css .= "\t".'margin: 1px;'."\n";
203
+ $pollbar_css .= "\t".'font-size: '.($pollbar['height']-2).'px;'."\n";
204
+ $pollbar_css .= "\t".'line-height: '.$pollbar['height'].'px;'."\n";
205
+ $pollbar_css .= "\t".'height: '.$pollbar['height'].'px;'."\n";
206
+ $pollbar_css .= "\t".'background-image: url(\''.plugins_url('wp-polls/images/'.$pollbar['style'].'/pollbg.gif').'\');'."\n";
207
+ $pollbar_css .= "\t".'border: 1px solid #'.$pollbar['border'].';'."\n";
208
+ $pollbar_css .= '}'."\n";
209
+ }
210
+ wp_add_inline_style( 'wp-polls', $pollbar_css );
211
  $poll_ajax_style = get_option('poll_ajax_style');
212
  $pollbar = get_option('poll_bar');
213
  wp_enqueue_script('wp-polls', plugins_url('wp-polls/polls-js.js'), array('jquery'), WP_POLLS_VERSION, true);
722
  ### Function: Get IP Address
723
  if(!function_exists('get_ipaddress')) {
724
  function get_ipaddress() {
725
+ foreach ( array( 'HTTP_CLIENT_IP', 'HTTP_X_FORWARDED_FOR', 'HTTP_X_FORWARDED', 'HTTP_X_CLUSTER_CLIENT_IP', 'HTTP_FORWARDED_FOR', 'HTTP_FORWARDED', 'REMOTE_ADDR' ) as $key ) {
726
+ if ( array_key_exists( $key, $_SERVER ) === true ) {
727
+ foreach ( explode( ',', $_SERVER[$key] ) as $ip ) {
728
+ $ip = trim( $ip );
729
+ if ( filter_var( $ip, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) !== false ) {
730
+ return esc_attr( $ip );
731
+ }
732
+ }
733
+ }
734
  }
 
735
  }
736
  }
737
 
1494
 
1495
 
1496
  ### Function: Plug Into WP-Stats
1497
+ add_action( 'plugins_loaded','polls_wp_stats' );
1498
  function polls_wp_stats() {
1499
+ add_filter( 'wp_stats_page_admin_plugins', 'polls_page_admin_general_stats' );
1500
+ add_filter( 'wp_stats_page_plugins', 'polls_page_general_stats' );
 
 
 
 
1501
  }
1502
 
1503
 
1790
  $key_name[]= $i->Key_name;
1791
  }
1792
  }
1793
+ if ( ! in_array( 'pollip_ip', $key_name ) ) {
1794
  $wpdb->query( "ALTER TABLE $wpdb->pollsip ADD INDEX pollip_ip (pollip_ip);" );
1795
  }
1796
+ if ( ! in_array( 'pollip_qid', $key_name ) ) {
1797
  $wpdb->query( "ALTER TABLE $wpdb->pollsip ADD INDEX pollip_qid (pollip_qid);" );
1798
  }
1799
+ if ( ! in_array( 'pollip_ip_qid_aid', $key_name ) ) {
1800
+ $wpdb->query( "ALTER TABLE $wpdb->pollsip ADD INDEX pollip_ip_qid_aid (pollip_ip, pollip_qid, pollip_aid);" );
1801
+ }
1802
+ // No longer needed index
1803
+ if ( in_array( 'pollip_ip_qid', $key_name ) ) {
1804
+ $wpdb->query( "ALTER TABLE $wpdb->pollsip DROP INDEX pollip_ip_qid;" );
1805
  }
1806
 
1807
  // Set 'manage_polls' Capabilities To Administrator
1808
+ $role = get_role( 'administrator' );
1809
+ if( ! $role->has_cap( 'manage_polls' ) ) {
1810
+ $role->add_cap( 'manage_polls' );
1811
  }
1812
  cron_polls_place();
1813
+ }
wp-polls.pot CHANGED
@@ -1,1115 +1,1108 @@
1
- # Copyright (C) 2012 WP-Polls
2
  # This file is distributed under the same license as the WP-Polls package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP-Polls 2.63\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-polls\n"
7
- "POT-Creation-Date: 2012-05-22 00:47:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: polls-add.php:36 polls-add.php:113 polls-add.php:180 wp-polls.php:53
16
- #: wp-polls.php:294
17
  msgid "Add Poll"
18
  msgstr ""
19
 
20
- #: polls-add.php:81
21
  msgid "Error In Adding Poll '%s'."
22
  msgstr ""
23
 
24
- #: polls-add.php:90 polls-manager.php:132
25
  msgid "Error In Adding Poll's Answer '%s'."
26
  msgstr ""
27
 
28
- #: polls-add.php:97
29
- msgid "Poll '%s' Added Successfully."
30
  msgstr ""
31
 
32
- #: polls-add.php:97 polls-manager.php:334 wp-polls.php:52
33
  msgid "Manage Polls"
34
  msgstr ""
35
 
36
- #: polls-add.php:115 polls-manager.php:186
37
  msgid "Poll Question"
38
  msgstr ""
39
 
40
- #: polls-add.php:118 polls-manager.php:189 polls-manager.php:341
41
  msgid "Question"
42
  msgstr ""
43
 
44
- #: polls-add.php:123 polls-manager.php:194
45
  msgid "Poll Answers"
46
  msgstr ""
47
 
48
- #: polls-add.php:128 polls-manager.php:229
49
  msgid "Add Answer"
50
  msgstr ""
51
 
52
- #: polls-add.php:135 polls-manager.php:216
53
  msgid "Answer %s"
54
  msgstr ""
55
 
56
- #: polls-add.php:136 wp-polls.php:246
57
  msgid "Remove"
58
  msgstr ""
59
 
60
- #: polls-add.php:144 polls-manager.php:240
61
  msgid "Poll Multiple Answers"
62
  msgstr ""
63
 
64
- #: polls-add.php:147 polls-manager.php:243
65
  msgid "Allows Users To Select More Than One Answer?"
66
  msgstr ""
67
 
68
- #: polls-add.php:150 polls-manager.php:246 polls-options.php:201
69
- #: polls-options.php:210 polls-options.php:327 wp-polls.php:1562
70
  msgid "No"
71
  msgstr ""
72
 
73
- #: polls-add.php:151 polls-logs.php:378 polls-manager.php:247
74
- #: polls-manager.php:470 polls-options.php:202 polls-options.php:211
75
- #: polls-options.php:328 polls-uninstall.php:129 wp-polls.php:1563
76
  msgid "Yes"
77
  msgstr ""
78
 
79
- #: polls-add.php:156 polls-manager.php:252
80
  msgid "Maximum Number Of Selected Answers Allowed?"
81
  msgstr ""
82
 
83
- #: polls-add.php:169 polls-manager.php:269
84
  msgid "Poll Start/End Date"
85
  msgstr ""
86
 
87
- #: polls-add.php:172 polls-manager.php:272 polls-manager.php:343
88
  msgid "Start Date/Time"
89
  msgstr ""
90
 
91
- #: polls-add.php:176 polls-manager.php:280 polls-manager.php:344
92
  msgid "End Date/Time"
93
  msgstr ""
94
 
95
- #: polls-add.php:177 polls-manager.php:291
96
  msgid "Do NOT Expire This Poll"
97
  msgstr ""
98
 
99
- #: polls-add.php:180 polls-manager.php:315
100
  msgid "Cancel"
101
  msgstr ""
102
 
103
- #: polls-logs.php:34 polls-logs.php:35 polls-logs.php:38 polls-logs.php:67
104
- #: polls-logs.php:71 polls-logs.php:104 polls-logs.php:107 wp-polls.php:1313
105
  msgid "Guest"
106
  msgstr ""
107
 
108
- #: polls-logs.php:126
109
  msgid "Poll's Logs"
110
  msgstr ""
111
 
112
- #: polls-logs.php:129
113
  msgid "There are a total of <strong>%s</strong> recorded vote for this poll."
114
  msgid_plural ""
115
  "There are a total of <strong>%s</strong> recorded votes for this poll."
116
  msgstr[0] ""
117
  msgstr[1] ""
118
 
119
- #: polls-logs.php:130
120
  msgid ""
121
- "<strong>&raquo;</strong> <strong>%s</strong> vote is cast by registered "
122
  "users"
123
  msgid_plural ""
124
- "<strong>&raquo;</strong> <strong>%s</strong> votes are cast by registered "
125
  "users"
126
  msgstr[0] ""
127
  msgstr[1] ""
128
 
129
- #: polls-logs.php:131
130
  msgid ""
131
- "<strong>&raquo;</strong> <strong>%s</strong> vote is cast by comment "
132
  "authors"
133
  msgid_plural ""
134
- "<strong>&raquo;</strong> <strong>%s</strong> votes are cast by comment "
135
  "authors"
136
  msgstr[0] ""
137
  msgstr[1] ""
138
 
139
- #: polls-logs.php:132
140
- msgid "<strong>&raquo;</strong> <strong>%s</strong> vote is cast by guests"
141
  msgid_plural ""
142
- "<strong>&raquo;</strong> <strong>%s</strong> votes are cast by guests"
143
  msgstr[0] ""
144
  msgstr[1] ""
145
 
146
- #: polls-logs.php:137
147
  msgid "Filter Poll's Logs"
148
  msgstr ""
149
 
150
- #: polls-logs.php:146
151
  msgid "Display All Users That Voted For"
152
  msgstr ""
153
 
154
- #: polls-logs.php:167 polls-logs.php:215
155
  msgid "Voters To EXCLUDE"
156
  msgstr ""
157
 
158
- #: polls-logs.php:169 polls-logs.php:217
159
  msgid "Registered Users"
160
  msgstr ""
161
 
162
- #: polls-logs.php:170 polls-logs.php:218
163
  msgid "Comment Authors"
164
  msgstr ""
165
 
166
- #: polls-logs.php:171
167
  msgid "Guests"
168
  msgstr ""
169
 
170
- #: polls-logs.php:175 polls-logs.php:223 polls-logs.php:258
171
  msgid "Filter"
172
  msgstr ""
173
 
174
- #: polls-logs.php:187
175
  msgid "Display Users That Voted For"
176
  msgstr ""
177
 
178
- #: polls-logs.php:190
179
  msgid "More Than"
180
  msgstr ""
181
 
182
- #: polls-logs.php:191
183
  msgid "More Than Or Exactly"
184
  msgstr ""
185
 
186
- #: polls-logs.php:192
187
  msgid "Exactly"
188
  msgstr ""
189
 
190
- #: polls-logs.php:193
191
  msgid "Less Than Or Exactly"
192
  msgstr ""
193
 
194
- #: polls-logs.php:194
195
  msgid "Less Than"
196
  msgstr ""
197
 
198
- #: polls-logs.php:201
199
  msgid "1 Answer"
200
  msgstr ""
201
 
202
- #: polls-logs.php:204 polls-logs.php:206
203
  msgid "%s Answer"
204
  msgid_plural "%s Answers"
205
  msgstr[0] ""
206
  msgstr[1] ""
207
 
208
- #: polls-logs.php:219
209
  msgid "Guests will automatically be excluded"
210
  msgstr ""
211
 
212
- #: polls-logs.php:240
213
  msgid "Display What This User Has Voted"
214
  msgstr ""
215
 
216
- #: polls-logs.php:266
217
  msgid "Clear Filter"
218
  msgstr ""
219
 
220
- #: polls-logs.php:273
221
  msgid "Poll Logs"
222
  msgstr ""
223
 
224
- #: polls-logs.php:278
225
  msgid ""
226
  "This default filter is limited to display only <strong>%s</strong> records."
227
  msgstr ""
228
 
229
- #: polls-logs.php:286 polls-logs.php:329 wp-polls.php:245
230
  msgid "Answer"
231
  msgstr ""
232
 
233
- #: polls-logs.php:287
234
  msgid "IP"
235
  msgstr ""
236
 
237
- #: polls-logs.php:288
238
  msgid "Host"
239
  msgstr ""
240
 
241
- #: polls-logs.php:289 polls-logs.php:336
242
  msgid "Date"
243
  msgstr ""
244
 
245
- #: polls-logs.php:296 polls-logs.php:324 polls-manager.php:274
246
- #: polls-manager.php:286 polls-manager.php:364 polls-manager.php:372
247
- #: wp-polls.php:445 wp-polls.php:450 wp-polls.php:561 wp-polls.php:566
248
- #: wp-polls.php:969 wp-polls.php:973
249
  msgid "%s @ %s"
250
  msgstr ""
251
 
252
- #: polls-logs.php:304 polls-logs.php:334
253
  msgid "User"
254
  msgstr ""
255
 
256
- #: polls-logs.php:333
257
  msgid "No."
258
  msgstr ""
259
 
260
- #: polls-logs.php:335
261
  msgid "IP/Host"
262
  msgstr ""
263
 
264
- #: polls-logs.php:357
265
  msgid "Total number of records that matches this filter: <strong>%s</strong>"
266
  msgstr ""
267
 
268
- #: polls-logs.php:364
269
  msgid "No poll logs matches the filter."
270
  msgstr ""
271
 
272
- #: polls-logs.php:366 polls-logs.php:382
273
  msgid "No poll logs available for this poll."
274
  msgstr ""
275
 
276
- #: polls-logs.php:373
277
  msgid "Delete Poll Logs"
278
  msgstr ""
279
 
280
- #: polls-logs.php:377
281
  msgid "Are You Sure You Want To Delete Logs For This Poll Only?"
282
  msgstr ""
283
 
284
- #: polls-logs.php:379 wp-polls.php:240 wp-polls.php:1392
285
  msgid "Delete Logs For This Poll Only"
286
  msgstr ""
287
 
288
- #: polls-logs.php:379
289
  msgid ""
290
  "You are about to delete poll logs for this poll '%s' ONLY. This action is "
291
  "not reversible."
292
  msgstr ""
293
 
294
- #: polls-logs.php:386 polls-manager.php:478
295
  msgid ""
296
  "Note: If your logging method is by IP and Cookie or by Cookie, users may "
297
  "still be unable to vote if they have voted before as the cookie is still "
298
  "stored in their computer."
299
  msgstr ""
300
 
301
- #: polls-manager.php:39 polls-manager.php:184 polls-manager.php:303
302
  msgid "Edit Poll"
303
  msgstr ""
304
 
305
- #: polls-manager.php:99
306
  msgid "No Changes Had Been Made To Poll's Question '%s'."
307
  msgstr ""
308
 
309
- #: polls-manager.php:113
310
  msgid "No Changes Had Been Made To Poll's Answer '%s'."
311
  msgstr ""
312
 
313
- #: polls-manager.php:115
314
  msgid "Poll's Answer '%s' Edited Successfully."
315
  msgstr ""
316
 
317
- #: polls-manager.php:119
318
  msgid "Invalid Poll '%s'."
319
  msgstr ""
320
 
321
- #: polls-manager.php:134
322
  msgid "Poll's Answer '%s' Added Successfully."
323
  msgstr ""
324
 
325
- #: polls-manager.php:141
326
  msgid "Poll '%s' Edited Successfully."
327
  msgstr ""
328
 
329
- #: polls-manager.php:198
330
  msgid "Answer No."
331
  msgstr ""
332
 
333
- #: polls-manager.php:199
334
  msgid "Answer Text"
335
  msgstr ""
336
 
337
- #: polls-manager.php:200
338
  msgid "No. Of Votes"
339
  msgstr ""
340
 
341
- #: polls-manager.php:209
342
  msgid "Null Votes"
343
  msgstr ""
344
 
345
- #: polls-manager.php:218 polls-manager.php:419
346
  msgid "Delete"
347
  msgstr ""
348
 
349
- #: polls-manager.php:218
350
  msgid "You are about to delete this poll's answer '%s'."
351
  msgstr ""
352
 
353
- #: polls-manager.php:230
354
  msgid "Total Votes:"
355
  msgstr ""
356
 
357
- #: polls-manager.php:235 polls-manager.php:453
358
  msgid "Total Voters:"
359
  msgstr ""
360
 
361
- #: polls-manager.php:275
362
  msgid "Edit Start Date/Time"
363
  msgstr ""
364
 
365
- #: polls-manager.php:284
366
  msgid "This Poll Will Not Expire"
367
  msgstr ""
368
 
369
- #: polls-manager.php:313 wp-polls.php:244 wp-polls.php:1435
370
  msgid "Close Poll"
371
  msgstr ""
372
 
373
- #: polls-manager.php:313
374
  msgid "You are about to CLOSE this poll '%s'."
375
  msgstr ""
376
 
377
- #: polls-manager.php:314 wp-polls.php:243 wp-polls.php:1423
378
  msgid "Open Poll"
379
  msgstr ""
380
 
381
- #: polls-manager.php:314
382
  msgid "You are about to OPEN this poll '%s'."
383
  msgstr ""
384
 
385
- #: polls-manager.php:335 wp-polls.php:49 wp-polls.php:1516 wp-polls.php:1551
386
  msgid "Polls"
387
  msgstr ""
388
 
389
- #: polls-manager.php:340
390
  msgid "ID"
391
  msgstr ""
392
 
393
- #: polls-manager.php:342 polls-templates.php:123 polls-templates.php:126
394
- #: wp-polls.php:1689 wp-polls.php:1692
395
  msgid "Total Voters"
396
  msgstr ""
397
 
398
- #: polls-manager.php:345
399
  msgid "Status"
400
  msgstr ""
401
 
402
- #: polls-manager.php:346
403
  msgid "Action"
404
  msgstr ""
405
 
406
- #: polls-manager.php:370 wp-polls.php:448 wp-polls.php:564 wp-polls.php:971
407
  msgid "No Expiry"
408
  msgstr ""
409
 
410
- #: polls-manager.php:395 polls-manager.php:399 polls-manager.php:402
411
  msgid "Displayed:"
412
  msgstr ""
413
 
414
- #: polls-manager.php:410
415
  msgid "Open"
416
  msgstr ""
417
 
418
- #: polls-manager.php:412
419
  msgid "Future"
420
  msgstr ""
421
 
422
- #: polls-manager.php:414
423
  msgid "Closed"
424
  msgstr ""
425
 
426
- #: polls-manager.php:417
427
  msgid "Logs"
428
  msgstr ""
429
 
430
- #: polls-manager.php:418
431
  msgid "Edit"
432
  msgstr ""
433
 
434
- #: polls-manager.php:419
435
  msgid "You are about to delete this poll, '%s'."
436
  msgstr ""
437
 
438
- #: polls-manager.php:427
439
  msgid "No Polls Found"
440
  msgstr ""
441
 
442
- #: polls-manager.php:437
443
  msgid "Polls Stats:"
444
  msgstr ""
445
 
446
- #: polls-manager.php:441
447
  msgid "Total Polls:"
448
  msgstr ""
449
 
450
- #: polls-manager.php:445
451
  msgid "Total Polls' Answers:"
452
  msgstr ""
453
 
454
- #: polls-manager.php:449
455
- msgid "Total Votes Cast:"
456
  msgstr ""
457
 
458
- #: polls-manager.php:462
459
  msgid "Polls Logs"
460
  msgstr ""
461
 
462
- #: polls-manager.php:469
463
  msgid "Are You Sure You Want To Delete All Polls Logs?"
464
  msgstr ""
465
 
466
- #: polls-manager.php:471 wp-polls.php:238 wp-polls.php:1380
467
  msgid "Delete All Logs"
468
  msgstr ""
469
 
470
- #: polls-manager.php:471
471
  msgid "You are about to delete all poll logs. This action is not reversible."
472
  msgstr ""
473
 
474
- #: polls-manager.php:474 wp-polls.php:237
475
  msgid "No poll logs available."
476
  msgstr ""
477
 
478
- #: polls-options.php:71 polls-options.php:132 polls-options.php:135
479
  msgid "Poll Bar Style"
480
  msgstr ""
481
 
482
- #: polls-options.php:72
483
  msgid "Poll AJAX Style"
484
  msgstr ""
485
 
486
- #: polls-options.php:73
487
  msgid "Sort Poll Answers By Option"
488
  msgstr ""
489
 
490
- #: polls-options.php:74
491
  msgid "Sort Order Of Poll Answers Option"
492
  msgstr ""
493
 
494
- #: polls-options.php:75
495
  msgid "Sort Poll Results By Option"
496
  msgstr ""
497
 
498
- #: polls-options.php:76
499
  msgid "Sort Order Of Poll Results Option"
500
  msgstr ""
501
 
502
- #: polls-options.php:77
503
  msgid "Number Of Polls Per Page To Display In Poll Archive Option"
504
  msgstr ""
505
 
506
- #: polls-options.php:78
507
  msgid "Type Of Polls To Display In Poll Archive Option"
508
  msgstr ""
509
 
510
- #: polls-options.php:79
511
  msgid "Poll Archive URL Option"
512
  msgstr ""
513
 
514
- #: polls-options.php:80
515
  msgid "Show Poll Achive Link Option"
516
  msgstr ""
517
 
518
- #: polls-options.php:81
519
  msgid "Current Active Poll Option"
520
  msgstr ""
521
 
522
- #: polls-options.php:82
523
  msgid "Poll Close Option"
524
  msgstr ""
525
 
526
- #: polls-options.php:83 polls-options.php:282
527
  msgid "Logging Method"
528
  msgstr ""
529
 
530
- #: polls-options.php:84
531
  msgid "Cookie And Log Expiry Option"
532
  msgstr ""
533
 
534
- #: polls-options.php:85
535
  msgid "Allow To Vote Option"
536
  msgstr ""
537
 
538
- #: polls-options.php:90 polls-templates.php:86
539
  msgid "Updated"
540
  msgstr ""
541
 
542
- #: polls-options.php:95 polls-templates.php:91
543
  msgid "No Poll Option Updated"
544
  msgstr ""
545
 
546
- #: polls-options.php:130 wp-polls.php:54
547
  msgid "Poll Options"
548
  msgstr ""
549
 
550
- #: polls-options.php:162
551
  msgid "Use CSS Style"
552
  msgstr ""
553
 
554
- #: polls-options.php:166
555
  msgid "Poll Bar Background"
556
  msgstr ""
557
 
558
- #: polls-options.php:171
559
  msgid "Poll Bar Border"
560
  msgstr ""
561
 
562
- #: polls-options.php:176
563
  msgid "Poll Bar Height"
564
  msgstr ""
565
 
566
- #: polls-options.php:180
567
  msgid "Your poll bar will look like this"
568
  msgstr ""
569
 
570
- #: polls-options.php:195
571
  msgid "Polls AJAX Style"
572
  msgstr ""
573
 
574
- #: polls-options.php:198
575
  msgid "Show Loading Image With Text"
576
  msgstr ""
577
 
578
- #: polls-options.php:207
579
  msgid "Show Fading In And Fading Out Of Poll"
580
  msgstr ""
581
 
582
- #: polls-options.php:218
583
  msgid "Sorting Of Poll Answers"
584
  msgstr ""
585
 
586
- #: polls-options.php:221
587
  msgid "Sort Poll Answers By:"
588
  msgstr ""
589
 
590
- #: polls-options.php:224 polls-options.php:249
591
  msgid "Exact Order"
592
  msgstr ""
593
 
594
- #: polls-options.php:225 polls-options.php:250
595
  msgid "Alphabetical Order"
596
  msgstr ""
597
 
598
- #: polls-options.php:226 polls-options.php:251
599
  msgid "Random Order"
600
  msgstr ""
601
 
602
- #: polls-options.php:231
603
  msgid "Sort Order Of Poll Answers:"
604
  msgstr ""
605
 
606
- #: polls-options.php:234 polls-options.php:259
607
  msgid "Ascending"
608
  msgstr ""
609
 
610
- #: polls-options.php:235 polls-options.php:260
611
  msgid "Descending"
612
  msgstr ""
613
 
614
- #: polls-options.php:242
615
  msgid "Sorting Of Poll Results"
616
  msgstr ""
617
 
618
- #: polls-options.php:245
619
  msgid "Sort Poll Results By:"
620
  msgstr ""
621
 
622
- #: polls-options.php:248
623
  msgid "Votes Cast"
624
  msgstr ""
625
 
626
- #: polls-options.php:256
627
  msgid "Sort Order Of Poll Results:"
628
  msgstr ""
629
 
630
- #: polls-options.php:267
631
  msgid "Allow To Vote"
632
  msgstr ""
633
 
634
- #: polls-options.php:270
635
  msgid "Who Is Allowed To Vote?"
636
  msgstr ""
637
 
638
- #: polls-options.php:273
639
  msgid "Guests Only"
640
  msgstr ""
641
 
642
- #: polls-options.php:274
643
  msgid "Registered Users Only"
644
  msgstr ""
645
 
646
- #: polls-options.php:275
647
  msgid "Registered Users And Guests"
648
  msgstr ""
649
 
650
- #: polls-options.php:285
651
  msgid "Poll Logging Method:"
652
  msgstr ""
653
 
654
- #: polls-options.php:288
655
  msgid "Do Not Log"
656
  msgstr ""
657
 
658
- #: polls-options.php:289
659
  msgid "Logged By Cookie"
660
  msgstr ""
661
 
662
- #: polls-options.php:290
663
  msgid "Logged By IP"
664
  msgstr ""
665
 
666
- #: polls-options.php:291
667
  msgid "Logged By Cookie And IP"
668
  msgstr ""
669
 
670
- #: polls-options.php:292
671
  msgid "Logged By Username"
672
  msgstr ""
673
 
674
- #: polls-options.php:297
675
  msgid "Expiry Time For Cookie And Log:"
676
  msgstr ""
677
 
678
- #: polls-options.php:298
679
  msgid "seconds (0 to disable)"
680
  msgstr ""
681
 
682
- #: polls-options.php:303
683
  msgid "Poll Archive"
684
  msgstr ""
685
 
686
- #: polls-options.php:306
687
  msgid "Number Of Polls Per Page:"
688
  msgstr ""
689
 
690
- #: polls-options.php:310
691
  msgid "Type Of Polls To Display In Poll Archive:"
692
  msgstr ""
693
 
694
- #: polls-options.php:313
695
  msgid "Closed Polls Only"
696
  msgstr ""
697
 
698
- #: polls-options.php:314
699
  msgid "Opened Polls Only"
700
  msgstr ""
701
 
702
- #: polls-options.php:315
703
  msgid "Closed And Opened Polls"
704
  msgstr ""
705
 
706
- #: polls-options.php:320
707
  msgid "Poll Archive URL:"
708
  msgstr ""
709
 
710
- #: polls-options.php:324
711
  msgid "Display Poll Archive Link Below Poll?"
712
  msgstr ""
713
 
714
- #: polls-options.php:333 polls-options.php:368
715
  msgid "Note"
716
  msgstr ""
717
 
718
- #: polls-options.php:334
719
  msgid ""
720
  "Only polls' results will be shown in the Poll Archive regardless of whether "
721
  "the poll is closed or opened."
722
  msgstr ""
723
 
724
- #: polls-options.php:339 polls-options.php:342
725
  msgid "Current Active Poll"
726
  msgstr ""
727
 
728
- #: polls-options.php:345 wp-polls.php:1570
729
  msgid "Do NOT Display Poll (Disable)"
730
  msgstr ""
731
 
732
- #: polls-options.php:346 wp-polls.php:1571
733
  msgid "Display Random Poll"
734
  msgstr ""
735
 
736
- #: polls-options.php:347 wp-polls.php:1572
737
  msgid "Display Latest Poll"
738
  msgstr ""
739
 
740
- #: polls-options.php:369
741
- msgid ""
742
- "If you chose 'Display Multiple Polls' for the above option, you need to "
743
- "configure it in Presentation -> Widgets -> Poll."
744
- msgstr ""
745
-
746
- #: polls-options.php:373
747
  msgid "When Poll Is Closed"
748
  msgstr ""
749
 
750
- #: polls-options.php:376
751
  msgid "Display Poll's Results"
752
  msgstr ""
753
 
754
- #: polls-options.php:377
755
  msgid "Display Disabled Poll's Voting Form"
756
  msgstr ""
757
 
758
- #: polls-options.php:378
759
  msgid "Do Not Display Poll In Post/Sidebar"
760
  msgstr ""
761
 
762
- #: polls-options.php:386 polls-templates.php:497
763
  msgid "Save Changes"
764
  msgstr ""
765
 
766
- #: polls-templates.php:67
767
  msgid "Voting Form Header Template"
768
  msgstr ""
769
 
770
- #: polls-templates.php:68
771
  msgid "Voting Form Body Template"
772
  msgstr ""
773
 
774
- #: polls-templates.php:69
775
  msgid "Voting Form Footer Template"
776
  msgstr ""
777
 
778
- #: polls-templates.php:70
779
  msgid "Result Header Template"
780
  msgstr ""
781
 
782
- #: polls-templates.php:71
783
  msgid "Result Body Template"
784
  msgstr ""
785
 
786
- #: polls-templates.php:72
787
  msgid "Result Body2 Template"
788
  msgstr ""
789
 
790
- #: polls-templates.php:73
791
  msgid "Result Footer Template"
792
  msgstr ""
793
 
794
- #: polls-templates.php:74
795
  msgid "Result Footer2 Template"
796
  msgstr ""
797
 
798
- #: polls-templates.php:75
799
  msgid "Poll Archive Link Template"
800
  msgstr ""
801
 
802
- #: polls-templates.php:76
803
  msgid "Poll Archive Poll Header Template"
804
  msgstr ""
805
 
806
- #: polls-templates.php:77
807
  msgid "Poll Archive Poll Footer Template"
808
  msgstr ""
809
 
810
- #: polls-templates.php:78
811
  msgid "Poll Archive Paging Header Template"
812
  msgstr ""
813
 
814
- #: polls-templates.php:79
815
  msgid "Poll Archive Paging Footer Template"
816
  msgstr ""
817
 
818
- #: polls-templates.php:80
819
  msgid "Poll Disabled Template"
820
  msgstr ""
821
 
822
- #: polls-templates.php:81
823
  msgid "Poll Error Template"
824
  msgstr ""
825
 
826
- #: polls-templates.php:111 polls-templates.php:126 wp-polls.php:1680
827
- #: wp-polls.php:1693
828
  msgid "Vote"
829
  msgstr ""
830
 
831
- #: polls-templates.php:111 wp-polls.php:1681
832
  msgid "View Results Of This Poll"
833
  msgstr ""
834
 
835
- #: polls-templates.php:111 wp-polls.php:1681
836
  msgid "View Results"
837
  msgstr ""
838
 
839
- #: polls-templates.php:117 polls-templates.php:120 wp-polls.php:1686
840
- #: wp-polls.php:1687
841
  msgid ","
842
  msgstr ""
843
 
844
- #: polls-templates.php:117 polls-templates.php:120 wp-polls.php:1686
845
- #: wp-polls.php:1687
846
  msgid "Votes"
847
  msgstr ""
848
 
849
- #: polls-templates.php:120 wp-polls.php:1687
850
  msgid "You Have Voted For This Choice"
851
  msgstr ""
852
 
853
- #: polls-templates.php:126 wp-polls.php:1693
854
  msgid "Vote For This Poll"
855
  msgstr ""
856
 
857
- #: polls-templates.php:129 wp-polls.php:1719
858
  msgid "Polls Archive"
859
  msgstr ""
860
 
861
- #: polls-templates.php:135 wp-polls.php:1723
862
  msgid "Start Date:"
863
  msgstr ""
864
 
865
- #: polls-templates.php:135 wp-polls.php:1723
866
  msgid "End Date:"
867
  msgstr ""
868
 
869
- #: polls-templates.php:144 wp-polls.php:1695
870
  msgid "Sorry, there are no polls available at the moment."
871
  msgstr ""
872
 
873
- #: polls-templates.php:147 wp-polls.php:1696
874
  msgid "An error has occurred when processing your poll."
875
  msgstr ""
876
 
877
- #: polls-templates.php:159 wp-polls.php:55
878
  msgid "Poll Templates"
879
  msgstr ""
880
 
881
- #: polls-templates.php:161
882
  msgid "Template Variables"
883
  msgstr ""
884
 
885
- #: polls-templates.php:166
886
  msgid "Display the poll's ID"
887
  msgstr ""
888
 
889
- #: polls-templates.php:170
890
  msgid "Display the poll's answer ID"
891
  msgstr ""
892
 
893
- #: polls-templates.php:176
894
  msgid "Display the poll's question"
895
  msgstr ""
896
 
897
- #: polls-templates.php:180
898
  msgid "Display the poll's answer"
899
  msgstr ""
900
 
901
- #: polls-templates.php:186
902
  msgid ""
903
  "Display the poll's total votes NOT the number of people who voted for the "
904
  "poll"
905
  msgstr ""
906
 
907
- #: polls-templates.php:190
908
  msgid "Display the poll's answer without HTML formatting."
909
  msgstr ""
910
 
911
- #: polls-templates.php:196
912
  msgid "Displays URL to poll's result"
913
  msgstr ""
914
 
915
- #: polls-templates.php:200
916
  msgid "Display the poll's answer votes"
917
  msgstr ""
918
 
919
- #: polls-templates.php:206
920
  msgid "Display the poll's most voted answer"
921
  msgstr ""
922
 
923
- #: polls-templates.php:210
924
  msgid "Display the poll's answer percentage"
925
  msgstr ""
926
 
927
- #: polls-templates.php:216
928
  msgid "Display the poll's answer votes for the most voted answer"
929
  msgstr ""
930
 
931
- #: polls-templates.php:220
932
  msgid "Display the poll's answer image width"
933
  msgstr ""
934
 
935
- #: polls-templates.php:226
936
  msgid "Display the poll's answer percentage for the most voted answer"
937
  msgstr ""
938
 
939
- #: polls-templates.php:230
940
  msgid "Display the poll's least voted answer"
941
  msgstr ""
942
 
943
- #: polls-templates.php:236
944
  msgid "Display the poll's start date/time"
945
  msgstr ""
946
 
947
- #: polls-templates.php:240
948
  msgid "Display the poll's answer votes for the least voted answer"
949
  msgstr ""
950
 
951
- #: polls-templates.php:246
952
  msgid "Display the poll's end date/time"
953
  msgstr ""
954
 
955
- #: polls-templates.php:250
956
  msgid "Display the poll's answer percentage for the least voted answer"
957
  msgstr ""
958
 
959
- #: polls-templates.php:256
960
  msgid ""
961
  "Display the the maximum number of answers the user can choose if the poll "
962
  "supports multiple answers"
963
  msgstr ""
964
 
965
- #: polls-templates.php:260
966
  msgid ""
967
  "Display \"checkbox\" or \"radio\" input types depending on the poll type"
968
  msgstr ""
969
 
970
- #: polls-templates.php:266
971
  msgid ""
972
  "Display the number of people who voted for the poll NOT the total votes of "
973
  "the poll"
974
  msgstr ""
975
 
976
- #: polls-templates.php:270
977
  msgid "Display the poll archive URL"
978
  msgstr ""
979
 
980
- #: polls-templates.php:275
981
  msgid ""
982
  "Note: <strong>%POLL_TOTALVOTES%</strong> and <strong>%POLL_TOTALVOTERS%</"
983
  "strong> will be different if your poll supports multiple answers. If your "
984
  "poll allows only single answer, both value will be the same."
985
  msgstr ""
986
 
987
- #: polls-templates.php:281
988
  msgid "Poll Voting Form Templates"
989
  msgstr ""
990
 
991
- #: polls-templates.php:285
992
  msgid "Voting Form Header:"
993
  msgstr ""
994
 
995
- #: polls-templates.php:286 polls-templates.php:301 polls-templates.php:314
996
- #: polls-templates.php:330 polls-templates.php:345 polls-templates.php:360
997
- #: polls-templates.php:375 polls-templates.php:395 polls-templates.php:420
998
- #: polls-templates.php:429 polls-templates.php:438 polls-templates.php:457
999
- #: polls-templates.php:466 polls-templates.php:480 polls-templates.php:489
1000
  msgid "Allowed Variables:"
1001
  msgstr ""
1002
 
1003
- #: polls-templates.php:294 polls-templates.php:307 polls-templates.php:318
1004
- #: polls-templates.php:338 polls-templates.php:353 polls-templates.php:368
1005
- #: polls-templates.php:388 polls-templates.php:408 polls-templates.php:422
1006
- #: polls-templates.php:431 polls-templates.php:450 polls-templates.php:459
1007
- #: polls-templates.php:468 polls-templates.php:482 polls-templates.php:491
1008
  msgid "Restore Default Template"
1009
  msgstr ""
1010
 
1011
- #: polls-templates.php:300
1012
  msgid "Voting Form Body:"
1013
  msgstr ""
1014
 
1015
- #: polls-templates.php:313
1016
  msgid "Voting Form Footer:"
1017
  msgstr ""
1018
 
1019
- #: polls-templates.php:325
1020
  msgid "Poll Result Templates"
1021
  msgstr ""
1022
 
1023
- #: polls-templates.php:329
1024
  msgid "Result Header:"
1025
  msgstr ""
1026
 
1027
- #: polls-templates.php:344 polls-templates.php:359
1028
  msgid "Result Body:"
1029
  msgstr ""
1030
 
1031
- #: polls-templates.php:344 polls-templates.php:394
1032
  msgid "Displayed When The User HAS NOT Voted"
1033
  msgstr ""
1034
 
1035
- #: polls-templates.php:359 polls-templates.php:374
1036
  msgid "Displayed When The User HAS Voted"
1037
  msgstr ""
1038
 
1039
- #: polls-templates.php:374 polls-templates.php:394
1040
  msgid "Result Footer:"
1041
  msgstr ""
1042
 
1043
- #: polls-templates.php:415
1044
  msgid "Poll Archive Templates"
1045
  msgstr ""
1046
 
1047
- #: polls-templates.php:419
1048
  msgid "Poll Archive Link"
1049
  msgstr ""
1050
 
1051
- #: polls-templates.php:419
1052
  msgid "Template For Displaying Poll Archive Link"
1053
  msgstr ""
1054
 
1055
- #: polls-templates.php:428
1056
  msgid "Individual Poll Header"
1057
  msgstr ""
1058
 
1059
- #: polls-templates.php:428
1060
  msgid "Displayed Before Each Poll In The Poll Archive"
1061
  msgstr ""
1062
 
1063
- #: polls-templates.php:430 polls-templates.php:458 polls-templates.php:467
1064
- #: polls-templates.php:481 polls-templates.php:490
1065
  msgid "N/A"
1066
  msgstr ""
1067
 
1068
- #: polls-templates.php:437
1069
  msgid "Individual Poll Footer"
1070
  msgstr ""
1071
 
1072
- #: polls-templates.php:437
1073
  msgid "Displayed After Each Poll In The Poll Archive"
1074
  msgstr ""
1075
 
1076
- #: polls-templates.php:456
1077
  msgid "Paging Header"
1078
  msgstr ""
1079
 
1080
- #: polls-templates.php:456
1081
  msgid "Displayed Before Paging In The Poll Archive"
1082
  msgstr ""
1083
 
1084
- #: polls-templates.php:465
1085
  msgid "Paging Footer"
1086
  msgstr ""
1087
 
1088
- #: polls-templates.php:465
1089
  msgid "Displayed After Paging In The Poll Archive"
1090
  msgstr ""
1091
 
1092
- #: polls-templates.php:475
1093
  msgid "Poll Misc Templates"
1094
  msgstr ""
1095
 
1096
- #: polls-templates.php:479
1097
  msgid "Poll Disabled"
1098
  msgstr ""
1099
 
1100
- #: polls-templates.php:479
1101
  msgid "Displayed When The Poll Is Disabled"
1102
  msgstr ""
1103
 
1104
- #: polls-templates.php:488
1105
  msgid "Poll Error"
1106
  msgstr ""
1107
 
1108
- #: polls-templates.php:488
1109
  msgid "Displayed When An Error Has Occured While Processing The Poll"
1110
  msgstr ""
1111
 
1112
- #: polls-uninstall.php:39 polls-uninstall.php:130
1113
  msgid "UNINSTALL WP-Polls"
1114
  msgstr ""
1115
 
@@ -1121,264 +1114,264 @@ msgstr ""
1121
  msgid "Setting Key '%s' has been deleted."
1122
  msgstr ""
1123
 
1124
- #: polls-uninstall.php:76 polls-uninstall.php:88 wp-polls.php:56
1125
  msgid "Uninstall WP-Polls"
1126
  msgstr ""
1127
 
1128
- #: polls-uninstall.php:77
1129
  msgid ""
1130
  "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-Polls Will "
1131
  "Be Deactivated Automatically."
1132
  msgstr ""
1133
 
1134
- #: polls-uninstall.php:90
1135
  msgid ""
1136
  "Deactivating WP-Polls plugin does not remove any data that may have been "
1137
  "created, such as the poll data and the poll's voting logs. To completely "
1138
  "remove this plugin, you can uninstall it here."
1139
  msgstr ""
1140
 
1141
- #: polls-uninstall.php:93
1142
  msgid "WARNING:"
1143
  msgstr ""
1144
 
1145
- #: polls-uninstall.php:94
1146
  msgid ""
1147
  "Once uninstalled, this cannot be undone. You should use a Database Backup "
1148
  "plugin of WordPress to back up all the data first."
1149
  msgstr ""
1150
 
1151
- #: polls-uninstall.php:97
1152
  msgid "The following WordPress Options/Tables will be DELETED:"
1153
  msgstr ""
1154
 
1155
- #: polls-uninstall.php:102
1156
  msgid "WordPress Options"
1157
  msgstr ""
1158
 
1159
- #: polls-uninstall.php:103
1160
  msgid "WordPress Tables"
1161
  msgstr ""
1162
 
1163
- #: polls-uninstall.php:128
1164
  msgid "Do you really want to uninstall WP-Polls?"
1165
  msgstr ""
1166
 
1167
- #: polls-uninstall.php:130
1168
  msgid ""
1169
  "You Are About To Uninstall WP-Polls From WordPress.\\nThis Action Is Not "
1170
  "Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
1171
  msgstr ""
1172
 
1173
- #: wp-polls.php:216
1174
  msgid "Your last request is still being processed. Please wait a while ..."
1175
  msgstr ""
1176
 
1177
- #: wp-polls.php:217
1178
  msgid "Please choose a valid poll answer."
1179
  msgstr ""
1180
 
1181
- #: wp-polls.php:218
1182
  msgid "Maximum number of choices allowed: "
1183
  msgstr ""
1184
 
1185
- #: wp-polls.php:236 wp-polls.php:1447
1186
  msgid "Delete Poll"
1187
  msgstr ""
1188
 
1189
- #: wp-polls.php:239
1190
  msgid "Please check the \\'Yes\\' checkbox if you want to delete all logs."
1191
  msgstr ""
1192
 
1193
- #: wp-polls.php:241
1194
  msgid ""
1195
  "Please check the \\'Yes\\' checkbox if you want to delete all logs for this "
1196
  "poll ONLY."
1197
  msgstr ""
1198
 
1199
- #: wp-polls.php:242 wp-polls.php:1406
1200
  msgid "Delete Poll Answer"
1201
  msgstr ""
1202
 
1203
- #: wp-polls.php:262
 
 
 
 
1204
  msgid "Enter Poll ID"
1205
  msgstr ""
1206
 
1207
- #: wp-polls.php:263
1208
  msgid "Error: Poll ID must be numeric"
1209
  msgstr ""
1210
 
1211
- #: wp-polls.php:263
1212
  msgid "Please enter Poll ID again"
1213
  msgstr ""
1214
 
1215
- #: wp-polls.php:264
1216
- msgid "Poll"
1217
- msgstr ""
1218
-
1219
- #: wp-polls.php:265
1220
  msgid "Insert Poll"
1221
  msgstr ""
1222
 
1223
- #: wp-polls.php:525 wp-polls.php:700
1224
  msgid "Loading"
1225
  msgstr ""
1226
 
1227
- #: wp-polls.php:747
1228
  msgid ""
1229
  "Note: There is a poll embedded within this post, please visit the site to "
1230
  "participate in this post's poll."
1231
  msgstr ""
1232
 
1233
- #: wp-polls.php:1112
1234
  msgid "Page %s of %s"
1235
  msgstr ""
1236
 
1237
- #: wp-polls.php:1114
1238
  msgid "&laquo; First"
1239
  msgstr ""
1240
 
1241
- #: wp-polls.php:1118
1242
  msgid "&laquo;"
1243
  msgstr ""
1244
 
1245
- #: wp-polls.php:1128
1246
  msgid "&raquo;"
1247
  msgstr ""
1248
 
1249
- #: wp-polls.php:1132
1250
  msgid "Last &raquo;"
1251
  msgstr ""
1252
 
1253
- #: wp-polls.php:1287
1254
  msgid "Invalid Poll ID"
1255
  msgstr ""
1256
 
1257
- #: wp-polls.php:1294
1258
  msgid "Failed To Verify Referrer"
1259
  msgstr ""
1260
 
1261
- #: wp-polls.php:1343
1262
  msgid "Unable To Update Poll Total Votes And Poll Total Voters. Poll ID #%s"
1263
  msgstr ""
1264
 
1265
- #: wp-polls.php:1346
1266
  msgid "You Had Already Voted For This Poll. Poll ID #%s"
1267
  msgstr ""
1268
 
1269
- #: wp-polls.php:1349
1270
  msgid "Invalid Poll ID. Poll ID #%s"
1271
  msgstr ""
1272
 
1273
- #: wp-polls.php:1385
1274
  msgid "All Polls Logs Have Been Deleted."
1275
  msgstr ""
1276
 
1277
- #: wp-polls.php:1387
1278
  msgid "An Error Has Occurred While Deleting All Polls Logs."
1279
  msgstr ""
1280
 
1281
- #: wp-polls.php:1399
1282
  msgid "All Logs For '%s' Has Been Deleted."
1283
  msgstr ""
1284
 
1285
- #: wp-polls.php:1401
1286
  msgid "An Error Has Occurred While Deleting All Logs For '%s'"
1287
  msgstr ""
1288
 
1289
- #: wp-polls.php:1417
1290
  msgid "Poll Answer '%s' Deleted Successfully."
1291
  msgstr ""
1292
 
1293
- #: wp-polls.php:1419
1294
  msgid "Error In Deleting Poll Answer '%s'."
1295
  msgstr ""
1296
 
1297
- #: wp-polls.php:1429
1298
  msgid "Poll '%s' Is Now Opened"
1299
  msgstr ""
1300
 
1301
- #: wp-polls.php:1431
1302
  msgid "Error Opening Poll '%s'"
1303
  msgstr ""
1304
 
1305
- #: wp-polls.php:1441
1306
  msgid "Poll '%s' Is Now Closed"
1307
  msgstr ""
1308
 
1309
- #: wp-polls.php:1443
1310
  msgid "Error Closing Poll '%s'"
1311
  msgstr ""
1312
 
1313
- #: wp-polls.php:1456
1314
  msgid "Error In Deleting Poll '%s' Question"
1315
  msgstr ""
1316
 
1317
- #: wp-polls.php:1459
1318
  msgid "Poll '%s' Deleted Successfully"
1319
  msgstr ""
1320
 
1321
- #. #-#-#-#-# plugin.pot (WP-Polls 2.63) #-#-#-#-#
1322
  #. Plugin Name of the plugin/theme
1323
- #: wp-polls.php:1488 wp-polls.php:1490 wp-polls.php:1500
1324
  msgid "WP-Polls"
1325
  msgstr ""
1326
 
1327
- #: wp-polls.php:1502
1328
  msgid "<strong>%s</strong> poll was created."
1329
  msgid_plural "<strong>%s</strong> polls were created."
1330
  msgstr[0] ""
1331
  msgstr[1] ""
1332
 
1333
- #: wp-polls.php:1503
1334
  msgid "<strong>%s</strong> polls' answer was given."
1335
  msgid_plural "<strong>%s</strong> polls' answers were given."
1336
  msgstr[0] ""
1337
  msgstr[1] ""
1338
 
1339
- #: wp-polls.php:1504
1340
- msgid "<strong>%s</strong> vote was cast."
1341
- msgid_plural "<strong>%s</strong> votes were cast."
1342
  msgstr[0] ""
1343
  msgstr[1] ""
1344
 
1345
- #: wp-polls.php:1515
1346
  msgid "WP-Polls polls"
1347
  msgstr ""
1348
 
1349
- #: wp-polls.php:1557
1350
  msgid "Title:"
1351
  msgstr ""
1352
 
1353
- #: wp-polls.php:1560
1354
  msgid "Display Polls Archive Link Below Poll?"
1355
  msgstr ""
1356
 
1357
- #: wp-polls.php:1568
1358
  msgid "Poll To Display:"
1359
  msgstr ""
1360
 
1361
- #: wp-polls.php:1664
1362
  msgid "How Is My Site?"
1363
  msgstr ""
1364
 
1365
- #: wp-polls.php:1667
1366
  msgid "Good"
1367
  msgstr ""
1368
 
1369
- #: wp-polls.php:1668
1370
  msgid "Excellent"
1371
  msgstr ""
1372
 
1373
- #: wp-polls.php:1669
1374
  msgid "Bad"
1375
  msgstr ""
1376
 
1377
- #: wp-polls.php:1670
1378
  msgid "Can Be Improved"
1379
  msgstr ""
1380
 
1381
- #: wp-polls.php:1671
1382
  msgid "No Comments"
1383
  msgstr ""
1384
 
1
+ # Copyright (C) 2014 WP-Polls
2
  # This file is distributed under the same license as the WP-Polls package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP-Polls 2.67\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-polls\n"
7
+ "POT-Creation-Date: 2014-12-03 14:55:28+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: polls-add.php:34 polls-add.php:110 polls-add.php:177 wp-polls.php:56
 
16
  msgid "Add Poll"
17
  msgstr ""
18
 
19
+ #: polls-add.php:79
20
  msgid "Error In Adding Poll '%s'."
21
  msgstr ""
22
 
23
+ #: polls-add.php:88 polls-manager.php:129
24
  msgid "Error In Adding Poll's Answer '%s'."
25
  msgstr ""
26
 
27
+ #: polls-add.php:95
28
+ msgid "Poll '%s' (ID: %s) Added Successfully."
29
  msgstr ""
30
 
31
+ #: polls-add.php:95 polls-manager.php:325 wp-polls.php:55
32
  msgid "Manage Polls"
33
  msgstr ""
34
 
35
+ #: polls-add.php:112 polls-manager.php:178
36
  msgid "Poll Question"
37
  msgstr ""
38
 
39
+ #: polls-add.php:115 polls-manager.php:181 polls-manager.php:332
40
  msgid "Question"
41
  msgstr ""
42
 
43
+ #: polls-add.php:120 polls-manager.php:186
44
  msgid "Poll Answers"
45
  msgstr ""
46
 
47
+ #: polls-add.php:125 polls-manager.php:221
48
  msgid "Add Answer"
49
  msgstr ""
50
 
51
+ #: polls-add.php:132 polls-manager.php:208
52
  msgid "Answer %s"
53
  msgstr ""
54
 
55
+ #: polls-add.php:133 wp-polls.php:249
56
  msgid "Remove"
57
  msgstr ""
58
 
59
+ #: polls-add.php:141 polls-manager.php:232
60
  msgid "Poll Multiple Answers"
61
  msgstr ""
62
 
63
+ #: polls-add.php:144 polls-manager.php:235
64
  msgid "Allows Users To Select More Than One Answer?"
65
  msgstr ""
66
 
67
+ #: polls-add.php:147 polls-manager.php:238 polls-options.php:199
68
+ #: polls-options.php:208 polls-options.php:325 wp-polls.php:1576
69
  msgid "No"
70
  msgstr ""
71
 
72
+ #: polls-add.php:148 polls-logs.php:383 polls-manager.php:239
73
+ #: polls-manager.php:461 polls-options.php:200 polls-options.php:209
74
+ #: polls-options.php:326 polls-uninstall.php:127 wp-polls.php:1577
75
  msgid "Yes"
76
  msgstr ""
77
 
78
+ #: polls-add.php:153 polls-manager.php:244
79
  msgid "Maximum Number Of Selected Answers Allowed?"
80
  msgstr ""
81
 
82
+ #: polls-add.php:166 polls-manager.php:261
83
  msgid "Poll Start/End Date"
84
  msgstr ""
85
 
86
+ #: polls-add.php:169 polls-manager.php:264 polls-manager.php:334
87
  msgid "Start Date/Time"
88
  msgstr ""
89
 
90
+ #: polls-add.php:173 polls-manager.php:272 polls-manager.php:335
91
  msgid "End Date/Time"
92
  msgstr ""
93
 
94
+ #: polls-add.php:174 polls-manager.php:283
95
  msgid "Do NOT Expire This Poll"
96
  msgstr ""
97
 
98
+ #: polls-add.php:177 polls-manager.php:307
99
  msgid "Cancel"
100
  msgstr ""
101
 
102
+ #: polls-logs.php:34 polls-logs.php:35 polls-logs.php:38 polls-logs.php:70
103
+ #: polls-logs.php:74 polls-logs.php:107 polls-logs.php:110 wp-polls.php:1327
104
  msgid "Guest"
105
  msgstr ""
106
 
107
+ #: polls-logs.php:128
108
  msgid "Poll's Logs"
109
  msgstr ""
110
 
111
+ #: polls-logs.php:131
112
  msgid "There are a total of <strong>%s</strong> recorded vote for this poll."
113
  msgid_plural ""
114
  "There are a total of <strong>%s</strong> recorded votes for this poll."
115
  msgstr[0] ""
116
  msgstr[1] ""
117
 
118
+ #: polls-logs.php:132
119
  msgid ""
120
+ "<strong>&raquo;</strong> <strong>%s</strong> vote is casted by registered "
121
  "users"
122
  msgid_plural ""
123
+ "<strong>&raquo;</strong> <strong>%s</strong> votes are casted by registered "
124
  "users"
125
  msgstr[0] ""
126
  msgstr[1] ""
127
 
128
+ #: polls-logs.php:133
129
  msgid ""
130
+ "<strong>&raquo;</strong> <strong>%s</strong> vote is casted by comment "
131
  "authors"
132
  msgid_plural ""
133
+ "<strong>&raquo;</strong> <strong>%s</strong> votes are casted by comment "
134
  "authors"
135
  msgstr[0] ""
136
  msgstr[1] ""
137
 
138
+ #: polls-logs.php:134
139
+ msgid "<strong>&raquo;</strong> <strong>%s</strong> vote is casted by guests"
140
  msgid_plural ""
141
+ "<strong>&raquo;</strong> <strong>%s</strong> votes are casted by guests"
142
  msgstr[0] ""
143
  msgstr[1] ""
144
 
145
+ #: polls-logs.php:139
146
  msgid "Filter Poll's Logs"
147
  msgstr ""
148
 
149
+ #: polls-logs.php:148
150
  msgid "Display All Users That Voted For"
151
  msgstr ""
152
 
153
+ #: polls-logs.php:169 polls-logs.php:217
154
  msgid "Voters To EXCLUDE"
155
  msgstr ""
156
 
157
+ #: polls-logs.php:171 polls-logs.php:219
158
  msgid "Registered Users"
159
  msgstr ""
160
 
161
+ #: polls-logs.php:172 polls-logs.php:220
162
  msgid "Comment Authors"
163
  msgstr ""
164
 
165
+ #: polls-logs.php:173
166
  msgid "Guests"
167
  msgstr ""
168
 
169
+ #: polls-logs.php:177 polls-logs.php:225 polls-logs.php:260
170
  msgid "Filter"
171
  msgstr ""
172
 
173
+ #: polls-logs.php:189
174
  msgid "Display Users That Voted For"
175
  msgstr ""
176
 
177
+ #: polls-logs.php:192
178
  msgid "More Than"
179
  msgstr ""
180
 
181
+ #: polls-logs.php:193
182
  msgid "More Than Or Exactly"
183
  msgstr ""
184
 
185
+ #: polls-logs.php:194
186
  msgid "Exactly"
187
  msgstr ""
188
 
189
+ #: polls-logs.php:195
190
  msgid "Less Than Or Exactly"
191
  msgstr ""
192
 
193
+ #: polls-logs.php:196
194
  msgid "Less Than"
195
  msgstr ""
196
 
197
+ #: polls-logs.php:203
198
  msgid "1 Answer"
199
  msgstr ""
200
 
201
+ #: polls-logs.php:206 polls-logs.php:208
202
  msgid "%s Answer"
203
  msgid_plural "%s Answers"
204
  msgstr[0] ""
205
  msgstr[1] ""
206
 
207
+ #: polls-logs.php:221
208
  msgid "Guests will automatically be excluded"
209
  msgstr ""
210
 
211
+ #: polls-logs.php:242
212
  msgid "Display What This User Has Voted"
213
  msgstr ""
214
 
215
+ #: polls-logs.php:268
216
  msgid "Clear Filter"
217
  msgstr ""
218
 
219
+ #: polls-logs.php:275
220
  msgid "Poll Logs"
221
  msgstr ""
222
 
223
+ #: polls-logs.php:280
224
  msgid ""
225
  "This default filter is limited to display only <strong>%s</strong> records."
226
  msgstr ""
227
 
228
+ #: polls-logs.php:289 polls-logs.php:334 wp-polls.php:248
229
  msgid "Answer"
230
  msgstr ""
231
 
232
+ #: polls-logs.php:290
233
  msgid "IP"
234
  msgstr ""
235
 
236
+ #: polls-logs.php:291
237
  msgid "Host"
238
  msgstr ""
239
 
240
+ #: polls-logs.php:292 polls-logs.php:341
241
  msgid "Date"
242
  msgstr ""
243
 
244
+ #: polls-logs.php:299 polls-logs.php:329 polls-manager.php:266
245
+ #: polls-manager.php:278 polls-manager.php:355 polls-manager.php:363
246
+ #: wp-polls.php:449 wp-polls.php:454 wp-polls.php:567 wp-polls.php:572
247
+ #: wp-polls.php:982 wp-polls.php:986
248
  msgid "%s @ %s"
249
  msgstr ""
250
 
251
+ #: polls-logs.php:309 polls-logs.php:339
252
  msgid "User"
253
  msgstr ""
254
 
255
+ #: polls-logs.php:338
256
  msgid "No."
257
  msgstr ""
258
 
259
+ #: polls-logs.php:340
260
  msgid "IP/Host"
261
  msgstr ""
262
 
263
+ #: polls-logs.php:362
264
  msgid "Total number of records that matches this filter: <strong>%s</strong>"
265
  msgstr ""
266
 
267
+ #: polls-logs.php:369
268
  msgid "No poll logs matches the filter."
269
  msgstr ""
270
 
271
+ #: polls-logs.php:371 polls-logs.php:387
272
  msgid "No poll logs available for this poll."
273
  msgstr ""
274
 
275
+ #: polls-logs.php:378
276
  msgid "Delete Poll Logs"
277
  msgstr ""
278
 
279
+ #: polls-logs.php:382
280
  msgid "Are You Sure You Want To Delete Logs For This Poll Only?"
281
  msgstr ""
282
 
283
+ #: polls-logs.php:384 wp-polls.php:243 wp-polls.php:1406
284
  msgid "Delete Logs For This Poll Only"
285
  msgstr ""
286
 
287
+ #: polls-logs.php:384
288
  msgid ""
289
  "You are about to delete poll logs for this poll '%s' ONLY. This action is "
290
  "not reversible."
291
  msgstr ""
292
 
293
+ #: polls-logs.php:391 polls-manager.php:469
294
  msgid ""
295
  "Note: If your logging method is by IP and Cookie or by Cookie, users may "
296
  "still be unable to vote if they have voted before as the cookie is still "
297
  "stored in their computer."
298
  msgstr ""
299
 
300
+ #: polls-manager.php:36 polls-manager.php:176 polls-manager.php:295
301
  msgid "Edit Poll"
302
  msgstr ""
303
 
304
+ #: polls-manager.php:96
305
  msgid "No Changes Had Been Made To Poll's Question '%s'."
306
  msgstr ""
307
 
308
+ #: polls-manager.php:110
309
  msgid "No Changes Had Been Made To Poll's Answer '%s'."
310
  msgstr ""
311
 
312
+ #: polls-manager.php:112
313
  msgid "Poll's Answer '%s' Edited Successfully."
314
  msgstr ""
315
 
316
+ #: polls-manager.php:116
317
  msgid "Invalid Poll '%s'."
318
  msgstr ""
319
 
320
+ #: polls-manager.php:131
321
  msgid "Poll's Answer '%s' Added Successfully."
322
  msgstr ""
323
 
324
+ #: polls-manager.php:138
325
  msgid "Poll '%s' Edited Successfully."
326
  msgstr ""
327
 
328
+ #: polls-manager.php:190
329
  msgid "Answer No."
330
  msgstr ""
331
 
332
+ #: polls-manager.php:191
333
  msgid "Answer Text"
334
  msgstr ""
335
 
336
+ #: polls-manager.php:192
337
  msgid "No. Of Votes"
338
  msgstr ""
339
 
340
+ #: polls-manager.php:201
341
  msgid "Null Votes"
342
  msgstr ""
343
 
344
+ #: polls-manager.php:210 polls-manager.php:410
345
  msgid "Delete"
346
  msgstr ""
347
 
348
+ #: polls-manager.php:210
349
  msgid "You are about to delete this poll's answer '%s'."
350
  msgstr ""
351
 
352
+ #: polls-manager.php:222
353
  msgid "Total Votes:"
354
  msgstr ""
355
 
356
+ #: polls-manager.php:227 polls-manager.php:444
357
  msgid "Total Voters:"
358
  msgstr ""
359
 
360
+ #: polls-manager.php:267
361
  msgid "Edit Start Date/Time"
362
  msgstr ""
363
 
364
+ #: polls-manager.php:276
365
  msgid "This Poll Will Not Expire"
366
  msgstr ""
367
 
368
+ #: polls-manager.php:305 wp-polls.php:247 wp-polls.php:1449
369
  msgid "Close Poll"
370
  msgstr ""
371
 
372
+ #: polls-manager.php:305
373
  msgid "You are about to CLOSE this poll '%s'."
374
  msgstr ""
375
 
376
+ #: polls-manager.php:306 wp-polls.php:246 wp-polls.php:1437
377
  msgid "Open Poll"
378
  msgstr ""
379
 
380
+ #: polls-manager.php:306
381
  msgid "You are about to OPEN this poll '%s'."
382
  msgstr ""
383
 
384
+ #: polls-manager.php:326 wp-polls.php:53 wp-polls.php:1530 wp-polls.php:1565
385
  msgid "Polls"
386
  msgstr ""
387
 
388
+ #: polls-manager.php:331
389
  msgid "ID"
390
  msgstr ""
391
 
392
+ #: polls-manager.php:333 polls-templates.php:121 polls-templates.php:124
393
+ #: wp-polls.php:1707 wp-polls.php:1710
394
  msgid "Total Voters"
395
  msgstr ""
396
 
397
+ #: polls-manager.php:336
398
  msgid "Status"
399
  msgstr ""
400
 
401
+ #: polls-manager.php:337
402
  msgid "Action"
403
  msgstr ""
404
 
405
+ #: polls-manager.php:361 wp-polls.php:452 wp-polls.php:570 wp-polls.php:984
406
  msgid "No Expiry"
407
  msgstr ""
408
 
409
+ #: polls-manager.php:386 polls-manager.php:390 polls-manager.php:393
410
  msgid "Displayed:"
411
  msgstr ""
412
 
413
+ #: polls-manager.php:401
414
  msgid "Open"
415
  msgstr ""
416
 
417
+ #: polls-manager.php:403
418
  msgid "Future"
419
  msgstr ""
420
 
421
+ #: polls-manager.php:405
422
  msgid "Closed"
423
  msgstr ""
424
 
425
+ #: polls-manager.php:408
426
  msgid "Logs"
427
  msgstr ""
428
 
429
+ #: polls-manager.php:409
430
  msgid "Edit"
431
  msgstr ""
432
 
433
+ #: polls-manager.php:410
434
  msgid "You are about to delete this poll, '%s'."
435
  msgstr ""
436
 
437
+ #: polls-manager.php:418
438
  msgid "No Polls Found"
439
  msgstr ""
440
 
441
+ #: polls-manager.php:428
442
  msgid "Polls Stats:"
443
  msgstr ""
444
 
445
+ #: polls-manager.php:432
446
  msgid "Total Polls:"
447
  msgstr ""
448
 
449
+ #: polls-manager.php:436
450
  msgid "Total Polls' Answers:"
451
  msgstr ""
452
 
453
+ #: polls-manager.php:440
454
+ msgid "Total Votes Casted:"
455
  msgstr ""
456
 
457
+ #: polls-manager.php:453
458
  msgid "Polls Logs"
459
  msgstr ""
460
 
461
+ #: polls-manager.php:460
462
  msgid "Are You Sure You Want To Delete All Polls Logs?"
463
  msgstr ""
464
 
465
+ #: polls-manager.php:462 wp-polls.php:241 wp-polls.php:1394
466
  msgid "Delete All Logs"
467
  msgstr ""
468
 
469
+ #: polls-manager.php:462
470
  msgid "You are about to delete all poll logs. This action is not reversible."
471
  msgstr ""
472
 
473
+ #: polls-manager.php:465 wp-polls.php:240
474
  msgid "No poll logs available."
475
  msgstr ""
476
 
477
+ #: polls-options.php:70 polls-options.php:130 polls-options.php:133
478
  msgid "Poll Bar Style"
479
  msgstr ""
480
 
481
+ #: polls-options.php:71
482
  msgid "Poll AJAX Style"
483
  msgstr ""
484
 
485
+ #: polls-options.php:72
486
  msgid "Sort Poll Answers By Option"
487
  msgstr ""
488
 
489
+ #: polls-options.php:73
490
  msgid "Sort Order Of Poll Answers Option"
491
  msgstr ""
492
 
493
+ #: polls-options.php:74
494
  msgid "Sort Poll Results By Option"
495
  msgstr ""
496
 
497
+ #: polls-options.php:75
498
  msgid "Sort Order Of Poll Results Option"
499
  msgstr ""
500
 
501
+ #: polls-options.php:76
502
  msgid "Number Of Polls Per Page To Display In Poll Archive Option"
503
  msgstr ""
504
 
505
+ #: polls-options.php:77
506
  msgid "Type Of Polls To Display In Poll Archive Option"
507
  msgstr ""
508
 
509
+ #: polls-options.php:78
510
  msgid "Poll Archive URL Option"
511
  msgstr ""
512
 
513
+ #: polls-options.php:79
514
  msgid "Show Poll Achive Link Option"
515
  msgstr ""
516
 
517
+ #: polls-options.php:80
518
  msgid "Current Active Poll Option"
519
  msgstr ""
520
 
521
+ #: polls-options.php:81
522
  msgid "Poll Close Option"
523
  msgstr ""
524
 
525
+ #: polls-options.php:82 polls-options.php:280
526
  msgid "Logging Method"
527
  msgstr ""
528
 
529
+ #: polls-options.php:83
530
  msgid "Cookie And Log Expiry Option"
531
  msgstr ""
532
 
533
+ #: polls-options.php:84
534
  msgid "Allow To Vote Option"
535
  msgstr ""
536
 
537
+ #: polls-options.php:89 polls-templates.php:84
538
  msgid "Updated"
539
  msgstr ""
540
 
541
+ #: polls-options.php:94 polls-templates.php:89
542
  msgid "No Poll Option Updated"
543
  msgstr ""
544
 
545
+ #: polls-options.php:128 wp-polls.php:57
546
  msgid "Poll Options"
547
  msgstr ""
548
 
549
+ #: polls-options.php:160
550
  msgid "Use CSS Style"
551
  msgstr ""
552
 
553
+ #: polls-options.php:164
554
  msgid "Poll Bar Background"
555
  msgstr ""
556
 
557
+ #: polls-options.php:169
558
  msgid "Poll Bar Border"
559
  msgstr ""
560
 
561
+ #: polls-options.php:174
562
  msgid "Poll Bar Height"
563
  msgstr ""
564
 
565
+ #: polls-options.php:178
566
  msgid "Your poll bar will look like this"
567
  msgstr ""
568
 
569
+ #: polls-options.php:193
570
  msgid "Polls AJAX Style"
571
  msgstr ""
572
 
573
+ #: polls-options.php:196
574
  msgid "Show Loading Image With Text"
575
  msgstr ""
576
 
577
+ #: polls-options.php:205
578
  msgid "Show Fading In And Fading Out Of Poll"
579
  msgstr ""
580
 
581
+ #: polls-options.php:216
582
  msgid "Sorting Of Poll Answers"
583
  msgstr ""
584
 
585
+ #: polls-options.php:219
586
  msgid "Sort Poll Answers By:"
587
  msgstr ""
588
 
589
+ #: polls-options.php:222 polls-options.php:247
590
  msgid "Exact Order"
591
  msgstr ""
592
 
593
+ #: polls-options.php:223 polls-options.php:248
594
  msgid "Alphabetical Order"
595
  msgstr ""
596
 
597
+ #: polls-options.php:224 polls-options.php:249
598
  msgid "Random Order"
599
  msgstr ""
600
 
601
+ #: polls-options.php:229
602
  msgid "Sort Order Of Poll Answers:"
603
  msgstr ""
604
 
605
+ #: polls-options.php:232 polls-options.php:257
606
  msgid "Ascending"
607
  msgstr ""
608
 
609
+ #: polls-options.php:233 polls-options.php:258
610
  msgid "Descending"
611
  msgstr ""
612
 
613
+ #: polls-options.php:240
614
  msgid "Sorting Of Poll Results"
615
  msgstr ""
616
 
617
+ #: polls-options.php:243
618
  msgid "Sort Poll Results By:"
619
  msgstr ""
620
 
621
+ #: polls-options.php:246
622
  msgid "Votes Cast"
623
  msgstr ""
624
 
625
+ #: polls-options.php:254
626
  msgid "Sort Order Of Poll Results:"
627
  msgstr ""
628
 
629
+ #: polls-options.php:265
630
  msgid "Allow To Vote"
631
  msgstr ""
632
 
633
+ #: polls-options.php:268
634
  msgid "Who Is Allowed To Vote?"
635
  msgstr ""
636
 
637
+ #: polls-options.php:271
638
  msgid "Guests Only"
639
  msgstr ""
640
 
641
+ #: polls-options.php:272
642
  msgid "Registered Users Only"
643
  msgstr ""
644
 
645
+ #: polls-options.php:273
646
  msgid "Registered Users And Guests"
647
  msgstr ""
648
 
649
+ #: polls-options.php:283
650
  msgid "Poll Logging Method:"
651
  msgstr ""
652
 
653
+ #: polls-options.php:286
654
  msgid "Do Not Log"
655
  msgstr ""
656
 
657
+ #: polls-options.php:287
658
  msgid "Logged By Cookie"
659
  msgstr ""
660
 
661
+ #: polls-options.php:288
662
  msgid "Logged By IP"
663
  msgstr ""
664
 
665
+ #: polls-options.php:289
666
  msgid "Logged By Cookie And IP"
667
  msgstr ""
668
 
669
+ #: polls-options.php:290
670
  msgid "Logged By Username"
671
  msgstr ""
672
 
673
+ #: polls-options.php:295
674
  msgid "Expiry Time For Cookie And Log:"
675
  msgstr ""
676
 
677
+ #: polls-options.php:296
678
  msgid "seconds (0 to disable)"
679
  msgstr ""
680
 
681
+ #: polls-options.php:301
682
  msgid "Poll Archive"
683
  msgstr ""
684
 
685
+ #: polls-options.php:304
686
  msgid "Number Of Polls Per Page:"
687
  msgstr ""
688
 
689
+ #: polls-options.php:308
690
  msgid "Type Of Polls To Display In Poll Archive:"
691
  msgstr ""
692
 
693
+ #: polls-options.php:311
694
  msgid "Closed Polls Only"
695
  msgstr ""
696
 
697
+ #: polls-options.php:312
698
  msgid "Opened Polls Only"
699
  msgstr ""
700
 
701
+ #: polls-options.php:313
702
  msgid "Closed And Opened Polls"
703
  msgstr ""
704
 
705
+ #: polls-options.php:318
706
  msgid "Poll Archive URL:"
707
  msgstr ""
708
 
709
+ #: polls-options.php:322
710
  msgid "Display Poll Archive Link Below Poll?"
711
  msgstr ""
712
 
713
+ #: polls-options.php:331
714
  msgid "Note"
715
  msgstr ""
716
 
717
+ #: polls-options.php:332
718
  msgid ""
719
  "Only polls' results will be shown in the Poll Archive regardless of whether "
720
  "the poll is closed or opened."
721
  msgstr ""
722
 
723
+ #: polls-options.php:337 polls-options.php:340
724
  msgid "Current Active Poll"
725
  msgstr ""
726
 
727
+ #: polls-options.php:343 wp-polls.php:1584
728
  msgid "Do NOT Display Poll (Disable)"
729
  msgstr ""
730
 
731
+ #: polls-options.php:344 wp-polls.php:1585
732
  msgid "Display Random Poll"
733
  msgstr ""
734
 
735
+ #: polls-options.php:345 wp-polls.php:1586
736
  msgid "Display Latest Poll"
737
  msgstr ""
738
 
739
+ #: polls-options.php:365
 
 
 
 
 
 
740
  msgid "When Poll Is Closed"
741
  msgstr ""
742
 
743
+ #: polls-options.php:368
744
  msgid "Display Poll's Results"
745
  msgstr ""
746
 
747
+ #: polls-options.php:369
748
  msgid "Display Disabled Poll's Voting Form"
749
  msgstr ""
750
 
751
+ #: polls-options.php:370
752
  msgid "Do Not Display Poll In Post/Sidebar"
753
  msgstr ""
754
 
755
+ #: polls-options.php:378 polls-templates.php:494
756
  msgid "Save Changes"
757
  msgstr ""
758
 
759
+ #: polls-templates.php:65
760
  msgid "Voting Form Header Template"
761
  msgstr ""
762
 
763
+ #: polls-templates.php:66
764
  msgid "Voting Form Body Template"
765
  msgstr ""
766
 
767
+ #: polls-templates.php:67
768
  msgid "Voting Form Footer Template"
769
  msgstr ""
770
 
771
+ #: polls-templates.php:68
772
  msgid "Result Header Template"
773
  msgstr ""
774
 
775
+ #: polls-templates.php:69
776
  msgid "Result Body Template"
777
  msgstr ""
778
 
779
+ #: polls-templates.php:70
780
  msgid "Result Body2 Template"
781
  msgstr ""
782
 
783
+ #: polls-templates.php:71
784
  msgid "Result Footer Template"
785
  msgstr ""
786
 
787
+ #: polls-templates.php:72
788
  msgid "Result Footer2 Template"
789
  msgstr ""
790
 
791
+ #: polls-templates.php:73
792
  msgid "Poll Archive Link Template"
793
  msgstr ""
794
 
795
+ #: polls-templates.php:74
796
  msgid "Poll Archive Poll Header Template"
797
  msgstr ""
798
 
799
+ #: polls-templates.php:75
800
  msgid "Poll Archive Poll Footer Template"
801
  msgstr ""
802
 
803
+ #: polls-templates.php:76
804
  msgid "Poll Archive Paging Header Template"
805
  msgstr ""
806
 
807
+ #: polls-templates.php:77
808
  msgid "Poll Archive Paging Footer Template"
809
  msgstr ""
810
 
811
+ #: polls-templates.php:78
812
  msgid "Poll Disabled Template"
813
  msgstr ""
814
 
815
+ #: polls-templates.php:79
816
  msgid "Poll Error Template"
817
  msgstr ""
818
 
819
+ #: polls-templates.php:109 polls-templates.php:124 wp-polls.php:1698
820
+ #: wp-polls.php:1711
821
  msgid "Vote"
822
  msgstr ""
823
 
824
+ #: polls-templates.php:109 wp-polls.php:1699
825
  msgid "View Results Of This Poll"
826
  msgstr ""
827
 
828
+ #: polls-templates.php:109 wp-polls.php:1699
829
  msgid "View Results"
830
  msgstr ""
831
 
832
+ #: polls-templates.php:115 polls-templates.php:118 wp-polls.php:1704
833
+ #: wp-polls.php:1705
834
  msgid ","
835
  msgstr ""
836
 
837
+ #: polls-templates.php:115 polls-templates.php:118 wp-polls.php:1704
838
+ #: wp-polls.php:1705
839
  msgid "Votes"
840
  msgstr ""
841
 
842
+ #: polls-templates.php:118 wp-polls.php:1705
843
  msgid "You Have Voted For This Choice"
844
  msgstr ""
845
 
846
+ #: polls-templates.php:124 wp-polls.php:1711
847
  msgid "Vote For This Poll"
848
  msgstr ""
849
 
850
+ #: polls-templates.php:127 wp-polls.php:1737
851
  msgid "Polls Archive"
852
  msgstr ""
853
 
854
+ #: polls-templates.php:133 wp-polls.php:1741
855
  msgid "Start Date:"
856
  msgstr ""
857
 
858
+ #: polls-templates.php:133 wp-polls.php:1741
859
  msgid "End Date:"
860
  msgstr ""
861
 
862
+ #: polls-templates.php:142 wp-polls.php:1713
863
  msgid "Sorry, there are no polls available at the moment."
864
  msgstr ""
865
 
866
+ #: polls-templates.php:145 wp-polls.php:1714
867
  msgid "An error has occurred when processing your poll."
868
  msgstr ""
869
 
870
+ #: polls-templates.php:156 wp-polls.php:58
871
  msgid "Poll Templates"
872
  msgstr ""
873
 
874
+ #: polls-templates.php:158
875
  msgid "Template Variables"
876
  msgstr ""
877
 
878
+ #: polls-templates.php:163
879
  msgid "Display the poll's ID"
880
  msgstr ""
881
 
882
+ #: polls-templates.php:167
883
  msgid "Display the poll's answer ID"
884
  msgstr ""
885
 
886
+ #: polls-templates.php:173
887
  msgid "Display the poll's question"
888
  msgstr ""
889
 
890
+ #: polls-templates.php:177
891
  msgid "Display the poll's answer"
892
  msgstr ""
893
 
894
+ #: polls-templates.php:183
895
  msgid ""
896
  "Display the poll's total votes NOT the number of people who voted for the "
897
  "poll"
898
  msgstr ""
899
 
900
+ #: polls-templates.php:187
901
  msgid "Display the poll's answer without HTML formatting."
902
  msgstr ""
903
 
904
+ #: polls-templates.php:193
905
  msgid "Displays URL to poll's result"
906
  msgstr ""
907
 
908
+ #: polls-templates.php:197
909
  msgid "Display the poll's answer votes"
910
  msgstr ""
911
 
912
+ #: polls-templates.php:203
913
  msgid "Display the poll's most voted answer"
914
  msgstr ""
915
 
916
+ #: polls-templates.php:207
917
  msgid "Display the poll's answer percentage"
918
  msgstr ""
919
 
920
+ #: polls-templates.php:213
921
  msgid "Display the poll's answer votes for the most voted answer"
922
  msgstr ""
923
 
924
+ #: polls-templates.php:217
925
  msgid "Display the poll's answer image width"
926
  msgstr ""
927
 
928
+ #: polls-templates.php:223
929
  msgid "Display the poll's answer percentage for the most voted answer"
930
  msgstr ""
931
 
932
+ #: polls-templates.php:227
933
  msgid "Display the poll's least voted answer"
934
  msgstr ""
935
 
936
+ #: polls-templates.php:233
937
  msgid "Display the poll's start date/time"
938
  msgstr ""
939
 
940
+ #: polls-templates.php:237
941
  msgid "Display the poll's answer votes for the least voted answer"
942
  msgstr ""
943
 
944
+ #: polls-templates.php:243
945
  msgid "Display the poll's end date/time"
946
  msgstr ""
947
 
948
+ #: polls-templates.php:247
949
  msgid "Display the poll's answer percentage for the least voted answer"
950
  msgstr ""
951
 
952
+ #: polls-templates.php:253
953
  msgid ""
954
  "Display the the maximum number of answers the user can choose if the poll "
955
  "supports multiple answers"
956
  msgstr ""
957
 
958
+ #: polls-templates.php:257
959
  msgid ""
960
  "Display \"checkbox\" or \"radio\" input types depending on the poll type"
961
  msgstr ""
962
 
963
+ #: polls-templates.php:263
964
  msgid ""
965
  "Display the number of people who voted for the poll NOT the total votes of "
966
  "the poll"
967
  msgstr ""
968
 
969
+ #: polls-templates.php:267
970
  msgid "Display the poll archive URL"
971
  msgstr ""
972
 
973
+ #: polls-templates.php:272
974
  msgid ""
975
  "Note: <strong>%POLL_TOTALVOTES%</strong> and <strong>%POLL_TOTALVOTERS%</"
976
  "strong> will be different if your poll supports multiple answers. If your "
977
  "poll allows only single answer, both value will be the same."
978
  msgstr ""
979
 
980
+ #: polls-templates.php:278
981
  msgid "Poll Voting Form Templates"
982
  msgstr ""
983
 
984
+ #: polls-templates.php:282
985
  msgid "Voting Form Header:"
986
  msgstr ""
987
 
988
+ #: polls-templates.php:283 polls-templates.php:298 polls-templates.php:311
989
+ #: polls-templates.php:327 polls-templates.php:342 polls-templates.php:357
990
+ #: polls-templates.php:372 polls-templates.php:392 polls-templates.php:417
991
+ #: polls-templates.php:426 polls-templates.php:435 polls-templates.php:454
992
+ #: polls-templates.php:463 polls-templates.php:477 polls-templates.php:486
993
  msgid "Allowed Variables:"
994
  msgstr ""
995
 
996
+ #: polls-templates.php:291 polls-templates.php:304 polls-templates.php:315
997
+ #: polls-templates.php:335 polls-templates.php:350 polls-templates.php:365
998
+ #: polls-templates.php:385 polls-templates.php:405 polls-templates.php:419
999
+ #: polls-templates.php:428 polls-templates.php:447 polls-templates.php:456
1000
+ #: polls-templates.php:465 polls-templates.php:479 polls-templates.php:488
1001
  msgid "Restore Default Template"
1002
  msgstr ""
1003
 
1004
+ #: polls-templates.php:297
1005
  msgid "Voting Form Body:"
1006
  msgstr ""
1007
 
1008
+ #: polls-templates.php:310
1009
  msgid "Voting Form Footer:"
1010
  msgstr ""
1011
 
1012
+ #: polls-templates.php:322
1013
  msgid "Poll Result Templates"
1014
  msgstr ""
1015
 
1016
+ #: polls-templates.php:326
1017
  msgid "Result Header:"
1018
  msgstr ""
1019
 
1020
+ #: polls-templates.php:341 polls-templates.php:356
1021
  msgid "Result Body:"
1022
  msgstr ""
1023
 
1024
+ #: polls-templates.php:341 polls-templates.php:391
1025
  msgid "Displayed When The User HAS NOT Voted"
1026
  msgstr ""
1027
 
1028
+ #: polls-templates.php:356 polls-templates.php:371
1029
  msgid "Displayed When The User HAS Voted"
1030
  msgstr ""
1031
 
1032
+ #: polls-templates.php:371 polls-templates.php:391
1033
  msgid "Result Footer:"
1034
  msgstr ""
1035
 
1036
+ #: polls-templates.php:412
1037
  msgid "Poll Archive Templates"
1038
  msgstr ""
1039
 
1040
+ #: polls-templates.php:416
1041
  msgid "Poll Archive Link"
1042
  msgstr ""
1043
 
1044
+ #: polls-templates.php:416
1045
  msgid "Template For Displaying Poll Archive Link"
1046
  msgstr ""
1047
 
1048
+ #: polls-templates.php:425
1049
  msgid "Individual Poll Header"
1050
  msgstr ""
1051
 
1052
+ #: polls-templates.php:425
1053
  msgid "Displayed Before Each Poll In The Poll Archive"
1054
  msgstr ""
1055
 
1056
+ #: polls-templates.php:427 polls-templates.php:455 polls-templates.php:464
1057
+ #: polls-templates.php:478 polls-templates.php:487
1058
  msgid "N/A"
1059
  msgstr ""
1060
 
1061
+ #: polls-templates.php:434
1062
  msgid "Individual Poll Footer"
1063
  msgstr ""
1064
 
1065
+ #: polls-templates.php:434
1066
  msgid "Displayed After Each Poll In The Poll Archive"
1067
  msgstr ""
1068
 
1069
+ #: polls-templates.php:453
1070
  msgid "Paging Header"
1071
  msgstr ""
1072
 
1073
+ #: polls-templates.php:453
1074
  msgid "Displayed Before Paging In The Poll Archive"
1075
  msgstr ""
1076
 
1077
+ #: polls-templates.php:462
1078
  msgid "Paging Footer"
1079
  msgstr ""
1080
 
1081
+ #: polls-templates.php:462
1082
  msgid "Displayed After Paging In The Poll Archive"
1083
  msgstr ""
1084
 
1085
+ #: polls-templates.php:472
1086
  msgid "Poll Misc Templates"
1087
  msgstr ""
1088
 
1089
+ #: polls-templates.php:476
1090
  msgid "Poll Disabled"
1091
  msgstr ""
1092
 
1093
+ #: polls-templates.php:476
1094
  msgid "Displayed When The Poll Is Disabled"
1095
  msgstr ""
1096
 
1097
+ #: polls-templates.php:485
1098
  msgid "Poll Error"
1099
  msgstr ""
1100
 
1101
+ #: polls-templates.php:485
1102
  msgid "Displayed When An Error Has Occured While Processing The Poll"
1103
  msgstr ""
1104
 
1105
+ #: polls-uninstall.php:39 polls-uninstall.php:128
1106
  msgid "UNINSTALL WP-Polls"
1107
  msgstr ""
1108
 
1114
  msgid "Setting Key '%s' has been deleted."
1115
  msgstr ""
1116
 
1117
+ #: polls-uninstall.php:75 polls-uninstall.php:86 wp-polls.php:59
1118
  msgid "Uninstall WP-Polls"
1119
  msgstr ""
1120
 
1121
+ #: polls-uninstall.php:76
1122
  msgid ""
1123
  "<a href=\"%s\">Click Here</a> To Finish The Uninstallation And WP-Polls Will "
1124
  "Be Deactivated Automatically."
1125
  msgstr ""
1126
 
1127
+ #: polls-uninstall.php:88
1128
  msgid ""
1129
  "Deactivating WP-Polls plugin does not remove any data that may have been "
1130
  "created, such as the poll data and the poll's voting logs. To completely "
1131
  "remove this plugin, you can uninstall it here."
1132
  msgstr ""
1133
 
1134
+ #: polls-uninstall.php:91
1135
  msgid "WARNING:"
1136
  msgstr ""
1137
 
1138
+ #: polls-uninstall.php:92
1139
  msgid ""
1140
  "Once uninstalled, this cannot be undone. You should use a Database Backup "
1141
  "plugin of WordPress to back up all the data first."
1142
  msgstr ""
1143
 
1144
+ #: polls-uninstall.php:95
1145
  msgid "The following WordPress Options/Tables will be DELETED:"
1146
  msgstr ""
1147
 
1148
+ #: polls-uninstall.php:100
1149
  msgid "WordPress Options"
1150
  msgstr ""
1151
 
1152
+ #: polls-uninstall.php:101
1153
  msgid "WordPress Tables"
1154
  msgstr ""
1155
 
1156
+ #: polls-uninstall.php:126
1157
  msgid "Do you really want to uninstall WP-Polls?"
1158
  msgstr ""
1159
 
1160
+ #: polls-uninstall.php:128
1161
  msgid ""
1162
  "You Are About To Uninstall WP-Polls From WordPress.\\nThis Action Is Not "
1163
  "Reversible.\\n\\n Choose [Cancel] To Stop, [OK] To Uninstall."
1164
  msgstr ""
1165
 
1166
+ #: wp-polls.php:219
1167
  msgid "Your last request is still being processed. Please wait a while ..."
1168
  msgstr ""
1169
 
1170
+ #: wp-polls.php:220
1171
  msgid "Please choose a valid poll answer."
1172
  msgstr ""
1173
 
1174
+ #: wp-polls.php:221
1175
  msgid "Maximum number of choices allowed: "
1176
  msgstr ""
1177
 
1178
+ #: wp-polls.php:239 wp-polls.php:1461
1179
  msgid "Delete Poll"
1180
  msgstr ""
1181
 
1182
+ #: wp-polls.php:242
1183
  msgid "Please check the \\'Yes\\' checkbox if you want to delete all logs."
1184
  msgstr ""
1185
 
1186
+ #: wp-polls.php:244
1187
  msgid ""
1188
  "Please check the \\'Yes\\' checkbox if you want to delete all logs for this "
1189
  "poll ONLY."
1190
  msgstr ""
1191
 
1192
+ #: wp-polls.php:245 wp-polls.php:1420
1193
  msgid "Delete Poll Answer"
1194
  msgstr ""
1195
 
1196
+ #: wp-polls.php:263
1197
+ msgid "Poll"
1198
+ msgstr ""
1199
+
1200
+ #: wp-polls.php:264 wp-polls.php:301
1201
  msgid "Enter Poll ID"
1202
  msgstr ""
1203
 
1204
+ #: wp-polls.php:266 wp-polls.php:302
1205
  msgid "Error: Poll ID must be numeric"
1206
  msgstr ""
1207
 
1208
+ #: wp-polls.php:266 wp-polls.php:303
1209
  msgid "Please enter Poll ID again"
1210
  msgstr ""
1211
 
1212
+ #: wp-polls.php:304
 
 
 
 
1213
  msgid "Insert Poll"
1214
  msgstr ""
1215
 
1216
+ #: wp-polls.php:530 wp-polls.php:706
1217
  msgid "Loading"
1218
  msgstr ""
1219
 
1220
+ #: wp-polls.php:759
1221
  msgid ""
1222
  "Note: There is a poll embedded within this post, please visit the site to "
1223
  "participate in this post's poll."
1224
  msgstr ""
1225
 
1226
+ #: wp-polls.php:1125
1227
  msgid "Page %s of %s"
1228
  msgstr ""
1229
 
1230
+ #: wp-polls.php:1127
1231
  msgid "&laquo; First"
1232
  msgstr ""
1233
 
1234
+ #: wp-polls.php:1131
1235
  msgid "&laquo;"
1236
  msgstr ""
1237
 
1238
+ #: wp-polls.php:1141
1239
  msgid "&raquo;"
1240
  msgstr ""
1241
 
1242
+ #: wp-polls.php:1145
1243
  msgid "Last &raquo;"
1244
  msgstr ""
1245
 
1246
+ #: wp-polls.php:1300
1247
  msgid "Invalid Poll ID"
1248
  msgstr ""
1249
 
1250
+ #: wp-polls.php:1307
1251
  msgid "Failed To Verify Referrer"
1252
  msgstr ""
1253
 
1254
+ #: wp-polls.php:1357
1255
  msgid "Unable To Update Poll Total Votes And Poll Total Voters. Poll ID #%s"
1256
  msgstr ""
1257
 
1258
+ #: wp-polls.php:1360
1259
  msgid "You Had Already Voted For This Poll. Poll ID #%s"
1260
  msgstr ""
1261
 
1262
+ #: wp-polls.php:1363
1263
  msgid "Invalid Poll ID. Poll ID #%s"
1264
  msgstr ""
1265
 
1266
+ #: wp-polls.php:1399
1267
  msgid "All Polls Logs Have Been Deleted."
1268
  msgstr ""
1269
 
1270
+ #: wp-polls.php:1401
1271
  msgid "An Error Has Occurred While Deleting All Polls Logs."
1272
  msgstr ""
1273
 
1274
+ #: wp-polls.php:1413
1275
  msgid "All Logs For '%s' Has Been Deleted."
1276
  msgstr ""
1277
 
1278
+ #: wp-polls.php:1415
1279
  msgid "An Error Has Occurred While Deleting All Logs For '%s'"
1280
  msgstr ""
1281
 
1282
+ #: wp-polls.php:1431
1283
  msgid "Poll Answer '%s' Deleted Successfully."
1284
  msgstr ""
1285
 
1286
+ #: wp-polls.php:1433
1287
  msgid "Error In Deleting Poll Answer '%s'."
1288
  msgstr ""
1289
 
1290
+ #: wp-polls.php:1443
1291
  msgid "Poll '%s' Is Now Opened"
1292
  msgstr ""
1293
 
1294
+ #: wp-polls.php:1445
1295
  msgid "Error Opening Poll '%s'"
1296
  msgstr ""
1297
 
1298
+ #: wp-polls.php:1455
1299
  msgid "Poll '%s' Is Now Closed"
1300
  msgstr ""
1301
 
1302
+ #: wp-polls.php:1457
1303
  msgid "Error Closing Poll '%s'"
1304
  msgstr ""
1305
 
1306
+ #: wp-polls.php:1470
1307
  msgid "Error In Deleting Poll '%s' Question"
1308
  msgstr ""
1309
 
1310
+ #: wp-polls.php:1473
1311
  msgid "Poll '%s' Deleted Successfully"
1312
  msgstr ""
1313
 
1314
+ #. #-#-#-#-# plugin.pot (WP-Polls 2.67) #-#-#-#-#
1315
  #. Plugin Name of the plugin/theme
1316
+ #: wp-polls.php:1502 wp-polls.php:1504 wp-polls.php:1514
1317
  msgid "WP-Polls"
1318
  msgstr ""
1319
 
1320
+ #: wp-polls.php:1516
1321
  msgid "<strong>%s</strong> poll was created."
1322
  msgid_plural "<strong>%s</strong> polls were created."
1323
  msgstr[0] ""
1324
  msgstr[1] ""
1325
 
1326
+ #: wp-polls.php:1517
1327
  msgid "<strong>%s</strong> polls' answer was given."
1328
  msgid_plural "<strong>%s</strong> polls' answers were given."
1329
  msgstr[0] ""
1330
  msgstr[1] ""
1331
 
1332
+ #: wp-polls.php:1518
1333
+ msgid "<strong>%s</strong> vote was casted."
1334
+ msgid_plural "<strong>%s</strong> votes were casted."
1335
  msgstr[0] ""
1336
  msgstr[1] ""
1337
 
1338
+ #: wp-polls.php:1529
1339
  msgid "WP-Polls polls"
1340
  msgstr ""
1341
 
1342
+ #: wp-polls.php:1571
1343
  msgid "Title:"
1344
  msgstr ""
1345
 
1346
+ #: wp-polls.php:1574
1347
  msgid "Display Polls Archive Link Below Poll?"
1348
  msgstr ""
1349
 
1350
+ #: wp-polls.php:1582
1351
  msgid "Poll To Display:"
1352
  msgstr ""
1353
 
1354
+ #: wp-polls.php:1682
1355
  msgid "How Is My Site?"
1356
  msgstr ""
1357
 
1358
+ #: wp-polls.php:1685
1359
  msgid "Good"
1360
  msgstr ""
1361
 
1362
+ #: wp-polls.php:1686
1363
  msgid "Excellent"
1364
  msgstr ""
1365
 
1366
+ #: wp-polls.php:1687
1367
  msgid "Bad"
1368
  msgstr ""
1369
 
1370
+ #: wp-polls.php:1688
1371
  msgid "Can Be Improved"
1372
  msgstr ""
1373
 
1374
+ #: wp-polls.php:1689
1375
  msgid "No Comments"
1376
  msgstr ""
1377