Version Description
- Added new Embed options, added short URL to community site and Facebook directory
Download this release
Release Info
Developer | eoigal |
Plugin | Crowdsignal Dashboard – Polls, Surveys & more |
Version | 1.8.6 |
Comparing to | |
See all releases |
Code changes from version 1.8.5 to 1.8.6
- polldaddy-org.php +1 -1
- polldaddy.js +1 -1
- polldaddy.php +17 -15
- polldaddy.pot +174 -167
- readme.txt +5 -2
polldaddy-org.php
CHANGED
@@ -11,7 +11,7 @@ class WPORG_PollDaddy extends WP_PollDaddy {
|
|
11 |
|
12 |
function __construct() {
|
13 |
parent::__construct();
|
14 |
-
$this->version = '1.8.
|
15 |
$this->base_url = plugins_url() . '/' . dirname( plugin_basename( __FILE__ ) ) . '/';
|
16 |
$this->polldaddy_client_class = 'WPORG_PollDaddy_Client';
|
17 |
$this->use_ssl = (int) get_option( 'polldaddy_use_ssl' );
|
11 |
|
12 |
function __construct() {
|
13 |
parent::__construct();
|
14 |
+
$this->version = '1.8.6';
|
15 |
$this->base_url = plugins_url() . '/' . dirname( plugin_basename( __FILE__ ) ) . '/';
|
16 |
$this->polldaddy_client_class = 'WPORG_PollDaddy_Client';
|
17 |
$this->use_ssl = (int) get_option( 'polldaddy_use_ssl' );
|
polldaddy.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function($){ if ( typeof(window.$) == 'undefined' ){window.$ = jQuery;} $('.hide-if-js').hide(); $('.empty-if-js').empty(); $('.hide-if-no-js').removeClass( 'hide-if-no-js' ); $('a.delete-poll').click( function() { return confirm( 'Are you sure you want to delete "' + $(this).parents( 'td' ).find( 'strong' ).text() + '"?' ); } ); $('span.view a.thickbox').attr( 'href', function() { return $(this).attr( 'href' ) + '&iframe&TB_iframe=true'; } ); var delAnswerPrep = function( context ) { $('a.delete-answer', context || null ).click( function() { if ( confirm( 'Are you sure you want to delete this answer?' ) ) { $(this).parents( 'li' ).remove(); $('#choices option:last-child').remove(); } return false; } ); }; delAnswerPrep(); $('#answers').sortable( { axis: 'y', containment: 'parent', handle: '.handle', tolerance: 'pointer' } ); $('#add-answer-holder').show().find( 'button').click( function() { var aa = ( 1 + $('#answers li').size() ).toString();delAnswerPrep( $('#answers').append( '<li><span class="handle">↕</span><div><input type="text" name="answer[new' + aa + ']" size="30" tabindex="2" value="" autocomplete="off" /></div><a title="delete this answer" class="delete-answer delete" href="#">×</a></li>' ).find( 'li:last' ) ); $('#choices').append('<option value="'+aa+'">'+aa+'</option>'); return false; } ); var win = window.dialogArguments || opener || parent || top; $('.polldaddy-send-to-editor').click( function() { var pollID = $(this).siblings('.polldaddy-poll-id').val(); if ( !pollID ) pollID = $('.polldaddy-poll-id:first').val(); win.send_to_editor( '[polldaddy poll=' + parseInt( pollID ).toString() + ']' ); } ); $('.polldaddy-show-shortcode').toggle( function() { $(this).parents('tr:first').next('tr').fadeIn(); $(this).parents('tr:first').next('tr').show(); return false; }, function() { $(this).parents('tr:first').next('tr').fadeOut(); $(this).parents('tr:first').next('tr').hide(); return false; } );var hiddenStyleID = $(':input[name=styleID]'); var customStyle = $(':input[name=customSelect]'); var customStyleVal = parseInt( customStyle.val() ); customStyle.change(function() { var customStyleVal = parseInt( customStyle.val() ); hiddenStyleID.val( customStyleVal.toString() ); }); if ( customStyleVal > 0 ) { $('#design_standard').hide(); $('#design_custom').show(); $('.polldaddy-show-design-options').html('Standard Styles'); hiddenStyleID.val( customStyleVal.toString() ); $('.polldaddy-show-design-options').toggle( function() { $('#design_custom').hide(); $('#design_standard').fadeIn(); $('.polldaddy-show-design-options').html('Custom Styles'); hiddenStyleID.val( 'x' ); return false; }, function() { $('#design_standard').hide(); $('#design_custom').fadeIn(); $('.polldaddy-show-design-options').html('Standard Styles'); var customStyle = $(':input[name=customSelect]'); var customStyleVal = parseInt( customStyle.val() ); if ( customStyleVal > 0 ){ hiddenStyleID.val( customStyleVal.toString() ); } else{hiddenStyleID.val( 'x' ); } return false; } ); } else{ $('#design_custom').hide(); $('#design_standard').show(); $('.polldaddy-show-design-options').toggle( function() { $('#design_standard').hide(); $('#design_custom').fadeIn(); $('.polldaddy-show-design-options').html('Standard Styles'); var customStyle = $(':input[name=customSelect]'); var customStyleVal = parseInt( customStyle.val() ); if ( customStyleVal > 0 ){ hiddenStyleID.val( customStyleVal.toString() ); } else{ hiddenStyleID.val( 'x' ); } return false; }, function() { $('#design_custom').hide(); $('#design_standard').fadeIn(); $('.polldaddy-show-design-options').html('Custom Styles'); hiddenStyleID.val( 'x' ); return false; } ); } $("#multipleChoice").click(function(){ if ($("#multipleChoice").is(":checked")) { $("#numberChoices").show("fast"); } else { $("#numberChoices").hide("fast"); } });$( '.block-repeat' ).click( function(){var repeat = jQuery( this ).val();if( repeat == 'off' ){$( '#cookieip_expiration_label' ).hide();$( '#cookieip_expiration' ).hide();}else{$( '#cookieip_expiration_label' ).show();$( '#cookieip_expiration' ).show();} } ); });
|
1 |
+
jQuery(function($){ if ( typeof(window.$) == 'undefined' ){window.$ = jQuery;} $('.hide-if-js').hide(); $('.empty-if-js').empty(); $('.hide-if-no-js').removeClass( 'hide-if-no-js' ); $( '.polldaddy-shortcode-row pre' ).click( function(){var refNode = $( this )[0];if ( $.browser.msie ){var range = document.body.createTextRange();range.moveToElementText( refNode );range.select();} else if ( $.browser.mozilla || $.browser.opera ){var selection = window.getSelection();var range = document.createRange();range.selectNodeContents( refNode );selection.removeAllRanges();selection.addRange( range );} else if ( $.browser.safari ){var selection = window.getSelection();selection.setBaseAndExtent( refNode, 0, refNode, 1 );}}); $('a.delete-poll').click( function() { return confirm( 'Are you sure you want to delete "' + $(this).parents( 'td' ).find( 'strong' ).text() + '"?' ); } ); $('span.view a.thickbox').attr( 'href', function() { return $(this).attr( 'href' ) + '&iframe&TB_iframe=true'; } ); var delAnswerPrep = function( context ) { $('a.delete-answer', context || null ).click( function() { if ( confirm( 'Are you sure you want to delete this answer?' ) ) { $(this).parents( 'li' ).remove(); $('#choices option:last-child').remove(); } return false; } ); }; delAnswerPrep(); $('#answers').sortable( { axis: 'y', containment: 'parent', handle: '.handle', tolerance: 'pointer' } ); $('#add-answer-holder').show().find( 'button').click( function() { var aa = ( 1 + $('#answers li').size() ).toString();delAnswerPrep( $('#answers').append( '<li><span class="handle">↕</span><div><input type="text" name="answer[new' + aa + ']" size="30" tabindex="2" value="" autocomplete="off" /></div><a title="delete this answer" class="delete-answer delete" href="#">×</a></li>' ).find( 'li:last' ) ); $('#choices').append('<option value="'+aa+'">'+aa+'</option>'); return false; } ); var win = window.dialogArguments || opener || parent || top; $('.polldaddy-send-to-editor').click( function() { var pollID = $(this).siblings('.polldaddy-poll-id').val(); if ( !pollID ) pollID = $('.polldaddy-poll-id:first').val(); win.send_to_editor( '[polldaddy poll=' + parseInt( pollID ).toString() + ']' ); } ); $('.polldaddy-show-shortcode').toggle( function() { $(this).parents('tr:first').next('tr').fadeIn(); $(this).parents('tr:first').next('tr').show(); return false; }, function() { $(this).parents('tr:first').next('tr').fadeOut(); $(this).parents('tr:first').next('tr').hide(); return false; } );var hiddenStyleID = $(':input[name=styleID]'); var customStyle = $(':input[name=customSelect]'); var customStyleVal = parseInt( customStyle.val() ); customStyle.change(function() { var customStyleVal = parseInt( customStyle.val() ); hiddenStyleID.val( customStyleVal.toString() ); }); if ( customStyleVal > 0 ) { $('#design_standard').hide(); $('#design_custom').show(); $('.polldaddy-show-design-options').html('Standard Styles'); hiddenStyleID.val( customStyleVal.toString() ); $('.polldaddy-show-design-options').toggle( function() { $('#design_custom').hide(); $('#design_standard').fadeIn(); $('.polldaddy-show-design-options').html('Custom Styles'); hiddenStyleID.val( 'x' ); return false; }, function() { $('#design_standard').hide(); $('#design_custom').fadeIn(); $('.polldaddy-show-design-options').html('Standard Styles'); var customStyle = $(':input[name=customSelect]'); var customStyleVal = parseInt( customStyle.val() ); if ( customStyleVal > 0 ){ hiddenStyleID.val( customStyleVal.toString() ); } else{hiddenStyleID.val( 'x' ); } return false; } ); } else{ $('#design_custom').hide(); $('#design_standard').show(); $('.polldaddy-show-design-options').toggle( function() { $('#design_standard').hide(); $('#design_custom').fadeIn(); $('.polldaddy-show-design-options').html('Standard Styles'); var customStyle = $(':input[name=customSelect]'); var customStyleVal = parseInt( customStyle.val() ); if ( customStyleVal > 0 ){ hiddenStyleID.val( customStyleVal.toString() ); } else{ hiddenStyleID.val( 'x' ); } return false; }, function() { $('#design_custom').hide(); $('#design_standard').fadeIn(); $('.polldaddy-show-design-options').html('Custom Styles'); hiddenStyleID.val( 'x' ); return false; } ); } $("#multipleChoice").click(function(){ if ($("#multipleChoice").is(":checked")) { $("#numberChoices").show("fast"); } else { $("#numberChoices").hide("fast"); } });$( '.block-repeat' ).click( function(){var repeat = jQuery( this ).val();if( repeat == 'off' ){$( '#cookieip_expiration_label' ).hide();$( '#cookieip_expiration' ).hide();}else{$( '#cookieip_expiration_label' ).show();$( '#cookieip_expiration' ).show();} } ); });
|
polldaddy.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: PollDaddy Polls
|
|
5 |
Description: Create and manage PollDaddy polls and ratings in WordPress
|
6 |
Author: Automattic, Inc.
|
7 |
Author URL: http://automattic.com/
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
|
11 |
// You can hardcode your PollDaddy PartnerGUID (API Key) here
|
@@ -33,7 +33,7 @@ class WP_PollDaddy {
|
|
33 |
global $current_user;
|
34 |
$this->errors = new WP_Error;
|
35 |
$this->scheme = 'https';
|
36 |
-
$this->version = '1.8.
|
37 |
$this->multiple_accounts = true;
|
38 |
$this->polldaddy_client_class = 'api_client';
|
39 |
$this->polldaddy_clients = array();
|
@@ -1258,27 +1258,29 @@ class WP_PollDaddy {
|
|
1258 |
<?php } else { ?>
|
1259 |
<span class="view"><a class="thickbox" href="<?php echo $preview_link; ?>"><?php _e( 'Preview', 'polldaddy' ); ?></a> | </span>
|
1260 |
<?php } ?>
|
1261 |
-
<span class="shortcode"><a href="#" class="polldaddy-show-shortcode"><?php _e( '
|
1262 |
<?php $this->poll_table_add_option( $poll_id ); ?>
|
1263 |
</td>
|
1264 |
<td class="poll-votes column-vote"><?php echo number_format_i18n( $poll->_responses ); ?></td>
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
<pre><script type="text/javascript" language="javascript"
|
1274 |
src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></script>
|
1275 |
<noscript>
|
1276 |
<a href="http://answers.polldaddy.com/poll/<?php echo (int) $poll_id; ?>/"><?php echo trim( strip_tags( $poll->___content ) ); ?></a><br/>
|
1277 |
<span style="font:9px;">(<a href="http://www.polldaddy.com">polls</a>)</span>
|
1278 |
</noscript></pre>
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
|
|
|
|
|
|
1282 |
<?php
|
1283 |
endforeach;
|
1284 |
elseif ( $total_polls ) : // $polls
|
5 |
Description: Create and manage PollDaddy polls and ratings in WordPress
|
6 |
Author: Automattic, Inc.
|
7 |
Author URL: http://automattic.com/
|
8 |
+
Version: 1.8.6
|
9 |
*/
|
10 |
|
11 |
// You can hardcode your PollDaddy PartnerGUID (API Key) here
|
33 |
global $current_user;
|
34 |
$this->errors = new WP_Error;
|
35 |
$this->scheme = 'https';
|
36 |
+
$this->version = '1.8.6';
|
37 |
$this->multiple_accounts = true;
|
38 |
$this->polldaddy_client_class = 'api_client';
|
39 |
$this->polldaddy_clients = array();
|
1258 |
<?php } else { ?>
|
1259 |
<span class="view"><a class="thickbox" href="<?php echo $preview_link; ?>"><?php _e( 'Preview', 'polldaddy' ); ?></a> | </span>
|
1260 |
<?php } ?>
|
1261 |
+
<span class="shortcode"><a href="#" class="polldaddy-show-shortcode"><?php _e( 'Share-Embed', 'polldaddy' ); ?></a></span>
|
1262 |
<?php $this->poll_table_add_option( $poll_id ); ?>
|
1263 |
</td>
|
1264 |
<td class="poll-votes column-vote"><?php echo number_format_i18n( $poll->_responses ); ?></td>
|
1265 |
+
<td class="date column-date"><abbr title="<?php echo date( __('Y/m/d g:i:s A', 'polldaddy'), $poll_time ); ?>"><?php echo date( __('Y/m/d', 'polldaddy'), $poll_time ); ?></abbr></td>
|
1266 |
+
</tr>
|
1267 |
+
<tr class="polldaddy-shortcode-row" style="display: none;">
|
1268 |
+
<td colspan="4">
|
1269 |
+
<h4><?php _e( 'WordPress Shortcode', 'polldaddy' ); ?></h4>
|
1270 |
+
<pre style="width:175px;">[polldaddy poll=<?php echo (int) $poll_id; ?>]</pre>
|
1271 |
+
<h4><?php _e( 'JavaScript', 'polldaddy' ); ?></h4>
|
1272 |
+
<pre><script type="text/javascript" language="javascript"
|
|
|
1273 |
src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></script>
|
1274 |
<noscript>
|
1275 |
<a href="http://answers.polldaddy.com/poll/<?php echo (int) $poll_id; ?>/"><?php echo trim( strip_tags( $poll->___content ) ); ?></a><br/>
|
1276 |
<span style="font:9px;">(<a href="http://www.polldaddy.com">polls</a>)</span>
|
1277 |
</noscript></pre>
|
1278 |
+
<h4><?php _e( 'Short URL (Good for Twitter etc.)', 'polldaddy' ); ?></h4>
|
1279 |
+
<pre style="width:175px;">http://poll.fm/<?php echo base_convert( $poll_id, 10, 36 ); ?></pre>
|
1280 |
+
<h4><?php _e( 'Facebook URL', 'polldaddy' ); ?></h4>
|
1281 |
+
<pre style="width:175px;">http://poll.fm/f/<?php echo base_convert( $poll_id, 10, 36 ); ?></pre>
|
1282 |
+
</td>
|
1283 |
+
</tr>
|
1284 |
<?php
|
1285 |
endforeach;
|
1286 |
elseif ( $total_polls ) : // $polls
|
polldaddy.pot
CHANGED
@@ -1,5 +1,4 @@
|
|
1 |
-
|
2 |
-
# Translation of the WordPress plugin PollDaddy Polls 1.8.5 by Automattic, Inc..
|
3 |
# Copyright (C) 2010 Automattic, Inc.
|
4 |
# This file is distributed under the same license as the PollDaddy Polls package.
|
5 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -7,9 +6,9 @@
|
|
7 |
#, fuzzy
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
-
"Project-Id-Version: PollDaddy Polls 1.8.
|
11 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
12 |
-
"POT-Creation-Date: 2010-
|
13 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
14 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
15 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -67,11 +66,11 @@ msgid ""
|
|
67 |
"\">PollDaddy.com</a> account details."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: polldaddy-org.php:223 polldaddy.php:262 polldaddy.php:
|
71 |
msgid "PollDaddy Email Address"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: polldaddy-org.php:231 polldaddy.php:270 polldaddy.php:
|
75 |
msgid "PollDaddy Password"
|
76 |
msgstr ""
|
77 |
|
@@ -113,7 +112,7 @@ msgstr ""
|
|
113 |
msgid "Top Rated"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: polldaddy-org.php:498 polldaddy.php:
|
117 |
msgid "Title"
|
118 |
msgstr ""
|
119 |
|
@@ -158,7 +157,7 @@ msgstr ""
|
|
158 |
msgid "Reports"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: polldaddy.php:111 polldaddy.php:1237 polldaddy.php:
|
162 |
msgid "Edit"
|
163 |
msgstr ""
|
164 |
|
@@ -170,11 +169,11 @@ msgstr ""
|
|
170 |
msgid "Add New"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: polldaddy.php:115 polldaddy.php:1070 polldaddy.php:
|
174 |
msgid "Custom Styles"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: polldaddy.php:116 polldaddy.php:
|
178 |
msgid "Options"
|
179 |
msgstr ""
|
180 |
|
@@ -197,7 +196,7 @@ msgstr ""
|
|
197 |
msgid "Star Colors"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: polldaddy.php:362 polldaddy.php:
|
201 |
msgid "Star Size"
|
202 |
msgstr ""
|
203 |
|
@@ -225,7 +224,7 @@ msgstr ""
|
|
225 |
msgid "You are not allowed to close this poll."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: polldaddy.php:561 polldaddy.php:
|
229 |
msgid "You are not allowed to edit this poll."
|
230 |
msgstr ""
|
231 |
|
@@ -307,7 +306,7 @@ msgstr ""
|
|
307 |
msgid "Poll created."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: polldaddy.php:950 polldaddy.php:
|
311 |
msgid "Send to Editor"
|
312 |
msgstr ""
|
313 |
|
@@ -415,11 +414,11 @@ msgstr ""
|
|
415 |
msgid "All My Polls"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: polldaddy.php:1177 polldaddy.php:
|
419 |
msgid "Actions"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: polldaddy.php:1178 polldaddy.php:1243 polldaddy.php:
|
423 |
msgid "Delete"
|
424 |
msgstr ""
|
425 |
|
@@ -431,7 +430,7 @@ msgstr ""
|
|
431 |
msgid "Open"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: polldaddy.php:1182 polldaddy.php:
|
435 |
msgid "Apply"
|
436 |
msgstr ""
|
437 |
|
@@ -439,7 +438,7 @@ msgstr ""
|
|
439 |
msgid "Poll"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: polldaddy.php:1194 polldaddy.php:
|
443 |
msgid "Votes"
|
444 |
msgstr ""
|
445 |
|
@@ -451,7 +450,7 @@ msgstr ""
|
|
451 |
msgid "Results"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: polldaddy.php:1253 polldaddy.php:1259 polldaddy.php:
|
455 |
msgid "Preview"
|
456 |
msgstr ""
|
457 |
|
@@ -460,619 +459,627 @@ msgid "Send to editor"
|
|
460 |
msgstr ""
|
461 |
|
462 |
#: polldaddy.php:1261
|
463 |
-
msgid "
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: polldaddy.php:1265 polldaddy.php:
|
467 |
msgid "Y/m/d g:i:s A"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: polldaddy.php:1265 polldaddy.php:
|
471 |
msgid "Y/m/d"
|
472 |
msgstr ""
|
473 |
|
474 |
#: polldaddy.php:1269
|
475 |
-
msgid "Shortcode"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: polldaddy.php:
|
479 |
msgid "JavaScript"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#, php-format
|
484 |
msgid "What are you doing here? <a href=\"%s\">Go back</a>."
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: polldaddy.php:
|
488 |
#, php-format
|
489 |
msgid "No polls yet. <a href=\"%s\">Create one</a>"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: polldaddy.php:
|
493 |
msgid "No polls yet."
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: polldaddy.php:
|
497 |
msgid "Publish"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: polldaddy.php:
|
501 |
msgid "Save Poll"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: polldaddy.php:
|
505 |
msgid "Poll results"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: polldaddy.php:
|
509 |
msgid "Show results to voters"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: polldaddy.php:
|
513 |
msgid "Only show percentages"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: polldaddy.php:
|
517 |
msgid "Hide all results"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: polldaddy.php:
|
521 |
msgid "Block repeat voters"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: polldaddy.php:
|
525 |
msgid "Don't block repeat voters"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: polldaddy.php:
|
529 |
msgid "Block by cookie (recommended)"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: polldaddy.php:
|
533 |
msgid "Block by cookie and by IP address"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: polldaddy.php:
|
537 |
msgid "Expires: "
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: polldaddy.php:
|
541 |
msgid "Never"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: polldaddy.php:
|
545 |
#, php-format
|
546 |
msgid "%d hour"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: polldaddy.php:
|
550 |
-
#: polldaddy.php:
|
551 |
#, php-format
|
552 |
msgid "%d hours"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: polldaddy.php:
|
556 |
#, php-format
|
557 |
msgid "%d day"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: polldaddy.php:
|
561 |
#, php-format
|
562 |
msgid "%d week"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: polldaddy.php:
|
566 |
#, php-format
|
567 |
msgid "%d month"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: polldaddy.php:
|
571 |
msgid ""
|
572 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: polldaddy.php:
|
576 |
msgid "Answers"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: polldaddy.php:
|
580 |
msgid "Add another"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: polldaddy.php:
|
584 |
msgid "Multiple choice"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: polldaddy.php:
|
588 |
msgid "Randomize answer order"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: polldaddy.php:
|
592 |
msgid "Allow other answers"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: polldaddy.php:
|
596 |
msgid "'Share This' link"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: polldaddy.php:
|
600 |
msgid "Design"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: polldaddy.php:
|
604 |
msgid "Custom Style"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: polldaddy.php:
|
608 |
msgid "Please choose a custom style..."
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: polldaddy.php:
|
612 |
msgid "Please choose a style."
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: polldaddy.php:
|
616 |
#, php-format
|
617 |
msgid ""
|
618 |
"Did you know we have a new editor for building your own custom poll styles? "
|
619 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: polldaddy.php:
|
623 |
msgid "PollDaddy Style"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: polldaddy.php:
|
627 |
msgid "Answer"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: polldaddy.php:
|
631 |
#, php-format
|
632 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: polldaddy.php:
|
636 |
msgid "Other Answer"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: polldaddy.php:
|
640 |
msgid "Style"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: polldaddy.php:
|
644 |
msgid "Last Modified"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: polldaddy.php:
|
648 |
#, php-format
|
649 |
msgid "No custom styles yet. <a href=\"%s\">Create one</a>"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: polldaddy.php:
|
653 |
msgid "Style Name"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: polldaddy.php:
|
657 |
msgid "Preload Basic Style"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: polldaddy.php:
|
661 |
msgid "Load Style"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: polldaddy.php:
|
665 |
msgid "Save Style"
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: polldaddy.php:
|
669 |
#, php-format
|
670 |
msgid ""
|
671 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
672 |
"href=\"%1$s\" %2$s>PollDaddy support</a> to fix this."
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: polldaddy.php:
|
676 |
msgid "Rating Settings"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: polldaddy.php:
|
680 |
msgid "Rating updated"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: polldaddy.php:
|
684 |
msgid "Posts"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: polldaddy.php:
|
688 |
msgid "Pages"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: polldaddy.php:
|
692 |
msgid "Comments"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: polldaddy.php:
|
696 |
msgid "Enable for blog posts"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: polldaddy.php:
|
700 |
msgid "Above each blog post"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: polldaddy.php:
|
704 |
msgid "Below each blog post"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: polldaddy.php:
|
708 |
msgid "Enable for front page"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: polldaddy.php:
|
712 |
msgid "Enable for pages"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: polldaddy.php:
|
716 |
msgid "Above each page"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: polldaddy.php:
|
720 |
msgid "Below each page"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: polldaddy.php:
|
724 |
msgid "Enable for comments"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: polldaddy.php:
|
728 |
msgid "Above each comment"
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: polldaddy.php:
|
732 |
msgid "Below each comment"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: polldaddy.php:
|
736 |
msgid "Save Changes"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: polldaddy.php:
|
740 |
msgid "Advanced Settings"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: polldaddy.php:
|
744 |
msgid "Save"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: polldaddy.php:
|
748 |
msgid "This is a demo of what your rating widget will look like"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: polldaddy.php:
|
752 |
msgid "Customize Labels"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: polldaddy.php:
|
756 |
msgid "votes"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: polldaddy.php:
|
760 |
msgid "rate this"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: polldaddy.php:
|
764 |
#, php-format
|
765 |
msgid "%d star"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: polldaddy.php:
|
769 |
#, php-format
|
770 |
msgid "%d stars"
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: polldaddy.php:
|
774 |
msgid "Thank You"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: polldaddy.php:
|
778 |
msgid "Rate Up"
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: polldaddy.php:
|
782 |
msgid "Rate Down"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: polldaddy.php:
|
786 |
msgid "Rating Type"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: polldaddy.php:
|
790 |
msgid ""
|
791 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
792 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: polldaddy.php:
|
796 |
#, php-format
|
797 |
msgid "%d Star Rating"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: polldaddy.php:
|
801 |
msgid "Nero Rating"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: polldaddy.php:
|
805 |
msgid "Rating Style"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: polldaddy.php:
|
809 |
msgid "Small"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: polldaddy.php:
|
813 |
msgid "Medium"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: polldaddy.php:
|
817 |
msgid "Large"
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: polldaddy.php:
|
821 |
msgid "Star Color"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: polldaddy.php:
|
825 |
msgid "Yellow"
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: polldaddy.php:
|
829 |
msgid "Red"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: polldaddy.php:
|
833 |
msgid "Blue"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: polldaddy.php:
|
837 |
msgid "Green"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: polldaddy.php:
|
841 |
msgid "Grey"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: polldaddy.php:
|
845 |
msgid "Hand"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: polldaddy.php:
|
849 |
msgid "Custom Image"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: polldaddy.php:
|
853 |
msgid "Text Layout & Font"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: polldaddy.php:
|
857 |
msgid "Align"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: polldaddy.php:
|
861 |
msgid "Left"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: polldaddy.php:
|
865 |
msgid "Center"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: polldaddy.php:
|
869 |
msgid "Right"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: polldaddy.php:
|
873 |
msgid "Position"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: polldaddy.php:
|
877 |
msgid "Top"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: polldaddy.php:
|
881 |
msgid "Bottom"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: polldaddy.php:
|
885 |
msgid "Font"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: polldaddy.php:
|
889 |
msgid "Inherit"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: polldaddy.php:
|
893 |
msgid "Color"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: polldaddy.php:
|
897 |
msgid "Size"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: polldaddy.php:
|
901 |
msgid "Line Height"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: polldaddy.php:
|
905 |
msgid "Bold"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: polldaddy.php:
|
909 |
msgid "Italic"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: polldaddy.php:
|
913 |
msgid "Extra Settings"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: polldaddy.php:
|
917 |
msgid "Rating ID"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: polldaddy.php:
|
921 |
msgid "This is the rating ID used in posts"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: polldaddy.php:
|
925 |
msgid "Exclude Posts"
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: polldaddy.php:
|
929 |
msgid ""
|
930 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
931 |
"comma-delimited list, eg. 1,2,3"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: polldaddy.php:
|
935 |
msgid "This is the rating ID used in pages"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: polldaddy.php:
|
939 |
msgid "Exclude Pages"
|
940 |
msgstr ""
|
941 |
|
942 |
-
#: polldaddy.php:
|
943 |
msgid ""
|
944 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
945 |
"comma-delimited list, eg. 1,2,3"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: polldaddy.php:
|
949 |
msgid "This is the rating ID used in comments"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: polldaddy.php:
|
953 |
msgid "«"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: polldaddy.php:
|
957 |
msgid "»"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: polldaddy.php:
|
961 |
msgid "Rating Reports"
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: polldaddy.php:
|
965 |
msgid "View Report"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: polldaddy.php:
|
969 |
msgid "Last 24 hours"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: polldaddy.php:
|
973 |
msgid "Last 7 days"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: polldaddy.php:
|
977 |
msgid "Last 31 days"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: polldaddy.php:
|
981 |
msgid "Last 3 months"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: polldaddy.php:
|
985 |
msgid "Last 12 months"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: polldaddy.php:
|
989 |
msgid "All time"
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: polldaddy.php:
|
993 |
msgid "Filter Report"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: polldaddy.php:
|
997 |
#, php-format
|
998 |
msgid "No ratings have been collected for your %s yet."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: polldaddy.php:
|
1002 |
msgid "Start Date"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: polldaddy.php:
|
1006 |
msgid "Average Rating"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: polldaddy.php:
|
1010 |
msgid "PollDaddy Account Info"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: polldaddy.php:
|
1014 |
msgid ""
|
1015 |
"This is the PollDadddy account you currently have imported into your "
|
1016 |
"WordPress account"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: polldaddy.php:
|
1020 |
msgid "Import Account"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: polldaddy.php:
|
1024 |
msgid "General Settings"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: polldaddy.php:
|
1028 |
msgid "Default poll settings"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: polldaddy.php:
|
1032 |
msgid "Multiple Choice"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: polldaddy.php:
|
1036 |
msgid "Randomise Answers"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: polldaddy.php:
|
1040 |
msgid "Sharing"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: polldaddy.php:
|
1044 |
msgid "Show"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: polldaddy.php:
|
1048 |
msgid "Hide"
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: polldaddy.php:
|
1052 |
msgid "Percentages"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: polldaddy.php:
|
1056 |
msgid "Poll style"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: polldaddy.php:
|
1060 |
msgid "Off"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: polldaddy.php:
|
1064 |
msgid "Cookie"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: polldaddy.php:
|
1068 |
msgid "Cookie & IP address"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: polldaddy.php:
|
1072 |
msgid "Block expiration limit"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: polldaddy.php:
|
1076 |
msgid "Save Options"
|
1077 |
msgstr ""
|
1078 |
|
@@ -1086,4 +1093,4 @@ msgstr ""
|
|
1086 |
|
1087 |
#. Author of the plugin/theme
|
1088 |
msgid "Automattic, Inc."
|
1089 |
-
msgstr ""
|
1 |
+
# Translation of the WordPress plugin PollDaddy Polls 1.8.6 by Automattic, Inc..
|
|
|
2 |
# Copyright (C) 2010 Automattic, Inc.
|
3 |
# This file is distributed under the same license as the PollDaddy Polls package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: PollDaddy Polls 1.8.6\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
11 |
+
"POT-Creation-Date: 2010-04-12 14:25+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
66 |
"\">PollDaddy.com</a> account details."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: polldaddy-org.php:223 polldaddy.php:262 polldaddy.php:4036
|
70 |
msgid "PollDaddy Email Address"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: polldaddy-org.php:231 polldaddy.php:270 polldaddy.php:4046
|
74 |
msgid "PollDaddy Password"
|
75 |
msgstr ""
|
76 |
|
112 |
msgid "Top Rated"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: polldaddy-org.php:498 polldaddy.php:3862
|
116 |
msgid "Title"
|
117 |
msgstr ""
|
118 |
|
157 |
msgid "Reports"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: polldaddy.php:111 polldaddy.php:1237 polldaddy.php:2016
|
161 |
msgid "Edit"
|
162 |
msgstr ""
|
163 |
|
169 |
msgid "Add New"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: polldaddy.php:115 polldaddy.php:1070 polldaddy.php:1745
|
173 |
msgid "Custom Styles"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: polldaddy.php:116 polldaddy.php:4021
|
177 |
msgid "Options"
|
178 |
msgstr ""
|
179 |
|
196 |
msgid "Star Colors"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: polldaddy.php:362 polldaddy.php:3346
|
200 |
msgid "Star Size"
|
201 |
msgstr ""
|
202 |
|
224 |
msgid "You are not allowed to close this poll."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: polldaddy.php:561 polldaddy.php:1335
|
228 |
msgid "You are not allowed to edit this poll."
|
229 |
msgstr ""
|
230 |
|
306 |
msgid "Poll created."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: polldaddy.php:950 polldaddy.php:1368
|
310 |
msgid "Send to Editor"
|
311 |
msgstr ""
|
312 |
|
414 |
msgid "All My Polls"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: polldaddy.php:1177 polldaddy.php:1979
|
418 |
msgid "Actions"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: polldaddy.php:1178 polldaddy.php:1243 polldaddy.php:1980 polldaddy.php:2021
|
422 |
msgid "Delete"
|
423 |
msgstr ""
|
424 |
|
430 |
msgid "Open"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: polldaddy.php:1182 polldaddy.php:1982
|
434 |
msgid "Apply"
|
435 |
msgstr ""
|
436 |
|
438 |
msgid "Poll"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: polldaddy.php:1194 polldaddy.php:1883 polldaddy.php:1928 polldaddy.php:3863
|
442 |
msgid "Votes"
|
443 |
msgstr ""
|
444 |
|
450 |
msgid "Results"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: polldaddy.php:1253 polldaddy.php:1259 polldaddy.php:3258
|
454 |
msgid "Preview"
|
455 |
msgstr ""
|
456 |
|
459 |
msgstr ""
|
460 |
|
461 |
#: polldaddy.php:1261
|
462 |
+
msgid "Share-Embed"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: polldaddy.php:1265 polldaddy.php:2023
|
466 |
msgid "Y/m/d g:i:s A"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: polldaddy.php:1265 polldaddy.php:2023
|
470 |
msgid "Y/m/d"
|
471 |
msgstr ""
|
472 |
|
473 |
#: polldaddy.php:1269
|
474 |
+
msgid "WordPress Shortcode"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: polldaddy.php:1271
|
478 |
msgid "JavaScript"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: polldaddy.php:1278
|
482 |
+
msgid "Short URL (Good for Twitter etc.)"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: polldaddy.php:1280
|
486 |
+
msgid "Facebook URL"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: polldaddy.php:1290
|
490 |
#, php-format
|
491 |
msgid "What are you doing here? <a href=\"%s\">Go back</a>."
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: polldaddy.php:1300
|
495 |
#, php-format
|
496 |
msgid "No polls yet. <a href=\"%s\">Create one</a>"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: polldaddy.php:1302
|
500 |
msgid "No polls yet."
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: polldaddy.php:1357
|
504 |
msgid "Publish"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: polldaddy.php:1364
|
508 |
msgid "Save Poll"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: polldaddy.php:1379 polldaddy.php:4104
|
512 |
msgid "Poll results"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: polldaddy.php:1384
|
516 |
msgid "Show results to voters"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: polldaddy.php:1384
|
520 |
msgid "Only show percentages"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: polldaddy.php:1384
|
524 |
msgid "Hide all results"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: polldaddy.php:1402 polldaddy.php:4121
|
528 |
msgid "Block repeat voters"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: polldaddy.php:1407
|
532 |
msgid "Don't block repeat voters"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: polldaddy.php:1407
|
536 |
msgid "Block by cookie (recommended)"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: polldaddy.php:1407
|
540 |
msgid "Block by cookie and by IP address"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: polldaddy.php:1422
|
544 |
msgid "Expires: "
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: polldaddy.php:1424 polldaddy.php:4126
|
548 |
msgid "Never"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: polldaddy.php:1425 polldaddy.php:4127
|
552 |
#, php-format
|
553 |
msgid "%d hour"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: polldaddy.php:1426 polldaddy.php:1427 polldaddy.php:1428 polldaddy.php:4128
|
557 |
+
#: polldaddy.php:4129 polldaddy.php:4130
|
558 |
#, php-format
|
559 |
msgid "%d hours"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: polldaddy.php:1429 polldaddy.php:4131
|
563 |
#, php-format
|
564 |
msgid "%d day"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: polldaddy.php:1430 polldaddy.php:4132
|
568 |
#, php-format
|
569 |
msgid "%d week"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: polldaddy.php:1431 polldaddy.php:4133
|
573 |
#, php-format
|
574 |
msgid "%d month"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: polldaddy.php:1433
|
578 |
msgid ""
|
579 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: polldaddy.php:1448
|
583 |
msgid "Answers"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: polldaddy.php:1494
|
587 |
msgid "Add another"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: polldaddy.php:1500
|
591 |
msgid "Multiple choice"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: polldaddy.php:1500
|
595 |
msgid "Randomize answer order"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: polldaddy.php:1500
|
599 |
msgid "Allow other answers"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: polldaddy.php:1500
|
603 |
msgid "'Share This' link"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: polldaddy.php:1629
|
607 |
msgid "Design"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: polldaddy.php:1710 polldaddy.php:1765
|
611 |
msgid "Custom Style"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: polldaddy.php:1723 polldaddy.php:1819
|
615 |
msgid "Please choose a custom style..."
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: polldaddy.php:1729 polldaddy.php:1825
|
619 |
msgid "Please choose a style."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: polldaddy.php:1734 polldaddy.php:1830
|
623 |
#, php-format
|
624 |
msgid ""
|
625 |
"Did you know we have a new editor for building your own custom poll styles? "
|
626 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: polldaddy.php:1757
|
630 |
msgid "PollDaddy Style"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: polldaddy.php:1882
|
634 |
msgid "Answer"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: polldaddy.php:1897
|
638 |
#, php-format
|
639 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: polldaddy.php:1927 polldaddy.php:4092
|
643 |
msgid "Other Answer"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: polldaddy.php:1992
|
647 |
msgid "Style"
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: polldaddy.php:1993
|
651 |
msgid "Last Modified"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: polldaddy.php:2033
|
655 |
#, php-format
|
656 |
msgid "No custom styles yet. <a href=\"%s\">Create one</a>"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: polldaddy.php:2109
|
660 |
msgid "Style Name"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: polldaddy.php:2124
|
664 |
msgid "Preload Basic Style"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: polldaddy.php:2138
|
668 |
msgid "Load Style"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: polldaddy.php:2927
|
672 |
msgid "Save Style"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: polldaddy.php:3071
|
676 |
#, php-format
|
677 |
msgid ""
|
678 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
679 |
"href=\"%1$s\" %2$s>PollDaddy support</a> to fix this."
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: polldaddy.php:3110
|
683 |
msgid "Rating Settings"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: polldaddy.php:3112
|
687 |
msgid "Rating updated"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: polldaddy.php:3124 polldaddy.php:3822
|
691 |
msgid "Posts"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: polldaddy.php:3128 polldaddy.php:3822
|
695 |
msgid "Pages"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: polldaddy.php:3132 polldaddy.php:3822
|
699 |
msgid "Comments"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: polldaddy.php:3143
|
703 |
msgid "Enable for blog posts"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: polldaddy.php:3147 polldaddy.php:3165
|
707 |
msgid "Above each blog post"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: polldaddy.php:3147 polldaddy.php:3165
|
711 |
msgid "Below each blog post"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: polldaddy.php:3161
|
715 |
msgid "Enable for front page"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: polldaddy.php:3181
|
719 |
msgid "Enable for pages"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: polldaddy.php:3185
|
723 |
msgid "Above each page"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: polldaddy.php:3185
|
727 |
msgid "Below each page"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: polldaddy.php:3201
|
731 |
msgid "Enable for comments"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: polldaddy.php:3205
|
735 |
msgid "Above each comment"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: polldaddy.php:3205
|
739 |
msgid "Below each comment"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: polldaddy.php:3220 polldaddy.php:3251
|
743 |
msgid "Save Changes"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: polldaddy.php:3231
|
747 |
msgid "Advanced Settings"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: polldaddy.php:3244
|
751 |
msgid "Save"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: polldaddy.php:3260
|
755 |
msgid "This is a demo of what your rating widget will look like"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: polldaddy.php:3267
|
759 |
msgid "Customize Labels"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: polldaddy.php:3271
|
763 |
msgid "votes"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: polldaddy.php:3275
|
767 |
msgid "rate this"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: polldaddy.php:3279
|
771 |
#, php-format
|
772 |
msgid "%d star"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: polldaddy.php:3283 polldaddy.php:3287 polldaddy.php:3291 polldaddy.php:3295
|
776 |
#, php-format
|
777 |
msgid "%d stars"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: polldaddy.php:3299
|
781 |
msgid "Thank You"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: polldaddy.php:3303
|
785 |
msgid "Rate Up"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#: polldaddy.php:3307
|
789 |
msgid "Rate Down"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: polldaddy.php:3316
|
793 |
msgid "Rating Type"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: polldaddy.php:3318
|
797 |
msgid ""
|
798 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
799 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: polldaddy.php:3326
|
803 |
#, php-format
|
804 |
msgid "%d Star Rating"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: polldaddy.php:3335
|
808 |
msgid "Nero Rating"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: polldaddy.php:3342
|
812 |
msgid "Rating Style"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: polldaddy.php:3349
|
816 |
msgid "Small"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: polldaddy.php:3349
|
820 |
msgid "Medium"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: polldaddy.php:3349
|
824 |
msgid "Large"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: polldaddy.php:3360
|
828 |
msgid "Star Color"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: polldaddy.php:3363
|
832 |
msgid "Yellow"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: polldaddy.php:3363
|
836 |
msgid "Red"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: polldaddy.php:3363
|
840 |
msgid "Blue"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: polldaddy.php:3363
|
844 |
msgid "Green"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: polldaddy.php:3363
|
848 |
msgid "Grey"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: polldaddy.php:3372
|
852 |
msgid "Hand"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: polldaddy.php:3383
|
856 |
msgid "Custom Image"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: polldaddy.php:3390
|
860 |
msgid "Text Layout & Font"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: polldaddy.php:3394
|
864 |
msgid "Align"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: polldaddy.php:3397
|
868 |
msgid "Left"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: polldaddy.php:3397
|
872 |
msgid "Center"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: polldaddy.php:3397 polldaddy.php:3411
|
876 |
msgid "Right"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: polldaddy.php:3408
|
880 |
msgid "Position"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: polldaddy.php:3411
|
884 |
msgid "Top"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: polldaddy.php:3411
|
888 |
msgid "Bottom"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: polldaddy.php:3422
|
892 |
msgid "Font"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: polldaddy.php:3425 polldaddy.php:3444 polldaddy.php:3458
|
896 |
msgid "Inherit"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: polldaddy.php:3436
|
900 |
msgid "Color"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: polldaddy.php:3441
|
904 |
msgid "Size"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: polldaddy.php:3455
|
908 |
msgid "Line Height"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: polldaddy.php:3469
|
912 |
msgid "Bold"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: polldaddy.php:3478
|
916 |
msgid "Italic"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: polldaddy.php:3491 polldaddy.php:3522 polldaddy.php:3552
|
920 |
msgid "Extra Settings"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: polldaddy.php:3495 polldaddy.php:3526 polldaddy.php:3556
|
924 |
msgid "Rating ID"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: polldaddy.php:3501
|
928 |
msgid "This is the rating ID used in posts"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: polldaddy.php:3506
|
932 |
msgid "Exclude Posts"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: polldaddy.php:3512
|
936 |
msgid ""
|
937 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
938 |
"comma-delimited list, eg. 1,2,3"
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: polldaddy.php:3532
|
942 |
msgid "This is the rating ID used in pages"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: polldaddy.php:3537
|
946 |
msgid "Exclude Pages"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: polldaddy.php:3543
|
950 |
msgid ""
|
951 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
952 |
"comma-delimited list, eg. 1,2,3"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: polldaddy.php:3562
|
956 |
msgid "This is the rating ID used in comments"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: polldaddy.php:3809
|
960 |
msgid "«"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: polldaddy.php:3810
|
964 |
msgid "»"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: polldaddy.php:3816
|
968 |
msgid "Rating Reports"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: polldaddy.php:3831
|
972 |
msgid "View Report"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: polldaddy.php:3833
|
976 |
msgid "Last 24 hours"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: polldaddy.php:3833
|
980 |
msgid "Last 7 days"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: polldaddy.php:3833
|
984 |
msgid "Last 31 days"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: polldaddy.php:3833
|
988 |
msgid "Last 3 months"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: polldaddy.php:3833
|
992 |
msgid "Last 12 months"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: polldaddy.php:3833
|
996 |
msgid "All time"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: polldaddy.php:3841
|
1000 |
msgid "Filter Report"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: polldaddy.php:3855
|
1004 |
#, php-format
|
1005 |
msgid "No ratings have been collected for your %s yet."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: polldaddy.php:3861
|
1009 |
msgid "Start Date"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: polldaddy.php:3864
|
1013 |
msgid "Average Rating"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: polldaddy.php:4025
|
1017 |
msgid "PollDaddy Account Info"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: polldaddy.php:4028
|
1021 |
msgid ""
|
1022 |
"This is the PollDadddy account you currently have imported into your "
|
1023 |
"WordPress account"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: polldaddy.php:4059
|
1027 |
msgid "Import Account"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: polldaddy.php:4065
|
1031 |
msgid "General Settings"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: polldaddy.php:4073
|
1035 |
msgid "Default poll settings"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: polldaddy.php:4082
|
1039 |
msgid "Multiple Choice"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: polldaddy.php:4087
|
1043 |
msgid "Randomise Answers"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: polldaddy.php:4097
|
1047 |
msgid "Sharing"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: polldaddy.php:4101
|
1051 |
msgid "Show"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: polldaddy.php:4102
|
1055 |
msgid "Hide"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: polldaddy.php:4103
|
1059 |
msgid "Percentages"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: polldaddy.php:4113
|
1063 |
msgid "Poll style"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: polldaddy.php:4118
|
1067 |
msgid "Off"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: polldaddy.php:4119
|
1071 |
msgid "Cookie"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: polldaddy.php:4120
|
1075 |
msgid "Cookie & IP address"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: polldaddy.php:4134
|
1079 |
msgid "Block expiration limit"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: polldaddy.php:4146
|
1083 |
msgid "Save Options"
|
1084 |
msgstr ""
|
1085 |
|
1093 |
|
1094 |
#. Author of the plugin/theme
|
1095 |
msgid "Automattic, Inc."
|
1096 |
+
msgstr ""
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: mdawaffe, eoigal
|
3 |
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
Requires at least: 2.6
|
5 |
-
Tested up to: 2.9.
|
6 |
-
Stable tag: 1.8.
|
7 |
|
8 |
Create and manage PollDaddy polls and ratings from within WordPress.
|
9 |
|
@@ -64,6 +64,9 @@ More info here - http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks
|
|
64 |
You need to select the synchronize ratings account in the Options menu to make sure the ratings API key is valid.
|
65 |
|
66 |
== Change Log ==
|
|
|
|
|
|
|
67 |
= 1.8.5 =
|
68 |
* Added option to allow ratings to be excluded from posts and pages
|
69 |
|
2 |
Contributors: mdawaffe, eoigal
|
3 |
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
Requires at least: 2.6
|
5 |
+
Tested up to: 2.9.2
|
6 |
+
Stable tag: 1.8.6
|
7 |
|
8 |
Create and manage PollDaddy polls and ratings from within WordPress.
|
9 |
|
64 |
You need to select the synchronize ratings account in the Options menu to make sure the ratings API key is valid.
|
65 |
|
66 |
== Change Log ==
|
67 |
+
= 1.8.6 =
|
68 |
+
* Added new Embed options, added short URL to community site and Facebook directory
|
69 |
+
|
70 |
= 1.8.5 =
|
71 |
* Added option to allow ratings to be excluded from posts and pages
|
72 |
|