Crowdsignal Dashboard – Polls, Surveys & more - Version 2.0.21

Version Description

Fixed CSRF in ratings settings page, rich snippet support, login via API key.

=

Download this release

Release Info

Developer donncha
Plugin Icon 128x128 Crowdsignal Dashboard – Polls, Surveys & more
Version 2.0.21
Comparing to
See all releases

Code changes from version 2.0.20 to 2.0.21

Files changed (4) hide show
  1. polldaddy-org.php +81 -26
  2. polldaddy.php +29 -50
  3. polldaddy.pot +481 -490
  4. readme.txt +12 -4
polldaddy-org.php CHANGED
@@ -8,10 +8,6 @@ class WPORG_Polldaddy extends WP_Polldaddy {
8
  var $use_ssl;
9
  var $inline;
10
 
11
- function WPORG_Polldaddy() {
12
- $this->__construct();
13
- }
14
-
15
  function __construct() {
16
  parent::__construct();
17
  $this->log( 'Created WPORG_Polldaddy Object: constructor' );
@@ -136,8 +132,7 @@ class WPORG_Polldaddy extends WP_Polldaddy {
136
  if ( in_array( $action, array( 'options', 'update-rating' ) ) ) {
137
  $parent_file = 'options-general.php';
138
  $submenu_file = $page.'&action=options';
139
- }
140
- else {
141
  add_filter( 'admin_title', array( &$this, 'admin_title' ) );
142
  $submenu_file = $page;
143
  }
@@ -236,8 +231,7 @@ class WPORG_Polldaddy extends WP_Polldaddy {
236
 
237
  if ( isset( $polldaddy_api_key ) && strlen( $polldaddy_api_key ) > 0 ) {
238
  update_option( 'polldaddy_api_key', $polldaddy_api_key );
239
- }
240
- else {
241
  $this->log( 'management_page_load: login to Polldaddy failed' );
242
  $this->errors->add( 'polldaddy_api_key', __( 'Login to Polldaddy failed. Double check your email address and password.', 'polldaddy' ) );
243
  if ( 1 !== $this->use_ssl ) {
@@ -590,8 +584,7 @@ PDRTJS_settings_{$rating}{$item_id}={$settings};
590
  //--><!]]></script>
591
  <script type="text/javascript" charset="UTF-8" src="http://i0.poll.fm/js/rating/rating.js"></script>
592
  SCRIPT;
593
- }
594
- else {
595
  if ( self::$scripts === false )
596
  self::$scripts = array();
597
 
@@ -612,17 +605,16 @@ CONTAINER;
612
  <div class="pd-rating" id="pd_rating_holder_{$rating}{$item_id}"></div>
613
  CONTAINER;
614
  }
615
- }
616
- elseif ( intval( $poll ) > 0 ) { //poll embed
617
 
618
  $poll = intval( $poll );
619
  $poll_url = sprintf( 'http://polldaddy.com/poll/%d', $poll );
620
  $poll_js = sprintf( '%s.polldaddy.com/p/%d.js', ( is_ssl() ? 'https://secure' : 'http://static' ), $poll );
621
  $poll_link = sprintf( '<a href="%s">Take Our Poll</a>', $poll_url );
622
 
623
- if ( $no_script )
624
  return $poll_link;
625
- else {
626
  if ( $type == 'slider' && !$inline ) {
627
 
628
  if( !in_array( $visit, array( 'single', 'multiple' ) ) )
@@ -643,8 +635,7 @@ polldaddy.add( {$settings} );
643
  //--><!]]></script>
644
  <noscript>{$poll_link}</noscript>
645
  SCRIPT;
646
- }
647
- else {
648
  $cb = ( $cb == 1 ? '?cb='.mktime() : false );
649
  $margins = '';
650
  $float = '';
@@ -676,8 +667,7 @@ SCRIPT;
676
  <div id="PD_superContainer"></div>
677
  <noscript>{$poll_link}</noscript>
678
  CONTAINER;
679
- }
680
- else {
681
  if ( $inline )
682
  $cb = '';
683
 
@@ -691,8 +681,7 @@ CONTAINER;
691
  }
692
  }
693
  }
694
- }
695
- elseif ( !empty( $survey ) ) { //survey embed
696
 
697
  if ( in_array( $type, array( 'iframe', 'button', 'banner', 'slider' ) ) ) {
698
 
@@ -727,8 +716,7 @@ CONTAINER;
727
  return <<<CONTAINER
728
  <iframe src="{$survey_url}?iframe=1" frameborder="0" width="{$width}" height="{$height}" scrolling="auto" allowtransparency="true" marginheight="0" marginwidth="0">{$survey_link}</iframe>
729
  CONTAINER;
730
- }
731
- elseif ( !empty( $domain ) && !empty( $id ) ) {
732
 
733
  $auto_src = esc_url( "http://{$domain}.polldaddy.com/s/{$id}" );
734
  $auto_src = parse_url( $auto_src );
@@ -749,8 +737,7 @@ CONTAINER;
749
  'id' => $id
750
  ) );
751
  }
752
- }
753
- else {
754
  $text_color = preg_replace( '/[^a-f0-9]/i', '', $text_color );
755
  $back_color = preg_replace( '/[^a-f0-9]/i', '', $back_color );
756
 
@@ -784,9 +771,9 @@ polldaddy.add( {$settings} );
784
  <noscript>{$survey_link}</noscript>
785
  CONTAINER;
786
  }
787
- }
788
- else
789
  return '<!-- no polldaddy output -->';
 
790
  }
791
 
792
  function generate_scripts() {
@@ -1018,4 +1005,72 @@ function polldaddy_login_warning() {
1018
  echo '<div class="updated"><p><strong>' . sprintf( __( 'Warning! The Polldaddy plugin must be linked to your Polldaddy.com account. Please visit the <a href="%s">plugin settings page</a> to login.', 'polldaddy' ), admin_url( 'options-general.php?page=polls&action=options' ) ) . '</strong></p></div>';
1019
  }
1020
  add_action( 'admin_notices', 'polldaddy_login_warning' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1021
  ?>
8
  var $use_ssl;
9
  var $inline;
10
 
 
 
 
 
11
  function __construct() {
12
  parent::__construct();
13
  $this->log( 'Created WPORG_Polldaddy Object: constructor' );
132
  if ( in_array( $action, array( 'options', 'update-rating' ) ) ) {
133
  $parent_file = 'options-general.php';
134
  $submenu_file = $page.'&action=options';
135
+ } else {
 
136
  add_filter( 'admin_title', array( &$this, 'admin_title' ) );
137
  $submenu_file = $page;
138
  }
231
 
232
  if ( isset( $polldaddy_api_key ) && strlen( $polldaddy_api_key ) > 0 ) {
233
  update_option( 'polldaddy_api_key', $polldaddy_api_key );
234
+ } else {
 
235
  $this->log( 'management_page_load: login to Polldaddy failed' );
236
  $this->errors->add( 'polldaddy_api_key', __( 'Login to Polldaddy failed. Double check your email address and password.', 'polldaddy' ) );
237
  if ( 1 !== $this->use_ssl ) {
584
  //--><!]]></script>
585
  <script type="text/javascript" charset="UTF-8" src="http://i0.poll.fm/js/rating/rating.js"></script>
586
  SCRIPT;
587
+ } else {
 
588
  if ( self::$scripts === false )
589
  self::$scripts = array();
590
 
605
  <div class="pd-rating" id="pd_rating_holder_{$rating}{$item_id}"></div>
606
  CONTAINER;
607
  }
608
+ } elseif ( intval( $poll ) > 0 ) { //poll embed
 
609
 
610
  $poll = intval( $poll );
611
  $poll_url = sprintf( 'http://polldaddy.com/poll/%d', $poll );
612
  $poll_js = sprintf( '%s.polldaddy.com/p/%d.js', ( is_ssl() ? 'https://secure' : 'http://static' ), $poll );
613
  $poll_link = sprintf( '<a href="%s">Take Our Poll</a>', $poll_url );
614
 
615
+ if ( $no_script ) {
616
  return $poll_link;
617
+ } else {
618
  if ( $type == 'slider' && !$inline ) {
619
 
620
  if( !in_array( $visit, array( 'single', 'multiple' ) ) )
635
  //--><!]]></script>
636
  <noscript>{$poll_link}</noscript>
637
  SCRIPT;
638
+ } else {
 
639
  $cb = ( $cb == 1 ? '?cb='.mktime() : false );
640
  $margins = '';
641
  $float = '';
667
  <div id="PD_superContainer"></div>
668
  <noscript>{$poll_link}</noscript>
669
  CONTAINER;
670
+ } else {
 
671
  if ( $inline )
672
  $cb = '';
673
 
681
  }
682
  }
683
  }
684
+ } elseif ( !empty( $survey ) ) { //survey embed
 
685
 
686
  if ( in_array( $type, array( 'iframe', 'button', 'banner', 'slider' ) ) ) {
687
 
716
  return <<<CONTAINER
717
  <iframe src="{$survey_url}?iframe=1" frameborder="0" width="{$width}" height="{$height}" scrolling="auto" allowtransparency="true" marginheight="0" marginwidth="0">{$survey_link}</iframe>
718
  CONTAINER;
719
+ } elseif ( !empty( $domain ) && !empty( $id ) ) {
 
720
 
721
  $auto_src = esc_url( "http://{$domain}.polldaddy.com/s/{$id}" );
722
  $auto_src = parse_url( $auto_src );
737
  'id' => $id
738
  ) );
739
  }
740
+ } else {
 
741
  $text_color = preg_replace( '/[^a-f0-9]/i', '', $text_color );
742
  $back_color = preg_replace( '/[^a-f0-9]/i', '', $back_color );
743
 
771
  <noscript>{$survey_link}</noscript>
772
  CONTAINER;
773
  }
774
+ } else {
 
775
  return '<!-- no polldaddy output -->';
776
+ }
777
  }
778
 
779
  function generate_scripts() {
1005
  echo '<div class="updated"><p><strong>' . sprintf( __( 'Warning! The Polldaddy plugin must be linked to your Polldaddy.com account. Please visit the <a href="%s">plugin settings page</a> to login.', 'polldaddy' ), admin_url( 'options-general.php?page=polls&action=options' ) ) . '</strong></p></div>';
1006
  }
1007
  add_action( 'admin_notices', 'polldaddy_login_warning' );
1008
+
1009
+ /**
1010
+ * check if the hook is scheduled - if not, schedule it.
1011
+ */
1012
+ function polldaddy_setup_schedule() {
1013
+ if ( false == wp_next_scheduled( 'polldaddy_rating_update_job' ) ) {
1014
+ wp_schedule_event( time(), 'daily', 'polldaddy_rating_update_job');
1015
+ }
1016
+ }
1017
+ add_action( 'init', 'polldaddy_setup_schedule' );
1018
+
1019
+ /**
1020
+ * On deactivation, remove all functions from the scheduled action hook.
1021
+ */
1022
+ function polldaddy_deactivation() {
1023
+ wp_clear_scheduled_hook( 'polldaddy_rating_update_job' );
1024
+ }
1025
+ register_deactivation_hook( __FILE__, 'polldaddy_deactivation' );
1026
+
1027
+ /**
1028
+ * On the scheduled action hook, run a function.
1029
+ */
1030
+ function polldaddy_rating_update() {
1031
+ global $polldaddy_object;
1032
+ $polldaddy = $polldaddy_object->get_client( WP_POLLDADDY__PARTNERGUID, get_option( 'pd-rating-usercode' ) );
1033
+ $response = $polldaddy->get_rating_results( $rating[ 'id' ], 2, 0, 15 );
1034
+ $ratings = $response->ratings;
1035
+ if ( empty( $ratings ) )
1036
+ return false;
1037
+
1038
+ polldaddy_update_ratings_cache( $ratings );
1039
+ }
1040
+
1041
+ add_action( 'polldaddy_rating_update_job', 'polldaddy_rating_update' );
1042
+
1043
+ function polldaddy_update_ratings_cache( $ratings ) {
1044
+ foreach( $ratings as $rating ) {
1045
+ $post_id = str_replace( 'wp-post-', '', $rating->uid );
1046
+ update_post_meta( $post_id, 'pd_rating', array( 'type' => $rating->_type, 'votes' => $rating->_votes,
1047
+ 'total1' => $rating->total1,
1048
+ 'total2' => $rating->total2,
1049
+ 'total3' => $rating->total3,
1050
+ 'total4' => $rating->total4,
1051
+ 'total5' => $rating->total5,
1052
+ 'average' => $rating->average_rating ) );
1053
+ }
1054
+ }
1055
+
1056
+ function polldaddy_post_rating( $content ) {
1057
+ if ( false == is_singular() )
1058
+ return $content;
1059
+ if ( false == get_option( 'pd-rating-usercode' ) )
1060
+ return $content;
1061
+ $rating = get_post_meta( $GLOBALS[ 'post' ]->ID, 'pd_rating' );
1062
+ if ( false == $rating )
1063
+ return $content;
1064
+ // convert to 5 star rating
1065
+ if ( $rating[0][ 'type' ] == 1 )
1066
+ $average = ceil( ( $rating[0][ 'average' ] / $rating[0][ 'votes' ] ) * 5 );
1067
+ else
1068
+ $average = $rating[ 'average' ];
1069
+ return $content . '
1070
+ <div itemtype="http://schema.org/AggregateRating" itemscope itemprop="aggregateRating">
1071
+ <meta itemprop="ratingValue" content=' . $average . '>
1072
+ <meta itemprop="ratingCount" content=' . $rating[0][ 'votes' ] . '>
1073
+ </div>';
1074
+ }
1075
+ add_filter( 'the_content', 'polldaddy_post_rating' );
1076
  ?>
polldaddy.php CHANGED
@@ -5,8 +5,8 @@ Plugin Name: Polldaddy Polls & Ratings
5
  Plugin URI: http://wordpress.org/extend/plugins/polldaddy/
6
  Description: Create and manage Polldaddy polls and ratings in WordPress
7
  Author: Automattic, Inc.
8
- Author URL: http://automattic.com/
9
- Version: 2.0.20
10
  */
11
 
12
  // You can hardcode your Polldaddy PartnerGUID (API Key) here
@@ -27,10 +27,6 @@ class WP_Polldaddy {
27
  var $rating_user_code;
28
  var $has_feedback_menu;
29
 
30
- function WP_Polldaddy() {
31
- $this->__construct();
32
- }
33
-
34
  function __construct() {
35
  global $current_user;
36
  $this->log( 'Created WP_Polldaddy Object: constructor' );
@@ -1040,7 +1036,7 @@ class WP_Polldaddy {
1040
 
1041
  switch ( $_POST['account'] ) {
1042
  case 'import' :
1043
- return $this->import_account();
1044
  break;
1045
  default :
1046
  return;
@@ -1048,27 +1044,19 @@ class WP_Polldaddy {
1048
  }
1049
 
1050
  function import_account() {
1051
-
1052
-
1053
- $polldaddy = $this->get_client( WP_POLLDADDY__PARTNERGUID );
1054
- $polldaddy->reset();
1055
- $email = trim( stripslashes( $_POST['polldaddy_email'] ) );
1056
- $password = trim( stripslashes( $_POST['polldaddy_password'] ) );
1057
-
1058
- if ( !is_email( $email ) )
1059
- $this->errors->add( 'polldaddy_email', __( 'Email address required', 'polldaddy' ) );
1060
-
1061
- if ( !$password )
1062
- $this->errors->add( 'polldaddy_password', __( 'Password required', 'polldaddy' ) );
1063
-
1064
- if ( $this->errors->get_error_codes() )
1065
- return false;
1066
-
1067
- if ( $usercode = $polldaddy->initiate( $email, $password, $this->id ) ) {
1068
- $this->user_code = $usercode;
1069
  } else {
1070
- $this->parse_errors( $polldaddy );
1071
- $this->errors->add( 'import-account', __( 'Account could not be imported. Are your email address and password correct?', 'polldaddy' ) );
1072
  return false;
1073
  }
1074
  }
@@ -1812,16 +1800,18 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
1812
 
1813
  </ul>
1814
 
 
 
 
 
1815
  <span style="margin:6px 6px 8px;<?php echo $poll->blockRepeatVotersType == 'off' ? 'display:none;' : ''; ?>" id="cookieip_expiration_label"><label><?php _e( 'Expires: ', 'polldaddy' ); ?></label></span>
1816
  <select id="cookieip_expiration" name="cookieip_expiration" style="width: auto;<?php echo $poll->blockRepeatVotersType == 'off' ? 'display:none;' : ''; ?>">
1817
- <option value="0" <?php echo (int) $poll->blockExpiration == 0 ? 'selected' : ''; ?>><?php _e( 'Never', 'polldaddy' ); ?></option>
1818
  <option value="3600" <?php echo (int) $poll->blockExpiration == 3600 ? 'selected' : ''; ?>><?php printf( __( '%d hour', 'polldaddy' ), 1 ); ?></option>
1819
  <option value="10800" <?php echo (int) $poll->blockExpiration == 10800 ? 'selected' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 3 ); ?></option>
1820
  <option value="21600" <?php echo (int) $poll->blockExpiration == 21600 ? 'selected' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 6 ); ?></option>
1821
  <option value="43200" <?php echo (int) $poll->blockExpiration == 43200 ? 'selected' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 12 ); ?></option>
1822
  <option value="86400" <?php echo (int) $poll->blockExpiration == 86400 ? 'selected' : ''; ?>><?php printf( __( '%d day', 'polldaddy' ), 1 ); ?></option>
1823
  <option value="604800" <?php echo (int) $poll->blockExpiration == 604800 ? 'selected' : ''; ?>><?php printf( __( '%d week', 'polldaddy' ), 1 ); ?></option>
1824
- <option value="2419200" <?php echo (int) $poll->blockExpiration == 2419200 ? 'selected' : ''; ?>><?php printf( __( '%d month', 'polldaddy' ), 1 ); ?></option>
1825
  </select>
1826
  <p><?php _e( 'Note: Blocking by cookie and IP address can be problematic for some voters.', 'polldaddy' ); ?></p>
1827
  </div>
@@ -3684,6 +3674,7 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
3684
  }
3685
 
3686
  if ( isset( $_POST[ 'pd_rating_action_type' ] ) ) {
 
3687
 
3688
  switch ( $_POST[ 'pd_rating_action_type' ] ) {
3689
  case 'posts' :
@@ -3795,6 +3786,7 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
3795
  <div class="tabs-panel" id="categories-all" style="background: #FFFFFF;height: auto; overflow: visible;max-height:400px;">
3796
  <form action="" method="post">
3797
  <input type="hidden" name="pd_rating_action_type" value="<?php echo $report_type; ?>" />
 
3798
  <table class="form-table" style="width: normal;">
3799
  <tbody><?php
3800
  if ( $report_type == 'posts' ) { ?>
@@ -4638,7 +4630,9 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
4638
  <td colspan="4"><?php printf( __( 'No ratings have been collected for your %s yet.', 'polldaddy' ), $report_type ); ?></td>
4639
  </tr>
4640
  </tbody><?php
4641
- } else { ?>
 
 
4642
  <thead>
4643
  <tr>
4644
  <?php if ( $this->is_editor ) { ?>
@@ -4831,9 +4825,9 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
4831
  <h3>
4832
  <?php _e( 'Polldaddy Account Info', 'polldaddy' ); ?>
4833
  </h3>
4834
- <p><?php _e( '<em>Polldaddy</em> and <em>WordPress.com</em> are now connected using <a href="http://en.support.wordpress.com/wpcc-faq/">WordPress.com Connect</a>. If you have a WordPress.com account you can use it to login to <a href="http://polldaddy.com/">Polldaddy.com</a>. Click on the Polldaddy "sign in" button, authorize the connection and create your new Polldaddy account. Use the same email and password to login on this page.', 'polldaddy' ); ?></p>
4835
- <p><strong><?php _e( 'You must login at least once on <a href="http://polldaddy.com/">Polldaddy.com</a> before using this plugin.' ); ?></strong></p>
4836
- <p><?php printf( __( 'Your account is currently link to this WordPress.com account: <strong>%s</strong>', 'polldaddy' ), $account_email ); ?></p>
4837
  <br />
4838
  <h3><?php _e( 'Link to a different Polldaddy account', 'polldaddy' ); ?></h3>
4839
  <?php } else { ?>
@@ -4846,24 +4840,11 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
4846
  <tr class="form-field form-required">
4847
  <th valign="top" scope="row">
4848
  <label for="polldaddy-email">
4849
- <?php _e( 'WordPress.com Email Address', 'polldaddy' ); ?>
4850
- </label>
4851
- </th>
4852
- <td>
4853
- <input type="text" name="polldaddy_email" id="polldaddy-email" aria-required="true" size="40" value="<?php if ( isset( $_POST[ 'polldaddy_email' ] ) ) echo esc_attr( $_POST[ 'polldaddy_email' ] ); ?>" />
4854
- </td>
4855
- </tr>
4856
- <tr class="form-field form-required">
4857
- <th valign="top" scope="row">
4858
- <label for="polldaddy-password">
4859
- <?php _e( 'WordPress.com Password', 'polldaddy' ); ?>
4860
  </label>
4861
  </th>
4862
  <td>
4863
- <input type="password" name="polldaddy_password" id="polldaddy-password" aria-required="true" size="40" />
4864
- <?php if ( $account_email ) { ?>
4865
- <p><?php printf( __( 'Any polls or ratings created in your current account will still be available on Polldaddy.com when you login as %s.', 'polldaddy' ), $account_email ); ?></p>
4866
- <?php } ?>
4867
  </td>
4868
  </tr>
4869
  </tbody>
@@ -4938,14 +4919,12 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"&gt;&lt;/scr
4938
 
4939
 
4940
  <select id="blockExpiration" name="blockExpiration">
4941
- <option value="0" <?php echo $poll->blockExpiration == 0 ? 'selected="selected"':''; ?>><?php _e( 'Never', 'polldaddy' ); ?></option>
4942
  <option value="3600" <?php echo $poll->blockExpiration == 3600 ? 'selected="selected"':''; ?>><?php printf( __( '%d hour', 'polldaddy' ), 1 ); ?></option>
4943
  <option value="10800" <?php echo (int) $poll->blockExpiration == 10800 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 3 ); ?></option>
4944
  <option value="21600" <?php echo (int) $poll->blockExpiration == 21600 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 6 ); ?></option>
4945
  <option value="43200" <?php echo (int) $poll->blockExpiration == 43200 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 12 ); ?></option>
4946
  <option value="86400" <?php echo (int) $poll->blockExpiration == 86400 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d day', 'polldaddy' ), 1 ); ?></option>
4947
  <option value="604800" <?php echo (int) $poll->blockExpiration == 604800 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d week', 'polldaddy' ), 1 ); ?></option>
4948
- <option value="2419200" <?php echo (int) $poll->blockExpiration == 2419200 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d month', 'polldaddy' ), 1 ); ?></option>
4949
  </select>
4950
  </div>
4951
  </div>
5
  Plugin URI: http://wordpress.org/extend/plugins/polldaddy/
6
  Description: Create and manage Polldaddy polls and ratings in WordPress
7
  Author: Automattic, Inc.
8
+ Author URL: http://polldaddy.com/
9
+ Version: 2.0.21
10
  */
11
 
12
  // You can hardcode your Polldaddy PartnerGUID (API Key) here
27
  var $rating_user_code;
28
  var $has_feedback_menu;
29
 
 
 
 
 
30
  function __construct() {
31
  global $current_user;
32
  $this->log( 'Created WP_Polldaddy Object: constructor' );
1036
 
1037
  switch ( $_POST['account'] ) {
1038
  case 'import' :
1039
+ return array( $this->import_account() );
1040
  break;
1041
  default :
1042
  return;
1044
  }
1045
 
1046
  function import_account() {
1047
+ if ( isset( $_POST[ 'polldaddy_key' ] ) ) {
1048
+ $polldaddy_api_key = trim( stripslashes( $_POST[ 'polldaddy_key' ] ) );
1049
+ $polldaddy = $this->get_client( $polldaddy_api_key );
1050
+ $polldaddy->reset();
1051
+ if ( !$polldaddy->get_usercode( $this->id ) ) {
1052
+ $this->parse_errors( $polldaddy );
1053
+ $this->errors->add( 'GetUserCode', __( 'Account could not be accessed. Is your API code correct?', 'polldaddy' ) );
1054
+ return false;
1055
+ }
1056
+ update_option( 'polldaddy_api_key', $polldaddy_api_key );
 
 
 
 
 
 
 
 
1057
  } else {
1058
+ $this->user_code = false;
1059
+ $this->errors->add( 'import-account', __( 'Account could not be imported. Did you enter the correct API key?', 'polldaddy' ) );
1060
  return false;
1061
  }
1062
  }
1800
 
1801
  </ul>
1802
 
1803
+ <?php
1804
+ if ( $poll->blockExpiration == 0 || $poll->blockExpiration > 604800 )
1805
+ $poll->blockExpiration = 604800;
1806
+ ?>
1807
  <span style="margin:6px 6px 8px;<?php echo $poll->blockRepeatVotersType == 'off' ? 'display:none;' : ''; ?>" id="cookieip_expiration_label"><label><?php _e( 'Expires: ', 'polldaddy' ); ?></label></span>
1808
  <select id="cookieip_expiration" name="cookieip_expiration" style="width: auto;<?php echo $poll->blockRepeatVotersType == 'off' ? 'display:none;' : ''; ?>">
 
1809
  <option value="3600" <?php echo (int) $poll->blockExpiration == 3600 ? 'selected' : ''; ?>><?php printf( __( '%d hour', 'polldaddy' ), 1 ); ?></option>
1810
  <option value="10800" <?php echo (int) $poll->blockExpiration == 10800 ? 'selected' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 3 ); ?></option>
1811
  <option value="21600" <?php echo (int) $poll->blockExpiration == 21600 ? 'selected' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 6 ); ?></option>
1812
  <option value="43200" <?php echo (int) $poll->blockExpiration == 43200 ? 'selected' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 12 ); ?></option>
1813
  <option value="86400" <?php echo (int) $poll->blockExpiration == 86400 ? 'selected' : ''; ?>><?php printf( __( '%d day', 'polldaddy' ), 1 ); ?></option>
1814
  <option value="604800" <?php echo (int) $poll->blockExpiration == 604800 ? 'selected' : ''; ?>><?php printf( __( '%d week', 'polldaddy' ), 1 ); ?></option>
 
1815
  </select>
1816
  <p><?php _e( 'Note: Blocking by cookie and IP address can be problematic for some voters.', 'polldaddy' ); ?></p>
1817
  </div>
3674
  }
3675
 
3676
  if ( isset( $_POST[ 'pd_rating_action_type' ] ) ) {
3677
+ check_admin_referer( 'action-rating_settings_' . $_POST[ 'pd_rating_action_type' ] );
3678
 
3679
  switch ( $_POST[ 'pd_rating_action_type' ] ) {
3680
  case 'posts' :
3786
  <div class="tabs-panel" id="categories-all" style="background: #FFFFFF;height: auto; overflow: visible;max-height:400px;">
3787
  <form action="" method="post">
3788
  <input type="hidden" name="pd_rating_action_type" value="<?php echo $report_type; ?>" />
3789
+ <?php wp_nonce_field( 'action-rating_settings_' . $report_type ); ?>
3790
  <table class="form-table" style="width: normal;">
3791
  <tbody><?php
3792
  if ( $report_type == 'posts' ) { ?>
4630
  <td colspan="4"><?php printf( __( 'No ratings have been collected for your %s yet.', 'polldaddy' ), $report_type ); ?></td>
4631
  </tr>
4632
  </tbody><?php
4633
+ } else {
4634
+ polldaddy_update_ratings_cache( $ratings );
4635
+ ?>
4636
  <thead>
4637
  <tr>
4638
  <?php if ( $this->is_editor ) { ?>
4825
  <h3>
4826
  <?php _e( 'Polldaddy Account Info', 'polldaddy' ); ?>
4827
  </h3>
4828
+ <p><?php _e( '<em>Polldaddy</em> and <em>WordPress.com</em> are now connected using <a href="http://en.support.wordpress.com/wpcc-faq/">WordPress.com Connect</a>. If you have a WordPress.com account you can use it to login to <a href="http://polldaddy.com/">Polldaddy.com</a>. Click on the Polldaddy "sign in" button, authorize the connection and create your new Polldaddy account.', 'polldaddy' ); ?></p>
4829
+ <p><?php _e( 'Login to the Polldaddy website and scroll to the end of your <a href="http://polldaddy.com/account/#apikey">account page</a> to create or retrieve an API key.', 'polldaddy' ); ?></p>
4830
+ <p><?php printf( __( 'Your account is currently linked to this API key: <strong>%s</strong>', 'polldaddy' ), WP_POLLDADDY__PARTNERGUID ); ?></p>
4831
  <br />
4832
  <h3><?php _e( 'Link to a different Polldaddy account', 'polldaddy' ); ?></h3>
4833
  <?php } else { ?>
4840
  <tr class="form-field form-required">
4841
  <th valign="top" scope="row">
4842
  <label for="polldaddy-email">
4843
+ <?php _e( 'Polldaddy.com API Key', 'polldaddy' ); ?>
 
 
 
 
 
 
 
 
 
 
4844
  </label>
4845
  </th>
4846
  <td>
4847
+ <input type="text" name="polldaddy_key" id="polldaddy-key" aria-required="true" size="20" value="<?php if ( isset( $_POST[ 'polldaddy_key' ] ) ) echo esc_attr( $_POST[ 'polldaddy_key' ] ); ?>" />
 
 
 
4848
  </td>
4849
  </tr>
4850
  </tbody>
4919
 
4920
 
4921
  <select id="blockExpiration" name="blockExpiration">
 
4922
  <option value="3600" <?php echo $poll->blockExpiration == 3600 ? 'selected="selected"':''; ?>><?php printf( __( '%d hour', 'polldaddy' ), 1 ); ?></option>
4923
  <option value="10800" <?php echo (int) $poll->blockExpiration == 10800 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 3 ); ?></option>
4924
  <option value="21600" <?php echo (int) $poll->blockExpiration == 21600 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 6 ); ?></option>
4925
  <option value="43200" <?php echo (int) $poll->blockExpiration == 43200 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d hours', 'polldaddy' ), 12 ); ?></option>
4926
  <option value="86400" <?php echo (int) $poll->blockExpiration == 86400 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d day', 'polldaddy' ), 1 ); ?></option>
4927
  <option value="604800" <?php echo (int) $poll->blockExpiration == 604800 ? 'selected="selected"' : ''; ?>><?php printf( __( '%d week', 'polldaddy' ), 1 ); ?></option>
 
4928
  </select>
4929
  </div>
4930
  </div>
polldaddy.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Polldaddy Polls & Ratings package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Polldaddy Polls & Ratings 2.0.19\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
7
- "POT-Creation-Date: 2013-07-04 12:50:26+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,1884 +12,1875 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ajax.php:77 polldaddy.php:1927 polldaddy.php:1978 polldaddy.php:2316
16
  msgid "click and drag to reorder"
17
  msgstr ""
18
 
19
- #: ajax.php:80 polldaddy.php:1930 polldaddy.php:1981 polldaddy.php:2314
20
  msgid "Enter an answer here"
21
  msgstr ""
22
 
23
- #: ajax.php:94 polldaddy.php:1882 polldaddy.php:1948 polldaddy.php:1988
24
- #: polldaddy.php:2317
25
  msgid "Add an Image"
26
  msgstr ""
27
 
28
- #: ajax.php:95 polldaddy.php:1883 polldaddy.php:1949 polldaddy.php:1989
29
- #: polldaddy.php:2318
30
  msgid "Add Audio"
31
  msgstr ""
32
 
33
- #: ajax.php:96 polldaddy.php:1884 polldaddy.php:1950 polldaddy.php:1990
34
- #: polldaddy.php:2319
35
  msgid "Add Video"
36
  msgstr ""
37
 
38
- #: polldaddy-org.php:66 polldaddy.php:93 polldaddy.php:103
39
  msgid "Ratings"
40
  msgstr ""
41
 
42
- #: polldaddy-org.php:68 polldaddy.php:93 polldaddy.php:103
43
  msgid "Polls"
44
  msgstr ""
45
 
46
- #: polldaddy-org.php:160 polldaddy.php:151 polldaddy.php:1059
47
  msgid "Email address required"
48
  msgstr ""
49
 
50
- #: polldaddy-org.php:163 polldaddy.php:154 polldaddy.php:1062
51
  msgid "Password required"
52
  msgstr ""
53
 
54
- #: polldaddy-org.php:196
55
  msgid "Could not connect to Polldaddy API Key service"
56
  msgstr ""
57
 
58
- #: polldaddy-org.php:211 polldaddy.php:184
59
  msgid "Can't connect to Polldaddy.com"
60
  msgstr ""
61
 
62
- #: polldaddy-org.php:242
63
  msgid ""
64
  "Login to Polldaddy failed. Double check your email address and password."
65
  msgstr ""
66
 
67
- #: polldaddy-org.php:244
68
  msgid ""
69
  "If your email address and password are correct, your host may not support "
70
  "secure logins."
71
  msgstr ""
72
 
73
- #: polldaddy-org.php:245
74
  msgid ""
75
  "In that case, you may be able to log in to Polldaddy by unchecking the \"Use "
76
  "SSL to Log in\" checkbox."
77
  msgstr ""
78
 
79
- #: polldaddy-org.php:257 polldaddy.php:221
80
  msgid ""
81
  "Account could not be accessed. Are your email address and password correct?"
82
  msgstr ""
83
 
84
- #: polldaddy-org.php:271
85
  msgid "Polldaddy Account"
86
  msgstr ""
87
 
88
- #: polldaddy-org.php:273 polldaddy.php:275
89
  msgid ""
90
  "Before you can use the Polldaddy plugin, you need to enter your <a href=\"%s"
91
  "\">Polldaddy.com</a> account details."
92
  msgstr ""
93
 
94
- #: polldaddy-org.php:280 polldaddy.php:282
95
  msgid "Polldaddy Email Address"
96
  msgstr ""
97
 
98
- #: polldaddy-org.php:288 polldaddy.php:290
99
  msgid "Polldaddy Password"
100
  msgstr ""
101
 
102
- #: polldaddy-org.php:301
103
  msgid "Use SSL to Log in"
104
  msgstr ""
105
 
106
- #: polldaddy-org.php:305
107
  msgid ""
108
  "This ensures a secure login to your Polldaddy account. Only uncheck if you "
109
  "are having problems logging in."
110
  msgstr ""
111
 
112
- #: polldaddy-org.php:315 polldaddy.php:302
113
  msgid "Submit"
114
  msgstr ""
115
 
116
- #: polldaddy-org.php:341
117
  msgid "Load Shortcodes Inline"
118
  msgstr ""
119
 
120
- #: polldaddy-org.php:347
121
  msgid ""
122
  "This will load the Polldaddy shortcodes inline rather than in the page "
123
  "footer."
124
  msgstr ""
125
 
126
- #: polldaddy-org.php:353
127
  msgid "Multiple Polldaddy Accounts"
128
  msgstr ""
129
 
130
- #: polldaddy-org.php:359
131
  msgid "This setting will allow each blog user to import a Polldaddy account."
132
  msgstr ""
133
 
134
- #: polldaddy-org.php:366
135
  msgid "Sync Ratings Account"
136
  msgstr ""
137
 
138
- #: polldaddy-org.php:372
139
  msgid "This will synchronize your ratings Polldaddy account."
140
  msgstr ""
141
 
142
- #: polldaddy-org.php:379
143
  msgid "Ratings Title Filter"
144
  msgstr ""
145
 
146
- #: polldaddy-org.php:385
147
  msgid ""
148
  "This setting allows you to specify a filter to use with your ratings title."
149
  msgstr ""
150
 
151
- #: polldaddy-org.php:889
152
  msgid "A list of your top rated posts, pages or comments."
153
  msgstr ""
154
 
155
- #: polldaddy-org.php:897
156
  msgid "Top Rated"
157
  msgstr ""
158
 
159
- #: polldaddy-org.php:973 polldaddy.php:4649
160
  msgid "Title"
161
  msgstr ""
162
 
163
- #: polldaddy-org.php:977
164
  msgid "Show for posts"
165
  msgstr ""
166
 
167
- #: polldaddy-org.php:983
168
  msgid "Show for pages"
169
  msgstr ""
170
 
171
- #: polldaddy-org.php:989
172
  msgid "Show for comments"
173
  msgstr ""
174
 
175
- #: polldaddy-org.php:995
176
  msgid "Filter by category"
177
  msgstr ""
178
 
179
- #: polldaddy-org.php:999
180
  msgid "How many items would you like to display?"
181
  msgstr ""
182
 
183
- #: polldaddy-org.php:1018
184
  msgid ""
185
  "Warning! The Polldaddy plugin must be linked to your Polldaddy.com account. "
186
  "Please visit the <a href=\"%s\">plugin settings page</a> to login."
187
  msgstr ""
188
 
189
- #: polldaddy.php:100 polldaddy.php:118
190
  msgid "Feedback"
191
  msgstr ""
192
 
193
- #: polldaddy.php:211
194
  msgid "Invalid Account"
195
  msgstr ""
196
 
197
- #: polldaddy.php:273
198
  msgid "Polldaddy"
199
  msgstr ""
200
 
201
- #: polldaddy.php:311
202
  msgid "Add Poll"
203
  msgstr ""
204
 
205
- #: polldaddy.php:391
206
  msgid "Star Colors"
207
  msgstr ""
208
 
209
- #: polldaddy.php:391 polldaddy.php:4086
210
  msgid "Star Size"
211
  msgstr ""
212
 
213
- #: polldaddy.php:392
214
  msgid "Nero Type"
215
  msgstr ""
216
 
217
- #: polldaddy.php:392
218
  msgid "Nero Size"
219
  msgstr ""
220
 
221
- #: polldaddy.php:496
222
  msgid "You are not allowed to delete this poll."
223
  msgstr ""
224
 
225
- #: polldaddy.php:504 polldaddy.php:540 polldaddy.php:576 polldaddy.php:609
226
  msgid "Invalid Poll Author"
227
  msgstr ""
228
 
229
- #: polldaddy.php:532
230
  msgid "You are not allowed to open this poll."
231
  msgstr ""
232
 
233
- #: polldaddy.php:568
234
  msgid "You are not allowed to close this poll."
235
  msgstr ""
236
 
237
- #: polldaddy.php:601 polldaddy.php:1608
238
  msgid "You are not allowed to edit this poll."
239
  msgstr ""
240
 
241
- #: polldaddy.php:616
242
  msgid "Poll not found"
243
  msgstr ""
244
 
245
- #: polldaddy.php:658
246
  msgid "Invalid answers"
247
  msgstr ""
248
 
249
- #: polldaddy.php:693
250
  msgid "You must include at least 2 answers"
251
  msgstr ""
252
 
253
- #: polldaddy.php:704 polldaddy.php:823
254
  msgid "Please choose a poll style"
255
  msgstr ""
256
 
257
- #: polldaddy.php:734
258
  msgid "Poll could not be updated"
259
  msgstr ""
260
 
261
- #: polldaddy.php:848
262
  msgid "Poll could not be created"
263
  msgstr ""
264
 
265
- #: polldaddy.php:903
266
  msgid "Style could not be updated"
267
  msgstr ""
268
 
269
- #: polldaddy.php:933
270
  msgid "Style could not be created"
271
  msgstr ""
272
 
273
- #: polldaddy.php:1071
274
- msgid ""
275
- "Account could not be imported. Are your email address and password correct?"
276
  msgstr ""
277
 
278
- #: polldaddy.php:1090
 
 
 
 
279
  msgid "Poll deleted."
280
  msgstr ""
281
 
282
- #: polldaddy.php:1092
283
  msgid "%s Poll Deleted."
284
  msgid_plural "%s Polls Deleted."
285
  msgstr[0] ""
286
  msgstr[1] ""
287
 
288
- #: polldaddy.php:1097
289
  msgid "Poll opened."
290
  msgstr ""
291
 
292
- #: polldaddy.php:1099
293
  msgid "%s Poll Opened."
294
  msgid_plural "%s Polls Opened."
295
  msgstr[0] ""
296
  msgstr[1] ""
297
 
298
- #: polldaddy.php:1104
299
  msgid "Poll closed."
300
  msgstr ""
301
 
302
- #: polldaddy.php:1106
303
  msgid "%s Poll Closed."
304
  msgid_plural "%s Polls Closed."
305
  msgstr[0] ""
306
  msgstr[1] ""
307
 
308
- #: polldaddy.php:1109
309
  msgid "Poll updated."
310
  msgstr ""
311
 
312
- #: polldaddy.php:1112
313
  msgid "Poll created."
314
  msgstr ""
315
 
316
- #: polldaddy.php:1114 polldaddy.php:1445 polldaddy.php:1761
317
  msgid "Embed in Post"
318
  msgstr ""
319
 
320
- #: polldaddy.php:1117
321
  msgid "Custom Style updated."
322
  msgstr ""
323
 
324
- #: polldaddy.php:1120
325
  msgid "Custom Style created."
326
  msgstr ""
327
 
328
- #: polldaddy.php:1125
329
  msgid "Custom Style deleted."
330
  msgstr ""
331
 
332
- #: polldaddy.php:1127
333
  msgid "%s Style Deleted."
334
  msgid_plural "%s Custom Styles Deleted."
335
  msgstr[0] ""
336
  msgstr[1] ""
337
 
338
- #: polldaddy.php:1130
339
  msgid "Account Linked."
340
  msgstr ""
341
 
342
- #: polldaddy.php:1133
343
  msgid "Options Updated."
344
  msgstr ""
345
 
346
- #: polldaddy.php:1138
347
  msgid "Rating deleted."
348
  msgstr ""
349
 
350
- #: polldaddy.php:1140
351
  msgid "%s Rating Deleted."
352
  msgid_plural "%s Ratings Deleted."
353
  msgstr[0] ""
354
  msgstr[1] ""
355
 
356
- #: polldaddy.php:1149
357
  msgid "Error: An error has occurred; Poll not created."
358
  msgstr ""
359
 
360
- #: polldaddy.php:1152
361
  msgid "Error: An error has occurred; Poll not updated."
362
  msgstr ""
363
 
364
- #: polldaddy.php:1156
365
  msgid ""
366
  "Error: An error has occurred; Account could not be imported. Perhaps your "
367
  "email address or password is incorrect?"
368
  msgstr ""
369
 
370
- #: polldaddy.php:1158
371
  msgid "Error: An error has occurred; Account could not be created."
372
  msgstr ""
373
 
374
- #: polldaddy.php:1194
375
  msgid "Polldaddy Polls"
376
  msgstr ""
377
 
378
- #: polldaddy.php:1197
379
  msgid "Preview Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a>"
380
  msgstr ""
381
 
382
- #: polldaddy.php:1209
383
  msgid ""
384
  "Poll Results <a href=\"%s\" class=\"add-new-h2\">All Polls</a> <a href=\"%s"
385
  "\" class=\"add-new-h2\">Edit Poll</a>"
386
  msgstr ""
387
 
388
- #: polldaddy.php:1218
389
  msgid ""
390
  "Edit Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a> <a href=\"%s\" "
391
  "class=\"add-new-h2\">View Results</a>"
392
  msgstr ""
393
 
394
- #: polldaddy.php:1227
395
  msgid "Add New Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a>"
396
  msgstr ""
397
 
398
- #: polldaddy.php:1237
399
  msgid "Custom Styles <a href=\"%s\" class=\"add-new-h2\">Add New</a>"
400
  msgstr ""
401
 
402
- #: polldaddy.php:1239 polldaddy.php:1568 polldaddy.php:2120 polldaddy.php:2321
403
- #: polldaddy.php:3569 polldaddy.php:4320 polldaddy.php:4732
404
  msgid "Custom Styles"
405
  msgstr ""
406
 
407
- #: polldaddy.php:1247
408
  msgid "Edit Style <a href=\"%s\" class=\"add-new-h2\">List Styles</a>"
409
  msgstr ""
410
 
411
- #: polldaddy.php:1256
412
  msgid "Create Style <a href=\"%s\" class=\"add-new-h2\">List Styles</a>"
413
  msgstr ""
414
 
415
- #: polldaddy.php:1272
416
  msgid "Polldaddy Polls <a href=\"%s\" class=\"add-new-h2\">Add New</a>"
417
  msgstr ""
418
 
419
- #: polldaddy.php:1274
420
  msgid "Polldaddy Polls "
421
  msgstr ""
422
 
423
- #: polldaddy.php:1281
424
  msgid ""
425
  "Linked to WordPress.com Account: <strong>%s</strong> (<a target=\"_blank\" "
426
  "href=\"options-general.php?page=polls&action=options\">Settings</a> / <a "
427
  "target=\"_blank\" href=\"http://polldaddy.com/dashboard/\">Polldaddy.com</a>)"
428
  msgstr ""
429
 
430
- #: polldaddy.php:1353 polldaddy.php:2538 polldaddy.php:4593
431
  msgid "Actions"
432
  msgstr ""
433
 
434
- #: polldaddy.php:1354 polldaddy.php:1463 polldaddy.php:2539 polldaddy.php:2581
435
- #: polldaddy.php:4594 polldaddy.php:4669
436
  msgid "Delete"
437
  msgstr ""
438
 
439
- #: polldaddy.php:1355 polldaddy.php:1455 polldaddy.php:4009
440
  msgid "Close"
441
  msgstr ""
442
 
443
- #: polldaddy.php:1356 polldaddy.php:1452
444
  msgid "Open"
445
  msgstr ""
446
 
447
- #: polldaddy.php:1359 polldaddy.php:2541 polldaddy.php:4597
448
  msgid "Apply"
449
  msgstr ""
450
 
451
- #: polldaddy.php:1364
452
  msgid "View All Polls"
453
  msgstr ""
454
 
455
- #: polldaddy.php:1365
456
  msgid "This Blog's Polls"
457
  msgstr ""
458
 
459
- #: polldaddy.php:1367 polldaddy.php:4618
460
  msgid "Filter"
461
  msgstr ""
462
 
463
- #: polldaddy.php:1381
464
  msgid "Poll"
465
  msgstr ""
466
 
467
- #: polldaddy.php:1431 polldaddy.php:2584 polldaddy.php:4677
468
  msgid "Y/m/d g:i:s A"
469
  msgstr ""
470
 
471
- #: polldaddy.php:1431
472
  msgid "created"
473
  msgstr ""
474
 
475
- #: polldaddy.php:1431
476
  msgid "M d, Y"
477
  msgstr ""
478
 
479
- #: polldaddy.php:1434 polldaddy.php:2576
480
  msgid "Edit"
481
  msgstr ""
482
 
483
- #: polldaddy.php:1442
484
  msgid "Embed &amp; Link"
485
  msgstr ""
486
 
487
- #: polldaddy.php:1458 polldaddy.php:1460 polldaddy.php:3924
488
  msgid "Preview"
489
  msgstr ""
490
 
491
- #: polldaddy.php:1466
492
  msgid "Results"
493
  msgstr ""
494
 
495
- #: polldaddy.php:1472
496
  msgid "votes"
497
  msgstr ""
498
 
499
- #: polldaddy.php:1480
500
  msgid "WordPress Shortcode"
501
  msgstr ""
502
 
503
- #: polldaddy.php:1485
504
  msgid "Short URL (Good for Twitter etc.)"
505
  msgstr ""
506
 
507
- #: polldaddy.php:1491
508
  msgid "Facebook URL"
509
  msgstr ""
510
 
511
- #: polldaddy.php:1498
512
  msgid "JavaScript"
513
  msgstr ""
514
 
515
- #: polldaddy.php:1506
516
  msgid "Done"
517
  msgstr ""
518
 
519
- #: polldaddy.php:1518
520
  msgid "What are you doing here? <a href=\"%s\">Go back</a>."
521
  msgstr ""
522
 
523
- #: polldaddy.php:1529
524
  msgid "You haven't created any polls for this blog."
525
  msgstr ""
526
 
527
- #: polldaddy.php:1530 polldaddy.php:2597
528
  msgid "Why don't you go ahead and get started on that?"
529
  msgstr ""
530
 
531
- #: polldaddy.php:1531
532
  msgid "Create a Poll Now"
533
  msgstr ""
534
 
535
- #: polldaddy.php:1536
536
  msgid "No one has created any polls for this blog."
537
  msgstr ""
538
 
539
- #: polldaddy.php:1563 polldaddy.php:2311 polldaddy.php:3564 polldaddy.php:4315
540
- #: polldaddy.php:4727
541
  msgid "Are you sure you want to delete the rating for \"%s\"?"
542
  msgstr ""
543
 
544
- #: polldaddy.php:1564
545
  msgid "Are you sure you want to delete the poll %s?"
546
  msgstr ""
547
 
548
- #: polldaddy.php:1565 polldaddy.php:2313 polldaddy.php:3566 polldaddy.php:4317
549
- #: polldaddy.php:4729
550
  msgid "Are you sure you want to delete this answer?"
551
  msgstr ""
552
 
553
- #: polldaddy.php:1566 polldaddy.php:1952 polldaddy.php:1992 polldaddy.php:2315
554
- #: polldaddy.php:3567 polldaddy.php:4318 polldaddy.php:4730
555
  msgid "delete this answer"
556
  msgstr ""
557
 
558
- #: polldaddy.php:1567 polldaddy.php:2320 polldaddy.php:3568 polldaddy.php:4319
559
- #: polldaddy.php:4731
560
  msgid "Standard Styles"
561
  msgstr ""
562
 
563
- #: polldaddy.php:1667
564
  msgid "delete this image"
565
  msgstr ""
566
 
567
- #: polldaddy.php:1692
568
  msgid "Save"
569
  msgstr ""
570
 
571
- #: polldaddy.php:1699 polldaddy.php:4895
572
  msgid "Randomize answer order"
573
  msgstr ""
574
 
575
- #: polldaddy.php:1699 polldaddy.php:4895
576
  msgid "Allow other answers"
577
  msgstr ""
578
 
579
- #: polldaddy.php:1699 polldaddy.php:4895
580
  msgid "Multiple choice"
581
  msgstr ""
582
 
583
- #: polldaddy.php:1699 polldaddy.php:4895
584
  msgid "Sharing"
585
  msgstr ""
586
 
587
- #: polldaddy.php:1720
588
  msgid "Number of choices"
589
  msgstr ""
590
 
591
- #: polldaddy.php:1720
592
  msgid "No Limit"
593
  msgstr ""
594
 
595
- #: polldaddy.php:1757
596
  msgid "Save Poll"
597
  msgstr ""
598
 
599
- #: polldaddy.php:1772 polldaddy.php:4905
600
  msgid "Results Display"
601
  msgstr ""
602
 
603
- #: polldaddy.php:1777
604
  msgid "Show results to voters"
605
  msgstr ""
606
 
607
- #: polldaddy.php:1777
608
  msgid "Only show percentages"
609
  msgstr ""
610
 
611
- #: polldaddy.php:1777
612
  msgid "Hide all results"
613
  msgstr ""
614
 
615
- #: polldaddy.php:1795 polldaddy.php:4927
616
  msgid "Repeat Voting"
617
  msgstr ""
618
 
619
- #: polldaddy.php:1800
620
  msgid "Don't block repeat voters"
621
  msgstr ""
622
 
623
- #: polldaddy.php:1800
624
  msgid "Block by cookie (recommended)"
625
  msgstr ""
626
 
627
- #: polldaddy.php:1800
628
  msgid "Block by cookie and by IP address"
629
  msgstr ""
630
 
631
- #: polldaddy.php:1815
632
  msgid "Expires: "
633
  msgstr ""
634
 
635
- #: polldaddy.php:1817 polldaddy.php:4941
636
- msgid "Never"
637
- msgstr ""
638
-
639
- #: polldaddy.php:1818 polldaddy.php:4942
640
  msgid "%d hour"
641
  msgstr ""
642
 
643
- #: polldaddy.php:1819 polldaddy.php:1820 polldaddy.php:1821 polldaddy.php:4943
644
- #: polldaddy.php:4944 polldaddy.php:4945
645
  msgid "%d hours"
646
  msgstr ""
647
 
648
- #: polldaddy.php:1822 polldaddy.php:4946
649
  msgid "%d day"
650
  msgstr ""
651
 
652
- #: polldaddy.php:1823 polldaddy.php:4947
653
  msgid "%d week"
654
  msgstr ""
655
 
656
- #: polldaddy.php:1824 polldaddy.php:4948
657
- msgid "%d month"
658
- msgstr ""
659
-
660
- #: polldaddy.php:1826
661
  msgid ""
662
  "Note: Blocking by cookie and IP address can be problematic for some voters."
663
  msgstr ""
664
 
665
- #: polldaddy.php:1831 polldaddy.php:3529 polldaddy.php:3793 polldaddy.php:3863
666
- #: polldaddy.php:4601
667
  msgid "Comments"
668
  msgstr ""
669
 
670
- #: polldaddy.php:1836
671
  msgid "Allow comments"
672
  msgstr ""
673
 
674
- #: polldaddy.php:1836
675
  msgid "Moderate first"
676
  msgstr ""
677
 
678
- #: polldaddy.php:1836
679
  msgid "No comments"
680
  msgstr ""
681
 
682
- #: polldaddy.php:1864
683
  msgid "Enter Question Here"
684
  msgstr ""
685
 
686
- #: polldaddy.php:1898
687
  msgid "WordPress Shortcode:"
688
  msgstr ""
689
 
690
- #: polldaddy.php:1900
691
  msgid "Embed Poll in New Post"
692
  msgstr ""
693
 
694
- #: polldaddy.php:1909 polldaddy.php:2730
695
  msgid "Answers"
696
  msgstr ""
697
 
698
- #: polldaddy.php:2017
699
  msgid "Add New Answer"
700
  msgstr ""
701
 
702
- #: polldaddy.php:2034 polldaddy.php:4752
703
  msgid "Aluminum Narrow"
704
  msgstr ""
705
 
706
- #: polldaddy.php:2035 polldaddy.php:4753
707
  msgid "Aluminum Medium"
708
  msgstr ""
709
 
710
- #: polldaddy.php:2036 polldaddy.php:4754
711
  msgid "Aluminum Wide"
712
  msgstr ""
713
 
714
- #: polldaddy.php:2037 polldaddy.php:4755
715
  msgid "Plain White Narrow"
716
  msgstr ""
717
 
718
- #: polldaddy.php:2038 polldaddy.php:4756
719
  msgid "Plain White Medium"
720
  msgstr ""
721
 
722
- #: polldaddy.php:2039 polldaddy.php:4757
723
  msgid "Plain White Wide"
724
  msgstr ""
725
 
726
- #: polldaddy.php:2040 polldaddy.php:4758
727
  msgid "Plain Black Narrow"
728
  msgstr ""
729
 
730
- #: polldaddy.php:2041 polldaddy.php:4759
731
  msgid "Plain Black Medium"
732
  msgstr ""
733
 
734
- #: polldaddy.php:2042 polldaddy.php:4760
735
  msgid "Plain Black Wide"
736
  msgstr ""
737
 
738
- #: polldaddy.php:2043 polldaddy.php:4761
739
  msgid "Paper Narrow"
740
  msgstr ""
741
 
742
- #: polldaddy.php:2044 polldaddy.php:4762
743
  msgid "Paper Medium"
744
  msgstr ""
745
 
746
- #: polldaddy.php:2045 polldaddy.php:4763
747
  msgid "Paper Wide"
748
  msgstr ""
749
 
750
- #: polldaddy.php:2046 polldaddy.php:4764
751
  msgid "Skull Dark Narrow"
752
  msgstr ""
753
 
754
- #: polldaddy.php:2047 polldaddy.php:4765
755
  msgid "Skull Dark Medium"
756
  msgstr ""
757
 
758
- #: polldaddy.php:2048 polldaddy.php:4766
759
  msgid "Skull Dark Wide"
760
  msgstr ""
761
 
762
- #: polldaddy.php:2049 polldaddy.php:4767
763
  msgid "Skull Light Narrow"
764
  msgstr ""
765
 
766
- #: polldaddy.php:2050 polldaddy.php:4768
767
  msgid "Skull Light Medium"
768
  msgstr ""
769
 
770
- #: polldaddy.php:2051 polldaddy.php:4769
771
  msgid "Skull Light Wide"
772
  msgstr ""
773
 
774
- #: polldaddy.php:2052 polldaddy.php:2352 polldaddy.php:2700 polldaddy.php:4770
775
  msgid "Micro"
776
  msgstr ""
777
 
778
- #: polldaddy.php:2053 polldaddy.php:4771
779
  msgid "Plastic White Narrow"
780
  msgstr ""
781
 
782
- #: polldaddy.php:2054 polldaddy.php:4772
783
  msgid "Plastic White Medium"
784
  msgstr ""
785
 
786
- #: polldaddy.php:2055 polldaddy.php:4773
787
  msgid "Plastic White Wide"
788
  msgstr ""
789
 
790
- #: polldaddy.php:2056 polldaddy.php:4774
791
  msgid "Plastic Grey Narrow"
792
  msgstr ""
793
 
794
- #: polldaddy.php:2057 polldaddy.php:4775
795
  msgid "Plastic Grey Medium"
796
  msgstr ""
797
 
798
- #: polldaddy.php:2058 polldaddy.php:4776
799
  msgid "Plastic Grey Wide"
800
  msgstr ""
801
 
802
- #: polldaddy.php:2059 polldaddy.php:4777
803
  msgid "Plastic Black Narrow"
804
  msgstr ""
805
 
806
- #: polldaddy.php:2060 polldaddy.php:4778
807
  msgid "Plastic Black Medium"
808
  msgstr ""
809
 
810
- #: polldaddy.php:2061 polldaddy.php:4779
811
  msgid "Plastic Black Wide"
812
  msgstr ""
813
 
814
- #: polldaddy.php:2062 polldaddy.php:4780
815
  msgid "Manga Narrow"
816
  msgstr ""
817
 
818
- #: polldaddy.php:2063 polldaddy.php:4781
819
  msgid "Manga Medium"
820
  msgstr ""
821
 
822
- #: polldaddy.php:2064 polldaddy.php:4782
823
  msgid "Manga Wide"
824
  msgstr ""
825
 
826
- #: polldaddy.php:2065 polldaddy.php:4783
827
  msgid "Tech Dark Narrow"
828
  msgstr ""
829
 
830
- #: polldaddy.php:2066 polldaddy.php:4784
831
  msgid "Tech Dark Medium"
832
  msgstr ""
833
 
834
- #: polldaddy.php:2067 polldaddy.php:4785
835
  msgid "Tech Dark Wide"
836
  msgstr ""
837
 
838
- #: polldaddy.php:2068 polldaddy.php:4786
839
  msgid "Tech Grey Narrow"
840
  msgstr ""
841
 
842
- #: polldaddy.php:2069 polldaddy.php:4787
843
  msgid "Tech Grey Medium"
844
  msgstr ""
845
 
846
- #: polldaddy.php:2070 polldaddy.php:4788
847
  msgid "Tech Grey Wide"
848
  msgstr ""
849
 
850
- #: polldaddy.php:2071 polldaddy.php:4789
851
  msgid "Tech Light Narrow"
852
  msgstr ""
853
 
854
- #: polldaddy.php:2072 polldaddy.php:4790
855
  msgid "Tech Light Medium"
856
  msgstr ""
857
 
858
- #: polldaddy.php:2073 polldaddy.php:4791
859
  msgid "Tech Light Wide"
860
  msgstr ""
861
 
862
- #: polldaddy.php:2074 polldaddy.php:4792
863
  msgid "Working Male Narrow"
864
  msgstr ""
865
 
866
- #: polldaddy.php:2075 polldaddy.php:4793
867
  msgid "Working Male Medium"
868
  msgstr ""
869
 
870
- #: polldaddy.php:2076 polldaddy.php:4794
871
  msgid "Working Male Wide"
872
  msgstr ""
873
 
874
- #: polldaddy.php:2077 polldaddy.php:4795
875
  msgid "Working Female Narrow"
876
  msgstr ""
877
 
878
- #: polldaddy.php:2078 polldaddy.php:4796
879
  msgid "Working Female Medium"
880
  msgstr ""
881
 
882
- #: polldaddy.php:2079 polldaddy.php:4797
883
  msgid "Working Female Wide"
884
  msgstr ""
885
 
886
- #: polldaddy.php:2080 polldaddy.php:4798
887
  msgid "Thinking Male Narrow"
888
  msgstr ""
889
 
890
- #: polldaddy.php:2081 polldaddy.php:4799
891
  msgid "Thinking Male Medium"
892
  msgstr ""
893
 
894
- #: polldaddy.php:2082 polldaddy.php:4800
895
  msgid "Thinking Male Wide"
896
  msgstr ""
897
 
898
- #: polldaddy.php:2083 polldaddy.php:4801
899
  msgid "Thinking Female Narrow"
900
  msgstr ""
901
 
902
- #: polldaddy.php:2084 polldaddy.php:4802
903
  msgid "Thinking Female Medium"
904
  msgstr ""
905
 
906
- #: polldaddy.php:2085 polldaddy.php:4803
907
  msgid "Thinking Female Wide"
908
  msgstr ""
909
 
910
- #: polldaddy.php:2086 polldaddy.php:4804
911
  msgid "Sunset Narrow"
912
  msgstr ""
913
 
914
- #: polldaddy.php:2087 polldaddy.php:4805
915
  msgid "Sunset Medium"
916
  msgstr ""
917
 
918
- #: polldaddy.php:2088 polldaddy.php:4806
919
  msgid "Sunset Wide"
920
  msgstr ""
921
 
922
- #: polldaddy.php:2089 polldaddy.php:4807
923
  msgid "Music Medium"
924
  msgstr ""
925
 
926
- #: polldaddy.php:2090 polldaddy.php:4808
927
  msgid "Music Wide"
928
  msgstr ""
929
 
930
- #: polldaddy.php:2113
931
  msgid "Poll Style"
932
  msgstr ""
933
 
934
- #: polldaddy.php:2118
935
  msgid "Polldaddy Styles"
936
  msgstr ""
937
 
938
- #: polldaddy.php:2205
939
  msgid "Polldaddy Style"
940
  msgstr ""
941
 
942
- #: polldaddy.php:2211
943
  msgid "Custom Style"
944
  msgstr ""
945
 
946
- #: polldaddy.php:2287
947
  msgid "Please choose a custom style…"
948
  msgstr ""
949
 
950
- #: polldaddy.php:2293
951
  msgid "Please choose a style."
952
  msgstr ""
953
 
954
- #: polldaddy.php:2295
955
  msgid "You currently have no custom styles created."
956
  msgstr ""
957
 
958
- #: polldaddy.php:2295
959
  msgid "New Style"
960
  msgstr ""
961
 
962
- #: polldaddy.php:2296
963
  msgid ""
964
  "Did you know we have a new editor for building your own custom poll styles? "
965
  "Find out more <a href=\"%s\" target=\"_blank\">here</a>."
966
  msgstr ""
967
 
968
- #: polldaddy.php:2312 polldaddy.php:3565 polldaddy.php:4316 polldaddy.php:4728
969
  msgid "Are you sure you want to delete \"%s\"?"
970
  msgstr ""
971
 
972
- #: polldaddy.php:2334 polldaddy.php:2694
973
  msgid "Aluminum"
974
  msgstr ""
975
 
976
- #: polldaddy.php:2337 polldaddy.php:2695
977
  msgid "Plain White"
978
  msgstr ""
979
 
980
- #: polldaddy.php:2340 polldaddy.php:2696
981
  msgid "Plain Black"
982
  msgstr ""
983
 
984
- #: polldaddy.php:2343 polldaddy.php:2697
985
  msgid "Paper"
986
  msgstr ""
987
 
988
- #: polldaddy.php:2346 polldaddy.php:2698
989
  msgid "Skull Dark"
990
  msgstr ""
991
 
992
- #: polldaddy.php:2349 polldaddy.php:2699
993
  msgid "Skull Light"
994
  msgstr ""
995
 
996
- #: polldaddy.php:2353 polldaddy.php:2403
997
  msgid "Width 150px, the micro style is useful when space is tight."
998
  msgstr ""
999
 
1000
- #: polldaddy.php:2356
1001
  msgid "Plastic White"
1002
  msgstr ""
1003
 
1004
- #: polldaddy.php:2359
1005
  msgid "Plastic Grey"
1006
  msgstr ""
1007
 
1008
- #: polldaddy.php:2362
1009
  msgid "Plastic Black"
1010
  msgstr ""
1011
 
1012
- #: polldaddy.php:2365
1013
  msgid "Manga"
1014
  msgstr ""
1015
 
1016
- #: polldaddy.php:2368
1017
  msgid "Tech Dark"
1018
  msgstr ""
1019
 
1020
- #: polldaddy.php:2371
1021
  msgid "Tech Grey"
1022
  msgstr ""
1023
 
1024
- #: polldaddy.php:2374
1025
  msgid "Tech Light"
1026
  msgstr ""
1027
 
1028
- #: polldaddy.php:2377
1029
  msgid "Working Male"
1030
  msgstr ""
1031
 
1032
- #: polldaddy.php:2380
1033
  msgid "Working Female"
1034
  msgstr ""
1035
 
1036
- #: polldaddy.php:2383
1037
  msgid "Thinking Male"
1038
  msgstr ""
1039
 
1040
- #: polldaddy.php:2386
1041
  msgid "Thinking Female"
1042
  msgstr ""
1043
 
1044
- #: polldaddy.php:2389
1045
  msgid "Sunset"
1046
  msgstr ""
1047
 
1048
- #: polldaddy.php:2392
1049
  msgid "Music"
1050
  msgstr ""
1051
 
1052
- #: polldaddy.php:2397
1053
  msgid "Wide"
1054
  msgstr ""
1055
 
1056
- #: polldaddy.php:2398 polldaddy.php:4089
1057
  msgid "Medium"
1058
  msgstr ""
1059
 
1060
- #: polldaddy.php:2399
1061
  msgid "Narrow"
1062
  msgstr ""
1063
 
1064
- #: polldaddy.php:2400
1065
  msgid "Width: 630px, the wide style is good for blog posts."
1066
  msgstr ""
1067
 
1068
- #: polldaddy.php:2401
1069
  msgid "Width: 300px, the medium style is good for general use."
1070
  msgstr ""
1071
 
1072
- #: polldaddy.php:2402
1073
  msgid "Width 150px, the narrow style is good for sidebars etc."
1074
  msgstr ""
1075
 
1076
- #: polldaddy.php:2437
1077
  msgid "Answer"
1078
  msgstr ""
1079
 
1080
- #: polldaddy.php:2438 polldaddy.php:2487 polldaddy.php:3943 polldaddy.php:4652
1081
  msgid "Votes"
1082
  msgstr ""
1083
 
1084
- #: polldaddy.php:2439
1085
  msgid "Percent"
1086
  msgstr ""
1087
 
1088
- #: polldaddy.php:2454
1089
  msgid "Other (<a href=\"%s\">see below</a>)"
1090
  msgstr ""
1091
 
1092
- #: polldaddy.php:2486
1093
  msgid "Other Answer"
1094
  msgstr ""
1095
 
1096
- #: polldaddy.php:2551 polldaddy.php:2967
1097
  msgid "Style"
1098
  msgstr ""
1099
 
1100
- #: polldaddy.php:2552
1101
  msgid "Last Modified"
1102
  msgstr ""
1103
 
1104
- #: polldaddy.php:2584
1105
  msgid "Y/m/d"
1106
  msgstr ""
1107
 
1108
- #: polldaddy.php:2596
1109
  msgid "You haven't used our fancy style editor to create any custom styles!"
1110
  msgstr ""
1111
 
1112
- #: polldaddy.php:2598
1113
  msgid "Create a Custom Style Now"
1114
  msgstr ""
1115
 
1116
- #: polldaddy.php:2676
1117
  msgid "Style Name"
1118
  msgstr ""
1119
 
1120
- #: polldaddy.php:2688
1121
  msgid "Preload Basic Style"
1122
  msgstr ""
1123
 
1124
- #: polldaddy.php:2702
1125
  msgid "Load Style"
1126
  msgstr ""
1127
 
1128
- #: polldaddy.php:2708
1129
  msgid "Text Direction"
1130
  msgstr ""
1131
 
1132
- #: polldaddy.php:2712
1133
  msgid "Force RTL"
1134
  msgstr ""
1135
 
1136
- #: polldaddy.php:2713
1137
  msgid "Force LTR"
1138
  msgstr ""
1139
 
1140
- #: polldaddy.php:2719
1141
  msgid "Style Editor"
1142
  msgstr ""
1143
 
1144
- #: polldaddy.php:2723
1145
  msgid "Select a template part to edit:"
1146
  msgstr ""
1147
 
1148
- #: polldaddy.php:2726
1149
  msgid "Poll Box"
1150
  msgstr ""
1151
 
1152
- #: polldaddy.php:2727
1153
  msgid "Question"
1154
  msgstr ""
1155
 
1156
- #: polldaddy.php:2728
1157
  msgid "Answer Group"
1158
  msgstr ""
1159
 
1160
- #: polldaddy.php:2729
1161
  msgid "Answer Check"
1162
  msgstr ""
1163
 
1164
- #: polldaddy.php:2731
1165
  msgid "Other Input"
1166
  msgstr ""
1167
 
1168
- #: polldaddy.php:2732
1169
  msgid "Vote Button"
1170
  msgstr ""
1171
 
1172
- #: polldaddy.php:2733
1173
  msgid "Links"
1174
  msgstr ""
1175
 
1176
- #: polldaddy.php:2734
1177
  msgid "Feedback Group"
1178
  msgstr ""
1179
 
1180
- #: polldaddy.php:2735
1181
  msgid "Results Group"
1182
  msgstr ""
1183
 
1184
- #: polldaddy.php:2736
1185
  msgid "Results Percent"
1186
  msgstr ""
1187
 
1188
- #: polldaddy.php:2737
1189
  msgid "Results Votes"
1190
  msgstr ""
1191
 
1192
- #: polldaddy.php:2738
1193
  msgid "Results Text"
1194
  msgstr ""
1195
 
1196
- #: polldaddy.php:2739
1197
  msgid "Results Background"
1198
  msgstr ""
1199
 
1200
- #: polldaddy.php:2740
1201
  msgid "Results Bar"
1202
  msgstr ""
1203
 
1204
- #: polldaddy.php:2741 polldaddy.php:3523
1205
  msgid "Total Votes"
1206
  msgstr ""
1207
 
1208
- #: polldaddy.php:2757 polldaddy.php:4162
1209
  msgid "Font"
1210
  msgstr ""
1211
 
1212
- #: polldaddy.php:2760
1213
  msgid "Background"
1214
  msgstr ""
1215
 
1216
- #: polldaddy.php:2763
1217
  msgid "Border"
1218
  msgstr ""
1219
 
1220
- #: polldaddy.php:2766
1221
  msgid "Margin"
1222
  msgstr ""
1223
 
1224
- #: polldaddy.php:2769
1225
  msgid "Padding"
1226
  msgstr ""
1227
 
1228
- #: polldaddy.php:2772 polldaddy.php:2929 polldaddy.php:3343
1229
  msgid "Width"
1230
  msgstr ""
1231
 
1232
- #: polldaddy.php:2775 polldaddy.php:3359
1233
  msgid "Height"
1234
  msgstr ""
1235
 
1236
- #: polldaddy.php:2778 polldaddy.php:3368 polldaddy.php:4148
1237
  msgid "Position"
1238
  msgstr ""
1239
 
1240
- #: polldaddy.php:2791 polldaddy.php:2813
1241
  msgid "Font Size"
1242
  msgstr ""
1243
 
1244
- #: polldaddy.php:2828 polldaddy.php:2887 polldaddy.php:2984 polldaddy.php:4176
1245
  msgid "Color"
1246
  msgstr ""
1247
 
1248
- #: polldaddy.php:2834 polldaddy.php:4209
1249
  msgid "Bold"
1250
  msgstr ""
1251
 
1252
- #: polldaddy.php:2840 polldaddy.php:4218
1253
  msgid "Italic"
1254
  msgstr ""
1255
 
1256
- #: polldaddy.php:2846
1257
  msgid "Underline"
1258
  msgstr ""
1259
 
1260
- #: polldaddy.php:2852 polldaddy.php:4195
1261
  msgid "Line Height"
1262
  msgstr ""
1263
 
1264
- #: polldaddy.php:2874 polldaddy.php:4134
1265
  msgid "Align"
1266
  msgstr ""
1267
 
1268
- #: polldaddy.php:2877 polldaddy.php:3147 polldaddy.php:3302 polldaddy.php:4137
1269
  msgid "Left"
1270
  msgstr ""
1271
 
1272
- #: polldaddy.php:2878 polldaddy.php:4137
1273
  msgid "Center"
1274
  msgstr ""
1275
 
1276
- #: polldaddy.php:2879 polldaddy.php:3071 polldaddy.php:3226 polldaddy.php:4137
1277
- #: polldaddy.php:4151
1278
  msgid "Right"
1279
  msgstr ""
1280
 
1281
- #: polldaddy.php:2893 popups.php:58
1282
  msgid "Image URL"
1283
  msgstr ""
1284
 
1285
- #: polldaddy.php:2893 polldaddy.php:3343
1286
  msgid "Click here for more information"
1287
  msgstr ""
1288
 
1289
- #: polldaddy.php:2899
1290
  msgid "Image Repeat"
1291
  msgstr ""
1292
 
1293
- #: polldaddy.php:2902
1294
  msgid "repeat"
1295
  msgstr ""
1296
 
1297
- #: polldaddy.php:2903
1298
  msgid "no-repeat"
1299
  msgstr ""
1300
 
1301
- #: polldaddy.php:2904
1302
  msgid "repeat-x"
1303
  msgstr ""
1304
 
1305
- #: polldaddy.php:2905
1306
  msgid "repeat-y"
1307
  msgstr ""
1308
 
1309
- #: polldaddy.php:2910
1310
  msgid "Image Position"
1311
  msgstr ""
1312
 
1313
- #: polldaddy.php:2913
1314
  msgid "left top"
1315
  msgstr ""
1316
 
1317
- #: polldaddy.php:2914
1318
  msgid "left center"
1319
  msgstr ""
1320
 
1321
- #: polldaddy.php:2915
1322
  msgid "left bottom"
1323
  msgstr ""
1324
 
1325
- #: polldaddy.php:2916
1326
  msgid "center top"
1327
  msgstr ""
1328
 
1329
- #: polldaddy.php:2917
1330
  msgid "center center"
1331
  msgstr ""
1332
 
1333
- #: polldaddy.php:2918
1334
  msgid "center bottom"
1335
  msgstr ""
1336
 
1337
- #: polldaddy.php:2919
1338
  msgid "right top"
1339
  msgstr ""
1340
 
1341
- #: polldaddy.php:2920
1342
  msgid "right center"
1343
  msgstr ""
1344
 
1345
- #: polldaddy.php:2921
1346
  msgid "right bottom"
1347
  msgstr ""
1348
 
1349
- #: polldaddy.php:2970
1350
  msgid "none"
1351
  msgstr ""
1352
 
1353
- #: polldaddy.php:2971
1354
  msgid "solid"
1355
  msgstr ""
1356
 
1357
- #: polldaddy.php:2972
1358
  msgid "dotted"
1359
  msgstr ""
1360
 
1361
- #: polldaddy.php:2973
1362
  msgid "dashed"
1363
  msgstr ""
1364
 
1365
- #: polldaddy.php:2974
1366
  msgid "double"
1367
  msgstr ""
1368
 
1369
- #: polldaddy.php:2975
1370
  msgid "groove"
1371
  msgstr ""
1372
 
1373
- #: polldaddy.php:2976
1374
  msgid "inset"
1375
  msgstr ""
1376
 
1377
- #: polldaddy.php:2977
1378
  msgid "outset"
1379
  msgstr ""
1380
 
1381
- #: polldaddy.php:2978
1382
  msgid "ridge"
1383
  msgstr ""
1384
 
1385
- #: polldaddy.php:2979
1386
  msgid "hidden"
1387
  msgstr ""
1388
 
1389
- #: polldaddy.php:2990
1390
  msgid "Rounded Corners"
1391
  msgstr ""
1392
 
1393
- #: polldaddy.php:3026
1394
  msgid "Not supported in Internet Explorer."
1395
  msgstr ""
1396
 
1397
- #: polldaddy.php:3033 polldaddy.php:3188 polldaddy.php:4151
1398
  msgid "Top"
1399
  msgstr ""
1400
 
1401
- #: polldaddy.php:3109 polldaddy.php:3264 polldaddy.php:4151
1402
  msgid "Bottom"
1403
  msgstr ""
1404
 
1405
- #: polldaddy.php:3351
1406
  msgid ""
1407
  "If you change the width of the<br/> poll you may also need to change<br/> "
1408
  "the width of your answers."
1409
  msgstr ""
1410
 
1411
- #: polldaddy.php:3400 polldaddy.php:3574
1412
  msgid "Do you mostly use the internet at work, in school or at home?"
1413
  msgstr ""
1414
 
1415
- #: polldaddy.php:3413
1416
  msgid "I use it in school."
1417
  msgstr ""
1418
 
1419
- #: polldaddy.php:3421 polldaddy.php:3479
1420
  msgid "I use it at home."
1421
  msgstr ""
1422
 
1423
- #: polldaddy.php:3429 polldaddy.php:3493
1424
  msgid ""
1425
  "I use it every where I go, at work and home and anywhere else that I can!"
1426
  msgstr ""
1427
 
1428
- #: polldaddy.php:3437 polldaddy.php:3507
1429
  msgid "Other"
1430
  msgstr ""
1431
 
1432
- #: polldaddy.php:3449 polldaddy.php:3937
1433
  msgid "Vote"
1434
  msgstr ""
1435
 
1436
- #: polldaddy.php:3451
1437
  msgid "View Results"
1438
  msgstr ""
1439
 
1440
- #: polldaddy.php:3465
1441
  msgid "I use it in school!"
1442
  msgstr ""
1443
 
1444
- #: polldaddy.php:3467 polldaddy.php:3481 polldaddy.php:3495 polldaddy.php:3509
1445
  msgid "(%d votes)"
1446
  msgstr ""
1447
 
1448
- #: polldaddy.php:3531
1449
  msgid "Return To Poll"
1450
  msgstr ""
1451
 
1452
- #: polldaddy.php:3552
1453
  msgid "Save Style"
1454
  msgstr ""
1455
 
1456
- #: polldaddy.php:3554
1457
  msgid "Check this box if you wish to update the polls that use this style."
1458
  msgstr ""
1459
 
1460
- #: polldaddy.php:3573
1461
  msgid "Thank you for voting!"
1462
  msgstr ""
1463
 
1464
- #: polldaddy.php:3665
1465
  msgid ""
1466
  "Sorry! There was an error creating your rating widget. Please contact <a "
1467
  "href=\"%1$s\" %2$s>Polldaddy support</a> to fix this."
1468
  msgstr ""
1469
 
1470
- #: polldaddy.php:3770
1471
  msgid "Rating Settings"
1472
  msgstr ""
1473
 
1474
- #: polldaddy.php:3773
1475
  msgid "Rating updated"
1476
  msgstr ""
1477
 
1478
- #: polldaddy.php:3785 polldaddy.php:3805 polldaddy.php:4601
1479
  msgid "Posts"
1480
  msgstr ""
1481
 
1482
- #: polldaddy.php:3789 polldaddy.php:3841 polldaddy.php:4601
1483
  msgid "Pages"
1484
  msgstr ""
1485
 
1486
- #: polldaddy.php:3802 polldaddy.php:3839 polldaddy.php:3861
1487
  msgid "Show Ratings on"
1488
  msgstr ""
1489
 
1490
- #: polldaddy.php:3804
1491
  msgid "Front Page, Archive Pages, and Search Results"
1492
  msgstr ""
1493
 
1494
- #: polldaddy.php:3809
1495
  msgid "Position Front Page, Archive Pages, and Search Results Ratings"
1496
  msgstr ""
1497
 
1498
- #: polldaddy.php:3812 polldaddy.php:3826
1499
  msgid "Above each blog post"
1500
  msgstr ""
1501
 
1502
- #: polldaddy.php:3812 polldaddy.php:3826
1503
  msgid "Below each blog post"
1504
  msgstr ""
1505
 
1506
- #: polldaddy.php:3823
1507
  msgid "Position Post Ratings"
1508
  msgstr ""
1509
 
1510
- #: polldaddy.php:3845
1511
  msgid "Position Page Ratings"
1512
  msgstr ""
1513
 
1514
- #: polldaddy.php:3848
1515
  msgid "Above each blog page"
1516
  msgstr ""
1517
 
1518
- #: polldaddy.php:3848
1519
  msgid "Below each blog page"
1520
  msgstr ""
1521
 
1522
- #: polldaddy.php:3867
1523
  msgid "Position Comment Ratings"
1524
  msgstr ""
1525
 
1526
- #: polldaddy.php:3870
1527
  msgid "Above each comment"
1528
  msgstr ""
1529
 
1530
- #: polldaddy.php:3870
1531
  msgid "Below each comment"
1532
  msgstr ""
1533
 
1534
- #: polldaddy.php:3882 polldaddy.php:3915
1535
  msgid "Save Changes"
1536
  msgstr ""
1537
 
1538
- #: polldaddy.php:3899
1539
  msgid "Advanced Settings"
1540
  msgstr ""
1541
 
1542
- #: polldaddy.php:3910
1543
  msgid "Save Advanced Settings"
1544
  msgstr ""
1545
 
1546
- #: polldaddy.php:3926
1547
  msgid "This is a demo of what your rating widget will look like"
1548
  msgstr ""
1549
 
1550
- #: polldaddy.php:3933
1551
  msgid "Customize Labels"
1552
  msgstr ""
1553
 
1554
- #: polldaddy.php:3949
1555
  msgid "Rate This"
1556
  msgstr ""
1557
 
1558
- #: polldaddy.php:3955
1559
  msgid "%d star"
1560
  msgstr ""
1561
 
1562
- #: polldaddy.php:3961 polldaddy.php:3967 polldaddy.php:3973 polldaddy.php:3979
1563
  msgid "%d stars"
1564
  msgstr ""
1565
 
1566
- #: polldaddy.php:3985
1567
  msgid "Thank You"
1568
  msgstr ""
1569
 
1570
- #: polldaddy.php:3991
1571
  msgid "Rate Up"
1572
  msgstr ""
1573
 
1574
- #: polldaddy.php:3997
1575
  msgid "Rate Down"
1576
  msgstr ""
1577
 
1578
- #: polldaddy.php:4003
1579
  msgid "Most Popular Content"
1580
  msgstr ""
1581
 
1582
- #: polldaddy.php:4015
1583
  msgid "All"
1584
  msgstr ""
1585
 
1586
- #: polldaddy.php:4021
1587
  msgid "Today"
1588
  msgstr ""
1589
 
1590
- #: polldaddy.php:4027
1591
  msgid "This Week"
1592
  msgstr ""
1593
 
1594
- #: polldaddy.php:4033
1595
  msgid "This Month"
1596
  msgstr ""
1597
 
1598
- #: polldaddy.php:4039
1599
  msgid "Rated"
1600
  msgstr ""
1601
 
1602
- #: polldaddy.php:4045
1603
  msgid "There are no rated items for this period"
1604
  msgstr ""
1605
 
1606
- #: polldaddy.php:4056
1607
  msgid "Rating Type"
1608
  msgstr ""
1609
 
1610
- #: polldaddy.php:4058
1611
  msgid ""
1612
  "Here you can choose how you want your rating to display. The 5 star rating "
1613
  "is the most commonly used. The Nero rating is useful for keeping it simple."
1614
  msgstr ""
1615
 
1616
- #: polldaddy.php:4066
1617
  msgid "%d Star Rating"
1618
  msgstr ""
1619
 
1620
- #: polldaddy.php:4075
1621
  msgid "Nero Rating"
1622
  msgstr ""
1623
 
1624
- #: polldaddy.php:4082
1625
  msgid "Rating Style"
1626
  msgstr ""
1627
 
1628
- #: polldaddy.php:4089
1629
  msgid "Small"
1630
  msgstr ""
1631
 
1632
- #: polldaddy.php:4089
1633
  msgid "Large"
1634
  msgstr ""
1635
 
1636
- #: polldaddy.php:4100
1637
  msgid "Star Color"
1638
  msgstr ""
1639
 
1640
- #: polldaddy.php:4103
1641
  msgid "Yellow"
1642
  msgstr ""
1643
 
1644
- #: polldaddy.php:4103
1645
  msgid "Red"
1646
  msgstr ""
1647
 
1648
- #: polldaddy.php:4103
1649
  msgid "Blue"
1650
  msgstr ""
1651
 
1652
- #: polldaddy.php:4103
1653
  msgid "Green"
1654
  msgstr ""
1655
 
1656
- #: polldaddy.php:4103
1657
  msgid "Grey"
1658
  msgstr ""
1659
 
1660
- #: polldaddy.php:4112
1661
  msgid "Hand"
1662
  msgstr ""
1663
 
1664
- #: polldaddy.php:4123
1665
  msgid "Custom Image"
1666
  msgstr ""
1667
 
1668
- #: polldaddy.php:4130
1669
  msgid "Text Layout & Font"
1670
  msgstr ""
1671
 
1672
- #: polldaddy.php:4165 polldaddy.php:4184 polldaddy.php:4198
1673
  msgid "Inherit"
1674
  msgstr ""
1675
 
1676
- #: polldaddy.php:4181
1677
  msgid "Size"
1678
  msgstr ""
1679
 
1680
- #: polldaddy.php:4230
1681
  msgid "Extra Settings"
1682
  msgstr ""
1683
 
1684
- #: polldaddy.php:4234
1685
  msgid "Results Popup"
1686
  msgstr ""
1687
 
1688
- #: polldaddy.php:4240
1689
  msgid "Uncheck this box to disable the results popup"
1690
  msgstr ""
1691
 
1692
- #: polldaddy.php:4247 polldaddy.php:4271 polldaddy.php:4294
1693
  msgid "Rating ID"
1694
  msgstr ""
1695
 
1696
- #: polldaddy.php:4253
1697
  msgid "This is the rating ID used in posts"
1698
  msgstr ""
1699
 
1700
- #: polldaddy.php:4258
1701
  msgid "Exclude Posts"
1702
  msgstr ""
1703
 
1704
- #: polldaddy.php:4264
1705
  msgid ""
1706
  "Enter the Post IDs where you want to exclude ratings from. Please use a "
1707
  "comma-delimited list, eg. 1,2,3"
1708
  msgstr ""
1709
 
1710
- #: polldaddy.php:4277
1711
  msgid "This is the rating ID used in pages"
1712
  msgstr ""
1713
 
1714
- #: polldaddy.php:4282
1715
  msgid "Exclude Pages"
1716
  msgstr ""
1717
 
1718
- #: polldaddy.php:4288
1719
  msgid ""
1720
  "Enter the Page IDs where you want to exclude ratings from. Please use a "
1721
  "comma-delimited list, eg. 1,2,3"
1722
  msgstr ""
1723
 
1724
- #: polldaddy.php:4300
1725
  msgid "This is the rating ID used in comments"
1726
  msgstr ""
1727
 
1728
- #: polldaddy.php:4575
1729
  msgid "&laquo;"
1730
  msgstr ""
1731
 
1732
- #: polldaddy.php:4576
1733
  msgid "&raquo;"
1734
  msgstr ""
1735
 
1736
- #: polldaddy.php:4583
1737
  msgid "Rating Results <a href=\"%s\" class=\"add-new-h2\">Settings</a>"
1738
  msgstr ""
1739
 
1740
- #: polldaddy.php:4585
1741
  msgid "Rating Results"
1742
  msgstr ""
1743
 
1744
- #: polldaddy.php:4610
1745
  msgid "Last 24 hours"
1746
  msgstr ""
1747
 
1748
- #: polldaddy.php:4610
1749
  msgid "Last 7 days"
1750
  msgstr ""
1751
 
1752
- #: polldaddy.php:4610
1753
  msgid "Last 31 days"
1754
  msgstr ""
1755
 
1756
- #: polldaddy.php:4610
1757
  msgid "Last 3 months"
1758
  msgstr ""
1759
 
1760
- #: polldaddy.php:4610
1761
  msgid "Last 12 months"
1762
  msgstr ""
1763
 
1764
- #: polldaddy.php:4610
1765
  msgid "All time"
1766
  msgstr ""
1767
 
1768
- #: polldaddy.php:4620
1769
  msgid "* The results are cached and are updated every hour"
1770
  msgstr ""
1771
 
1772
- #: polldaddy.php:4622
1773
  msgid "* The results are cached and are updated every day"
1774
  msgstr ""
1775
 
1776
- #: polldaddy.php:4624
1777
  msgid "* The results are cached and are updated every 3 days"
1778
  msgstr ""
1779
 
1780
- #: polldaddy.php:4638
1781
  msgid "No ratings have been collected for your %s yet."
1782
  msgstr ""
1783
 
1784
- #: polldaddy.php:4650
1785
  msgid "Unique ID"
1786
  msgstr ""
1787
 
1788
- #: polldaddy.php:4651
1789
  msgid "Start Date"
1790
  msgstr ""
1791
 
1792
- #: polldaddy.php:4653
1793
  msgid "Average Rating"
1794
  msgstr ""
1795
 
1796
- #: polldaddy.php:4825
1797
  msgid "Poll Settings"
1798
  msgstr ""
1799
 
1800
- #: polldaddy.php:4832
1801
  msgid "Polldaddy Account Info"
1802
  msgstr ""
1803
 
1804
- #: polldaddy.php:4834
1805
  msgid ""
1806
  "<em>Polldaddy</em> and <em>WordPress.com</em> are now connected using <a "
1807
  "href=\"http://en.support.wordpress.com/wpcc-faq/\">WordPress.com Connect</"
1808
  "a>. If you have a WordPress.com account you can use it to login to <a href="
1809
  "\"http://polldaddy.com/\">Polldaddy.com</a>. Click on the Polldaddy \"sign in"
1810
- "\" button, authorize the connection and create your new Polldaddy account. "
1811
- "Use the same email and password to login on this page."
1812
  msgstr ""
1813
 
1814
- #: polldaddy.php:4835
1815
  msgid ""
1816
- "You must login at least once on <a href=\"http://polldaddy.com/\">Polldaddy."
1817
- "com</a> before using this plugin."
 
1818
  msgstr ""
1819
 
1820
- #: polldaddy.php:4836
1821
- msgid ""
1822
- "Your account is currently link to this WordPress.com account: <strong>%s</"
1823
- "strong>"
1824
  msgstr ""
1825
 
1826
- #: polldaddy.php:4838
1827
  msgid "Link to a different Polldaddy account"
1828
  msgstr ""
1829
 
1830
- #: polldaddy.php:4841
1831
  msgid "Link to your Polldaddy account"
1832
  msgstr ""
1833
 
1834
- #: polldaddy.php:4849
1835
- msgid "WordPress.com Email Address"
1836
- msgstr ""
1837
-
1838
- #: polldaddy.php:4859
1839
- msgid "WordPress.com Password"
1840
- msgstr ""
1841
-
1842
- #: polldaddy.php:4865
1843
- msgid ""
1844
- "Any polls or ratings created in your current account will still be available "
1845
- "on Polldaddy.com when you login as %s."
1846
  msgstr ""
1847
 
1848
- #: polldaddy.php:4875
1849
  msgid "Link Account"
1850
  msgstr ""
1851
 
1852
- #: polldaddy.php:4881
1853
  msgid "General Settings"
1854
  msgstr ""
1855
 
1856
- #: polldaddy.php:4889
1857
  msgid "Default poll settings"
1858
  msgstr ""
1859
 
1860
- #: polldaddy.php:4907
1861
  msgid "Show"
1862
  msgstr ""
1863
 
1864
- #: polldaddy.php:4908
1865
  msgid "Hide"
1866
  msgstr ""
1867
 
1868
- #: polldaddy.php:4909
1869
  msgid "Percentages"
1870
  msgstr ""
1871
 
1872
- #: polldaddy.php:4915
1873
  msgid "Poll style"
1874
  msgstr ""
1875
 
1876
- #: polldaddy.php:4929
1877
  msgid "Off"
1878
  msgstr ""
1879
 
1880
- #: polldaddy.php:4930
1881
  msgid "Cookie"
1882
  msgstr ""
1883
 
1884
- #: polldaddy.php:4931
1885
  msgid "Cookie & IP address"
1886
  msgstr ""
1887
 
1888
- #: polldaddy.php:4937
1889
  msgid "Block expiration limit"
1890
  msgstr ""
1891
 
1892
- #: polldaddy.php:4962
 
 
 
 
 
 
 
 
1893
  msgid "Save Options"
1894
  msgstr ""
1895
 
2
  # This file is distributed under the same license as the Polldaddy Polls & Ratings package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Polldaddy Polls & Ratings 2.0.21\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
7
+ "POT-Creation-Date: 2013-11-06 11:24:52+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ajax.php:77 polldaddy.php:1917 polldaddy.php:1968 polldaddy.php:2306
16
  msgid "click and drag to reorder"
17
  msgstr ""
18
 
19
+ #: ajax.php:80 polldaddy.php:1920 polldaddy.php:1971 polldaddy.php:2304
20
  msgid "Enter an answer here"
21
  msgstr ""
22
 
23
+ #: ajax.php:94 polldaddy.php:1872 polldaddy.php:1938 polldaddy.php:1978
24
+ #: polldaddy.php:2307
25
  msgid "Add an Image"
26
  msgstr ""
27
 
28
+ #: ajax.php:95 polldaddy.php:1873 polldaddy.php:1939 polldaddy.php:1979
29
+ #: polldaddy.php:2308
30
  msgid "Add Audio"
31
  msgstr ""
32
 
33
+ #: ajax.php:96 polldaddy.php:1874 polldaddy.php:1940 polldaddy.php:1980
34
+ #: polldaddy.php:2309
35
  msgid "Add Video"
36
  msgstr ""
37
 
38
+ #: polldaddy-org.php:62 polldaddy.php:89 polldaddy.php:99
39
  msgid "Ratings"
40
  msgstr ""
41
 
42
+ #: polldaddy-org.php:64 polldaddy.php:89 polldaddy.php:99
43
  msgid "Polls"
44
  msgstr ""
45
 
46
+ #: polldaddy-org.php:155 polldaddy.php:147
47
  msgid "Email address required"
48
  msgstr ""
49
 
50
+ #: polldaddy-org.php:158 polldaddy.php:150
51
  msgid "Password required"
52
  msgstr ""
53
 
54
+ #: polldaddy-org.php:191
55
  msgid "Could not connect to Polldaddy API Key service"
56
  msgstr ""
57
 
58
+ #: polldaddy-org.php:206 polldaddy.php:180
59
  msgid "Can't connect to Polldaddy.com"
60
  msgstr ""
61
 
62
+ #: polldaddy-org.php:236
63
  msgid ""
64
  "Login to Polldaddy failed. Double check your email address and password."
65
  msgstr ""
66
 
67
+ #: polldaddy-org.php:238
68
  msgid ""
69
  "If your email address and password are correct, your host may not support "
70
  "secure logins."
71
  msgstr ""
72
 
73
+ #: polldaddy-org.php:239
74
  msgid ""
75
  "In that case, you may be able to log in to Polldaddy by unchecking the \"Use "
76
  "SSL to Log in\" checkbox."
77
  msgstr ""
78
 
79
+ #: polldaddy-org.php:251 polldaddy.php:217
80
  msgid ""
81
  "Account could not be accessed. Are your email address and password correct?"
82
  msgstr ""
83
 
84
+ #: polldaddy-org.php:265
85
  msgid "Polldaddy Account"
86
  msgstr ""
87
 
88
+ #: polldaddy-org.php:267 polldaddy.php:271
89
  msgid ""
90
  "Before you can use the Polldaddy plugin, you need to enter your <a href=\"%s"
91
  "\">Polldaddy.com</a> account details."
92
  msgstr ""
93
 
94
+ #: polldaddy-org.php:274 polldaddy.php:278
95
  msgid "Polldaddy Email Address"
96
  msgstr ""
97
 
98
+ #: polldaddy-org.php:282 polldaddy.php:286
99
  msgid "Polldaddy Password"
100
  msgstr ""
101
 
102
+ #: polldaddy-org.php:295
103
  msgid "Use SSL to Log in"
104
  msgstr ""
105
 
106
+ #: polldaddy-org.php:299
107
  msgid ""
108
  "This ensures a secure login to your Polldaddy account. Only uncheck if you "
109
  "are having problems logging in."
110
  msgstr ""
111
 
112
+ #: polldaddy-org.php:309 polldaddy.php:298
113
  msgid "Submit"
114
  msgstr ""
115
 
116
+ #: polldaddy-org.php:335
117
  msgid "Load Shortcodes Inline"
118
  msgstr ""
119
 
120
+ #: polldaddy-org.php:341
121
  msgid ""
122
  "This will load the Polldaddy shortcodes inline rather than in the page "
123
  "footer."
124
  msgstr ""
125
 
126
+ #: polldaddy-org.php:347
127
  msgid "Multiple Polldaddy Accounts"
128
  msgstr ""
129
 
130
+ #: polldaddy-org.php:353
131
  msgid "This setting will allow each blog user to import a Polldaddy account."
132
  msgstr ""
133
 
134
+ #: polldaddy-org.php:360
135
  msgid "Sync Ratings Account"
136
  msgstr ""
137
 
138
+ #: polldaddy-org.php:366
139
  msgid "This will synchronize your ratings Polldaddy account."
140
  msgstr ""
141
 
142
+ #: polldaddy-org.php:373
143
  msgid "Ratings Title Filter"
144
  msgstr ""
145
 
146
+ #: polldaddy-org.php:379
147
  msgid ""
148
  "This setting allows you to specify a filter to use with your ratings title."
149
  msgstr ""
150
 
151
+ #: polldaddy-org.php:876
152
  msgid "A list of your top rated posts, pages or comments."
153
  msgstr ""
154
 
155
+ #: polldaddy-org.php:884
156
  msgid "Top Rated"
157
  msgstr ""
158
 
159
+ #: polldaddy-org.php:960 polldaddy.php:4643
160
  msgid "Title"
161
  msgstr ""
162
 
163
+ #: polldaddy-org.php:964
164
  msgid "Show for posts"
165
  msgstr ""
166
 
167
+ #: polldaddy-org.php:970
168
  msgid "Show for pages"
169
  msgstr ""
170
 
171
+ #: polldaddy-org.php:976
172
  msgid "Show for comments"
173
  msgstr ""
174
 
175
+ #: polldaddy-org.php:982
176
  msgid "Filter by category"
177
  msgstr ""
178
 
179
+ #: polldaddy-org.php:986
180
  msgid "How many items would you like to display?"
181
  msgstr ""
182
 
183
+ #: polldaddy-org.php:1005
184
  msgid ""
185
  "Warning! The Polldaddy plugin must be linked to your Polldaddy.com account. "
186
  "Please visit the <a href=\"%s\">plugin settings page</a> to login."
187
  msgstr ""
188
 
189
+ #: polldaddy.php:96 polldaddy.php:114
190
  msgid "Feedback"
191
  msgstr ""
192
 
193
+ #: polldaddy.php:207
194
  msgid "Invalid Account"
195
  msgstr ""
196
 
197
+ #: polldaddy.php:269
198
  msgid "Polldaddy"
199
  msgstr ""
200
 
201
+ #: polldaddy.php:307
202
  msgid "Add Poll"
203
  msgstr ""
204
 
205
+ #: polldaddy.php:387
206
  msgid "Star Colors"
207
  msgstr ""
208
 
209
+ #: polldaddy.php:387 polldaddy.php:4078
210
  msgid "Star Size"
211
  msgstr ""
212
 
213
+ #: polldaddy.php:388
214
  msgid "Nero Type"
215
  msgstr ""
216
 
217
+ #: polldaddy.php:388
218
  msgid "Nero Size"
219
  msgstr ""
220
 
221
+ #: polldaddy.php:492
222
  msgid "You are not allowed to delete this poll."
223
  msgstr ""
224
 
225
+ #: polldaddy.php:500 polldaddy.php:536 polldaddy.php:572 polldaddy.php:605
226
  msgid "Invalid Poll Author"
227
  msgstr ""
228
 
229
+ #: polldaddy.php:528
230
  msgid "You are not allowed to open this poll."
231
  msgstr ""
232
 
233
+ #: polldaddy.php:564
234
  msgid "You are not allowed to close this poll."
235
  msgstr ""
236
 
237
+ #: polldaddy.php:597 polldaddy.php:1596
238
  msgid "You are not allowed to edit this poll."
239
  msgstr ""
240
 
241
+ #: polldaddy.php:612
242
  msgid "Poll not found"
243
  msgstr ""
244
 
245
+ #: polldaddy.php:654
246
  msgid "Invalid answers"
247
  msgstr ""
248
 
249
+ #: polldaddy.php:689
250
  msgid "You must include at least 2 answers"
251
  msgstr ""
252
 
253
+ #: polldaddy.php:700 polldaddy.php:819
254
  msgid "Please choose a poll style"
255
  msgstr ""
256
 
257
+ #: polldaddy.php:730
258
  msgid "Poll could not be updated"
259
  msgstr ""
260
 
261
+ #: polldaddy.php:844
262
  msgid "Poll could not be created"
263
  msgstr ""
264
 
265
+ #: polldaddy.php:899
266
  msgid "Style could not be updated"
267
  msgstr ""
268
 
269
+ #: polldaddy.php:929
270
  msgid "Style could not be created"
271
  msgstr ""
272
 
273
+ #: polldaddy.php:1053
274
+ msgid "Account could not be accessed. Is your API code correct?"
 
275
  msgstr ""
276
 
277
+ #: polldaddy.php:1059
278
+ msgid "Account could not be imported. Did you enter the correct API key?"
279
+ msgstr ""
280
+
281
+ #: polldaddy.php:1078
282
  msgid "Poll deleted."
283
  msgstr ""
284
 
285
+ #: polldaddy.php:1080
286
  msgid "%s Poll Deleted."
287
  msgid_plural "%s Polls Deleted."
288
  msgstr[0] ""
289
  msgstr[1] ""
290
 
291
+ #: polldaddy.php:1085
292
  msgid "Poll opened."
293
  msgstr ""
294
 
295
+ #: polldaddy.php:1087
296
  msgid "%s Poll Opened."
297
  msgid_plural "%s Polls Opened."
298
  msgstr[0] ""
299
  msgstr[1] ""
300
 
301
+ #: polldaddy.php:1092
302
  msgid "Poll closed."
303
  msgstr ""
304
 
305
+ #: polldaddy.php:1094
306
  msgid "%s Poll Closed."
307
  msgid_plural "%s Polls Closed."
308
  msgstr[0] ""
309
  msgstr[1] ""
310
 
311
+ #: polldaddy.php:1097
312
  msgid "Poll updated."
313
  msgstr ""
314
 
315
+ #: polldaddy.php:1100
316
  msgid "Poll created."
317
  msgstr ""
318
 
319
+ #: polldaddy.php:1102 polldaddy.php:1433 polldaddy.php:1749
320
  msgid "Embed in Post"
321
  msgstr ""
322
 
323
+ #: polldaddy.php:1105
324
  msgid "Custom Style updated."
325
  msgstr ""
326
 
327
+ #: polldaddy.php:1108
328
  msgid "Custom Style created."
329
  msgstr ""
330
 
331
+ #: polldaddy.php:1113
332
  msgid "Custom Style deleted."
333
  msgstr ""
334
 
335
+ #: polldaddy.php:1115
336
  msgid "%s Style Deleted."
337
  msgid_plural "%s Custom Styles Deleted."
338
  msgstr[0] ""
339
  msgstr[1] ""
340
 
341
+ #: polldaddy.php:1118
342
  msgid "Account Linked."
343
  msgstr ""
344
 
345
+ #: polldaddy.php:1121
346
  msgid "Options Updated."
347
  msgstr ""
348
 
349
+ #: polldaddy.php:1126
350
  msgid "Rating deleted."
351
  msgstr ""
352
 
353
+ #: polldaddy.php:1128
354
  msgid "%s Rating Deleted."
355
  msgid_plural "%s Ratings Deleted."
356
  msgstr[0] ""
357
  msgstr[1] ""
358
 
359
+ #: polldaddy.php:1137
360
  msgid "Error: An error has occurred; Poll not created."
361
  msgstr ""
362
 
363
+ #: polldaddy.php:1140
364
  msgid "Error: An error has occurred; Poll not updated."
365
  msgstr ""
366
 
367
+ #: polldaddy.php:1144
368
  msgid ""
369
  "Error: An error has occurred; Account could not be imported. Perhaps your "
370
  "email address or password is incorrect?"
371
  msgstr ""
372
 
373
+ #: polldaddy.php:1146
374
  msgid "Error: An error has occurred; Account could not be created."
375
  msgstr ""
376
 
377
+ #: polldaddy.php:1182
378
  msgid "Polldaddy Polls"
379
  msgstr ""
380
 
381
+ #: polldaddy.php:1185
382
  msgid "Preview Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a>"
383
  msgstr ""
384
 
385
+ #: polldaddy.php:1197
386
  msgid ""
387
  "Poll Results <a href=\"%s\" class=\"add-new-h2\">All Polls</a> <a href=\"%s"
388
  "\" class=\"add-new-h2\">Edit Poll</a>"
389
  msgstr ""
390
 
391
+ #: polldaddy.php:1206
392
  msgid ""
393
  "Edit Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a> <a href=\"%s\" "
394
  "class=\"add-new-h2\">View Results</a>"
395
  msgstr ""
396
 
397
+ #: polldaddy.php:1215
398
  msgid "Add New Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a>"
399
  msgstr ""
400
 
401
+ #: polldaddy.php:1225
402
  msgid "Custom Styles <a href=\"%s\" class=\"add-new-h2\">Add New</a>"
403
  msgstr ""
404
 
405
+ #: polldaddy.php:1227 polldaddy.php:1556 polldaddy.php:2110 polldaddy.php:2311
406
+ #: polldaddy.php:3559 polldaddy.php:4312 polldaddy.php:4726
407
  msgid "Custom Styles"
408
  msgstr ""
409
 
410
+ #: polldaddy.php:1235
411
  msgid "Edit Style <a href=\"%s\" class=\"add-new-h2\">List Styles</a>"
412
  msgstr ""
413
 
414
+ #: polldaddy.php:1244
415
  msgid "Create Style <a href=\"%s\" class=\"add-new-h2\">List Styles</a>"
416
  msgstr ""
417
 
418
+ #: polldaddy.php:1260
419
  msgid "Polldaddy Polls <a href=\"%s\" class=\"add-new-h2\">Add New</a>"
420
  msgstr ""
421
 
422
+ #: polldaddy.php:1262
423
  msgid "Polldaddy Polls "
424
  msgstr ""
425
 
426
+ #: polldaddy.php:1269
427
  msgid ""
428
  "Linked to WordPress.com Account: <strong>%s</strong> (<a target=\"_blank\" "
429
  "href=\"options-general.php?page=polls&action=options\">Settings</a> / <a "
430
  "target=\"_blank\" href=\"http://polldaddy.com/dashboard/\">Polldaddy.com</a>)"
431
  msgstr ""
432
 
433
+ #: polldaddy.php:1341 polldaddy.php:2528 polldaddy.php:4585
434
  msgid "Actions"
435
  msgstr ""
436
 
437
+ #: polldaddy.php:1342 polldaddy.php:1451 polldaddy.php:2529 polldaddy.php:2571
438
+ #: polldaddy.php:4586 polldaddy.php:4663
439
  msgid "Delete"
440
  msgstr ""
441
 
442
+ #: polldaddy.php:1343 polldaddy.php:1443 polldaddy.php:4001
443
  msgid "Close"
444
  msgstr ""
445
 
446
+ #: polldaddy.php:1344 polldaddy.php:1440
447
  msgid "Open"
448
  msgstr ""
449
 
450
+ #: polldaddy.php:1347 polldaddy.php:2531 polldaddy.php:4589
451
  msgid "Apply"
452
  msgstr ""
453
 
454
+ #: polldaddy.php:1352
455
  msgid "View All Polls"
456
  msgstr ""
457
 
458
+ #: polldaddy.php:1353
459
  msgid "This Blog's Polls"
460
  msgstr ""
461
 
462
+ #: polldaddy.php:1355 polldaddy.php:4610
463
  msgid "Filter"
464
  msgstr ""
465
 
466
+ #: polldaddy.php:1369
467
  msgid "Poll"
468
  msgstr ""
469
 
470
+ #: polldaddy.php:1419 polldaddy.php:2574 polldaddy.php:4671
471
  msgid "Y/m/d g:i:s A"
472
  msgstr ""
473
 
474
+ #: polldaddy.php:1419
475
  msgid "created"
476
  msgstr ""
477
 
478
+ #: polldaddy.php:1419
479
  msgid "M d, Y"
480
  msgstr ""
481
 
482
+ #: polldaddy.php:1422 polldaddy.php:2566
483
  msgid "Edit"
484
  msgstr ""
485
 
486
+ #: polldaddy.php:1430
487
  msgid "Embed &amp; Link"
488
  msgstr ""
489
 
490
+ #: polldaddy.php:1446 polldaddy.php:1448 polldaddy.php:3916
491
  msgid "Preview"
492
  msgstr ""
493
 
494
+ #: polldaddy.php:1454
495
  msgid "Results"
496
  msgstr ""
497
 
498
+ #: polldaddy.php:1460
499
  msgid "votes"
500
  msgstr ""
501
 
502
+ #: polldaddy.php:1468
503
  msgid "WordPress Shortcode"
504
  msgstr ""
505
 
506
+ #: polldaddy.php:1473
507
  msgid "Short URL (Good for Twitter etc.)"
508
  msgstr ""
509
 
510
+ #: polldaddy.php:1479
511
  msgid "Facebook URL"
512
  msgstr ""
513
 
514
+ #: polldaddy.php:1486
515
  msgid "JavaScript"
516
  msgstr ""
517
 
518
+ #: polldaddy.php:1494
519
  msgid "Done"
520
  msgstr ""
521
 
522
+ #: polldaddy.php:1506
523
  msgid "What are you doing here? <a href=\"%s\">Go back</a>."
524
  msgstr ""
525
 
526
+ #: polldaddy.php:1517
527
  msgid "You haven't created any polls for this blog."
528
  msgstr ""
529
 
530
+ #: polldaddy.php:1518 polldaddy.php:2587
531
  msgid "Why don't you go ahead and get started on that?"
532
  msgstr ""
533
 
534
+ #: polldaddy.php:1519
535
  msgid "Create a Poll Now"
536
  msgstr ""
537
 
538
+ #: polldaddy.php:1524
539
  msgid "No one has created any polls for this blog."
540
  msgstr ""
541
 
542
+ #: polldaddy.php:1551 polldaddy.php:2301 polldaddy.php:3554 polldaddy.php:4307
543
+ #: polldaddy.php:4721
544
  msgid "Are you sure you want to delete the rating for \"%s\"?"
545
  msgstr ""
546
 
547
+ #: polldaddy.php:1552
548
  msgid "Are you sure you want to delete the poll %s?"
549
  msgstr ""
550
 
551
+ #: polldaddy.php:1553 polldaddy.php:2303 polldaddy.php:3556 polldaddy.php:4309
552
+ #: polldaddy.php:4723
553
  msgid "Are you sure you want to delete this answer?"
554
  msgstr ""
555
 
556
+ #: polldaddy.php:1554 polldaddy.php:1942 polldaddy.php:1982 polldaddy.php:2305
557
+ #: polldaddy.php:3557 polldaddy.php:4310 polldaddy.php:4724
558
  msgid "delete this answer"
559
  msgstr ""
560
 
561
+ #: polldaddy.php:1555 polldaddy.php:2310 polldaddy.php:3558 polldaddy.php:4311
562
+ #: polldaddy.php:4725
563
  msgid "Standard Styles"
564
  msgstr ""
565
 
566
+ #: polldaddy.php:1655
567
  msgid "delete this image"
568
  msgstr ""
569
 
570
+ #: polldaddy.php:1680
571
  msgid "Save"
572
  msgstr ""
573
 
574
+ #: polldaddy.php:1687 polldaddy.php:4876
575
  msgid "Randomize answer order"
576
  msgstr ""
577
 
578
+ #: polldaddy.php:1687 polldaddy.php:4876
579
  msgid "Allow other answers"
580
  msgstr ""
581
 
582
+ #: polldaddy.php:1687 polldaddy.php:4876
583
  msgid "Multiple choice"
584
  msgstr ""
585
 
586
+ #: polldaddy.php:1687 polldaddy.php:4876
587
  msgid "Sharing"
588
  msgstr ""
589
 
590
+ #: polldaddy.php:1708
591
  msgid "Number of choices"
592
  msgstr ""
593
 
594
+ #: polldaddy.php:1708
595
  msgid "No Limit"
596
  msgstr ""
597
 
598
+ #: polldaddy.php:1745
599
  msgid "Save Poll"
600
  msgstr ""
601
 
602
+ #: polldaddy.php:1760 polldaddy.php:4886
603
  msgid "Results Display"
604
  msgstr ""
605
 
606
+ #: polldaddy.php:1765
607
  msgid "Show results to voters"
608
  msgstr ""
609
 
610
+ #: polldaddy.php:1765
611
  msgid "Only show percentages"
612
  msgstr ""
613
 
614
+ #: polldaddy.php:1765
615
  msgid "Hide all results"
616
  msgstr ""
617
 
618
+ #: polldaddy.php:1783 polldaddy.php:4908
619
  msgid "Repeat Voting"
620
  msgstr ""
621
 
622
+ #: polldaddy.php:1788
623
  msgid "Don't block repeat voters"
624
  msgstr ""
625
 
626
+ #: polldaddy.php:1788
627
  msgid "Block by cookie (recommended)"
628
  msgstr ""
629
 
630
+ #: polldaddy.php:1788
631
  msgid "Block by cookie and by IP address"
632
  msgstr ""
633
 
634
+ #: polldaddy.php:1807
635
  msgid "Expires: "
636
  msgstr ""
637
 
638
+ #: polldaddy.php:1809 polldaddy.php:4923
 
 
 
 
639
  msgid "%d hour"
640
  msgstr ""
641
 
642
+ #: polldaddy.php:1810 polldaddy.php:1811 polldaddy.php:1812 polldaddy.php:4924
643
+ #: polldaddy.php:4925 polldaddy.php:4926
644
  msgid "%d hours"
645
  msgstr ""
646
 
647
+ #: polldaddy.php:1813 polldaddy.php:4927
648
  msgid "%d day"
649
  msgstr ""
650
 
651
+ #: polldaddy.php:1814 polldaddy.php:4928
652
  msgid "%d week"
653
  msgstr ""
654
 
655
+ #: polldaddy.php:1816
 
 
 
 
656
  msgid ""
657
  "Note: Blocking by cookie and IP address can be problematic for some voters."
658
  msgstr ""
659
 
660
+ #: polldaddy.php:1821 polldaddy.php:3519 polldaddy.php:3784 polldaddy.php:3855
661
+ #: polldaddy.php:4593
662
  msgid "Comments"
663
  msgstr ""
664
 
665
+ #: polldaddy.php:1826
666
  msgid "Allow comments"
667
  msgstr ""
668
 
669
+ #: polldaddy.php:1826
670
  msgid "Moderate first"
671
  msgstr ""
672
 
673
+ #: polldaddy.php:1826
674
  msgid "No comments"
675
  msgstr ""
676
 
677
+ #: polldaddy.php:1854
678
  msgid "Enter Question Here"
679
  msgstr ""
680
 
681
+ #: polldaddy.php:1888
682
  msgid "WordPress Shortcode:"
683
  msgstr ""
684
 
685
+ #: polldaddy.php:1890
686
  msgid "Embed Poll in New Post"
687
  msgstr ""
688
 
689
+ #: polldaddy.php:1899 polldaddy.php:2720
690
  msgid "Answers"
691
  msgstr ""
692
 
693
+ #: polldaddy.php:2007
694
  msgid "Add New Answer"
695
  msgstr ""
696
 
697
+ #: polldaddy.php:2024 polldaddy.php:4746
698
  msgid "Aluminum Narrow"
699
  msgstr ""
700
 
701
+ #: polldaddy.php:2025 polldaddy.php:4747
702
  msgid "Aluminum Medium"
703
  msgstr ""
704
 
705
+ #: polldaddy.php:2026 polldaddy.php:4748
706
  msgid "Aluminum Wide"
707
  msgstr ""
708
 
709
+ #: polldaddy.php:2027 polldaddy.php:4749
710
  msgid "Plain White Narrow"
711
  msgstr ""
712
 
713
+ #: polldaddy.php:2028 polldaddy.php:4750
714
  msgid "Plain White Medium"
715
  msgstr ""
716
 
717
+ #: polldaddy.php:2029 polldaddy.php:4751
718
  msgid "Plain White Wide"
719
  msgstr ""
720
 
721
+ #: polldaddy.php:2030 polldaddy.php:4752
722
  msgid "Plain Black Narrow"
723
  msgstr ""
724
 
725
+ #: polldaddy.php:2031 polldaddy.php:4753
726
  msgid "Plain Black Medium"
727
  msgstr ""
728
 
729
+ #: polldaddy.php:2032 polldaddy.php:4754
730
  msgid "Plain Black Wide"
731
  msgstr ""
732
 
733
+ #: polldaddy.php:2033 polldaddy.php:4755
734
  msgid "Paper Narrow"
735
  msgstr ""
736
 
737
+ #: polldaddy.php:2034 polldaddy.php:4756
738
  msgid "Paper Medium"
739
  msgstr ""
740
 
741
+ #: polldaddy.php:2035 polldaddy.php:4757
742
  msgid "Paper Wide"
743
  msgstr ""
744
 
745
+ #: polldaddy.php:2036 polldaddy.php:4758
746
  msgid "Skull Dark Narrow"
747
  msgstr ""
748
 
749
+ #: polldaddy.php:2037 polldaddy.php:4759
750
  msgid "Skull Dark Medium"
751
  msgstr ""
752
 
753
+ #: polldaddy.php:2038 polldaddy.php:4760
754
  msgid "Skull Dark Wide"
755
  msgstr ""
756
 
757
+ #: polldaddy.php:2039 polldaddy.php:4761
758
  msgid "Skull Light Narrow"
759
  msgstr ""
760
 
761
+ #: polldaddy.php:2040 polldaddy.php:4762
762
  msgid "Skull Light Medium"
763
  msgstr ""
764
 
765
+ #: polldaddy.php:2041 polldaddy.php:4763
766
  msgid "Skull Light Wide"
767
  msgstr ""
768
 
769
+ #: polldaddy.php:2042 polldaddy.php:2342 polldaddy.php:2690 polldaddy.php:4764
770
  msgid "Micro"
771
  msgstr ""
772
 
773
+ #: polldaddy.php:2043 polldaddy.php:4765
774
  msgid "Plastic White Narrow"
775
  msgstr ""
776
 
777
+ #: polldaddy.php:2044 polldaddy.php:4766
778
  msgid "Plastic White Medium"
779
  msgstr ""
780
 
781
+ #: polldaddy.php:2045 polldaddy.php:4767
782
  msgid "Plastic White Wide"
783
  msgstr ""
784
 
785
+ #: polldaddy.php:2046 polldaddy.php:4768
786
  msgid "Plastic Grey Narrow"
787
  msgstr ""
788
 
789
+ #: polldaddy.php:2047 polldaddy.php:4769
790
  msgid "Plastic Grey Medium"
791
  msgstr ""
792
 
793
+ #: polldaddy.php:2048 polldaddy.php:4770
794
  msgid "Plastic Grey Wide"
795
  msgstr ""
796
 
797
+ #: polldaddy.php:2049 polldaddy.php:4771
798
  msgid "Plastic Black Narrow"
799
  msgstr ""
800
 
801
+ #: polldaddy.php:2050 polldaddy.php:4772
802
  msgid "Plastic Black Medium"
803
  msgstr ""
804
 
805
+ #: polldaddy.php:2051 polldaddy.php:4773
806
  msgid "Plastic Black Wide"
807
  msgstr ""
808
 
809
+ #: polldaddy.php:2052 polldaddy.php:4774
810
  msgid "Manga Narrow"
811
  msgstr ""
812
 
813
+ #: polldaddy.php:2053 polldaddy.php:4775
814
  msgid "Manga Medium"
815
  msgstr ""
816
 
817
+ #: polldaddy.php:2054 polldaddy.php:4776
818
  msgid "Manga Wide"
819
  msgstr ""
820
 
821
+ #: polldaddy.php:2055 polldaddy.php:4777
822
  msgid "Tech Dark Narrow"
823
  msgstr ""
824
 
825
+ #: polldaddy.php:2056 polldaddy.php:4778
826
  msgid "Tech Dark Medium"
827
  msgstr ""
828
 
829
+ #: polldaddy.php:2057 polldaddy.php:4779
830
  msgid "Tech Dark Wide"
831
  msgstr ""
832
 
833
+ #: polldaddy.php:2058 polldaddy.php:4780
834
  msgid "Tech Grey Narrow"
835
  msgstr ""
836
 
837
+ #: polldaddy.php:2059 polldaddy.php:4781
838
  msgid "Tech Grey Medium"
839
  msgstr ""
840
 
841
+ #: polldaddy.php:2060 polldaddy.php:4782
842
  msgid "Tech Grey Wide"
843
  msgstr ""
844
 
845
+ #: polldaddy.php:2061 polldaddy.php:4783
846
  msgid "Tech Light Narrow"
847
  msgstr ""
848
 
849
+ #: polldaddy.php:2062 polldaddy.php:4784
850
  msgid "Tech Light Medium"
851
  msgstr ""
852
 
853
+ #: polldaddy.php:2063 polldaddy.php:4785
854
  msgid "Tech Light Wide"
855
  msgstr ""
856
 
857
+ #: polldaddy.php:2064 polldaddy.php:4786
858
  msgid "Working Male Narrow"
859
  msgstr ""
860
 
861
+ #: polldaddy.php:2065 polldaddy.php:4787
862
  msgid "Working Male Medium"
863
  msgstr ""
864
 
865
+ #: polldaddy.php:2066 polldaddy.php:4788
866
  msgid "Working Male Wide"
867
  msgstr ""
868
 
869
+ #: polldaddy.php:2067 polldaddy.php:4789
870
  msgid "Working Female Narrow"
871
  msgstr ""
872
 
873
+ #: polldaddy.php:2068 polldaddy.php:4790
874
  msgid "Working Female Medium"
875
  msgstr ""
876
 
877
+ #: polldaddy.php:2069 polldaddy.php:4791
878
  msgid "Working Female Wide"
879
  msgstr ""
880
 
881
+ #: polldaddy.php:2070 polldaddy.php:4792
882
  msgid "Thinking Male Narrow"
883
  msgstr ""
884
 
885
+ #: polldaddy.php:2071 polldaddy.php:4793
886
  msgid "Thinking Male Medium"
887
  msgstr ""
888
 
889
+ #: polldaddy.php:2072 polldaddy.php:4794
890
  msgid "Thinking Male Wide"
891
  msgstr ""
892
 
893
+ #: polldaddy.php:2073 polldaddy.php:4795
894
  msgid "Thinking Female Narrow"
895
  msgstr ""
896
 
897
+ #: polldaddy.php:2074 polldaddy.php:4796
898
  msgid "Thinking Female Medium"
899
  msgstr ""
900
 
901
+ #: polldaddy.php:2075 polldaddy.php:4797
902
  msgid "Thinking Female Wide"
903
  msgstr ""
904
 
905
+ #: polldaddy.php:2076 polldaddy.php:4798
906
  msgid "Sunset Narrow"
907
  msgstr ""
908
 
909
+ #: polldaddy.php:2077 polldaddy.php:4799
910
  msgid "Sunset Medium"
911
  msgstr ""
912
 
913
+ #: polldaddy.php:2078 polldaddy.php:4800
914
  msgid "Sunset Wide"
915
  msgstr ""
916
 
917
+ #: polldaddy.php:2079 polldaddy.php:4801
918
  msgid "Music Medium"
919
  msgstr ""
920
 
921
+ #: polldaddy.php:2080 polldaddy.php:4802
922
  msgid "Music Wide"
923
  msgstr ""
924
 
925
+ #: polldaddy.php:2103
926
  msgid "Poll Style"
927
  msgstr ""
928
 
929
+ #: polldaddy.php:2108
930
  msgid "Polldaddy Styles"
931
  msgstr ""
932
 
933
+ #: polldaddy.php:2195
934
  msgid "Polldaddy Style"
935
  msgstr ""
936
 
937
+ #: polldaddy.php:2201
938
  msgid "Custom Style"
939
  msgstr ""
940
 
941
+ #: polldaddy.php:2277
942
  msgid "Please choose a custom style…"
943
  msgstr ""
944
 
945
+ #: polldaddy.php:2283
946
  msgid "Please choose a style."
947
  msgstr ""
948
 
949
+ #: polldaddy.php:2285
950
  msgid "You currently have no custom styles created."
951
  msgstr ""
952
 
953
+ #: polldaddy.php:2285
954
  msgid "New Style"
955
  msgstr ""
956
 
957
+ #: polldaddy.php:2286
958
  msgid ""
959
  "Did you know we have a new editor for building your own custom poll styles? "
960
  "Find out more <a href=\"%s\" target=\"_blank\">here</a>."
961
  msgstr ""
962
 
963
+ #: polldaddy.php:2302 polldaddy.php:3555 polldaddy.php:4308 polldaddy.php:4722
964
  msgid "Are you sure you want to delete \"%s\"?"
965
  msgstr ""
966
 
967
+ #: polldaddy.php:2324 polldaddy.php:2684
968
  msgid "Aluminum"
969
  msgstr ""
970
 
971
+ #: polldaddy.php:2327 polldaddy.php:2685
972
  msgid "Plain White"
973
  msgstr ""
974
 
975
+ #: polldaddy.php:2330 polldaddy.php:2686
976
  msgid "Plain Black"
977
  msgstr ""
978
 
979
+ #: polldaddy.php:2333 polldaddy.php:2687
980
  msgid "Paper"
981
  msgstr ""
982
 
983
+ #: polldaddy.php:2336 polldaddy.php:2688
984
  msgid "Skull Dark"
985
  msgstr ""
986
 
987
+ #: polldaddy.php:2339 polldaddy.php:2689
988
  msgid "Skull Light"
989
  msgstr ""
990
 
991
+ #: polldaddy.php:2343 polldaddy.php:2393
992
  msgid "Width 150px, the micro style is useful when space is tight."
993
  msgstr ""
994
 
995
+ #: polldaddy.php:2346
996
  msgid "Plastic White"
997
  msgstr ""
998
 
999
+ #: polldaddy.php:2349
1000
  msgid "Plastic Grey"
1001
  msgstr ""
1002
 
1003
+ #: polldaddy.php:2352
1004
  msgid "Plastic Black"
1005
  msgstr ""
1006
 
1007
+ #: polldaddy.php:2355
1008
  msgid "Manga"
1009
  msgstr ""
1010
 
1011
+ #: polldaddy.php:2358
1012
  msgid "Tech Dark"
1013
  msgstr ""
1014
 
1015
+ #: polldaddy.php:2361
1016
  msgid "Tech Grey"
1017
  msgstr ""
1018
 
1019
+ #: polldaddy.php:2364
1020
  msgid "Tech Light"
1021
  msgstr ""
1022
 
1023
+ #: polldaddy.php:2367
1024
  msgid "Working Male"
1025
  msgstr ""
1026
 
1027
+ #: polldaddy.php:2370
1028
  msgid "Working Female"
1029
  msgstr ""
1030
 
1031
+ #: polldaddy.php:2373
1032
  msgid "Thinking Male"
1033
  msgstr ""
1034
 
1035
+ #: polldaddy.php:2376
1036
  msgid "Thinking Female"
1037
  msgstr ""
1038
 
1039
+ #: polldaddy.php:2379
1040
  msgid "Sunset"
1041
  msgstr ""
1042
 
1043
+ #: polldaddy.php:2382
1044
  msgid "Music"
1045
  msgstr ""
1046
 
1047
+ #: polldaddy.php:2387
1048
  msgid "Wide"
1049
  msgstr ""
1050
 
1051
+ #: polldaddy.php:2388 polldaddy.php:4081
1052
  msgid "Medium"
1053
  msgstr ""
1054
 
1055
+ #: polldaddy.php:2389
1056
  msgid "Narrow"
1057
  msgstr ""
1058
 
1059
+ #: polldaddy.php:2390
1060
  msgid "Width: 630px, the wide style is good for blog posts."
1061
  msgstr ""
1062
 
1063
+ #: polldaddy.php:2391
1064
  msgid "Width: 300px, the medium style is good for general use."
1065
  msgstr ""
1066
 
1067
+ #: polldaddy.php:2392
1068
  msgid "Width 150px, the narrow style is good for sidebars etc."
1069
  msgstr ""
1070
 
1071
+ #: polldaddy.php:2427
1072
  msgid "Answer"
1073
  msgstr ""
1074
 
1075
+ #: polldaddy.php:2428 polldaddy.php:2477 polldaddy.php:3935 polldaddy.php:4646
1076
  msgid "Votes"
1077
  msgstr ""
1078
 
1079
+ #: polldaddy.php:2429
1080
  msgid "Percent"
1081
  msgstr ""
1082
 
1083
+ #: polldaddy.php:2444
1084
  msgid "Other (<a href=\"%s\">see below</a>)"
1085
  msgstr ""
1086
 
1087
+ #: polldaddy.php:2476
1088
  msgid "Other Answer"
1089
  msgstr ""
1090
 
1091
+ #: polldaddy.php:2541 polldaddy.php:2957
1092
  msgid "Style"
1093
  msgstr ""
1094
 
1095
+ #: polldaddy.php:2542
1096
  msgid "Last Modified"
1097
  msgstr ""
1098
 
1099
+ #: polldaddy.php:2574
1100
  msgid "Y/m/d"
1101
  msgstr ""
1102
 
1103
+ #: polldaddy.php:2586
1104
  msgid "You haven't used our fancy style editor to create any custom styles!"
1105
  msgstr ""
1106
 
1107
+ #: polldaddy.php:2588
1108
  msgid "Create a Custom Style Now"
1109
  msgstr ""
1110
 
1111
+ #: polldaddy.php:2666
1112
  msgid "Style Name"
1113
  msgstr ""
1114
 
1115
+ #: polldaddy.php:2678
1116
  msgid "Preload Basic Style"
1117
  msgstr ""
1118
 
1119
+ #: polldaddy.php:2692
1120
  msgid "Load Style"
1121
  msgstr ""
1122
 
1123
+ #: polldaddy.php:2698
1124
  msgid "Text Direction"
1125
  msgstr ""
1126
 
1127
+ #: polldaddy.php:2702
1128
  msgid "Force RTL"
1129
  msgstr ""
1130
 
1131
+ #: polldaddy.php:2703
1132
  msgid "Force LTR"
1133
  msgstr ""
1134
 
1135
+ #: polldaddy.php:2709
1136
  msgid "Style Editor"
1137
  msgstr ""
1138
 
1139
+ #: polldaddy.php:2713
1140
  msgid "Select a template part to edit:"
1141
  msgstr ""
1142
 
1143
+ #: polldaddy.php:2716
1144
  msgid "Poll Box"
1145
  msgstr ""
1146
 
1147
+ #: polldaddy.php:2717
1148
  msgid "Question"
1149
  msgstr ""
1150
 
1151
+ #: polldaddy.php:2718
1152
  msgid "Answer Group"
1153
  msgstr ""
1154
 
1155
+ #: polldaddy.php:2719
1156
  msgid "Answer Check"
1157
  msgstr ""
1158
 
1159
+ #: polldaddy.php:2721
1160
  msgid "Other Input"
1161
  msgstr ""
1162
 
1163
+ #: polldaddy.php:2722
1164
  msgid "Vote Button"
1165
  msgstr ""
1166
 
1167
+ #: polldaddy.php:2723
1168
  msgid "Links"
1169
  msgstr ""
1170
 
1171
+ #: polldaddy.php:2724
1172
  msgid "Feedback Group"
1173
  msgstr ""
1174
 
1175
+ #: polldaddy.php:2725
1176
  msgid "Results Group"
1177
  msgstr ""
1178
 
1179
+ #: polldaddy.php:2726
1180
  msgid "Results Percent"
1181
  msgstr ""
1182
 
1183
+ #: polldaddy.php:2727
1184
  msgid "Results Votes"
1185
  msgstr ""
1186
 
1187
+ #: polldaddy.php:2728
1188
  msgid "Results Text"
1189
  msgstr ""
1190
 
1191
+ #: polldaddy.php:2729
1192
  msgid "Results Background"
1193
  msgstr ""
1194
 
1195
+ #: polldaddy.php:2730
1196
  msgid "Results Bar"
1197
  msgstr ""
1198
 
1199
+ #: polldaddy.php:2731 polldaddy.php:3513
1200
  msgid "Total Votes"
1201
  msgstr ""
1202
 
1203
+ #: polldaddy.php:2747 polldaddy.php:4154
1204
  msgid "Font"
1205
  msgstr ""
1206
 
1207
+ #: polldaddy.php:2750
1208
  msgid "Background"
1209
  msgstr ""
1210
 
1211
+ #: polldaddy.php:2753
1212
  msgid "Border"
1213
  msgstr ""
1214
 
1215
+ #: polldaddy.php:2756
1216
  msgid "Margin"
1217
  msgstr ""
1218
 
1219
+ #: polldaddy.php:2759
1220
  msgid "Padding"
1221
  msgstr ""
1222
 
1223
+ #: polldaddy.php:2762 polldaddy.php:2919 polldaddy.php:3333
1224
  msgid "Width"
1225
  msgstr ""
1226
 
1227
+ #: polldaddy.php:2765 polldaddy.php:3349
1228
  msgid "Height"
1229
  msgstr ""
1230
 
1231
+ #: polldaddy.php:2768 polldaddy.php:3358 polldaddy.php:4140
1232
  msgid "Position"
1233
  msgstr ""
1234
 
1235
+ #: polldaddy.php:2781 polldaddy.php:2803
1236
  msgid "Font Size"
1237
  msgstr ""
1238
 
1239
+ #: polldaddy.php:2818 polldaddy.php:2877 polldaddy.php:2974 polldaddy.php:4168
1240
  msgid "Color"
1241
  msgstr ""
1242
 
1243
+ #: polldaddy.php:2824 polldaddy.php:4201
1244
  msgid "Bold"
1245
  msgstr ""
1246
 
1247
+ #: polldaddy.php:2830 polldaddy.php:4210
1248
  msgid "Italic"
1249
  msgstr ""
1250
 
1251
+ #: polldaddy.php:2836
1252
  msgid "Underline"
1253
  msgstr ""
1254
 
1255
+ #: polldaddy.php:2842 polldaddy.php:4187
1256
  msgid "Line Height"
1257
  msgstr ""
1258
 
1259
+ #: polldaddy.php:2864 polldaddy.php:4126
1260
  msgid "Align"
1261
  msgstr ""
1262
 
1263
+ #: polldaddy.php:2867 polldaddy.php:3137 polldaddy.php:3292 polldaddy.php:4129
1264
  msgid "Left"
1265
  msgstr ""
1266
 
1267
+ #: polldaddy.php:2868 polldaddy.php:4129
1268
  msgid "Center"
1269
  msgstr ""
1270
 
1271
+ #: polldaddy.php:2869 polldaddy.php:3061 polldaddy.php:3216 polldaddy.php:4129
1272
+ #: polldaddy.php:4143
1273
  msgid "Right"
1274
  msgstr ""
1275
 
1276
+ #: polldaddy.php:2883 popups.php:58
1277
  msgid "Image URL"
1278
  msgstr ""
1279
 
1280
+ #: polldaddy.php:2883 polldaddy.php:3333
1281
  msgid "Click here for more information"
1282
  msgstr ""
1283
 
1284
+ #: polldaddy.php:2889
1285
  msgid "Image Repeat"
1286
  msgstr ""
1287
 
1288
+ #: polldaddy.php:2892
1289
  msgid "repeat"
1290
  msgstr ""
1291
 
1292
+ #: polldaddy.php:2893
1293
  msgid "no-repeat"
1294
  msgstr ""
1295
 
1296
+ #: polldaddy.php:2894
1297
  msgid "repeat-x"
1298
  msgstr ""
1299
 
1300
+ #: polldaddy.php:2895
1301
  msgid "repeat-y"
1302
  msgstr ""
1303
 
1304
+ #: polldaddy.php:2900
1305
  msgid "Image Position"
1306
  msgstr ""
1307
 
1308
+ #: polldaddy.php:2903
1309
  msgid "left top"
1310
  msgstr ""
1311
 
1312
+ #: polldaddy.php:2904
1313
  msgid "left center"
1314
  msgstr ""
1315
 
1316
+ #: polldaddy.php:2905
1317
  msgid "left bottom"
1318
  msgstr ""
1319
 
1320
+ #: polldaddy.php:2906
1321
  msgid "center top"
1322
  msgstr ""
1323
 
1324
+ #: polldaddy.php:2907
1325
  msgid "center center"
1326
  msgstr ""
1327
 
1328
+ #: polldaddy.php:2908
1329
  msgid "center bottom"
1330
  msgstr ""
1331
 
1332
+ #: polldaddy.php:2909
1333
  msgid "right top"
1334
  msgstr ""
1335
 
1336
+ #: polldaddy.php:2910
1337
  msgid "right center"
1338
  msgstr ""
1339
 
1340
+ #: polldaddy.php:2911
1341
  msgid "right bottom"
1342
  msgstr ""
1343
 
1344
+ #: polldaddy.php:2960
1345
  msgid "none"
1346
  msgstr ""
1347
 
1348
+ #: polldaddy.php:2961
1349
  msgid "solid"
1350
  msgstr ""
1351
 
1352
+ #: polldaddy.php:2962
1353
  msgid "dotted"
1354
  msgstr ""
1355
 
1356
+ #: polldaddy.php:2963
1357
  msgid "dashed"
1358
  msgstr ""
1359
 
1360
+ #: polldaddy.php:2964
1361
  msgid "double"
1362
  msgstr ""
1363
 
1364
+ #: polldaddy.php:2965
1365
  msgid "groove"
1366
  msgstr ""
1367
 
1368
+ #: polldaddy.php:2966
1369
  msgid "inset"
1370
  msgstr ""
1371
 
1372
+ #: polldaddy.php:2967
1373
  msgid "outset"
1374
  msgstr ""
1375
 
1376
+ #: polldaddy.php:2968
1377
  msgid "ridge"
1378
  msgstr ""
1379
 
1380
+ #: polldaddy.php:2969
1381
  msgid "hidden"
1382
  msgstr ""
1383
 
1384
+ #: polldaddy.php:2980
1385
  msgid "Rounded Corners"
1386
  msgstr ""
1387
 
1388
+ #: polldaddy.php:3016
1389
  msgid "Not supported in Internet Explorer."
1390
  msgstr ""
1391
 
1392
+ #: polldaddy.php:3023 polldaddy.php:3178 polldaddy.php:4143
1393
  msgid "Top"
1394
  msgstr ""
1395
 
1396
+ #: polldaddy.php:3099 polldaddy.php:3254 polldaddy.php:4143
1397
  msgid "Bottom"
1398
  msgstr ""
1399
 
1400
+ #: polldaddy.php:3341
1401
  msgid ""
1402
  "If you change the width of the<br/> poll you may also need to change<br/> "
1403
  "the width of your answers."
1404
  msgstr ""
1405
 
1406
+ #: polldaddy.php:3390 polldaddy.php:3564
1407
  msgid "Do you mostly use the internet at work, in school or at home?"
1408
  msgstr ""
1409
 
1410
+ #: polldaddy.php:3403
1411
  msgid "I use it in school."
1412
  msgstr ""
1413
 
1414
+ #: polldaddy.php:3411 polldaddy.php:3469
1415
  msgid "I use it at home."
1416
  msgstr ""
1417
 
1418
+ #: polldaddy.php:3419 polldaddy.php:3483
1419
  msgid ""
1420
  "I use it every where I go, at work and home and anywhere else that I can!"
1421
  msgstr ""
1422
 
1423
+ #: polldaddy.php:3427 polldaddy.php:3497
1424
  msgid "Other"
1425
  msgstr ""
1426
 
1427
+ #: polldaddy.php:3439 polldaddy.php:3929
1428
  msgid "Vote"
1429
  msgstr ""
1430
 
1431
+ #: polldaddy.php:3441
1432
  msgid "View Results"
1433
  msgstr ""
1434
 
1435
+ #: polldaddy.php:3455
1436
  msgid "I use it in school!"
1437
  msgstr ""
1438
 
1439
+ #: polldaddy.php:3457 polldaddy.php:3471 polldaddy.php:3485 polldaddy.php:3499
1440
  msgid "(%d votes)"
1441
  msgstr ""
1442
 
1443
+ #: polldaddy.php:3521
1444
  msgid "Return To Poll"
1445
  msgstr ""
1446
 
1447
+ #: polldaddy.php:3542
1448
  msgid "Save Style"
1449
  msgstr ""
1450
 
1451
+ #: polldaddy.php:3544
1452
  msgid "Check this box if you wish to update the polls that use this style."
1453
  msgstr ""
1454
 
1455
+ #: polldaddy.php:3563
1456
  msgid "Thank you for voting!"
1457
  msgstr ""
1458
 
1459
+ #: polldaddy.php:3655
1460
  msgid ""
1461
  "Sorry! There was an error creating your rating widget. Please contact <a "
1462
  "href=\"%1$s\" %2$s>Polldaddy support</a> to fix this."
1463
  msgstr ""
1464
 
1465
+ #: polldaddy.php:3761
1466
  msgid "Rating Settings"
1467
  msgstr ""
1468
 
1469
+ #: polldaddy.php:3764
1470
  msgid "Rating updated"
1471
  msgstr ""
1472
 
1473
+ #: polldaddy.php:3776 polldaddy.php:3797 polldaddy.php:4593
1474
  msgid "Posts"
1475
  msgstr ""
1476
 
1477
+ #: polldaddy.php:3780 polldaddy.php:3833 polldaddy.php:4593
1478
  msgid "Pages"
1479
  msgstr ""
1480
 
1481
+ #: polldaddy.php:3794 polldaddy.php:3831 polldaddy.php:3853
1482
  msgid "Show Ratings on"
1483
  msgstr ""
1484
 
1485
+ #: polldaddy.php:3796
1486
  msgid "Front Page, Archive Pages, and Search Results"
1487
  msgstr ""
1488
 
1489
+ #: polldaddy.php:3801
1490
  msgid "Position Front Page, Archive Pages, and Search Results Ratings"
1491
  msgstr ""
1492
 
1493
+ #: polldaddy.php:3804 polldaddy.php:3818
1494
  msgid "Above each blog post"
1495
  msgstr ""
1496
 
1497
+ #: polldaddy.php:3804 polldaddy.php:3818
1498
  msgid "Below each blog post"
1499
  msgstr ""
1500
 
1501
+ #: polldaddy.php:3815
1502
  msgid "Position Post Ratings"
1503
  msgstr ""
1504
 
1505
+ #: polldaddy.php:3837
1506
  msgid "Position Page Ratings"
1507
  msgstr ""
1508
 
1509
+ #: polldaddy.php:3840
1510
  msgid "Above each blog page"
1511
  msgstr ""
1512
 
1513
+ #: polldaddy.php:3840
1514
  msgid "Below each blog page"
1515
  msgstr ""
1516
 
1517
+ #: polldaddy.php:3859
1518
  msgid "Position Comment Ratings"
1519
  msgstr ""
1520
 
1521
+ #: polldaddy.php:3862
1522
  msgid "Above each comment"
1523
  msgstr ""
1524
 
1525
+ #: polldaddy.php:3862
1526
  msgid "Below each comment"
1527
  msgstr ""
1528
 
1529
+ #: polldaddy.php:3874 polldaddy.php:3907
1530
  msgid "Save Changes"
1531
  msgstr ""
1532
 
1533
+ #: polldaddy.php:3891
1534
  msgid "Advanced Settings"
1535
  msgstr ""
1536
 
1537
+ #: polldaddy.php:3902
1538
  msgid "Save Advanced Settings"
1539
  msgstr ""
1540
 
1541
+ #: polldaddy.php:3918
1542
  msgid "This is a demo of what your rating widget will look like"
1543
  msgstr ""
1544
 
1545
+ #: polldaddy.php:3925
1546
  msgid "Customize Labels"
1547
  msgstr ""
1548
 
1549
+ #: polldaddy.php:3941
1550
  msgid "Rate This"
1551
  msgstr ""
1552
 
1553
+ #: polldaddy.php:3947
1554
  msgid "%d star"
1555
  msgstr ""
1556
 
1557
+ #: polldaddy.php:3953 polldaddy.php:3959 polldaddy.php:3965 polldaddy.php:3971
1558
  msgid "%d stars"
1559
  msgstr ""
1560
 
1561
+ #: polldaddy.php:3977
1562
  msgid "Thank You"
1563
  msgstr ""
1564
 
1565
+ #: polldaddy.php:3983
1566
  msgid "Rate Up"
1567
  msgstr ""
1568
 
1569
+ #: polldaddy.php:3989
1570
  msgid "Rate Down"
1571
  msgstr ""
1572
 
1573
+ #: polldaddy.php:3995
1574
  msgid "Most Popular Content"
1575
  msgstr ""
1576
 
1577
+ #: polldaddy.php:4007
1578
  msgid "All"
1579
  msgstr ""
1580
 
1581
+ #: polldaddy.php:4013
1582
  msgid "Today"
1583
  msgstr ""
1584
 
1585
+ #: polldaddy.php:4019
1586
  msgid "This Week"
1587
  msgstr ""
1588
 
1589
+ #: polldaddy.php:4025
1590
  msgid "This Month"
1591
  msgstr ""
1592
 
1593
+ #: polldaddy.php:4031
1594
  msgid "Rated"
1595
  msgstr ""
1596
 
1597
+ #: polldaddy.php:4037
1598
  msgid "There are no rated items for this period"
1599
  msgstr ""
1600
 
1601
+ #: polldaddy.php:4048
1602
  msgid "Rating Type"
1603
  msgstr ""
1604
 
1605
+ #: polldaddy.php:4050
1606
  msgid ""
1607
  "Here you can choose how you want your rating to display. The 5 star rating "
1608
  "is the most commonly used. The Nero rating is useful for keeping it simple."
1609
  msgstr ""
1610
 
1611
+ #: polldaddy.php:4058
1612
  msgid "%d Star Rating"
1613
  msgstr ""
1614
 
1615
+ #: polldaddy.php:4067
1616
  msgid "Nero Rating"
1617
  msgstr ""
1618
 
1619
+ #: polldaddy.php:4074
1620
  msgid "Rating Style"
1621
  msgstr ""
1622
 
1623
+ #: polldaddy.php:4081
1624
  msgid "Small"
1625
  msgstr ""
1626
 
1627
+ #: polldaddy.php:4081
1628
  msgid "Large"
1629
  msgstr ""
1630
 
1631
+ #: polldaddy.php:4092
1632
  msgid "Star Color"
1633
  msgstr ""
1634
 
1635
+ #: polldaddy.php:4095
1636
  msgid "Yellow"
1637
  msgstr ""
1638
 
1639
+ #: polldaddy.php:4095
1640
  msgid "Red"
1641
  msgstr ""
1642
 
1643
+ #: polldaddy.php:4095
1644
  msgid "Blue"
1645
  msgstr ""
1646
 
1647
+ #: polldaddy.php:4095
1648
  msgid "Green"
1649
  msgstr ""
1650
 
1651
+ #: polldaddy.php:4095
1652
  msgid "Grey"
1653
  msgstr ""
1654
 
1655
+ #: polldaddy.php:4104
1656
  msgid "Hand"
1657
  msgstr ""
1658
 
1659
+ #: polldaddy.php:4115
1660
  msgid "Custom Image"
1661
  msgstr ""
1662
 
1663
+ #: polldaddy.php:4122
1664
  msgid "Text Layout & Font"
1665
  msgstr ""
1666
 
1667
+ #: polldaddy.php:4157 polldaddy.php:4176 polldaddy.php:4190
1668
  msgid "Inherit"
1669
  msgstr ""
1670
 
1671
+ #: polldaddy.php:4173
1672
  msgid "Size"
1673
  msgstr ""
1674
 
1675
+ #: polldaddy.php:4222
1676
  msgid "Extra Settings"
1677
  msgstr ""
1678
 
1679
+ #: polldaddy.php:4226
1680
  msgid "Results Popup"
1681
  msgstr ""
1682
 
1683
+ #: polldaddy.php:4232
1684
  msgid "Uncheck this box to disable the results popup"
1685
  msgstr ""
1686
 
1687
+ #: polldaddy.php:4239 polldaddy.php:4263 polldaddy.php:4286
1688
  msgid "Rating ID"
1689
  msgstr ""
1690
 
1691
+ #: polldaddy.php:4245
1692
  msgid "This is the rating ID used in posts"
1693
  msgstr ""
1694
 
1695
+ #: polldaddy.php:4250
1696
  msgid "Exclude Posts"
1697
  msgstr ""
1698
 
1699
+ #: polldaddy.php:4256
1700
  msgid ""
1701
  "Enter the Post IDs where you want to exclude ratings from. Please use a "
1702
  "comma-delimited list, eg. 1,2,3"
1703
  msgstr ""
1704
 
1705
+ #: polldaddy.php:4269
1706
  msgid "This is the rating ID used in pages"
1707
  msgstr ""
1708
 
1709
+ #: polldaddy.php:4274
1710
  msgid "Exclude Pages"
1711
  msgstr ""
1712
 
1713
+ #: polldaddy.php:4280
1714
  msgid ""
1715
  "Enter the Page IDs where you want to exclude ratings from. Please use a "
1716
  "comma-delimited list, eg. 1,2,3"
1717
  msgstr ""
1718
 
1719
+ #: polldaddy.php:4292
1720
  msgid "This is the rating ID used in comments"
1721
  msgstr ""
1722
 
1723
+ #: polldaddy.php:4567
1724
  msgid "&laquo;"
1725
  msgstr ""
1726
 
1727
+ #: polldaddy.php:4568
1728
  msgid "&raquo;"
1729
  msgstr ""
1730
 
1731
+ #: polldaddy.php:4575
1732
  msgid "Rating Results <a href=\"%s\" class=\"add-new-h2\">Settings</a>"
1733
  msgstr ""
1734
 
1735
+ #: polldaddy.php:4577
1736
  msgid "Rating Results"
1737
  msgstr ""
1738
 
1739
+ #: polldaddy.php:4602
1740
  msgid "Last 24 hours"
1741
  msgstr ""
1742
 
1743
+ #: polldaddy.php:4602
1744
  msgid "Last 7 days"
1745
  msgstr ""
1746
 
1747
+ #: polldaddy.php:4602
1748
  msgid "Last 31 days"
1749
  msgstr ""
1750
 
1751
+ #: polldaddy.php:4602
1752
  msgid "Last 3 months"
1753
  msgstr ""
1754
 
1755
+ #: polldaddy.php:4602
1756
  msgid "Last 12 months"
1757
  msgstr ""
1758
 
1759
+ #: polldaddy.php:4602
1760
  msgid "All time"
1761
  msgstr ""
1762
 
1763
+ #: polldaddy.php:4612
1764
  msgid "* The results are cached and are updated every hour"
1765
  msgstr ""
1766
 
1767
+ #: polldaddy.php:4614
1768
  msgid "* The results are cached and are updated every day"
1769
  msgstr ""
1770
 
1771
+ #: polldaddy.php:4616
1772
  msgid "* The results are cached and are updated every 3 days"
1773
  msgstr ""
1774
 
1775
+ #: polldaddy.php:4630
1776
  msgid "No ratings have been collected for your %s yet."
1777
  msgstr ""
1778
 
1779
+ #: polldaddy.php:4644
1780
  msgid "Unique ID"
1781
  msgstr ""
1782
 
1783
+ #: polldaddy.php:4645
1784
  msgid "Start Date"
1785
  msgstr ""
1786
 
1787
+ #: polldaddy.php:4647
1788
  msgid "Average Rating"
1789
  msgstr ""
1790
 
1791
+ #: polldaddy.php:4819
1792
  msgid "Poll Settings"
1793
  msgstr ""
1794
 
1795
+ #: polldaddy.php:4826
1796
  msgid "Polldaddy Account Info"
1797
  msgstr ""
1798
 
1799
+ #: polldaddy.php:4828
1800
  msgid ""
1801
  "<em>Polldaddy</em> and <em>WordPress.com</em> are now connected using <a "
1802
  "href=\"http://en.support.wordpress.com/wpcc-faq/\">WordPress.com Connect</"
1803
  "a>. If you have a WordPress.com account you can use it to login to <a href="
1804
  "\"http://polldaddy.com/\">Polldaddy.com</a>. Click on the Polldaddy \"sign in"
1805
+ "\" button, authorize the connection and create your new Polldaddy account."
 
1806
  msgstr ""
1807
 
1808
+ #: polldaddy.php:4829
1809
  msgid ""
1810
+ "Login to the Polldaddy website and scroll to the end of your <a href="
1811
+ "\"http://polldaddy.com/account/#apikey\">account page</a> to create or "
1812
+ "retrieve an API key."
1813
  msgstr ""
1814
 
1815
+ #: polldaddy.php:4830
1816
+ msgid "Your account is currently linked to this API key: <strong>%s</strong>"
 
 
1817
  msgstr ""
1818
 
1819
+ #: polldaddy.php:4832
1820
  msgid "Link to a different Polldaddy account"
1821
  msgstr ""
1822
 
1823
+ #: polldaddy.php:4835
1824
  msgid "Link to your Polldaddy account"
1825
  msgstr ""
1826
 
1827
+ #: polldaddy.php:4843
1828
+ msgid "Polldaddy.com API Key"
 
 
 
 
 
 
 
 
 
 
1829
  msgstr ""
1830
 
1831
+ #: polldaddy.php:4856
1832
  msgid "Link Account"
1833
  msgstr ""
1834
 
1835
+ #: polldaddy.php:4862
1836
  msgid "General Settings"
1837
  msgstr ""
1838
 
1839
+ #: polldaddy.php:4870
1840
  msgid "Default poll settings"
1841
  msgstr ""
1842
 
1843
+ #: polldaddy.php:4888
1844
  msgid "Show"
1845
  msgstr ""
1846
 
1847
+ #: polldaddy.php:4889
1848
  msgid "Hide"
1849
  msgstr ""
1850
 
1851
+ #: polldaddy.php:4890
1852
  msgid "Percentages"
1853
  msgstr ""
1854
 
1855
+ #: polldaddy.php:4896
1856
  msgid "Poll style"
1857
  msgstr ""
1858
 
1859
+ #: polldaddy.php:4910
1860
  msgid "Off"
1861
  msgstr ""
1862
 
1863
+ #: polldaddy.php:4911
1864
  msgid "Cookie"
1865
  msgstr ""
1866
 
1867
+ #: polldaddy.php:4912
1868
  msgid "Cookie & IP address"
1869
  msgstr ""
1870
 
1871
+ #: polldaddy.php:4918
1872
  msgid "Block expiration limit"
1873
  msgstr ""
1874
 
1875
+ #: polldaddy.php:4922
1876
+ msgid "Never"
1877
+ msgstr ""
1878
+
1879
+ #: polldaddy.php:4929
1880
+ msgid "%d month"
1881
+ msgstr ""
1882
+
1883
+ #: polldaddy.php:4943
1884
  msgid "Save Options"
1885
  msgstr ""
1886
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: eoigal, alternatekev, mdawaffe, donncha, johnny5
3
  Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
4
  Requires at least: 3.2
5
- Tested up to: 3.5.2
6
- Stable tag: 2.0.20
7
 
8
  Create and manage Polldaddy polls and ratings from within WordPress.
9
 
@@ -111,10 +111,18 @@ Your theme is getting the post content, without necessarily showing it. If the p
111
 
112
 
113
  == Upgrade Notice ==
114
- = 2.0.20 =
115
- Updated poll settings page, bugfixes
116
 
117
  == Changelog ==
 
 
 
 
 
 
 
 
118
  = 2.0.20 =
119
  * Updated settings page: text, layout, Import -> Link.
120
  * On MU sites use blog_public blog option.
2
  Contributors: eoigal, alternatekev, mdawaffe, donncha, johnny5
3
  Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
4
  Requires at least: 3.2
5
+ Tested up to: 3.7.1
6
+ Stable tag: 2.0.21
7
 
8
  Create and manage Polldaddy polls and ratings from within WordPress.
9
 
111
 
112
 
113
  == Upgrade Notice ==
114
+ = 2.0.21 =
115
+ Fixed CSRF in ratings settings page, rich snippet support, login via API key.
116
 
117
  == Changelog ==
118
+ = 2.0.21 =
119
+ * Fixed CSRF problem in ratings settings page.
120
+ * Fixed PHP 5.5.0 warning in class constructor.
121
+ * Add rich snippet support for ratings.
122
+ * Login to Polldaddy via API Key instead of username and password now.
123
+ * Removed "month" and "never" options from poll block expiration dropdown as they're not supported any more.
124
+ * Misc bug fixes.
125
+
126
  = 2.0.20 =
127
  * Updated settings page: text, layout, Import -> Link.
128
  * On MU sites use blog_public blog option.