Version Description
- Bug Fix: Use of WP_Widget caused fatal error in installations pre 2.8
- Added Localisation to Top Rated Widget.
Download this release
Release Info
Developer | eoigal |
Plugin | Crowdsignal Dashboard – Polls, Surveys & more |
Version | 1.8.3 |
Comparing to | |
See all releases |
Code changes from version 1.8.2 to 1.8.3
- polldaddy-org.php +99 -103
- polldaddy.php +20 -20
- polldaddy.pot +186 -134
- readme.txt +5 -1
polldaddy-org.php
CHANGED
@@ -11,7 +11,7 @@ class WPORG_PollDaddy extends WP_PollDaddy {
|
|
11 |
|
12 |
function __construct() {
|
13 |
parent::__construct();
|
14 |
-
$this->version = '1.8.
|
15 |
$this->base_url = plugins_url() . '/' . dirname( plugin_basename( __FILE__ ) ) . '/';
|
16 |
$this->polldaddy_client_class = 'WPORG_PollDaddy_Client';
|
17 |
$this->use_ssl = (int) get_option( 'polldaddy_use_ssl' );
|
@@ -511,107 +511,103 @@ add_filter( 'widget_text', 'do_shortcode' );
|
|
511 |
* PollDaddy Top Rated Widget
|
512 |
*
|
513 |
* **/
|
514 |
-
|
515 |
-
class PD_Top_Rated extends WP_Widget {
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
}
|
613 |
-
|
614 |
}
|
615 |
-
|
616 |
-
add_action('widgets_init', create_function('', 'return register_widget("PD_Top_Rated");'));
|
617 |
?>
|
11 |
|
12 |
function __construct() {
|
13 |
parent::__construct();
|
14 |
+
$this->version = '1.8.3';
|
15 |
$this->base_url = plugins_url() . '/' . dirname( plugin_basename( __FILE__ ) ) . '/';
|
16 |
$this->polldaddy_client_class = 'WPORG_PollDaddy_Client';
|
17 |
$this->use_ssl = (int) get_option( 'polldaddy_use_ssl' );
|
511 |
* PollDaddy Top Rated Widget
|
512 |
*
|
513 |
* **/
|
514 |
+
if ( class_exists( 'WP_Widget' ) ) {
|
515 |
+
class PD_Top_Rated extends WP_Widget {
|
516 |
+
|
517 |
+
function PD_Top_Rated() {
|
518 |
+
|
519 |
+
$widget_ops = array( 'classname' => 'top_rated', 'description' => __( 'A list of your top rated posts, pages or comments.' ) );
|
520 |
+
$this->WP_Widget( 'PD_Top_Rated', 'Top Rated', $widget_ops );
|
521 |
+
}
|
522 |
+
|
523 |
+
function widget($args, $instance) {
|
524 |
+
|
525 |
+
extract($args, EXTR_SKIP);
|
526 |
+
|
527 |
+
echo $before_widget;
|
528 |
+
$title = empty( $instance['title'] ) ? __( 'Top Rated', 'polldaddy' ) : apply_filters( 'widget_title', $instance['title'] );
|
529 |
+
$posts_rating_id = (int) get_option( 'pd-rating-posts-id' );
|
530 |
+
$pages_rating_id = (int) get_option( 'pd-rating-pages-id' );
|
531 |
+
$comments_rating_id = (int) get_option( 'pd-rating-comments-id' );
|
532 |
+
|
533 |
+
echo $before_title . $title . $after_title;
|
534 |
+
echo '<div id="pd_top_rated_holder"></div>';
|
535 |
+
echo '<script language="javascript" src="http://i.polldaddy.com/ratings/rating-top.js"></script>';
|
536 |
+
echo '<script language="javascript" type="text/javascript">';
|
537 |
+
$rating_seq = $instance['show_posts'] . $instance['show_pages'] . $instance['show_comments'];
|
538 |
+
|
539 |
+
echo ' PDRTJS_TOP = new PDRTJS_RATING_TOP( ' . $posts_rating_id . ', ' . $pages_rating_id . ', ' . $comments_rating_id . ", '" . $rating_seq . "', " . $instance['item_count'] . ' );';
|
540 |
+
echo '</script>';
|
541 |
+
echo $after_widget;
|
542 |
+
}
|
543 |
+
|
544 |
+
function update( $new_instance, $old_instance ) {
|
545 |
+
|
546 |
+
$instance = $old_instance;
|
547 |
+
$instance['title'] = strip_tags($new_instance['title']);
|
548 |
+
$instance['show_posts'] = (int) $new_instance['show_posts'];
|
549 |
+
$instance['show_pages'] = (int) $new_instance['show_pages'];
|
550 |
+
$instance['show_comments'] = (int) $new_instance['show_comments'];
|
551 |
+
$instance['item_count'] = (int) $new_instance['item_count'];
|
552 |
+
return $instance;
|
553 |
+
}
|
554 |
+
|
555 |
+
function form( $instance ) {
|
556 |
+
|
557 |
+
$instance = wp_parse_args( (array) $instance, array( 'title' => '', 'show_posts' => '1', 'show_pages' => '1', 'show_comments' => '1', 'item_count' => '5' ) );
|
558 |
+
$title = strip_tags( $instance['title'] );
|
559 |
+
$show_posts = (int) $instance['show_posts'];
|
560 |
+
$show_pages = (int) $instance['show_pages'];
|
561 |
+
$show_comments = (int) $instance['show_comments'];
|
562 |
+
$item_count = (int) $instance['item_count'];
|
563 |
+
?>
|
564 |
+
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title', 'polldaddy' ); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo attribute_escape( $title ); ?>" /></label></p>
|
565 |
+
<p>
|
566 |
+
<label for="<?php echo $this->get_field_id( 'show_posts' ); ?>">
|
567 |
+
<?php
|
568 |
+
$checked = '';
|
569 |
+
if ( $show_posts == 1 )
|
570 |
+
$checked = 'checked="checked"';
|
571 |
+
?>
|
572 |
+
<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'show_posts' ); ?>" name="<?php echo $this->get_field_name( 'show_posts' ); ?>" value="1" <?php echo ( $checked ); ?> />
|
573 |
+
<?php _e( 'Show for posts', 'polldaddy' ); ?>
|
574 |
+
</label>
|
575 |
+
</p>
|
576 |
+
<p>
|
577 |
+
<label for="<?php echo $this->get_field_id( 'show_pages' ); ?>">
|
578 |
+
<?php
|
579 |
+
$checked = '';
|
580 |
+
if ( $show_pages == 1 )
|
581 |
+
$checked = 'checked="checked"';
|
582 |
+
?>
|
583 |
+
<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'show_pages' ); ?>" name="<?php echo $this->get_field_name( 'show_pages' ); ?>" value="1" <?php echo ( $checked ); ?> />
|
584 |
+
<?php _e( 'Show for pages', 'polldaddy' ); ?>
|
585 |
+
</label>
|
586 |
+
</p>
|
587 |
+
<p>
|
588 |
+
<label for="<?php echo $this->get_field_id( 'show_comments' ); ?>">
|
589 |
+
<?php
|
590 |
+
$checked = '';
|
591 |
+
if ( $show_comments == 1 )
|
592 |
+
$checked = 'checked="checked"';
|
593 |
+
?>
|
594 |
+
<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'show_comments' ); ?>" name="<?php echo $this->get_field_name( 'show_comments' ); ?>" value="1" <?php echo ( $checked ); ?>/>
|
595 |
+
<?php _e( 'Show for comments', 'polldaddy' ); ?>
|
596 |
+
</label>
|
597 |
+
</p>
|
598 |
+
<p>
|
599 |
+
<label for="rss-items-<?php echo $number; ?>"><?php _e( 'How many items would you like to display?', 'polldaddy' ); ?>
|
600 |
+
<select id="<?php echo $this->get_field_id( 'item_count' ); ?>" name="<?php echo $this->get_field_name( 'item_count' ); ?>">
|
601 |
+
<?php
|
602 |
+
for ( $i = 1; $i <= 20; ++$i )
|
603 |
+
echo "<option value='$i' " . ( $item_count == $i ? "selected='selected'" : '' ) . ">$i</option>";
|
604 |
+
?>
|
605 |
+
</select>
|
606 |
+
</label>
|
607 |
+
</p>
|
608 |
+
<?php
|
609 |
+
}
|
610 |
+
}
|
611 |
+
add_action('widgets_init', create_function('', 'return register_widget("PD_Top_Rated");'));
|
|
|
|
|
612 |
}
|
|
|
|
|
613 |
?>
|
polldaddy.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: PollDaddy Polls
|
|
5 |
Description: Create and manage PollDaddy polls and ratings in WordPress
|
6 |
Author: Automattic, Inc.
|
7 |
Author URL: http://automattic.com/
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
|
11 |
// You can hardcode your PollDaddy PartnerGUID (API Key) here
|
@@ -26,24 +26,24 @@ class WP_PollDaddy {
|
|
26 |
var $rating_user_code;
|
27 |
|
28 |
function WP_PollDaddy(){
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
$this->is_admin = (bool) current_user_can('manage_options');
|
41 |
$this->is_author = true;
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
function &get_client( $api_key, $userCode = null ) {
|
48 |
if ( isset( $this->polldaddy_clients[$api_key] ) ) {
|
49 |
if ( !is_null( $userCode ) )
|
@@ -1186,9 +1186,9 @@ class WP_PollDaddy {
|
|
1186 |
<thead>
|
1187 |
<tr>
|
1188 |
<th id="cb" class="manage-column column-cb check-column" scope="col" /><?php if( $this->is_author ){ ?><input type="checkbox" /><?php } ?></th>
|
1189 |
-
<th id="title" class="manage-column column-title" scope="col"
|
1190 |
-
<th id="votes" class="manage-column column-vote" scope="col"
|
1191 |
-
<th id="date" class="manage-column column-date" scope="col"
|
1192 |
</tr>
|
1193 |
</thead>
|
1194 |
<tbody>
|
5 |
Description: Create and manage PollDaddy polls and ratings in WordPress
|
6 |
Author: Automattic, Inc.
|
7 |
Author URL: http://automattic.com/
|
8 |
+
Version: 1.8.3
|
9 |
*/
|
10 |
|
11 |
// You can hardcode your PollDaddy PartnerGUID (API Key) here
|
26 |
var $rating_user_code;
|
27 |
|
28 |
function WP_PollDaddy(){
|
29 |
+
$this ->__construct();
|
30 |
+
}
|
31 |
+
|
32 |
+
function __construct() {
|
33 |
+
global $current_user;
|
34 |
+
$this->errors = new WP_Error;
|
35 |
+
$this->scheme = 'https';
|
36 |
+
$this->version = '1.8.3';
|
37 |
+
$this->multiple_accounts = true;
|
38 |
+
$this->polldaddy_client_class = 'api_client';
|
39 |
+
$this->polldaddy_clients = array();
|
40 |
$this->is_admin = (bool) current_user_can('manage_options');
|
41 |
$this->is_author = true;
|
42 |
+
$this->id = (int) $current_user->ID;
|
43 |
+
$this->user_code = null;
|
44 |
+
$this->rating_user_code = null;
|
45 |
+
}
|
46 |
+
|
47 |
function &get_client( $api_key, $userCode = null ) {
|
48 |
if ( isset( $this->polldaddy_clients[$api_key] ) ) {
|
49 |
if ( !is_null( $userCode ) )
|
1186 |
<thead>
|
1187 |
<tr>
|
1188 |
<th id="cb" class="manage-column column-cb check-column" scope="col" /><?php if( $this->is_author ){ ?><input type="checkbox" /><?php } ?></th>
|
1189 |
+
<th id="title" class="manage-column column-title" scope="col"><?php _e( 'Poll', 'polldaddy' ); ?></th>
|
1190 |
+
<th id="votes" class="manage-column column-vote" scope="col"><?php _e( 'Votes', 'polldaddy' ); ?></th>
|
1191 |
+
<th id="date" class="manage-column column-date" scope="col"><?php _e( 'Created', 'polldaddy' ); ?></th>
|
1192 |
</tr>
|
1193 |
</thead>
|
1194 |
<tbody>
|
polldaddy.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Translation of the WordPress plugin PollDaddy Polls 1.8.
|
2 |
# Copyright (C) 2010 Automattic, Inc.
|
3 |
# This file is distributed under the same license as the PollDaddy Polls package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: PollDaddy Polls 1.8.
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
11 |
-
"POT-Creation-Date: 2010-02-
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -17,94 +17,142 @@ msgstr ""
|
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19 |
|
20 |
-
#: polldaddy-org.php:
|
21 |
msgid "Email address required"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: polldaddy-org.php:
|
25 |
msgid "Password required"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: polldaddy-org.php:
|
29 |
msgid "Could not connect to PollDaddy API Key service"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: polldaddy-org.php:
|
33 |
msgid "Can't connect to PollDaddy.com"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: polldaddy-org.php:
|
37 |
msgid ""
|
38 |
"Login to PollDaddy failed. Double check your email address and password."
|
39 |
msgstr ""
|
40 |
|
41 |
-
#: polldaddy-org.php:
|
42 |
msgid ""
|
43 |
"If your email address and password are correct, your host may not support "
|
44 |
"secure logins."
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: polldaddy-org.php:
|
48 |
msgid ""
|
49 |
"In that case, you may be able to log in to PollDaddy by unchecking the \"Use "
|
50 |
"SSL to Log in\" checkbox."
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: polldaddy-org.php:
|
54 |
msgid ""
|
55 |
"Account could not be accessed. Are your email address and password correct?"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: polldaddy-org.php:
|
59 |
msgid "PollDaddy Account"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: polldaddy-org.php:
|
63 |
#, php-format
|
64 |
msgid ""
|
65 |
"Before you can use the PollDaddy plugin, you need to enter your <a href=\"%s"
|
66 |
"\">PollDaddy.com</a> account details."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: polldaddy-org.php:
|
70 |
msgid "PollDaddy Email Address"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: polldaddy-org.php:
|
74 |
msgid "PollDaddy Password"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: polldaddy-org.php:
|
78 |
msgid "Use SSL to Log in"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: polldaddy-org.php:
|
82 |
msgid ""
|
83 |
"This ensures a secure login to your PollDaddy account. Only uncheck if you "
|
84 |
"are having problems logging in."
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: polldaddy-org.php:
|
88 |
msgid "Submit"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: polldaddy-org.php:
|
92 |
msgid "Multiple PollDaddy Accounts"
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: polldaddy-org.php:
|
96 |
msgid "This setting will allow each blog user to import a PollDaddy account."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: polldaddy-org.php:
|
100 |
msgid "Sync Ratings Account"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: polldaddy-org.php:
|
104 |
msgid "This will syncronize your ratings PollDaddy account."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: polldaddy-org.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
msgid "How many items would you like to display?"
|
109 |
msgstr ""
|
110 |
|
@@ -149,7 +197,7 @@ msgstr ""
|
|
149 |
msgid "Custom Styles"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: polldaddy.php:112 polldaddy.php:
|
153 |
msgid "Options"
|
154 |
msgstr ""
|
155 |
|
@@ -172,7 +220,7 @@ msgstr ""
|
|
172 |
msgid "Star Colors"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: polldaddy.php:358 polldaddy.php:
|
176 |
msgid "Star Size"
|
177 |
msgstr ""
|
178 |
|
@@ -410,11 +458,23 @@ msgstr ""
|
|
410 |
msgid "Apply"
|
411 |
msgstr ""
|
412 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
#: polldaddy.php:1237
|
414 |
msgid "Results"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: polldaddy.php:1249 polldaddy.php:1255 polldaddy.php:
|
418 |
msgid "Preview"
|
419 |
msgstr ""
|
420 |
|
@@ -464,7 +524,7 @@ msgstr ""
|
|
464 |
msgid "Save Poll"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: polldaddy.php:1373 polldaddy.php:
|
468 |
msgid "Poll results"
|
469 |
msgstr ""
|
470 |
|
@@ -480,7 +540,7 @@ msgstr ""
|
|
480 |
msgid "Hide all results"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: polldaddy.php:1396 polldaddy.php:
|
484 |
msgid "Block repeat voters"
|
485 |
msgstr ""
|
486 |
|
@@ -500,32 +560,32 @@ msgstr ""
|
|
500 |
msgid "Expires: "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: polldaddy.php:1418 polldaddy.php:
|
504 |
msgid "Never"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: polldaddy.php:1419 polldaddy.php:
|
508 |
#, php-format
|
509 |
msgid "%d hour"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: polldaddy.php:1420 polldaddy.php:1421 polldaddy.php:1422 polldaddy.php:
|
513 |
-
#: polldaddy.php:
|
514 |
#, php-format
|
515 |
msgid "%d hours"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: polldaddy.php:1423 polldaddy.php:
|
519 |
#, php-format
|
520 |
msgid "%d day"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: polldaddy.php:1424 polldaddy.php:
|
524 |
#, php-format
|
525 |
msgid "%d week"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: polldaddy.php:1425 polldaddy.php:
|
529 |
#, php-format
|
530 |
msgid "%d month"
|
531 |
msgstr ""
|
@@ -590,16 +650,12 @@ msgstr ""
|
|
590 |
msgid "Answer"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: polldaddy.php:1877 polldaddy.php:1922 polldaddy.php:3684
|
594 |
-
msgid "Votes"
|
595 |
-
msgstr ""
|
596 |
-
|
597 |
#: polldaddy.php:1891
|
598 |
#, php-format
|
599 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: polldaddy.php:1921 polldaddy.php:
|
603 |
msgid "Other Answer"
|
604 |
msgstr ""
|
605 |
|
@@ -632,378 +688,374 @@ msgstr ""
|
|
632 |
msgid "Save Style"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: polldaddy.php:
|
636 |
#, php-format
|
637 |
msgid ""
|
638 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
639 |
"href=\"%1$s\" %2$s>PollDaddy support</a> to fix this."
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: polldaddy.php:
|
643 |
msgid "Rating Settings"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: polldaddy.php:
|
647 |
msgid "Rating updated"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: polldaddy.php:
|
651 |
msgid "Posts"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: polldaddy.php:
|
655 |
msgid "Pages"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: polldaddy.php:
|
659 |
msgid "Comments"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: polldaddy.php:
|
663 |
msgid "Enable for blog posts"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: polldaddy.php:
|
667 |
msgid "Above each blog post"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: polldaddy.php:
|
671 |
msgid "Below each blog post"
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: polldaddy.php:
|
675 |
msgid "Enable for front page"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: polldaddy.php:
|
679 |
msgid "Enable for pages"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: polldaddy.php:
|
683 |
msgid "Above each page"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: polldaddy.php:
|
687 |
msgid "Below each page"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: polldaddy.php:
|
691 |
msgid "Enable for comments"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: polldaddy.php:
|
695 |
msgid "Above each comment"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: polldaddy.php:
|
699 |
msgid "Below each comment"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: polldaddy.php:
|
703 |
msgid "Save Changes"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: polldaddy.php:
|
707 |
msgid "Advanced Settings"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: polldaddy.php:
|
711 |
msgid "Save"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: polldaddy.php:
|
715 |
msgid "This is a demo of what your rating widget will look like"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: polldaddy.php:
|
719 |
msgid "Customize Labels"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: polldaddy.php:
|
723 |
msgid "votes"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: polldaddy.php:
|
727 |
msgid "rate this"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: polldaddy.php:
|
731 |
#, php-format
|
732 |
msgid "%d star"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: polldaddy.php:
|
736 |
#, php-format
|
737 |
msgid "%d stars"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: polldaddy.php:
|
741 |
msgid "Thank You"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: polldaddy.php:
|
745 |
msgid "Rate Up"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: polldaddy.php:
|
749 |
msgid "Rate Down"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: polldaddy.php:
|
753 |
msgid "Rating Type"
|
754 |
msgstr ""
|
755 |
|
756 |
-
#: polldaddy.php:
|
757 |
msgid ""
|
758 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
759 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: polldaddy.php:
|
763 |
#, php-format
|
764 |
msgid "%d Star Rating"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: polldaddy.php:
|
768 |
msgid "Nero Rating"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: polldaddy.php:
|
772 |
msgid "Rating Style"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: polldaddy.php:
|
776 |
msgid "Small"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: polldaddy.php:
|
780 |
msgid "Medium"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: polldaddy.php:
|
784 |
msgid "Large"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: polldaddy.php:
|
788 |
msgid "Star Color"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: polldaddy.php:
|
792 |
msgid "Yellow"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: polldaddy.php:
|
796 |
msgid "Red"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: polldaddy.php:
|
800 |
msgid "Blue"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: polldaddy.php:
|
804 |
msgid "Green"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: polldaddy.php:
|
808 |
msgid "Grey"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: polldaddy.php:
|
812 |
msgid "Hand"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: polldaddy.php:
|
816 |
msgid "Custom Image"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: polldaddy.php:
|
820 |
msgid "Text Layout & Font"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: polldaddy.php:
|
824 |
msgid "Align"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: polldaddy.php:
|
828 |
msgid "Left"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: polldaddy.php:
|
832 |
msgid "Center"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: polldaddy.php:
|
836 |
msgid "Right"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: polldaddy.php:
|
840 |
msgid "Position"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: polldaddy.php:
|
844 |
msgid "Top"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: polldaddy.php:
|
848 |
msgid "Bottom"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: polldaddy.php:
|
852 |
msgid "Font"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: polldaddy.php:
|
856 |
msgid "Inherit"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: polldaddy.php:
|
860 |
msgid "Color"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: polldaddy.php:
|
864 |
msgid "Size"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: polldaddy.php:
|
868 |
msgid "Line Height"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: polldaddy.php:
|
872 |
msgid "Bold"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: polldaddy.php:
|
876 |
msgid "Italic"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: polldaddy.php:
|
880 |
msgid "«"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: polldaddy.php:
|
884 |
msgid "»"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: polldaddy.php:
|
888 |
msgid "Rating Reports"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: polldaddy.php:
|
892 |
msgid "View Report"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: polldaddy.php:
|
896 |
msgid "Last 24 hours"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: polldaddy.php:
|
900 |
msgid "Last 7 days"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: polldaddy.php:
|
904 |
msgid "Last 31 days"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: polldaddy.php:
|
908 |
msgid "Last 3 months"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: polldaddy.php:
|
912 |
msgid "Last 12 months"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: polldaddy.php:
|
916 |
msgid "All time"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: polldaddy.php:
|
920 |
msgid "Filter Report"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: polldaddy.php:
|
924 |
#, php-format
|
925 |
msgid "No ratings have been collected for your %s yet."
|
926 |
msgstr ""
|
927 |
|
928 |
-
#: polldaddy.php:
|
929 |
msgid "Start Date"
|
930 |
msgstr ""
|
931 |
|
932 |
-
#: polldaddy.php:
|
933 |
-
msgid "Title"
|
934 |
-
msgstr ""
|
935 |
-
|
936 |
-
#: polldaddy.php:3685
|
937 |
msgid "Average Rating"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: polldaddy.php:
|
941 |
msgid "PollDaddy Account Info"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: polldaddy.php:
|
945 |
msgid ""
|
946 |
"This is the PollDadddy account you currently have imported into your "
|
947 |
"WordPress account"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: polldaddy.php:
|
951 |
msgid "Import Account"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: polldaddy.php:
|
955 |
msgid "General Settings"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: polldaddy.php:
|
959 |
msgid "Default poll settings"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: polldaddy.php:
|
963 |
msgid "Multiple Choice"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: polldaddy.php:
|
967 |
msgid "Randomise Answers"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: polldaddy.php:
|
971 |
msgid "Sharing"
|
972 |
msgstr ""
|
973 |
|
974 |
-
#: polldaddy.php:
|
975 |
msgid "Show"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: polldaddy.php:
|
979 |
msgid "Hide"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: polldaddy.php:
|
983 |
msgid "Percentages"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: polldaddy.php:
|
987 |
msgid "Poll style"
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: polldaddy.php:
|
991 |
msgid "Off"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: polldaddy.php:
|
995 |
msgid "Cookie"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: polldaddy.php:
|
999 |
msgid "Cookie & IP address"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: polldaddy.php:
|
1003 |
msgid "Block expiration limit"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
-
#: polldaddy.php:
|
1007 |
msgid "Save Options"
|
1008 |
msgstr ""
|
1009 |
|
1 |
+
# Translation of the WordPress plugin PollDaddy Polls 1.8.3 by Automattic, Inc..
|
2 |
# Copyright (C) 2010 Automattic, Inc.
|
3 |
# This file is distributed under the same license as the PollDaddy Polls package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: PollDaddy Polls 1.8.3\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
11 |
+
"POT-Creation-Date: 2010-02-23 12:33+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19 |
|
20 |
+
#: polldaddy-org.php:134 polldaddy.php:128 polldaddy.php:892
|
21 |
msgid "Email address required"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: polldaddy-org.php:137 polldaddy.php:131 polldaddy.php:895
|
25 |
msgid "Password required"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: polldaddy-org.php:169
|
29 |
msgid "Could not connect to PollDaddy API Key service"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: polldaddy-org.php:183 polldaddy.php:161
|
33 |
msgid "Can't connect to PollDaddy.com"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: polldaddy-org.php:213
|
37 |
msgid ""
|
38 |
"Login to PollDaddy failed. Double check your email address and password."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: polldaddy-org.php:215
|
42 |
msgid ""
|
43 |
"If your email address and password are correct, your host may not support "
|
44 |
"secure logins."
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: polldaddy-org.php:216
|
48 |
msgid ""
|
49 |
"In that case, you may be able to log in to PollDaddy by unchecking the \"Use "
|
50 |
"SSL to Log in\" checkbox."
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: polldaddy-org.php:227 polldaddy.php:198
|
54 |
msgid ""
|
55 |
"Account could not be accessed. Are your email address and password correct?"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: polldaddy-org.php:241 polldaddy.php:249
|
59 |
msgid "PollDaddy Account"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: polldaddy-org.php:243 polldaddy.php:251
|
63 |
#, php-format
|
64 |
msgid ""
|
65 |
"Before you can use the PollDaddy plugin, you need to enter your <a href=\"%s"
|
66 |
"\">PollDaddy.com</a> account details."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: polldaddy-org.php:250 polldaddy.php:258 polldaddy.php:3867
|
70 |
msgid "PollDaddy Email Address"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: polldaddy-org.php:258 polldaddy.php:266 polldaddy.php:3877
|
74 |
msgid "PollDaddy Password"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: polldaddy-org.php:271
|
78 |
msgid "Use SSL to Log in"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: polldaddy-org.php:275
|
82 |
msgid ""
|
83 |
"This ensures a secure login to your PollDaddy account. Only uncheck if you "
|
84 |
"are having problems logging in."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: polldaddy-org.php:285 polldaddy.php:278
|
88 |
msgid "Submit"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: polldaddy-org.php:301
|
92 |
msgid "Multiple PollDaddy Accounts"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: polldaddy-org.php:307
|
96 |
msgid "This setting will allow each blog user to import a PollDaddy account."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: polldaddy-org.php:314
|
100 |
msgid "Sync Ratings Account"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: polldaddy-org.php:320
|
104 |
msgid "This will syncronize your ratings PollDaddy account."
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: polldaddy-org.php:327
|
108 |
+
msgid "Posts Rating ID"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: polldaddy-org.php:333
|
112 |
+
msgid "This is the rating ID used in posts"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: polldaddy-org.php:340
|
116 |
+
msgid "Pages Rating ID"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: polldaddy-org.php:346
|
120 |
+
msgid "This is the rating ID used in pages"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: polldaddy-org.php:353
|
124 |
+
msgid "Comments Rating ID"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: polldaddy-org.php:359
|
128 |
+
msgid "This is the rating ID used in comments"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: polldaddy-org.php:519
|
132 |
+
msgid "A list of your top rated posts, pages or comments."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: polldaddy-org.php:528
|
136 |
+
msgid "Top Rated"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: polldaddy-org.php:564 polldaddy.php:3693
|
140 |
+
msgid "Title"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: polldaddy-org.php:573
|
144 |
+
msgid "Show for posts"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: polldaddy-org.php:584
|
148 |
+
msgid "Show for pages"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: polldaddy-org.php:595
|
152 |
+
msgid "Show for comments"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: polldaddy-org.php:599
|
156 |
msgid "How many items would you like to display?"
|
157 |
msgstr ""
|
158 |
|
197 |
msgid "Custom Styles"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: polldaddy.php:112 polldaddy.php:3852
|
201 |
msgid "Options"
|
202 |
msgstr ""
|
203 |
|
220 |
msgid "Star Colors"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: polldaddy.php:358 polldaddy.php:3339
|
224 |
msgid "Star Size"
|
225 |
msgstr ""
|
226 |
|
458 |
msgid "Apply"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: polldaddy.php:1189
|
462 |
+
msgid "Poll"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: polldaddy.php:1190 polldaddy.php:1877 polldaddy.php:1922 polldaddy.php:3694
|
466 |
+
msgid "Votes"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: polldaddy.php:1191
|
470 |
+
msgid "Created"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
#: polldaddy.php:1237
|
474 |
msgid "Results"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: polldaddy.php:1249 polldaddy.php:1255 polldaddy.php:3251
|
478 |
msgid "Preview"
|
479 |
msgstr ""
|
480 |
|
524 |
msgid "Save Poll"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: polldaddy.php:1373 polldaddy.php:3935
|
528 |
msgid "Poll results"
|
529 |
msgstr ""
|
530 |
|
540 |
msgid "Hide all results"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: polldaddy.php:1396 polldaddy.php:3952
|
544 |
msgid "Block repeat voters"
|
545 |
msgstr ""
|
546 |
|
560 |
msgid "Expires: "
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: polldaddy.php:1418 polldaddy.php:3957
|
564 |
msgid "Never"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: polldaddy.php:1419 polldaddy.php:3958
|
568 |
#, php-format
|
569 |
msgid "%d hour"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: polldaddy.php:1420 polldaddy.php:1421 polldaddy.php:1422 polldaddy.php:3959
|
573 |
+
#: polldaddy.php:3960 polldaddy.php:3961
|
574 |
#, php-format
|
575 |
msgid "%d hours"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: polldaddy.php:1423 polldaddy.php:3962
|
579 |
#, php-format
|
580 |
msgid "%d day"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: polldaddy.php:1424 polldaddy.php:3963
|
584 |
#, php-format
|
585 |
msgid "%d week"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: polldaddy.php:1425 polldaddy.php:3964
|
589 |
#, php-format
|
590 |
msgid "%d month"
|
591 |
msgstr ""
|
650 |
msgid "Answer"
|
651 |
msgstr ""
|
652 |
|
|
|
|
|
|
|
|
|
653 |
#: polldaddy.php:1891
|
654 |
#, php-format
|
655 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: polldaddy.php:1921 polldaddy.php:3923
|
659 |
msgid "Other Answer"
|
660 |
msgstr ""
|
661 |
|
688 |
msgid "Save Style"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: polldaddy.php:3064
|
692 |
#, php-format
|
693 |
msgid ""
|
694 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
695 |
"href=\"%1$s\" %2$s>PollDaddy support</a> to fix this."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: polldaddy.php:3103
|
699 |
msgid "Rating Settings"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: polldaddy.php:3105
|
703 |
msgid "Rating updated"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: polldaddy.php:3117 polldaddy.php:3653
|
707 |
msgid "Posts"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: polldaddy.php:3121 polldaddy.php:3653
|
711 |
msgid "Pages"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: polldaddy.php:3125 polldaddy.php:3653
|
715 |
msgid "Comments"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: polldaddy.php:3136
|
719 |
msgid "Enable for blog posts"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: polldaddy.php:3140 polldaddy.php:3158
|
723 |
msgid "Above each blog post"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: polldaddy.php:3140 polldaddy.php:3158
|
727 |
msgid "Below each blog post"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: polldaddy.php:3154
|
731 |
msgid "Enable for front page"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: polldaddy.php:3174
|
735 |
msgid "Enable for pages"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: polldaddy.php:3178
|
739 |
msgid "Above each page"
|
740 |
msgstr ""
|
741 |
|
742 |
+
#: polldaddy.php:3178
|
743 |
msgid "Below each page"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: polldaddy.php:3194
|
747 |
msgid "Enable for comments"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: polldaddy.php:3198
|
751 |
msgid "Above each comment"
|
752 |
msgstr ""
|
753 |
|
754 |
+
#: polldaddy.php:3198
|
755 |
msgid "Below each comment"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: polldaddy.php:3213 polldaddy.php:3244
|
759 |
msgid "Save Changes"
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: polldaddy.php:3224
|
763 |
msgid "Advanced Settings"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: polldaddy.php:3237
|
767 |
msgid "Save"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: polldaddy.php:3253
|
771 |
msgid "This is a demo of what your rating widget will look like"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: polldaddy.php:3260
|
775 |
msgid "Customize Labels"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: polldaddy.php:3264
|
779 |
msgid "votes"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: polldaddy.php:3268
|
783 |
msgid "rate this"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: polldaddy.php:3272
|
787 |
#, php-format
|
788 |
msgid "%d star"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: polldaddy.php:3276 polldaddy.php:3280 polldaddy.php:3284 polldaddy.php:3288
|
792 |
#, php-format
|
793 |
msgid "%d stars"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: polldaddy.php:3292
|
797 |
msgid "Thank You"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: polldaddy.php:3296
|
801 |
msgid "Rate Up"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: polldaddy.php:3300
|
805 |
msgid "Rate Down"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: polldaddy.php:3309
|
809 |
msgid "Rating Type"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: polldaddy.php:3311
|
813 |
msgid ""
|
814 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
815 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: polldaddy.php:3319
|
819 |
#, php-format
|
820 |
msgid "%d Star Rating"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: polldaddy.php:3328
|
824 |
msgid "Nero Rating"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: polldaddy.php:3335
|
828 |
msgid "Rating Style"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: polldaddy.php:3342
|
832 |
msgid "Small"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: polldaddy.php:3342
|
836 |
msgid "Medium"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: polldaddy.php:3342
|
840 |
msgid "Large"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: polldaddy.php:3353
|
844 |
msgid "Star Color"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: polldaddy.php:3356
|
848 |
msgid "Yellow"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: polldaddy.php:3356
|
852 |
msgid "Red"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: polldaddy.php:3356
|
856 |
msgid "Blue"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: polldaddy.php:3356
|
860 |
msgid "Green"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: polldaddy.php:3356
|
864 |
msgid "Grey"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: polldaddy.php:3365
|
868 |
msgid "Hand"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: polldaddy.php:3376
|
872 |
msgid "Custom Image"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: polldaddy.php:3383
|
876 |
msgid "Text Layout & Font"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: polldaddy.php:3387
|
880 |
msgid "Align"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: polldaddy.php:3390
|
884 |
msgid "Left"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: polldaddy.php:3390
|
888 |
msgid "Center"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: polldaddy.php:3390 polldaddy.php:3404
|
892 |
msgid "Right"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: polldaddy.php:3401
|
896 |
msgid "Position"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: polldaddy.php:3404
|
900 |
msgid "Top"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: polldaddy.php:3404
|
904 |
msgid "Bottom"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: polldaddy.php:3415
|
908 |
msgid "Font"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: polldaddy.php:3418 polldaddy.php:3437 polldaddy.php:3451
|
912 |
msgid "Inherit"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: polldaddy.php:3429
|
916 |
msgid "Color"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: polldaddy.php:3434
|
920 |
msgid "Size"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: polldaddy.php:3448
|
924 |
msgid "Line Height"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: polldaddy.php:3462
|
928 |
msgid "Bold"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: polldaddy.php:3471
|
932 |
msgid "Italic"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: polldaddy.php:3640
|
936 |
msgid "«"
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: polldaddy.php:3641
|
940 |
msgid "»"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: polldaddy.php:3647
|
944 |
msgid "Rating Reports"
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: polldaddy.php:3662
|
948 |
msgid "View Report"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: polldaddy.php:3664
|
952 |
msgid "Last 24 hours"
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: polldaddy.php:3664
|
956 |
msgid "Last 7 days"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: polldaddy.php:3664
|
960 |
msgid "Last 31 days"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: polldaddy.php:3664
|
964 |
msgid "Last 3 months"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: polldaddy.php:3664
|
968 |
msgid "Last 12 months"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: polldaddy.php:3664
|
972 |
msgid "All time"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: polldaddy.php:3672
|
976 |
msgid "Filter Report"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: polldaddy.php:3686
|
980 |
#, php-format
|
981 |
msgid "No ratings have been collected for your %s yet."
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: polldaddy.php:3692
|
985 |
msgid "Start Date"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: polldaddy.php:3695
|
|
|
|
|
|
|
|
|
989 |
msgid "Average Rating"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: polldaddy.php:3856
|
993 |
msgid "PollDaddy Account Info"
|
994 |
msgstr ""
|
995 |
|
996 |
+
#: polldaddy.php:3859
|
997 |
msgid ""
|
998 |
"This is the PollDadddy account you currently have imported into your "
|
999 |
"WordPress account"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: polldaddy.php:3890
|
1003 |
msgid "Import Account"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: polldaddy.php:3896
|
1007 |
msgid "General Settings"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: polldaddy.php:3904
|
1011 |
msgid "Default poll settings"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: polldaddy.php:3913
|
1015 |
msgid "Multiple Choice"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: polldaddy.php:3918
|
1019 |
msgid "Randomise Answers"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: polldaddy.php:3928
|
1023 |
msgid "Sharing"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: polldaddy.php:3932
|
1027 |
msgid "Show"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: polldaddy.php:3933
|
1031 |
msgid "Hide"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: polldaddy.php:3934
|
1035 |
msgid "Percentages"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: polldaddy.php:3944
|
1039 |
msgid "Poll style"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: polldaddy.php:3949
|
1043 |
msgid "Off"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: polldaddy.php:3950
|
1047 |
msgid "Cookie"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: polldaddy.php:3951
|
1051 |
msgid "Cookie & IP address"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: polldaddy.php:3965
|
1055 |
msgid "Block expiration limit"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: polldaddy.php:3977
|
1059 |
msgid "Save Options"
|
1060 |
msgstr ""
|
1061 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mdawaffe, eoigal
|
|
3 |
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
Requires at least: 2.6
|
5 |
Tested up to: 2.9.1
|
6 |
-
Stable tag: 1.8.
|
7 |
|
8 |
Create and manage PollDaddy polls and ratings from within WordPress.
|
9 |
|
@@ -57,6 +57,10 @@ More info here - http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks
|
|
57 |
You need to select the synchronize ratings account in the Options menu to make sure the ratings API key is valid.
|
58 |
|
59 |
== Change Log ==
|
|
|
|
|
|
|
|
|
60 |
= 1.8.2 =
|
61 |
* Bug Fix: Rating were showing up on front page when posts ratings were enabled
|
62 |
* Added fields to options menu to set the rating id for posts/pages/comments
|
3 |
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
Requires at least: 2.6
|
5 |
Tested up to: 2.9.1
|
6 |
+
Stable tag: 1.8.3
|
7 |
|
8 |
Create and manage PollDaddy polls and ratings from within WordPress.
|
9 |
|
57 |
You need to select the synchronize ratings account in the Options menu to make sure the ratings API key is valid.
|
58 |
|
59 |
== Change Log ==
|
60 |
+
= 1.8.3 =
|
61 |
+
* Bug Fix: Use of WP_Widget caused fatal error in installations pre 2.8
|
62 |
+
* Added Localisation to Top Rated Widget.
|
63 |
+
|
64 |
= 1.8.2 =
|
65 |
* Bug Fix: Rating were showing up on front page when posts ratings were enabled
|
66 |
* Added fields to options menu to set the rating id for posts/pages/comments
|