Version Description
Bugfixes
=
Download this release
Release Info
Developer | donncha |
Plugin | Crowdsignal Dashboard – Polls, Surveys & more |
Version | 2.0.13 |
Comparing to | |
See all releases |
Code changes from version 2.0.12 to 2.0.13
- polldaddy-org.php +3 -3
- polldaddy.php +9 -9
- polldaddy.pot +382 -329
- popups.php +13 -13
- rating.php +4 -4
- readme.txt +13 -5
polldaddy-org.php
CHANGED
@@ -243,7 +243,7 @@ class WPORG_Polldaddy extends WP_Polldaddy {
|
|
243 |
|
244 |
<h2><?php _e( 'Polldaddy Account', 'polldaddy' ); ?></h2>
|
245 |
|
246 |
-
<p><?php printf( __('Before you can use the Polldaddy plugin, you need to enter your <a href="%s">Polldaddy.com</a> account details.' ), 'http://polldaddy.com/' ); ?></p>
|
247 |
|
248 |
<form action="" method="post">
|
249 |
<table class="form-table">
|
@@ -615,7 +615,7 @@ EOD;
|
|
615 |
$item_id = is_page() ? '_page_'.$post->ID : '_post_'.$post->ID;
|
616 |
|
617 |
if ( empty( $title ) )
|
618 |
-
$title = apply_filters( 'wp_title', $post->post_title );
|
619 |
|
620 |
if ( empty( $permalink ) )
|
621 |
$permalink = get_permalink( $post->ID );
|
@@ -750,7 +750,7 @@ if ( class_exists( 'WP_Widget' ) ) {
|
|
750 |
|
751 |
function PD_Top_Rated() {
|
752 |
|
753 |
-
$widget_ops = array( 'classname' => 'top_rated', 'description' => __( 'A list of your top rated posts, pages or comments.' ) );
|
754 |
$this->WP_Widget( 'PD_Top_Rated', 'Top Rated', $widget_ops );
|
755 |
}
|
756 |
|
243 |
|
244 |
<h2><?php _e( 'Polldaddy Account', 'polldaddy' ); ?></h2>
|
245 |
|
246 |
+
<p><?php printf( __( 'Before you can use the Polldaddy plugin, you need to enter your <a href="%s">Polldaddy.com</a> account details.', 'polldaddy' ), 'http://polldaddy.com/' ); ?></p>
|
247 |
|
248 |
<form action="" method="post">
|
249 |
<table class="form-table">
|
615 |
$item_id = is_page() ? '_page_'.$post->ID : '_post_'.$post->ID;
|
616 |
|
617 |
if ( empty( $title ) )
|
618 |
+
$title = apply_filters( 'wp_title', $post->post_title, '', '' );
|
619 |
|
620 |
if ( empty( $permalink ) )
|
621 |
$permalink = get_permalink( $post->ID );
|
750 |
|
751 |
function PD_Top_Rated() {
|
752 |
|
753 |
+
$widget_ops = array( 'classname' => 'top_rated', 'description' => __( 'A list of your top rated posts, pages or comments.', 'polldaddy' ) );
|
754 |
$this->WP_Widget( 'PD_Top_Rated', 'Top Rated', $widget_ops );
|
755 |
}
|
756 |
|
polldaddy.php
CHANGED
@@ -6,7 +6,7 @@ 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.
|
10 |
*/
|
11 |
|
12 |
// You can hardcode your Polldaddy PartnerGUID (API Key) here
|
@@ -1081,21 +1081,21 @@ class WP_Polldaddy {
|
|
1081 |
if ( 1 == $deleted )
|
1082 |
$message = __( 'Poll deleted.', 'polldaddy' );
|
1083 |
else
|
1084 |
-
$message = sprintf(
|
1085 |
break;
|
1086 |
case 'opened' :
|
1087 |
$opened = (int) $_GET['opened'];
|
1088 |
if ( 1 == $opened )
|
1089 |
$message = __( 'Poll opened.', 'polldaddy' );
|
1090 |
else
|
1091 |
-
$message = sprintf(
|
1092 |
break;
|
1093 |
case 'closed' :
|
1094 |
$closed = (int) $_GET['closed'];
|
1095 |
if ( 1 == $closed )
|
1096 |
$message = __( 'Poll closed.', 'polldaddy' );
|
1097 |
else
|
1098 |
-
$message = sprintf(
|
1099 |
break;
|
1100 |
case 'updated' :
|
1101 |
$message = __( 'Poll updated.', 'polldaddy' );
|
@@ -1116,7 +1116,7 @@ class WP_Polldaddy {
|
|
1116 |
if ( 1 == $deleted )
|
1117 |
$message = __( 'Custom Style deleted.', 'polldaddy' );
|
1118 |
else
|
1119 |
-
$message = sprintf(
|
1120 |
break;
|
1121 |
case 'imported-account' :
|
1122 |
$message = __( 'Account Imported.', 'polldaddy' );
|
@@ -1129,7 +1129,7 @@ class WP_Polldaddy {
|
|
1129 |
if ( 1 == $deleted )
|
1130 |
$message = __( 'Rating deleted.', 'polldaddy' );
|
1131 |
else
|
1132 |
-
$message = sprintf(
|
1133 |
break;
|
1134 |
}//end switch
|
1135 |
|
@@ -1458,7 +1458,7 @@ class WP_Polldaddy {
|
|
1458 |
<?php $this->poll_table_add_option( $poll_id ); ?>
|
1459 |
</div>
|
1460 |
</td>
|
1461 |
-
<td class="poll-votes column-vote num"><?php echo number_format_i18n( $poll->_responses ); ?><span class="votes-label"><?php _e( 'votes' ); ?></span></td>
|
1462 |
</tr>
|
1463 |
<tr class="polldaddy-shortcode-row <?php if ( $class ): ?> alternate <?php endif; ?>" style="display: none;">
|
1464 |
<td colspan="4" style="padding:10px 0px 10px 20px;">
|
@@ -1492,7 +1492,7 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
1492 |
<span style="font:9px;">(<a href="http://www.polldaddy.com">polls</a>)</span>
|
1493 |
</noscript></pre>
|
1494 |
<p class="submit" style="clear:both;padding:0px;">
|
1495 |
-
<a href="#" class="button pd-embed-done"><?php _e( 'Done' ); ?></a>
|
1496 |
</p>
|
1497 |
|
1498 |
</td>
|
@@ -4958,4 +4958,4 @@ require dirname( __FILE__ ).'/ajax.php';
|
|
4958 |
require dirname( __FILE__ ).'/popups.php';
|
4959 |
require dirname( __FILE__ ).'/polldaddy-org.php';
|
4960 |
|
4961 |
-
$GLOBALS[ 'wp_log_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.13
|
10 |
*/
|
11 |
|
12 |
// You can hardcode your Polldaddy PartnerGUID (API Key) here
|
1081 |
if ( 1 == $deleted )
|
1082 |
$message = __( 'Poll deleted.', 'polldaddy' );
|
1083 |
else
|
1084 |
+
$message = sprintf( _n( '%s Poll Deleted.', '%s Polls Deleted.', $deleted, 'polldaddy' ), number_format_i18n( $deleted ) );
|
1085 |
break;
|
1086 |
case 'opened' :
|
1087 |
$opened = (int) $_GET['opened'];
|
1088 |
if ( 1 == $opened )
|
1089 |
$message = __( 'Poll opened.', 'polldaddy' );
|
1090 |
else
|
1091 |
+
$message = sprintf( _n( '%s Poll Opened.', '%s Polls Opened.', $opened, 'polldaddy' ), number_format_i18n( $opened ) );
|
1092 |
break;
|
1093 |
case 'closed' :
|
1094 |
$closed = (int) $_GET['closed'];
|
1095 |
if ( 1 == $closed )
|
1096 |
$message = __( 'Poll closed.', 'polldaddy' );
|
1097 |
else
|
1098 |
+
$message = sprintf( _n( '%s Poll Closed.', '%s Polls Closed.', $closed, 'polldaddy' ), number_format_i18n( $closed ) );
|
1099 |
break;
|
1100 |
case 'updated' :
|
1101 |
$message = __( 'Poll updated.', 'polldaddy' );
|
1116 |
if ( 1 == $deleted )
|
1117 |
$message = __( 'Custom Style deleted.', 'polldaddy' );
|
1118 |
else
|
1119 |
+
$message = sprintf( _n( '%s Style Deleted.', '%s Custom Styles Deleted.', $deleted, 'polldaddy' ), number_format_i18n( $deleted ) );
|
1120 |
break;
|
1121 |
case 'imported-account' :
|
1122 |
$message = __( 'Account Imported.', 'polldaddy' );
|
1129 |
if ( 1 == $deleted )
|
1130 |
$message = __( 'Rating deleted.', 'polldaddy' );
|
1131 |
else
|
1132 |
+
$message = sprintf( _n( '%s Rating Deleted.', '%s Ratings Deleted.', $deleted, 'polldaddy' ), number_format_i18n( $deleted ) );
|
1133 |
break;
|
1134 |
}//end switch
|
1135 |
|
1458 |
<?php $this->poll_table_add_option( $poll_id ); ?>
|
1459 |
</div>
|
1460 |
</td>
|
1461 |
+
<td class="poll-votes column-vote num"><?php echo number_format_i18n( $poll->_responses ); ?><span class="votes-label"><?php _e( 'votes', 'polldaddy' ); ?></span></td>
|
1462 |
</tr>
|
1463 |
<tr class="polldaddy-shortcode-row <?php if ( $class ): ?> alternate <?php endif; ?>" style="display: none;">
|
1464 |
<td colspan="4" style="padding:10px 0px 10px 20px;">
|
1492 |
<span style="font:9px;">(<a href="http://www.polldaddy.com">polls</a>)</span>
|
1493 |
</noscript></pre>
|
1494 |
<p class="submit" style="clear:both;padding:0px;">
|
1495 |
+
<a href="#" class="button pd-embed-done"><?php _e( 'Done', 'polldaddy' ); ?></a>
|
1496 |
</p>
|
1497 |
|
1498 |
</td>
|
4958 |
require dirname( __FILE__ ).'/popups.php';
|
4959 |
require dirname( __FILE__ ).'/polldaddy-org.php';
|
4960 |
|
4961 |
+
$GLOBALS[ 'wp_log_plugins' ][] = 'polldaddy';
|
polldaddy.pot
CHANGED
@@ -1,138 +1,170 @@
|
|
1 |
-
#
|
2 |
-
# Copyright (C) 2010 Automattic, Inc.
|
3 |
# This file is distributed under the same license as the Polldaddy Polls & Ratings package.
|
4 |
msgid ""
|
5 |
msgstr ""
|
6 |
-
"Project-Id-Version: Polldaddy Polls & Ratings 2.0.
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
8 |
-
"POT-Creation-Date:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"PO-Revision-Date:
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
|
16 |
-
#: polldaddy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
msgid "Email address required"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: polldaddy-org.php:
|
21 |
msgid "Password required"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: polldaddy-org.php:
|
25 |
msgid "Could not connect to Polldaddy API Key service"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: polldaddy-org.php:
|
29 |
msgid "Can't connect to Polldaddy.com"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: polldaddy-org.php:
|
33 |
msgid ""
|
34 |
"Login to Polldaddy failed. Double check your email address and password."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: polldaddy-org.php:
|
38 |
msgid ""
|
39 |
"If your email address and password are correct, your host may not support "
|
40 |
"secure logins."
|
41 |
msgstr ""
|
42 |
|
43 |
-
#: polldaddy-org.php:
|
44 |
msgid ""
|
45 |
"In that case, you may be able to log in to Polldaddy by unchecking the \"Use "
|
46 |
"SSL to Log in\" checkbox."
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: polldaddy-org.php:
|
50 |
msgid ""
|
51 |
"Account could not be accessed. Are your email address and password correct?"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: polldaddy-org.php:
|
55 |
msgid "Polldaddy Account"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: polldaddy-org.php:
|
59 |
msgid ""
|
60 |
"Before you can use the Polldaddy plugin, you need to enter your <a href=\"%s"
|
61 |
"\">Polldaddy.com</a> account details."
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: polldaddy-org.php:
|
65 |
msgid "Polldaddy Email Address"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: polldaddy-org.php:
|
69 |
msgid "Polldaddy Password"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: polldaddy-org.php:
|
73 |
msgid "Use SSL to Log in"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: polldaddy-org.php:
|
77 |
msgid ""
|
78 |
"This ensures a secure login to your Polldaddy account. Only uncheck if you "
|
79 |
"are having problems logging in."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: polldaddy-org.php:
|
83 |
msgid "Submit"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: polldaddy-org.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
msgid "Multiple Polldaddy Accounts"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: polldaddy-org.php:
|
91 |
msgid "This setting will allow each blog user to import a Polldaddy account."
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: polldaddy-org.php:
|
95 |
msgid "Sync Ratings Account"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: polldaddy-org.php:
|
99 |
msgid "This will synchronize your ratings Polldaddy account."
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: polldaddy-org.php:
|
103 |
msgid "Ratings Title Filter"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: polldaddy-org.php:
|
107 |
msgid ""
|
108 |
"This setting allows you to specify a filter to use with your ratings title."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: polldaddy-org.php:
|
112 |
msgid "A list of your top rated posts, pages or comments."
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: polldaddy-org.php:
|
116 |
msgid "Top Rated"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: polldaddy-org.php:
|
120 |
msgid "Title"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: polldaddy-org.php:
|
124 |
msgid "Show for posts"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: polldaddy-org.php:
|
128 |
msgid "Show for pages"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: polldaddy-org.php:
|
132 |
msgid "Show for comments"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: polldaddy-org.php:
|
136 |
msgid "How many items would you like to display?"
|
137 |
msgstr ""
|
138 |
|
@@ -174,7 +206,7 @@ msgid "Add New"
|
|
174 |
msgstr ""
|
175 |
|
176 |
#: polldaddy.php:125 polldaddy.php:1235 polldaddy.php:1557 polldaddy.php:2090
|
177 |
-
#: polldaddy.php:2288 polldaddy.php:
|
178 |
msgid "Custom Styles"
|
179 |
msgstr ""
|
180 |
|
@@ -204,7 +236,7 @@ msgstr ""
|
|
204 |
msgid "Star Colors"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: polldaddy.php:397 polldaddy.php:
|
208 |
msgid "Star Size"
|
209 |
msgstr ""
|
210 |
|
@@ -409,16 +441,16 @@ msgstr ""
|
|
409 |
msgid "Polldaddy Polls "
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: polldaddy.php:1342 polldaddy.php:2503 polldaddy.php:
|
413 |
msgid "Actions"
|
414 |
msgstr ""
|
415 |
|
416 |
#: polldaddy.php:1343 polldaddy.php:1452 polldaddy.php:2504 polldaddy.php:2546
|
417 |
-
#: polldaddy.php:
|
418 |
msgid "Delete"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: polldaddy.php:1344 polldaddy.php:1444 polldaddy.php:
|
422 |
msgid "Close"
|
423 |
msgstr ""
|
424 |
|
@@ -426,7 +458,7 @@ msgstr ""
|
|
426 |
msgid "Open"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: polldaddy.php:1348 polldaddy.php:2506 polldaddy.php:
|
430 |
msgid "Apply"
|
431 |
msgstr ""
|
432 |
|
@@ -438,7 +470,7 @@ msgstr ""
|
|
438 |
msgid "This Blog's Polls"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: polldaddy.php:1356 polldaddy.php:
|
442 |
msgid "Filter"
|
443 |
msgstr ""
|
444 |
|
@@ -446,7 +478,7 @@ msgstr ""
|
|
446 |
msgid "Poll"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: polldaddy.php:1420 polldaddy.php:2549 polldaddy.php:
|
450 |
msgid "Y/m/d g:i:s A"
|
451 |
msgstr ""
|
452 |
|
@@ -466,7 +498,7 @@ msgstr ""
|
|
466 |
msgid "Embed & Link"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: polldaddy.php:1447 polldaddy.php:1449 polldaddy.php:
|
470 |
msgid "Preview"
|
471 |
msgstr ""
|
472 |
|
@@ -518,8 +550,8 @@ msgstr ""
|
|
518 |
msgid "No one has created any polls for this blog via our fancy plugin!"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: polldaddy.php:1552 polldaddy.php:2278 polldaddy.php:
|
522 |
-
#: polldaddy.php:
|
523 |
msgid "Are you sure you want to delete the rating for \"%s\"?"
|
524 |
msgstr ""
|
525 |
|
@@ -527,22 +559,22 @@ msgstr ""
|
|
527 |
msgid "Are you sure you want to delete the poll %s?"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: polldaddy.php:1554 polldaddy.php:2280 polldaddy.php:
|
531 |
-
#: polldaddy.php:
|
532 |
msgid "Are you sure you want to delete this answer?"
|
533 |
msgstr ""
|
534 |
|
535 |
#: polldaddy.php:1555 polldaddy.php:1924 polldaddy.php:1964 polldaddy.php:2282
|
536 |
-
#: polldaddy.php:
|
537 |
msgid "delete this answer"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: polldaddy.php:1556 polldaddy.php:2287 polldaddy.php:
|
541 |
-
#: polldaddy.php:
|
542 |
msgid "Standard Styles"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: polldaddy.php:1678 polldaddy.php:
|
546 |
msgid "Save"
|
547 |
msgstr ""
|
548 |
|
@@ -574,7 +606,7 @@ msgstr ""
|
|
574 |
msgid "Save Poll"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: polldaddy.php:1758 polldaddy.php:
|
578 |
msgid "Results Display"
|
579 |
msgstr ""
|
580 |
|
@@ -590,7 +622,7 @@ msgstr ""
|
|
590 |
msgid "Hide all results"
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: polldaddy.php:1781 polldaddy.php:
|
594 |
msgid "Repeat Voting"
|
595 |
msgstr ""
|
596 |
|
@@ -610,28 +642,28 @@ msgstr ""
|
|
610 |
msgid "Expires: "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: polldaddy.php:1803 polldaddy.php:
|
614 |
msgid "Never"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: polldaddy.php:1804 polldaddy.php:
|
618 |
msgid "%d hour"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: polldaddy.php:1805 polldaddy.php:1806 polldaddy.php:1807 polldaddy.php:
|
622 |
-
#: polldaddy.php:
|
623 |
msgid "%d hours"
|
624 |
msgstr ""
|
625 |
|
626 |
-
#: polldaddy.php:1808 polldaddy.php:
|
627 |
msgid "%d day"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: polldaddy.php:1809 polldaddy.php:
|
631 |
msgid "%d week"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: polldaddy.php:1810 polldaddy.php:
|
635 |
msgid "%d month"
|
636 |
msgstr ""
|
637 |
|
@@ -640,7 +672,7 @@ msgid ""
|
|
640 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: polldaddy.php:1817 polldaddy.php:
|
644 |
msgid "Comments"
|
645 |
msgstr ""
|
646 |
|
@@ -660,21 +692,6 @@ msgstr ""
|
|
660 |
msgid "Enter Question Here"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: polldaddy.php:1861 polldaddy.php:1920 polldaddy.php:1960 polldaddy.php:2284
|
664 |
-
#: ajax.php:89
|
665 |
-
msgid "Add an Image"
|
666 |
-
msgstr ""
|
667 |
-
|
668 |
-
#: polldaddy.php:1862 polldaddy.php:1921 polldaddy.php:1961 polldaddy.php:2285
|
669 |
-
#: ajax.php:90
|
670 |
-
msgid "Add Audio"
|
671 |
-
msgstr ""
|
672 |
-
|
673 |
-
#: polldaddy.php:1863 polldaddy.php:1922 polldaddy.php:1962 polldaddy.php:2286
|
674 |
-
#: ajax.php:91
|
675 |
-
msgid "Add Video"
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
#: polldaddy.php:1877
|
679 |
msgid "WordPress Shortcode:"
|
680 |
msgstr ""
|
@@ -683,247 +700,239 @@ msgstr ""
|
|
683 |
msgid "Embed Poll in New Post"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: polldaddy.php:1888 polldaddy.php:
|
687 |
msgid "Answers"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: polldaddy.php:1906 polldaddy.php:1950 polldaddy.php:2283 ajax.php:72
|
691 |
-
msgid "click and drag to reorder"
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
-
#: polldaddy.php:1909 polldaddy.php:1953 polldaddy.php:2281 ajax.php:75
|
695 |
-
msgid "Enter an answer here"
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
#: polldaddy.php:1989
|
699 |
msgid "Add New Answer"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: polldaddy.php:2004 polldaddy.php:
|
703 |
msgid "Aluminum Narrow"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: polldaddy.php:2005 polldaddy.php:
|
707 |
msgid "Aluminum Medium"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: polldaddy.php:2006 polldaddy.php:
|
711 |
msgid "Aluminum Wide"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: polldaddy.php:2007 polldaddy.php:
|
715 |
msgid "Plain White Narrow"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: polldaddy.php:2008 polldaddy.php:
|
719 |
msgid "Plain White Medium"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: polldaddy.php:2009 polldaddy.php:
|
723 |
msgid "Plain White Wide"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: polldaddy.php:2010 polldaddy.php:
|
727 |
msgid "Plain Black Narrow"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: polldaddy.php:2011 polldaddy.php:
|
731 |
msgid "Plain Black Medium"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: polldaddy.php:2012 polldaddy.php:
|
735 |
msgid "Plain Black Wide"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: polldaddy.php:2013 polldaddy.php:
|
739 |
msgid "Paper Narrow"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: polldaddy.php:2014 polldaddy.php:
|
743 |
msgid "Paper Medium"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: polldaddy.php:2015 polldaddy.php:
|
747 |
msgid "Paper Wide"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: polldaddy.php:2016 polldaddy.php:
|
751 |
msgid "Skull Dark Narrow"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: polldaddy.php:2017 polldaddy.php:
|
755 |
msgid "Skull Dark Medium"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: polldaddy.php:2018 polldaddy.php:
|
759 |
msgid "Skull Dark Wide"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: polldaddy.php:2019 polldaddy.php:
|
763 |
msgid "Skull Light Narrow"
|
764 |
msgstr ""
|
765 |
|
766 |
-
#: polldaddy.php:2020 polldaddy.php:
|
767 |
msgid "Skull Light Medium"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: polldaddy.php:2021 polldaddy.php:
|
771 |
msgid "Skull Light Wide"
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: polldaddy.php:2022 polldaddy.php:2318 polldaddy.php:
|
775 |
msgid "Micro"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: polldaddy.php:2023 polldaddy.php:
|
779 |
msgid "Plastic White Narrow"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: polldaddy.php:2024 polldaddy.php:
|
783 |
msgid "Plastic White Medium"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: polldaddy.php:2025 polldaddy.php:
|
787 |
msgid "Plastic White Wide"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: polldaddy.php:2026 polldaddy.php:
|
791 |
msgid "Plastic Grey Narrow"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: polldaddy.php:2027 polldaddy.php:
|
795 |
msgid "Plastic Grey Medium"
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: polldaddy.php:2028 polldaddy.php:
|
799 |
msgid "Plastic Grey Wide"
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: polldaddy.php:2029 polldaddy.php:
|
803 |
msgid "Plastic Black Narrow"
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: polldaddy.php:2030 polldaddy.php:
|
807 |
msgid "Plastic Black Medium"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: polldaddy.php:2031 polldaddy.php:
|
811 |
msgid "Plastic Black Wide"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: polldaddy.php:2032 polldaddy.php:
|
815 |
msgid "Manga Narrow"
|
816 |
msgstr ""
|
817 |
|
818 |
-
#: polldaddy.php:2033 polldaddy.php:
|
819 |
msgid "Manga Medium"
|
820 |
msgstr ""
|
821 |
|
822 |
-
#: polldaddy.php:2034 polldaddy.php:
|
823 |
msgid "Manga Wide"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: polldaddy.php:2035 polldaddy.php:
|
827 |
msgid "Tech Dark Narrow"
|
828 |
msgstr ""
|
829 |
|
830 |
-
#: polldaddy.php:2036 polldaddy.php:
|
831 |
msgid "Tech Dark Medium"
|
832 |
msgstr ""
|
833 |
|
834 |
-
#: polldaddy.php:2037 polldaddy.php:
|
835 |
msgid "Tech Dark Wide"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: polldaddy.php:2038 polldaddy.php:
|
839 |
msgid "Tech Grey Narrow"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: polldaddy.php:2039 polldaddy.php:
|
843 |
msgid "Tech Grey Medium"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: polldaddy.php:2040 polldaddy.php:
|
847 |
msgid "Tech Grey Wide"
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: polldaddy.php:2041 polldaddy.php:
|
851 |
msgid "Tech Light Narrow"
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: polldaddy.php:2042 polldaddy.php:
|
855 |
msgid "Tech Light Medium"
|
856 |
msgstr ""
|
857 |
|
858 |
-
#: polldaddy.php:2043 polldaddy.php:
|
859 |
msgid "Tech Light Wide"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: polldaddy.php:2044 polldaddy.php:
|
863 |
msgid "Working Male Narrow"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: polldaddy.php:2045 polldaddy.php:
|
867 |
msgid "Working Male Medium"
|
868 |
msgstr ""
|
869 |
|
870 |
-
#: polldaddy.php:2046 polldaddy.php:
|
871 |
msgid "Working Male Wide"
|
872 |
msgstr ""
|
873 |
|
874 |
-
#: polldaddy.php:2047 polldaddy.php:
|
875 |
msgid "Working Female Narrow"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: polldaddy.php:2048 polldaddy.php:
|
879 |
msgid "Working Female Medium"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: polldaddy.php:2049 polldaddy.php:
|
883 |
msgid "Working Female Wide"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: polldaddy.php:2050 polldaddy.php:
|
887 |
msgid "Thinking Male Narrow"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: polldaddy.php:2051 polldaddy.php:
|
891 |
msgid "Thinking Male Medium"
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: polldaddy.php:2052 polldaddy.php:
|
895 |
msgid "Thinking Male Wide"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: polldaddy.php:2053 polldaddy.php:
|
899 |
msgid "Thinking Female Narrow"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#: polldaddy.php:2054 polldaddy.php:
|
903 |
msgid "Thinking Female Medium"
|
904 |
msgstr ""
|
905 |
|
906 |
-
#: polldaddy.php:2055 polldaddy.php:
|
907 |
msgid "Thinking Female Wide"
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: polldaddy.php:2056 polldaddy.php:
|
911 |
msgid "Sunset Narrow"
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: polldaddy.php:2057 polldaddy.php:
|
915 |
msgid "Sunset Medium"
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: polldaddy.php:2058 polldaddy.php:
|
919 |
msgid "Sunset Wide"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: polldaddy.php:2059 polldaddy.php:
|
923 |
msgid "Music Medium"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: polldaddy.php:2060 polldaddy.php:
|
927 |
msgid "Music Wide"
|
928 |
msgstr ""
|
929 |
|
@@ -961,31 +970,31 @@ msgid ""
|
|
961 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: polldaddy.php:2279 polldaddy.php:
|
965 |
msgid "Are you sure you want to delete \"%s\"?"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: polldaddy.php:2300 polldaddy.php:
|
969 |
msgid "Aluminum"
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: polldaddy.php:2303 polldaddy.php:
|
973 |
msgid "Plain White"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: polldaddy.php:2306 polldaddy.php:
|
977 |
msgid "Plain Black"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: polldaddy.php:2309 polldaddy.php:
|
981 |
msgid "Paper"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: polldaddy.php:2312 polldaddy.php:
|
985 |
msgid "Skull Dark"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: polldaddy.php:2315 polldaddy.php:
|
989 |
msgid "Skull Light"
|
990 |
msgstr ""
|
991 |
|
@@ -1049,7 +1058,7 @@ msgstr ""
|
|
1049 |
msgid "Wide"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: polldaddy.php:2364 polldaddy.php:
|
1053 |
msgid "Medium"
|
1054 |
msgstr ""
|
1055 |
|
@@ -1073,7 +1082,7 @@ msgstr ""
|
|
1073 |
msgid "Answer"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: polldaddy.php:2403 polldaddy.php:2452 polldaddy.php:
|
1077 |
msgid "Votes"
|
1078 |
msgstr ""
|
1079 |
|
@@ -1085,11 +1094,11 @@ msgstr ""
|
|
1085 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: polldaddy.php:2451 polldaddy.php:
|
1089 |
msgid "Other Answer"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: polldaddy.php:2516 polldaddy.php:
|
1093 |
msgid "Style"
|
1094 |
msgstr ""
|
1095 |
|
@@ -1109,697 +1118,741 @@ msgstr ""
|
|
1109 |
msgid "Create a Custom Style Now"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: polldaddy.php:
|
1113 |
msgid "Style Name"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: polldaddy.php:
|
1117 |
msgid "Preload Basic Style"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: polldaddy.php:
|
1121 |
msgid "Load Style"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1125 |
msgid "Style Editor"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: polldaddy.php:
|
1129 |
msgid "Select a template part to edit:"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: polldaddy.php:
|
1133 |
msgid "Poll Box"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: polldaddy.php:
|
1137 |
msgid "Question"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: polldaddy.php:
|
1141 |
msgid "Answer Group"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: polldaddy.php:
|
1145 |
msgid "Answer Check"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: polldaddy.php:
|
1149 |
msgid "Other Input"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: polldaddy.php:
|
1153 |
msgid "Vote Button"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: polldaddy.php:
|
1157 |
msgid "Links"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: polldaddy.php:
|
1161 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: polldaddy.php:
|
1165 |
-
msgid "
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
1169 |
msgid "Total Votes"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: polldaddy.php:
|
1173 |
msgid "Font"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: polldaddy.php:
|
1177 |
msgid "Background"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: polldaddy.php:
|
1181 |
msgid "Border"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: polldaddy.php:
|
1185 |
msgid "Margin"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: polldaddy.php:
|
1189 |
msgid "Padding"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: polldaddy.php:
|
1193 |
msgid "Width"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: polldaddy.php:
|
1197 |
msgid "Height"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
1201 |
msgid "Font Size"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: polldaddy.php:
|
1205 |
msgid "Color"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: polldaddy.php:
|
1209 |
msgid "Bold"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: polldaddy.php:
|
1213 |
msgid "Italic"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: polldaddy.php:
|
1217 |
msgid "Underline"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: polldaddy.php:
|
1221 |
msgid "Line Height"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: polldaddy.php:
|
1225 |
msgid "Align"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: polldaddy.php:
|
1229 |
msgid "Left"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: polldaddy.php:
|
1233 |
msgid "Center"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: polldaddy.php:
|
1237 |
-
#: polldaddy.php:
|
1238 |
msgid "Right"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: polldaddy.php:
|
1242 |
msgid "Image URL"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: polldaddy.php:
|
1246 |
msgid "Click here for more information"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: polldaddy.php:
|
1250 |
msgid "Image Repeat"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: polldaddy.php:
|
1254 |
msgid "repeat"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: polldaddy.php:
|
1258 |
msgid "no-repeat"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: polldaddy.php:
|
1262 |
msgid "repeat-x"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: polldaddy.php:
|
1266 |
msgid "repeat-y"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: polldaddy.php:
|
1270 |
msgid "Image Position"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: polldaddy.php:
|
1274 |
msgid "left top"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: polldaddy.php:
|
1278 |
msgid "left center"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: polldaddy.php:
|
1282 |
msgid "left bottom"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: polldaddy.php:
|
1286 |
msgid "center top"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: polldaddy.php:
|
1290 |
msgid "center center"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: polldaddy.php:
|
1294 |
msgid "center bottom"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: polldaddy.php:
|
1298 |
msgid "right top"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: polldaddy.php:
|
1302 |
msgid "right center"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: polldaddy.php:
|
1306 |
msgid "right bottom"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: polldaddy.php:
|
1310 |
msgid "none"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: polldaddy.php:
|
1314 |
msgid "solid"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: polldaddy.php:
|
1318 |
msgid "dotted"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: polldaddy.php:
|
1322 |
msgid "dashed"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: polldaddy.php:
|
1326 |
msgid "double"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: polldaddy.php:
|
1330 |
msgid "groove"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
-
#: polldaddy.php:
|
1334 |
msgid "inset"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
-
#: polldaddy.php:
|
1338 |
msgid "outset"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#: polldaddy.php:
|
1342 |
msgid "ridge"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: polldaddy.php:
|
1346 |
msgid "hidden"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: polldaddy.php:
|
1350 |
msgid "Rounded Corners"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: polldaddy.php:
|
1354 |
msgid "Not supported in Internet Explorer."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: polldaddy.php:
|
1358 |
msgid "Top"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: polldaddy.php:
|
1362 |
msgid "Bottom"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: polldaddy.php:
|
1366 |
msgid ""
|
1367 |
"If you change the width of the<br/> poll you may also need to change<br/> "
|
1368 |
"the width of your answers."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: polldaddy.php:
|
1372 |
msgid "Do you mostly use the internet at work, in school or at home?"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: polldaddy.php:
|
1376 |
msgid "I use it in school."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: polldaddy.php:
|
1380 |
msgid "I use it at home."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: polldaddy.php:
|
1384 |
msgid ""
|
1385 |
"I use it every where I go, at work and home and anywhere else that I can!"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: polldaddy.php:
|
1389 |
msgid "Other"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: polldaddy.php:
|
1393 |
msgid "Vote"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: polldaddy.php:
|
1397 |
msgid "View Results"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: polldaddy.php:
|
1401 |
msgid "I use it in school!"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: polldaddy.php:
|
1405 |
msgid "(%d votes)"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: polldaddy.php:
|
1409 |
msgid "Return To Poll"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: polldaddy.php:
|
1413 |
msgid "Save Style"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: polldaddy.php:
|
1417 |
msgid "Check this box if you wish to update the polls that use this style."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: polldaddy.php:
|
1421 |
msgid "Thank you for voting!"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#: polldaddy.php:
|
1425 |
msgid ""
|
1426 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
1427 |
"href=\"%1$s\" %2$s>Polldaddy support</a> to fix this."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: polldaddy.php:
|
1431 |
msgid "Ratings Setup"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
-
#: polldaddy.php:
|
1435 |
msgid "Rating updated"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: polldaddy.php:
|
1439 |
msgid "Posts"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: polldaddy.php:
|
1443 |
msgid "Pages"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: polldaddy.php:
|
1447 |
msgid "Enable for blog posts"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: polldaddy.php:
|
1451 |
msgid "Above each blog post"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: polldaddy.php:
|
1455 |
msgid "Below each blog post"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: polldaddy.php:
|
1459 |
msgid "Enable for front page"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: polldaddy.php:
|
1463 |
msgid "Enable for pages"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: polldaddy.php:
|
1467 |
msgid "Above each page"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: polldaddy.php:
|
1471 |
msgid "Below each page"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: polldaddy.php:
|
1475 |
msgid "Enable for comments"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: polldaddy.php:
|
1479 |
msgid "Above each comment"
|
1480 |
msgstr ""
|
1481 |
|
1482 |
-
#: polldaddy.php:
|
1483 |
msgid "Below each comment"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: polldaddy.php:
|
1487 |
msgid "Save Changes"
|
1488 |
msgstr ""
|
1489 |
|
1490 |
-
#: polldaddy.php:
|
1491 |
msgid "Advanced Settings"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: polldaddy.php:
|
1495 |
msgid "This is a demo of what your rating widget will look like"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: polldaddy.php:
|
1499 |
msgid "Customize Labels"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#: polldaddy.php:
|
1503 |
msgid "Rate This"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: polldaddy.php:
|
1507 |
msgid "%d star"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: polldaddy.php:
|
1511 |
msgid "%d stars"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: polldaddy.php:
|
1515 |
msgid "Thank You"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: polldaddy.php:
|
1519 |
msgid "Rate Up"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: polldaddy.php:
|
1523 |
msgid "Rate Down"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: polldaddy.php:
|
1527 |
msgid "Most Popular Content"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: polldaddy.php:
|
1531 |
msgid "All"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: polldaddy.php:
|
1535 |
msgid "Today"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: polldaddy.php:
|
1539 |
msgid "This Week"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: polldaddy.php:
|
1543 |
msgid "This Month"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: polldaddy.php:
|
1547 |
msgid "Rated"
|
1548 |
msgstr ""
|
1549 |
|
1550 |
-
#: polldaddy.php:
|
1551 |
msgid "There are no rated items for this period"
|
1552 |
msgstr ""
|
1553 |
|
1554 |
-
#: polldaddy.php:
|
1555 |
msgid "Rating Type"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
-
#: polldaddy.php:
|
1559 |
msgid ""
|
1560 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
1561 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#: polldaddy.php:
|
1565 |
msgid "%d Star Rating"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#: polldaddy.php:
|
1569 |
msgid "Nero Rating"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#: polldaddy.php:
|
1573 |
msgid "Rating Style"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#: polldaddy.php:
|
1577 |
msgid "Small"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#: polldaddy.php:
|
1581 |
msgid "Large"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#: polldaddy.php:
|
1585 |
msgid "Star Color"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#: polldaddy.php:
|
1589 |
msgid "Yellow"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: polldaddy.php:
|
1593 |
msgid "Red"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: polldaddy.php:
|
1597 |
msgid "Blue"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: polldaddy.php:
|
1601 |
msgid "Green"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: polldaddy.php:
|
1605 |
msgid "Grey"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: polldaddy.php:
|
1609 |
msgid "Hand"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#: polldaddy.php:
|
1613 |
msgid "Custom Image"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: polldaddy.php:
|
1617 |
msgid "Text Layout & Font"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#: polldaddy.php:
|
1621 |
-
msgid "Position"
|
1622 |
-
msgstr ""
|
1623 |
-
|
1624 |
-
#: polldaddy.php:4065 polldaddy.php:4084 polldaddy.php:4098
|
1625 |
msgid "Inherit"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: polldaddy.php:
|
1629 |
msgid "Size"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: polldaddy.php:
|
1633 |
msgid "Extra Settings"
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#: polldaddy.php:
|
1637 |
msgid "Results Popup"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: polldaddy.php:
|
1641 |
msgid "Uncheck this box to disable the results popup"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: polldaddy.php:
|
1645 |
msgid "Rating ID"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#: polldaddy.php:
|
1649 |
msgid "This is the rating ID used in posts"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#: polldaddy.php:
|
1653 |
msgid "Exclude Posts"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: polldaddy.php:
|
1657 |
msgid ""
|
1658 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
1659 |
"comma-delimited list, eg. 1,2,3"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: polldaddy.php:
|
1663 |
msgid "This is the rating ID used in pages"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
-
#: polldaddy.php:
|
1667 |
msgid "Exclude Pages"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: polldaddy.php:
|
1671 |
msgid ""
|
1672 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
1673 |
"comma-delimited list, eg. 1,2,3"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#: polldaddy.php:
|
1677 |
msgid "This is the rating ID used in comments"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#: polldaddy.php:
|
1681 |
msgid "«"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: polldaddy.php:
|
1685 |
msgid "»"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: polldaddy.php:
|
1689 |
msgid "Rating Reports"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: polldaddy.php:
|
1693 |
msgid "Last 24 hours"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#: polldaddy.php:
|
1697 |
msgid "Last 7 days"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
-
#: polldaddy.php:
|
1701 |
msgid "Last 31 days"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: polldaddy.php:
|
1705 |
msgid "Last 3 months"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: polldaddy.php:
|
1709 |
msgid "Last 12 months"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: polldaddy.php:
|
1713 |
msgid "All time"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1717 |
msgid "No ratings have been collected for your %s yet."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#: polldaddy.php:
|
1721 |
msgid "Unique ID"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
-
#: polldaddy.php:
|
1725 |
msgid "Start Date"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
-
#: polldaddy.php:
|
1729 |
msgid "Average Rating"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: polldaddy.php:
|
1733 |
msgid "Options"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#: polldaddy.php:
|
1737 |
msgid "Polldaddy Account Info"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: polldaddy.php:
|
1741 |
msgid ""
|
1742 |
-
"This is the
|
1743 |
"WordPress account"
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#: polldaddy.php:
|
1747 |
msgid "Import Account"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: polldaddy.php:
|
1751 |
msgid "General Settings"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: polldaddy.php:
|
1755 |
msgid "Default poll settings"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#: polldaddy.php:
|
1759 |
msgid "Multiple Choice"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#: polldaddy.php:
|
1763 |
msgid "Randomise Answers"
|
1764 |
msgstr ""
|
1765 |
|
1766 |
-
#: polldaddy.php:
|
1767 |
msgid "Sharing"
|
1768 |
msgstr ""
|
1769 |
|
1770 |
-
#: polldaddy.php:
|
1771 |
msgid "Show"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: polldaddy.php:
|
1775 |
msgid "Hide"
|
1776 |
msgstr ""
|
1777 |
|
1778 |
-
#: polldaddy.php:
|
1779 |
msgid "Percentages"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: polldaddy.php:
|
1783 |
msgid "Poll style"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#: polldaddy.php:
|
1787 |
msgid "Off"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
-
#: polldaddy.php:
|
1791 |
msgid "Cookie"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#: polldaddy.php:
|
1795 |
msgid "Cookie & IP address"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: polldaddy.php:
|
1799 |
msgid "Block expiration limit"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: polldaddy.php:
|
1803 |
msgid "Save Options"
|
1804 |
msgstr ""
|
1805 |
|
1 |
+
# Copyright (C) 2012 Polldaddy Polls & Ratings
|
|
|
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.12\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
7 |
+
"POT-Creation-Date: 2012-02-23 13:04:32+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2012-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
+
#: ajax.php:72 polldaddy.php:1906 polldaddy.php:1950 polldaddy.php:2283
|
16 |
+
msgid "click and drag to reorder"
|
17 |
+
msgstr ""
|
18 |
+
|
19 |
+
#: ajax.php:75 polldaddy.php:1909 polldaddy.php:1953 polldaddy.php:2281
|
20 |
+
msgid "Enter an answer here"
|
21 |
+
msgstr ""
|
22 |
+
|
23 |
+
#: ajax.php:89 polldaddy.php:1861 polldaddy.php:1920 polldaddy.php:1960
|
24 |
+
#: polldaddy.php:2284
|
25 |
+
msgid "Add an Image"
|
26 |
+
msgstr ""
|
27 |
+
|
28 |
+
#: ajax.php:90 polldaddy.php:1862 polldaddy.php:1921 polldaddy.php:1961
|
29 |
+
#: polldaddy.php:2285
|
30 |
+
msgid "Add Audio"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: ajax.php:91 polldaddy.php:1863 polldaddy.php:1922 polldaddy.php:1962
|
34 |
+
#: polldaddy.php:2286
|
35 |
+
msgid "Add Video"
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: polldaddy-org.php:133 polldaddy.php:157 polldaddy.php:1051
|
39 |
msgid "Email address required"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: polldaddy-org.php:136 polldaddy.php:160 polldaddy.php:1054
|
43 |
msgid "Password required"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: polldaddy-org.php:169
|
47 |
msgid "Could not connect to Polldaddy API Key service"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: polldaddy-org.php:184 polldaddy.php:190
|
51 |
msgid "Can't connect to Polldaddy.com"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: polldaddy-org.php:215
|
55 |
msgid ""
|
56 |
"Login to Polldaddy failed. Double check your email address and password."
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: polldaddy-org.php:217
|
60 |
msgid ""
|
61 |
"If your email address and password are correct, your host may not support "
|
62 |
"secure logins."
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: polldaddy-org.php:218
|
66 |
msgid ""
|
67 |
"In that case, you may be able to log in to Polldaddy by unchecking the \"Use "
|
68 |
"SSL to Log in\" checkbox."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: polldaddy-org.php:230 polldaddy.php:227
|
72 |
msgid ""
|
73 |
"Account could not be accessed. Are your email address and password correct?"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: polldaddy-org.php:244
|
77 |
msgid "Polldaddy Account"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: polldaddy-org.php:246 polldaddy.php:279
|
81 |
msgid ""
|
82 |
"Before you can use the Polldaddy plugin, you need to enter your <a href=\"%s"
|
83 |
"\">Polldaddy.com</a> account details."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: polldaddy-org.php:253 polldaddy.php:286 polldaddy.php:4787
|
87 |
msgid "Polldaddy Email Address"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: polldaddy-org.php:261 polldaddy.php:294 polldaddy.php:4797
|
91 |
msgid "Polldaddy Password"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: polldaddy-org.php:274
|
95 |
msgid "Use SSL to Log in"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: polldaddy-org.php:278
|
99 |
msgid ""
|
100 |
"This ensures a secure login to your Polldaddy account. Only uncheck if you "
|
101 |
"are having problems logging in."
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: polldaddy-org.php:288 polldaddy.php:306
|
105 |
msgid "Submit"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: polldaddy-org.php:314
|
109 |
+
msgid "Load Shortcodes Inline"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: polldaddy-org.php:320
|
113 |
+
msgid ""
|
114 |
+
"This will load the Polldaddy shortcodes inline rather than in the page "
|
115 |
+
"footer."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: polldaddy-org.php:326
|
119 |
msgid "Multiple Polldaddy Accounts"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: polldaddy-org.php:332
|
123 |
msgid "This setting will allow each blog user to import a Polldaddy account."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: polldaddy-org.php:339
|
127 |
msgid "Sync Ratings Account"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: polldaddy-org.php:345
|
131 |
msgid "This will synchronize your ratings Polldaddy account."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: polldaddy-org.php:352
|
135 |
msgid "Ratings Title Filter"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: polldaddy-org.php:358
|
139 |
msgid ""
|
140 |
"This setting allows you to specify a filter to use with your ratings title."
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: polldaddy-org.php:753
|
144 |
msgid "A list of your top rated posts, pages or comments."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: polldaddy-org.php:761
|
148 |
msgid "Top Rated"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: polldaddy-org.php:800 polldaddy.php:4595
|
152 |
msgid "Title"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: polldaddy-org.php:809
|
156 |
msgid "Show for posts"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: polldaddy-org.php:820
|
160 |
msgid "Show for pages"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: polldaddy-org.php:831
|
164 |
msgid "Show for comments"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: polldaddy-org.php:835
|
168 |
msgid "How many items would you like to display?"
|
169 |
msgstr ""
|
170 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: polldaddy.php:125 polldaddy.php:1235 polldaddy.php:1557 polldaddy.php:2090
|
209 |
+
#: polldaddy.php:2288 polldaddy.php:3534 polldaddy.php:4277 polldaddy.php:4678
|
210 |
msgid "Custom Styles"
|
211 |
msgstr ""
|
212 |
|
236 |
msgid "Star Colors"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: polldaddy.php:397 polldaddy.php:4043
|
240 |
msgid "Star Size"
|
241 |
msgstr ""
|
242 |
|
441 |
msgid "Polldaddy Polls "
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: polldaddy.php:1342 polldaddy.php:2503 polldaddy.php:4544
|
445 |
msgid "Actions"
|
446 |
msgstr ""
|
447 |
|
448 |
#: polldaddy.php:1343 polldaddy.php:1452 polldaddy.php:2504 polldaddy.php:2546
|
449 |
+
#: polldaddy.php:4545 polldaddy.php:4615
|
450 |
msgid "Delete"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: polldaddy.php:1344 polldaddy.php:1444 polldaddy.php:3966
|
454 |
msgid "Close"
|
455 |
msgstr ""
|
456 |
|
458 |
msgid "Open"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: polldaddy.php:1348 polldaddy.php:2506 polldaddy.php:4548
|
462 |
msgid "Apply"
|
463 |
msgstr ""
|
464 |
|
470 |
msgid "This Blog's Polls"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: polldaddy.php:1356 polldaddy.php:4568
|
474 |
msgid "Filter"
|
475 |
msgstr ""
|
476 |
|
478 |
msgid "Poll"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: polldaddy.php:1420 polldaddy.php:2549 polldaddy.php:4623
|
482 |
msgid "Y/m/d g:i:s A"
|
483 |
msgstr ""
|
484 |
|
498 |
msgid "Embed & Link"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: polldaddy.php:1447 polldaddy.php:1449 polldaddy.php:3881
|
502 |
msgid "Preview"
|
503 |
msgstr ""
|
504 |
|
550 |
msgid "No one has created any polls for this blog via our fancy plugin!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: polldaddy.php:1552 polldaddy.php:2278 polldaddy.php:3529 polldaddy.php:4272
|
554 |
+
#: polldaddy.php:4673
|
555 |
msgid "Are you sure you want to delete the rating for \"%s\"?"
|
556 |
msgstr ""
|
557 |
|
559 |
msgid "Are you sure you want to delete the poll %s?"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: polldaddy.php:1554 polldaddy.php:2280 polldaddy.php:3531 polldaddy.php:4274
|
563 |
+
#: polldaddy.php:4675
|
564 |
msgid "Are you sure you want to delete this answer?"
|
565 |
msgstr ""
|
566 |
|
567 |
#: polldaddy.php:1555 polldaddy.php:1924 polldaddy.php:1964 polldaddy.php:2282
|
568 |
+
#: polldaddy.php:3532 polldaddy.php:4275 polldaddy.php:4676
|
569 |
msgid "delete this answer"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: polldaddy.php:1556 polldaddy.php:2287 polldaddy.php:3533 polldaddy.php:4276
|
573 |
+
#: polldaddy.php:4677
|
574 |
msgid "Standard Styles"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: polldaddy.php:1678 polldaddy.php:3867
|
578 |
msgid "Save"
|
579 |
msgstr ""
|
580 |
|
606 |
msgid "Save Poll"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: polldaddy.php:1758 polldaddy.php:4852
|
610 |
msgid "Results Display"
|
611 |
msgstr ""
|
612 |
|
622 |
msgid "Hide all results"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: polldaddy.php:1781 polldaddy.php:4874
|
626 |
msgid "Repeat Voting"
|
627 |
msgstr ""
|
628 |
|
642 |
msgid "Expires: "
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: polldaddy.php:1803 polldaddy.php:4888
|
646 |
msgid "Never"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: polldaddy.php:1804 polldaddy.php:4889
|
650 |
msgid "%d hour"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: polldaddy.php:1805 polldaddy.php:1806 polldaddy.php:1807 polldaddy.php:4890
|
654 |
+
#: polldaddy.php:4891 polldaddy.php:4892
|
655 |
msgid "%d hours"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: polldaddy.php:1808 polldaddy.php:4893
|
659 |
msgid "%d day"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: polldaddy.php:1809 polldaddy.php:4894
|
663 |
msgid "%d week"
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: polldaddy.php:1810 polldaddy.php:4895
|
667 |
msgid "%d month"
|
668 |
msgstr ""
|
669 |
|
672 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: polldaddy.php:1817 polldaddy.php:3494 polldaddy.php:3755 polldaddy.php:4551
|
676 |
msgid "Comments"
|
677 |
msgstr ""
|
678 |
|
692 |
msgid "Enter Question Here"
|
693 |
msgstr ""
|
694 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
#: polldaddy.php:1877
|
696 |
msgid "WordPress Shortcode:"
|
697 |
msgstr ""
|
700 |
msgid "Embed Poll in New Post"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: polldaddy.php:1888 polldaddy.php:2695
|
704 |
msgid "Answers"
|
705 |
msgstr ""
|
706 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
707 |
#: polldaddy.php:1989
|
708 |
msgid "Add New Answer"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: polldaddy.php:2004 polldaddy.php:4699
|
712 |
msgid "Aluminum Narrow"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: polldaddy.php:2005 polldaddy.php:4700
|
716 |
msgid "Aluminum Medium"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: polldaddy.php:2006 polldaddy.php:4701
|
720 |
msgid "Aluminum Wide"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: polldaddy.php:2007 polldaddy.php:4702
|
724 |
msgid "Plain White Narrow"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: polldaddy.php:2008 polldaddy.php:4703
|
728 |
msgid "Plain White Medium"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: polldaddy.php:2009 polldaddy.php:4704
|
732 |
msgid "Plain White Wide"
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: polldaddy.php:2010 polldaddy.php:4705
|
736 |
msgid "Plain Black Narrow"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: polldaddy.php:2011 polldaddy.php:4706
|
740 |
msgid "Plain Black Medium"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: polldaddy.php:2012 polldaddy.php:4707
|
744 |
msgid "Plain Black Wide"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: polldaddy.php:2013 polldaddy.php:4708
|
748 |
msgid "Paper Narrow"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: polldaddy.php:2014 polldaddy.php:4709
|
752 |
msgid "Paper Medium"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: polldaddy.php:2015 polldaddy.php:4710
|
756 |
msgid "Paper Wide"
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: polldaddy.php:2016 polldaddy.php:4711
|
760 |
msgid "Skull Dark Narrow"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: polldaddy.php:2017 polldaddy.php:4712
|
764 |
msgid "Skull Dark Medium"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: polldaddy.php:2018 polldaddy.php:4713
|
768 |
msgid "Skull Dark Wide"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: polldaddy.php:2019 polldaddy.php:4714
|
772 |
msgid "Skull Light Narrow"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: polldaddy.php:2020 polldaddy.php:4715
|
776 |
msgid "Skull Light Medium"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: polldaddy.php:2021 polldaddy.php:4716
|
780 |
msgid "Skull Light Wide"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: polldaddy.php:2022 polldaddy.php:2318 polldaddy.php:2665 polldaddy.php:4717
|
784 |
msgid "Micro"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: polldaddy.php:2023 polldaddy.php:4718
|
788 |
msgid "Plastic White Narrow"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: polldaddy.php:2024 polldaddy.php:4719
|
792 |
msgid "Plastic White Medium"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: polldaddy.php:2025 polldaddy.php:4720
|
796 |
msgid "Plastic White Wide"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: polldaddy.php:2026 polldaddy.php:4721
|
800 |
msgid "Plastic Grey Narrow"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: polldaddy.php:2027 polldaddy.php:4722
|
804 |
msgid "Plastic Grey Medium"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: polldaddy.php:2028 polldaddy.php:4723
|
808 |
msgid "Plastic Grey Wide"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: polldaddy.php:2029 polldaddy.php:4724
|
812 |
msgid "Plastic Black Narrow"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: polldaddy.php:2030 polldaddy.php:4725
|
816 |
msgid "Plastic Black Medium"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: polldaddy.php:2031 polldaddy.php:4726
|
820 |
msgid "Plastic Black Wide"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: polldaddy.php:2032 polldaddy.php:4727
|
824 |
msgid "Manga Narrow"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: polldaddy.php:2033 polldaddy.php:4728
|
828 |
msgid "Manga Medium"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: polldaddy.php:2034 polldaddy.php:4729
|
832 |
msgid "Manga Wide"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: polldaddy.php:2035 polldaddy.php:4730
|
836 |
msgid "Tech Dark Narrow"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: polldaddy.php:2036 polldaddy.php:4731
|
840 |
msgid "Tech Dark Medium"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: polldaddy.php:2037 polldaddy.php:4732
|
844 |
msgid "Tech Dark Wide"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: polldaddy.php:2038 polldaddy.php:4733
|
848 |
msgid "Tech Grey Narrow"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: polldaddy.php:2039 polldaddy.php:4734
|
852 |
msgid "Tech Grey Medium"
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: polldaddy.php:2040 polldaddy.php:4735
|
856 |
msgid "Tech Grey Wide"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: polldaddy.php:2041 polldaddy.php:4736
|
860 |
msgid "Tech Light Narrow"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: polldaddy.php:2042 polldaddy.php:4737
|
864 |
msgid "Tech Light Medium"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: polldaddy.php:2043 polldaddy.php:4738
|
868 |
msgid "Tech Light Wide"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: polldaddy.php:2044 polldaddy.php:4739
|
872 |
msgid "Working Male Narrow"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: polldaddy.php:2045 polldaddy.php:4740
|
876 |
msgid "Working Male Medium"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: polldaddy.php:2046 polldaddy.php:4741
|
880 |
msgid "Working Male Wide"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: polldaddy.php:2047 polldaddy.php:4742
|
884 |
msgid "Working Female Narrow"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: polldaddy.php:2048 polldaddy.php:4743
|
888 |
msgid "Working Female Medium"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: polldaddy.php:2049 polldaddy.php:4744
|
892 |
msgid "Working Female Wide"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: polldaddy.php:2050 polldaddy.php:4745
|
896 |
msgid "Thinking Male Narrow"
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: polldaddy.php:2051 polldaddy.php:4746
|
900 |
msgid "Thinking Male Medium"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: polldaddy.php:2052 polldaddy.php:4747
|
904 |
msgid "Thinking Male Wide"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: polldaddy.php:2053 polldaddy.php:4748
|
908 |
msgid "Thinking Female Narrow"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: polldaddy.php:2054 polldaddy.php:4749
|
912 |
msgid "Thinking Female Medium"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: polldaddy.php:2055 polldaddy.php:4750
|
916 |
msgid "Thinking Female Wide"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: polldaddy.php:2056 polldaddy.php:4751
|
920 |
msgid "Sunset Narrow"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: polldaddy.php:2057 polldaddy.php:4752
|
924 |
msgid "Sunset Medium"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: polldaddy.php:2058 polldaddy.php:4753
|
928 |
msgid "Sunset Wide"
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: polldaddy.php:2059 polldaddy.php:4754
|
932 |
msgid "Music Medium"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: polldaddy.php:2060 polldaddy.php:4755
|
936 |
msgid "Music Wide"
|
937 |
msgstr ""
|
938 |
|
970 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: polldaddy.php:2279 polldaddy.php:3530 polldaddy.php:4273 polldaddy.php:4674
|
974 |
msgid "Are you sure you want to delete \"%s\"?"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: polldaddy.php:2300 polldaddy.php:2659
|
978 |
msgid "Aluminum"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: polldaddy.php:2303 polldaddy.php:2660
|
982 |
msgid "Plain White"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: polldaddy.php:2306 polldaddy.php:2661
|
986 |
msgid "Plain Black"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: polldaddy.php:2309 polldaddy.php:2662
|
990 |
msgid "Paper"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: polldaddy.php:2312 polldaddy.php:2663
|
994 |
msgid "Skull Dark"
|
995 |
msgstr ""
|
996 |
|
997 |
+
#: polldaddy.php:2315 polldaddy.php:2664
|
998 |
msgid "Skull Light"
|
999 |
msgstr ""
|
1000 |
|
1058 |
msgid "Wide"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: polldaddy.php:2364 polldaddy.php:4046
|
1062 |
msgid "Medium"
|
1063 |
msgstr ""
|
1064 |
|
1082 |
msgid "Answer"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: polldaddy.php:2403 polldaddy.php:2452 polldaddy.php:3900 polldaddy.php:4598
|
1086 |
msgid "Votes"
|
1087 |
msgstr ""
|
1088 |
|
1094 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: polldaddy.php:2451 polldaddy.php:4843
|
1098 |
msgid "Other Answer"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: polldaddy.php:2516 polldaddy.php:2932
|
1102 |
msgid "Style"
|
1103 |
msgstr ""
|
1104 |
|
1118 |
msgid "Create a Custom Style Now"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: polldaddy.php:2641
|
1122 |
msgid "Style Name"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: polldaddy.php:2653
|
1126 |
msgid "Preload Basic Style"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: polldaddy.php:2667
|
1130 |
msgid "Load Style"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: polldaddy.php:2673
|
1134 |
+
msgid "Text Direction"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: polldaddy.php:2677
|
1138 |
+
msgid "Force RTL"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: polldaddy.php:2678
|
1142 |
+
msgid "Force LTR"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: polldaddy.php:2684
|
1146 |
msgid "Style Editor"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: polldaddy.php:2688
|
1150 |
msgid "Select a template part to edit:"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: polldaddy.php:2691
|
1154 |
msgid "Poll Box"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: polldaddy.php:2692
|
1158 |
msgid "Question"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: polldaddy.php:2693
|
1162 |
msgid "Answer Group"
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: polldaddy.php:2694
|
1166 |
msgid "Answer Check"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: polldaddy.php:2696
|
1170 |
msgid "Other Input"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: polldaddy.php:2697
|
1174 |
msgid "Vote Button"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: polldaddy.php:2698
|
1178 |
msgid "Links"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: polldaddy.php:2699
|
1182 |
+
msgid "Feedback Group"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: polldaddy.php:2700
|
1186 |
+
msgid "Results Group"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: polldaddy.php:2701
|
1190 |
+
msgid "Results Percent"
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: polldaddy.php:2702
|
1194 |
+
msgid "Results Votes"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: polldaddy.php:2703
|
1198 |
+
msgid "Results Text"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: polldaddy.php:2704
|
1202 |
+
msgid "Results Background"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: polldaddy.php:2705
|
1206 |
+
msgid "Results Bar"
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: polldaddy.php:2706 polldaddy.php:3488
|
1210 |
msgid "Total Votes"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: polldaddy.php:2722 polldaddy.php:4119
|
1214 |
msgid "Font"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: polldaddy.php:2725
|
1218 |
msgid "Background"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: polldaddy.php:2728
|
1222 |
msgid "Border"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: polldaddy.php:2731
|
1226 |
msgid "Margin"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: polldaddy.php:2734
|
1230 |
msgid "Padding"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: polldaddy.php:2737 polldaddy.php:2894 polldaddy.php:3308
|
1234 |
msgid "Width"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: polldaddy.php:2740 polldaddy.php:3324
|
1238 |
msgid "Height"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: polldaddy.php:2743 polldaddy.php:3333 polldaddy.php:4105
|
1242 |
+
msgid "Position"
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: polldaddy.php:2756 polldaddy.php:2778
|
1246 |
msgid "Font Size"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: polldaddy.php:2793 polldaddy.php:2852 polldaddy.php:2949 polldaddy.php:4133
|
1250 |
msgid "Color"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
+
#: polldaddy.php:2799 polldaddy.php:4166
|
1254 |
msgid "Bold"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: polldaddy.php:2805 polldaddy.php:4175
|
1258 |
msgid "Italic"
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: polldaddy.php:2811
|
1262 |
msgid "Underline"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: polldaddy.php:2817 polldaddy.php:4152
|
1266 |
msgid "Line Height"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: polldaddy.php:2839 polldaddy.php:4091
|
1270 |
msgid "Align"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: polldaddy.php:2842 polldaddy.php:3112 polldaddy.php:3267 polldaddy.php:4094
|
1274 |
msgid "Left"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: polldaddy.php:2843 polldaddy.php:4094
|
1278 |
msgid "Center"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: polldaddy.php:2844 polldaddy.php:3036 polldaddy.php:3191 polldaddy.php:4094
|
1282 |
+
#: polldaddy.php:4108
|
1283 |
msgid "Right"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: polldaddy.php:2858 popups.php:58
|
1287 |
msgid "Image URL"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: polldaddy.php:2858 polldaddy.php:3308
|
1291 |
msgid "Click here for more information"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: polldaddy.php:2864
|
1295 |
msgid "Image Repeat"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: polldaddy.php:2867
|
1299 |
msgid "repeat"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: polldaddy.php:2868
|
1303 |
msgid "no-repeat"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: polldaddy.php:2869
|
1307 |
msgid "repeat-x"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: polldaddy.php:2870
|
1311 |
msgid "repeat-y"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
+
#: polldaddy.php:2875
|
1315 |
msgid "Image Position"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: polldaddy.php:2878
|
1319 |
msgid "left top"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: polldaddy.php:2879
|
1323 |
msgid "left center"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: polldaddy.php:2880
|
1327 |
msgid "left bottom"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: polldaddy.php:2881
|
1331 |
msgid "center top"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: polldaddy.php:2882
|
1335 |
msgid "center center"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: polldaddy.php:2883
|
1339 |
msgid "center bottom"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: polldaddy.php:2884
|
1343 |
msgid "right top"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: polldaddy.php:2885
|
1347 |
msgid "right center"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: polldaddy.php:2886
|
1351 |
msgid "right bottom"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: polldaddy.php:2935
|
1355 |
msgid "none"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: polldaddy.php:2936
|
1359 |
msgid "solid"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: polldaddy.php:2937
|
1363 |
msgid "dotted"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: polldaddy.php:2938
|
1367 |
msgid "dashed"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: polldaddy.php:2939
|
1371 |
msgid "double"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: polldaddy.php:2940
|
1375 |
msgid "groove"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: polldaddy.php:2941
|
1379 |
msgid "inset"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: polldaddy.php:2942
|
1383 |
msgid "outset"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: polldaddy.php:2943
|
1387 |
msgid "ridge"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: polldaddy.php:2944
|
1391 |
msgid "hidden"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: polldaddy.php:2955
|
1395 |
msgid "Rounded Corners"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: polldaddy.php:2991
|
1399 |
msgid "Not supported in Internet Explorer."
|
1400 |
msgstr ""
|
1401 |
|
1402 |
+
#: polldaddy.php:2998 polldaddy.php:3153 polldaddy.php:4108
|
1403 |
msgid "Top"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: polldaddy.php:3074 polldaddy.php:3229 polldaddy.php:4108
|
1407 |
msgid "Bottom"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: polldaddy.php:3316
|
1411 |
msgid ""
|
1412 |
"If you change the width of the<br/> poll you may also need to change<br/> "
|
1413 |
"the width of your answers."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: polldaddy.php:3365 polldaddy.php:3539
|
1417 |
msgid "Do you mostly use the internet at work, in school or at home?"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: polldaddy.php:3378
|
1421 |
msgid "I use it in school."
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: polldaddy.php:3386 polldaddy.php:3444
|
1425 |
msgid "I use it at home."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: polldaddy.php:3394 polldaddy.php:3458
|
1429 |
msgid ""
|
1430 |
"I use it every where I go, at work and home and anywhere else that I can!"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: polldaddy.php:3402 polldaddy.php:3472
|
1434 |
msgid "Other"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: polldaddy.php:3414 polldaddy.php:3894
|
1438 |
msgid "Vote"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: polldaddy.php:3416
|
1442 |
msgid "View Results"
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: polldaddy.php:3430
|
1446 |
msgid "I use it in school!"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: polldaddy.php:3432 polldaddy.php:3446 polldaddy.php:3460 polldaddy.php:3474
|
1450 |
msgid "(%d votes)"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: polldaddy.php:3496
|
1454 |
msgid "Return To Poll"
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: polldaddy.php:3517
|
1458 |
msgid "Save Style"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: polldaddy.php:3519
|
1462 |
msgid "Check this box if you wish to update the polls that use this style."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: polldaddy.php:3538
|
1466 |
msgid "Thank you for voting!"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: polldaddy.php:3630
|
1470 |
msgid ""
|
1471 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
1472 |
"href=\"%1$s\" %2$s>Polldaddy support</a> to fix this."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: polldaddy.php:3733
|
1476 |
msgid "Ratings Setup"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: polldaddy.php:3735
|
1480 |
msgid "Rating updated"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: polldaddy.php:3747 polldaddy.php:4551
|
1484 |
msgid "Posts"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: polldaddy.php:3751 polldaddy.php:4551
|
1488 |
msgid "Pages"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: polldaddy.php:3766
|
1492 |
msgid "Enable for blog posts"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: polldaddy.php:3770 polldaddy.php:3788
|
1496 |
msgid "Above each blog post"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: polldaddy.php:3770 polldaddy.php:3788
|
1500 |
msgid "Below each blog post"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: polldaddy.php:3784
|
1504 |
msgid "Enable for front page"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: polldaddy.php:3804
|
1508 |
msgid "Enable for pages"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: polldaddy.php:3808
|
1512 |
msgid "Above each page"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: polldaddy.php:3808
|
1516 |
msgid "Below each page"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: polldaddy.php:3824
|
1520 |
msgid "Enable for comments"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: polldaddy.php:3828
|
1524 |
msgid "Above each comment"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: polldaddy.php:3828
|
1528 |
msgid "Below each comment"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: polldaddy.php:3843 polldaddy.php:3874
|
1532 |
msgid "Save Changes"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: polldaddy.php:3854
|
1536 |
msgid "Advanced Settings"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: polldaddy.php:3883
|
1540 |
msgid "This is a demo of what your rating widget will look like"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: polldaddy.php:3890
|
1544 |
msgid "Customize Labels"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: polldaddy.php:3906
|
1548 |
msgid "Rate This"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: polldaddy.php:3912
|
1552 |
msgid "%d star"
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: polldaddy.php:3918 polldaddy.php:3924 polldaddy.php:3930 polldaddy.php:3936
|
1556 |
msgid "%d stars"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: polldaddy.php:3942
|
1560 |
msgid "Thank You"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: polldaddy.php:3948
|
1564 |
msgid "Rate Up"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: polldaddy.php:3954
|
1568 |
msgid "Rate Down"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: polldaddy.php:3960
|
1572 |
msgid "Most Popular Content"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: polldaddy.php:3972
|
1576 |
msgid "All"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: polldaddy.php:3978
|
1580 |
msgid "Today"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: polldaddy.php:3984
|
1584 |
msgid "This Week"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: polldaddy.php:3990
|
1588 |
msgid "This Month"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: polldaddy.php:3996
|
1592 |
msgid "Rated"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: polldaddy.php:4002
|
1596 |
msgid "There are no rated items for this period"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: polldaddy.php:4013
|
1600 |
msgid "Rating Type"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: polldaddy.php:4015
|
1604 |
msgid ""
|
1605 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
1606 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: polldaddy.php:4023
|
1610 |
msgid "%d Star Rating"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: polldaddy.php:4032
|
1614 |
msgid "Nero Rating"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: polldaddy.php:4039
|
1618 |
msgid "Rating Style"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: polldaddy.php:4046
|
1622 |
msgid "Small"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: polldaddy.php:4046
|
1626 |
msgid "Large"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: polldaddy.php:4057
|
1630 |
msgid "Star Color"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: polldaddy.php:4060
|
1634 |
msgid "Yellow"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: polldaddy.php:4060
|
1638 |
msgid "Red"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: polldaddy.php:4060
|
1642 |
msgid "Blue"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: polldaddy.php:4060
|
1646 |
msgid "Green"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
+
#: polldaddy.php:4060
|
1650 |
msgid "Grey"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: polldaddy.php:4069
|
1654 |
msgid "Hand"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: polldaddy.php:4080
|
1658 |
msgid "Custom Image"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: polldaddy.php:4087
|
1662 |
msgid "Text Layout & Font"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: polldaddy.php:4122 polldaddy.php:4141 polldaddy.php:4155
|
|
|
|
|
|
|
|
|
1666 |
msgid "Inherit"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: polldaddy.php:4138
|
1670 |
msgid "Size"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: polldaddy.php:4187
|
1674 |
msgid "Extra Settings"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: polldaddy.php:4191
|
1678 |
msgid "Results Popup"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: polldaddy.php:4197
|
1682 |
msgid "Uncheck this box to disable the results popup"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: polldaddy.php:4204 polldaddy.php:4228 polldaddy.php:4251
|
1686 |
msgid "Rating ID"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: polldaddy.php:4210
|
1690 |
msgid "This is the rating ID used in posts"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
+
#: polldaddy.php:4215
|
1694 |
msgid "Exclude Posts"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: polldaddy.php:4221
|
1698 |
msgid ""
|
1699 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
1700 |
"comma-delimited list, eg. 1,2,3"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: polldaddy.php:4234
|
1704 |
msgid "This is the rating ID used in pages"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: polldaddy.php:4239
|
1708 |
msgid "Exclude Pages"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: polldaddy.php:4245
|
1712 |
msgid ""
|
1713 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
1714 |
"comma-delimited list, eg. 1,2,3"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: polldaddy.php:4257
|
1718 |
msgid "This is the rating ID used in comments"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
+
#: polldaddy.php:4531
|
1722 |
msgid "«"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
+
#: polldaddy.php:4532
|
1726 |
msgid "»"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: polldaddy.php:4538
|
1730 |
msgid "Rating Reports"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
+
#: polldaddy.php:4560
|
1734 |
msgid "Last 24 hours"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
+
#: polldaddy.php:4560
|
1738 |
msgid "Last 7 days"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: polldaddy.php:4560
|
1742 |
msgid "Last 31 days"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: polldaddy.php:4560
|
1746 |
msgid "Last 3 months"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
+
#: polldaddy.php:4560
|
1750 |
msgid "Last 12 months"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: polldaddy.php:4560
|
1754 |
msgid "All time"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: polldaddy.php:4570
|
1758 |
+
msgid "* The results are cached and are updated every hour"
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: polldaddy.php:4572
|
1762 |
+
msgid "* The results are cached and are updated every day"
|
1763 |
+
msgstr ""
|
1764 |
+
|
1765 |
+
#: polldaddy.php:4574
|
1766 |
+
msgid "* The results are cached and are updated every 3 days"
|
1767 |
+
msgstr ""
|
1768 |
+
|
1769 |
+
#: polldaddy.php:4588
|
1770 |
msgid "No ratings have been collected for your %s yet."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: polldaddy.php:4596
|
1774 |
msgid "Unique ID"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: polldaddy.php:4597
|
1778 |
msgid "Start Date"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: polldaddy.php:4599
|
1782 |
msgid "Average Rating"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: polldaddy.php:4772
|
1786 |
msgid "Options"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: polldaddy.php:4776
|
1790 |
msgid "Polldaddy Account Info"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: polldaddy.php:4779
|
1794 |
msgid ""
|
1795 |
+
"This is the Polldaddy account you currently have imported into your "
|
1796 |
"WordPress account"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: polldaddy.php:4810
|
1800 |
msgid "Import Account"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: polldaddy.php:4816
|
1804 |
msgid "General Settings"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: polldaddy.php:4824
|
1808 |
msgid "Default poll settings"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: polldaddy.php:4833
|
1812 |
msgid "Multiple Choice"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: polldaddy.php:4838
|
1816 |
msgid "Randomise Answers"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: polldaddy.php:4848
|
1820 |
msgid "Sharing"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: polldaddy.php:4854
|
1824 |
msgid "Show"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: polldaddy.php:4855
|
1828 |
msgid "Hide"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: polldaddy.php:4856
|
1832 |
msgid "Percentages"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: polldaddy.php:4862
|
1836 |
msgid "Poll style"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: polldaddy.php:4876
|
1840 |
msgid "Off"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: polldaddy.php:4877
|
1844 |
msgid "Cookie"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: polldaddy.php:4878
|
1848 |
msgid "Cookie & IP address"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: polldaddy.php:4884
|
1852 |
msgid "Block expiration limit"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: polldaddy.php:4909
|
1856 |
msgid "Save Options"
|
1857 |
msgstr ""
|
1858 |
|
popups.php
CHANGED
@@ -4,25 +4,25 @@ function pd_video_shortcodes_help($video_form) {
|
|
4 |
<table class="describe"><tbody>
|
5 |
<tr>
|
6 |
<th valign="top" scope="row" class="label">
|
7 |
-
<span class="alignleft"><label for="insertonly[href]">' . __('URL') . '</label></span>
|
8 |
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
|
9 |
</th>
|
10 |
<td class="field"><input type="text" id="insertonly[href]" name="insertonly[href]" value="" /></td>
|
11 |
</tr>
|
12 |
<tr>
|
13 |
<td colspan="2">
|
14 |
-
<p>' . __('Paste your YouTube or Google Video URL above, or use the examples below.') . '</p>
|
15 |
<ul class="short-code-list">
|
16 |
-
<li>' . sprintf( __('<a href="%s" target="_blank">YouTube instructions</a> %s'), 'http://support.wordpress.com/videos/youtube/', '<code>[youtube=http://www.youtube.com/watch?v=cXXm696UbKY]</code>' ) .'</li>
|
17 |
-
<li>' . sprintf( __('<a href="%s" target="_blank">Google instructions</a> %s') , 'http://support.wordpress.com/videos/google-video/', '<code>[googlevideo=http://video.google.com/googleplayer.swf?docId=-8459301055248673864]</code>' ) . '</li>
|
18 |
-
<li>' . sprintf( __('<a href="%s" target="_blank">DailyMotion instructions</a> %s'), 'http://support.wordpress.com/videos/dailymotion/', '<code>[dailymotion id=5zYRy1JLhuGlP3BGw]</code>' ) . '</li>
|
19 |
</ul>
|
20 |
</td>
|
21 |
</tr>
|
22 |
<tr>
|
23 |
<td></td>
|
24 |
<td>
|
25 |
-
<input type="submit" class="button" name="insertonlybutton" value="' . esc_attr( __('Insert into Poll') ) . '" />
|
26 |
</td>
|
27 |
</tr>
|
28 |
</tbody></table>
|
@@ -34,7 +34,7 @@ function pd_audio_shortcodes_help($audio_form) {
|
|
34 |
<table class="describe"><tbody>
|
35 |
<tr>
|
36 |
<th valign="top" scope="row" class="label">
|
37 |
-
<span class="alignleft"><label for="insertonly[href]">' . __('Audio File URL') . '</label></span>
|
38 |
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
|
39 |
</th>
|
40 |
<td class="field"><input id="insertonly[href]" name="insertonly[href]" value="" type="text" aria-required="true"></td>
|
@@ -42,7 +42,7 @@ function pd_audio_shortcodes_help($audio_form) {
|
|
42 |
<tr>
|
43 |
<td></td>
|
44 |
<td>
|
45 |
-
<input type="submit" class="button" name="insertonlybutton" value="' . esc_attr( __('Insert into Poll') ) . '" />
|
46 |
</td>
|
47 |
</tr>
|
48 |
</tbody></table>
|
@@ -51,11 +51,11 @@ function pd_audio_shortcodes_help($audio_form) {
|
|
51 |
|
52 |
function pd_image_shortcodes_help($image_form) {
|
53 |
return '
|
54 |
-
<h4 class="media-sub-title">' . __('Insert an image from another web site') . '</h4>
|
55 |
<table class="describe"><tbody>
|
56 |
<tr>
|
57 |
<th valign="top" scope="row" class="label" style="width:130px;">
|
58 |
-
<span class="alignleft"><label for="src">' . __('Image URL') . '</label></span>
|
59 |
<span class="alignright"><abbr id="status_img" title="required" class="required">*</abbr></span>
|
60 |
</th>
|
61 |
<td class="field"><input id="src" name="src" value="" type="text" aria-required="true" onblur="addExtImage.getImageData()" /></td>
|
@@ -63,7 +63,7 @@ function pd_image_shortcodes_help($image_form) {
|
|
63 |
|
64 |
<tr>
|
65 |
<th valign="top" scope="row" class="label">
|
66 |
-
<span class="alignleft"><label for="title">' . __('Image Title') . '</label></span>
|
67 |
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
|
68 |
</th>
|
69 |
<td class="field"><input id="alt" name="alt" value="" type="hidden" /><input id="url" name="url" value="" type="hidden" /><input id="caption" name="caption" value="" type="hidden" /><input id="title" name="title" value="" type="text" aria-required="true" /></td>
|
@@ -71,7 +71,7 @@ function pd_image_shortcodes_help($image_form) {
|
|
71 |
<tr>
|
72 |
<td></td>
|
73 |
<td>
|
74 |
-
<input type="button" value="' . esc_attr( __('Insert into Poll') ) . '" onclick="addExtImage.insert()" style="color: rgb(187, 187, 187);" id="go_button" class="button">
|
75 |
</td>
|
76 |
</tr>
|
77 |
</tbody></table>
|
@@ -87,4 +87,4 @@ function polldaddy_popups_init() {
|
|
87 |
}
|
88 |
|
89 |
add_action( 'admin_init', 'polldaddy_popups_init' );
|
90 |
-
?>
|
4 |
<table class="describe"><tbody>
|
5 |
<tr>
|
6 |
<th valign="top" scope="row" class="label">
|
7 |
+
<span class="alignleft"><label for="insertonly[href]">' . __('URL', 'polldaddy') . '</label></span>
|
8 |
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
|
9 |
</th>
|
10 |
<td class="field"><input type="text" id="insertonly[href]" name="insertonly[href]" value="" /></td>
|
11 |
</tr>
|
12 |
<tr>
|
13 |
<td colspan="2">
|
14 |
+
<p>' . __('Paste your YouTube or Google Video URL above, or use the examples below.', 'polldaddy') . '</p>
|
15 |
<ul class="short-code-list">
|
16 |
+
<li>' . sprintf( __('<a href="%s" target="_blank">YouTube instructions</a> %s', 'polldaddy'), 'http://support.wordpress.com/videos/youtube/', '<code>[youtube=http://www.youtube.com/watch?v=cXXm696UbKY]</code>' ) .'</li>
|
17 |
+
<li>' . sprintf( __('<a href="%s" target="_blank">Google instructions</a> %s', 'polldaddy') , 'http://support.wordpress.com/videos/google-video/', '<code>[googlevideo=http://video.google.com/googleplayer.swf?docId=-8459301055248673864]</code>' ) . '</li>
|
18 |
+
<li>' . sprintf( __('<a href="%s" target="_blank">DailyMotion instructions</a> %s', 'polldaddy'), 'http://support.wordpress.com/videos/dailymotion/', '<code>[dailymotion id=5zYRy1JLhuGlP3BGw]</code>' ) . '</li>
|
19 |
</ul>
|
20 |
</td>
|
21 |
</tr>
|
22 |
<tr>
|
23 |
<td></td>
|
24 |
<td>
|
25 |
+
<input type="submit" class="button" name="insertonlybutton" value="' . esc_attr( __('Insert into Poll', 'polldaddy') ) . '" />
|
26 |
</td>
|
27 |
</tr>
|
28 |
</tbody></table>
|
34 |
<table class="describe"><tbody>
|
35 |
<tr>
|
36 |
<th valign="top" scope="row" class="label">
|
37 |
+
<span class="alignleft"><label for="insertonly[href]">' . __('Audio File URL', 'polldaddy') . '</label></span>
|
38 |
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
|
39 |
</th>
|
40 |
<td class="field"><input id="insertonly[href]" name="insertonly[href]" value="" type="text" aria-required="true"></td>
|
42 |
<tr>
|
43 |
<td></td>
|
44 |
<td>
|
45 |
+
<input type="submit" class="button" name="insertonlybutton" value="' . esc_attr( __('Insert into Poll', 'polldaddy') ) . '" />
|
46 |
</td>
|
47 |
</tr>
|
48 |
</tbody></table>
|
51 |
|
52 |
function pd_image_shortcodes_help($image_form) {
|
53 |
return '
|
54 |
+
<h4 class="media-sub-title">' . __('Insert an image from another web site', 'polldaddy') . '</h4>
|
55 |
<table class="describe"><tbody>
|
56 |
<tr>
|
57 |
<th valign="top" scope="row" class="label" style="width:130px;">
|
58 |
+
<span class="alignleft"><label for="src">' . __('Image URL', 'polldaddy') . '</label></span>
|
59 |
<span class="alignright"><abbr id="status_img" title="required" class="required">*</abbr></span>
|
60 |
</th>
|
61 |
<td class="field"><input id="src" name="src" value="" type="text" aria-required="true" onblur="addExtImage.getImageData()" /></td>
|
63 |
|
64 |
<tr>
|
65 |
<th valign="top" scope="row" class="label">
|
66 |
+
<span class="alignleft"><label for="title">' . __('Image Title', 'polldaddy') . '</label></span>
|
67 |
<span class="alignright"><abbr title="required" class="required">*</abbr></span>
|
68 |
</th>
|
69 |
<td class="field"><input id="alt" name="alt" value="" type="hidden" /><input id="url" name="url" value="" type="hidden" /><input id="caption" name="caption" value="" type="hidden" /><input id="title" name="title" value="" type="text" aria-required="true" /></td>
|
71 |
<tr>
|
72 |
<td></td>
|
73 |
<td>
|
74 |
+
<input type="button" value="' . esc_attr( __('Insert into Poll', 'polldaddy') ) . '" onclick="addExtImage.insert()" style="color: rgb(187, 187, 187);" id="go_button" class="button">
|
75 |
</td>
|
76 |
</tr>
|
77 |
</tbody></table>
|
87 |
}
|
88 |
|
89 |
add_action( 'admin_init', 'polldaddy_popups_init' );
|
90 |
+
?>
|
rating.php
CHANGED
@@ -34,7 +34,7 @@ function polldaddy_show_rating_comments( $content ) {
|
|
34 |
|
35 |
function polldaddy_show_rating( $content ) {
|
36 |
if ( !is_feed() && !is_attachment() ) {
|
37 |
-
if ( is_single() || is_page() || is_home() ) {
|
38 |
$html = polldaddy_get_rating_html( 'check-options' );
|
39 |
|
40 |
if ( !empty( $html ) ) {
|
@@ -42,7 +42,7 @@ function polldaddy_show_rating( $content ) {
|
|
42 |
|
43 |
if ( is_page() ) {
|
44 |
$rating_pos = (int) get_option( 'pd-rating-pages-pos' );
|
45 |
-
} elseif ( is_home() ) {
|
46 |
$rating_pos = (int) get_option( 'pd-rating-posts-index-pos' );
|
47 |
} else {
|
48 |
$rating_pos = (int) get_option( 'pd-rating-posts-pos' );
|
@@ -86,7 +86,7 @@ function polldaddy_get_rating_html( $condition = '' ) {
|
|
86 |
} elseif ( !in_array( $post->ID, $exclude_posts ) ) {
|
87 |
$unique_id = 'wp-post-' . $post->ID;
|
88 |
$item_id = '_post_' . $post->ID;
|
89 |
-
if ( is_home() ) {
|
90 |
if ( $condition == 'check-options' ) {
|
91 |
if ( (int) get_option( 'pd-rating-posts-index' ) > 0 ) {
|
92 |
$rating_id = (int) get_option( 'pd-rating-posts-id' );
|
@@ -109,7 +109,7 @@ function polldaddy_get_rating_html( $condition = '' ) {
|
|
109 |
$rating_title_filter = get_option( 'pd-rating-title-filter' );
|
110 |
|
111 |
if ( $rating_title_filter === false )
|
112 |
-
$title = apply_filters( 'wp_title', $post->post_title );
|
113 |
elseif ( strlen( $rating_title_filter ) > 0 )
|
114 |
$title = apply_filters( $rating_title_filter, $post->post_title );
|
115 |
else
|
34 |
|
35 |
function polldaddy_show_rating( $content ) {
|
36 |
if ( !is_feed() && !is_attachment() ) {
|
37 |
+
if ( is_single() || is_page() || is_home() || is_archive() || is_category() ) {
|
38 |
$html = polldaddy_get_rating_html( 'check-options' );
|
39 |
|
40 |
if ( !empty( $html ) ) {
|
42 |
|
43 |
if ( is_page() ) {
|
44 |
$rating_pos = (int) get_option( 'pd-rating-pages-pos' );
|
45 |
+
} elseif ( is_home() || is_archive() || is_category() ) {
|
46 |
$rating_pos = (int) get_option( 'pd-rating-posts-index-pos' );
|
47 |
} else {
|
48 |
$rating_pos = (int) get_option( 'pd-rating-posts-pos' );
|
86 |
} elseif ( !in_array( $post->ID, $exclude_posts ) ) {
|
87 |
$unique_id = 'wp-post-' . $post->ID;
|
88 |
$item_id = '_post_' . $post->ID;
|
89 |
+
if ( is_home() || is_archive() || is_category() ) {
|
90 |
if ( $condition == 'check-options' ) {
|
91 |
if ( (int) get_option( 'pd-rating-posts-index' ) > 0 ) {
|
92 |
$rating_id = (int) get_option( 'pd-rating-posts-id' );
|
109 |
$rating_title_filter = get_option( 'pd-rating-title-filter' );
|
110 |
|
111 |
if ( $rating_title_filter === false )
|
112 |
+
$title = apply_filters( 'wp_title', $post->post_title, '', '' );
|
113 |
elseif ( strlen( $rating_title_filter ) > 0 )
|
114 |
$title = apply_filters( $rating_title_filter, $post->post_title );
|
115 |
else
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Polldaddy Polls & Ratings ===
|
2 |
Contributors: eoigal, alternatekev, mdawaffe, donncha, johnny5
|
3 |
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
-
Requires at least: 2
|
5 |
Tested up to: 3.3.1
|
6 |
-
Stable tag: 2.0.
|
7 |
|
8 |
Create and manage Polldaddy polls and ratings from within WordPress.
|
9 |
|
@@ -11,6 +11,8 @@ Create and manage Polldaddy polls and ratings from within WordPress.
|
|
11 |
|
12 |
The Polldaddy Polls and Ratings plugin allows you to create and manage polls and ratings from within your WordPress dashboard. You can create polls, choose from 20 different styles for your polls, and view all results for your polls as they come in. All Polldaddy polls are fully customizable, you can set a close date for your poll, create multiple choice polls, choose whether to display the results or keep them private. You can also create your own custom style for your poll. You can even embed the polls you create on other websites. You can collect unlimited votes and create unlimited polls. The new ratings menu allows you to embed ratings into your posts, pages or comments. The rating editor allows you to fully customize you rating. You can also avail of the the 'Top Rated' widget that will allow you to place the widget in your sidebar. This widget will show you the top rated posts, pages and comments today, this week and this month.
|
13 |
|
|
|
|
|
14 |
Polldaddy Polls is localizable and currently available in:
|
15 |
|
16 |
* Arabic
|
@@ -122,10 +124,16 @@ Your theme is getting the post content, without necessarily showing it. If the p
|
|
122 |
|
123 |
|
124 |
== Upgrade Notice ==
|
125 |
-
= 2.0.
|
126 |
-
|
|
|
|
|
127 |
|
128 |
-
|
|
|
|
|
|
|
|
|
129 |
|
130 |
= 2.0.12 =
|
131 |
* Fix for CSS bug on admin pages with WordPress 3.3
|
1 |
=== Polldaddy Polls & Ratings ===
|
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.3.1
|
6 |
+
Stable tag: 2.0.13
|
7 |
|
8 |
Create and manage Polldaddy polls and ratings from within WordPress.
|
9 |
|
11 |
|
12 |
The Polldaddy Polls and Ratings plugin allows you to create and manage polls and ratings from within your WordPress dashboard. You can create polls, choose from 20 different styles for your polls, and view all results for your polls as they come in. All Polldaddy polls are fully customizable, you can set a close date for your poll, create multiple choice polls, choose whether to display the results or keep them private. You can also create your own custom style for your poll. You can even embed the polls you create on other websites. You can collect unlimited votes and create unlimited polls. The new ratings menu allows you to embed ratings into your posts, pages or comments. The rating editor allows you to fully customize you rating. You can also avail of the the 'Top Rated' widget that will allow you to place the widget in your sidebar. This widget will show you the top rated posts, pages and comments today, this week and this month.
|
13 |
|
14 |
+
The Polldaddy plugin requires PHP 5.
|
15 |
+
|
16 |
Polldaddy Polls is localizable and currently available in:
|
17 |
|
18 |
* Arabic
|
124 |
|
125 |
|
126 |
== Upgrade Notice ==
|
127 |
+
= 2.0.13 =
|
128 |
+
Bugfixes
|
129 |
+
|
130 |
+
== Changelog ==
|
131 |
|
132 |
+
= 2.0.13 =
|
133 |
+
* Updated translation files and fixed gettext domain in plugin strings
|
134 |
+
* Fixed wp_title filter parameter
|
135 |
+
* Fixed ratings to show on category and archive pages.
|
136 |
+
* Added better sanitization to stop xss vulnerabilities
|
137 |
|
138 |
= 2.0.12 =
|
139 |
* Fix for CSS bug on admin pages with WordPress 3.3
|