Version Description
Updated poll settings page, bugfixes
=
Download this release
Release Info
| Developer | donncha |
| Plugin | |
| Version | 2.0.20 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.19 to 2.0.20
- admin-style.php +74 -42
- css/polldaddy.css +3 -1
- img/grunion-menu-2x.png +0 -0
- img/grunion-menu-hover-2x.png +0 -0
- img/grunion-menu-hover.png +0 -0
- img/grunion-menu.png +0 -0
- polldaddy-client.php +5 -9
- polldaddy-org.php +22 -34
- polldaddy-xml.php +5 -4
- polldaddy.php +83 -45
- polldaddy.pot +564 -527
- readme.txt +17 -7
admin-style.php
CHANGED
|
@@ -8,56 +8,88 @@ if( $color == 'blue' ){
|
|
| 8 |
|
| 9 |
?>
|
| 10 |
|
| 11 |
-
<style type="text/css" media="screen"
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
}
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
}
|
| 41 |
-
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
background:
|
| 46 |
-
margin-bottom: 14px;
|
| 47 |
}
|
| 48 |
|
| 49 |
-
|
| 50 |
-
h2#polldaddy-header, h2#poll-list-header{
|
| 51 |
-
background-position: 0 0;
|
| 52 |
-
margin-top: 20px;
|
| 53 |
-
}
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
|
|
|
| 57 |
}
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
</style>
|
| 8 |
|
| 9 |
?>
|
| 10 |
|
| 11 |
+
<style type="text/css" media="screen">
|
| 12 |
|
| 13 |
+
#toplevel_page_polls img, #toplevel_page_ratings img, #toplevel_page_feedback img{
|
| 14 |
+
display: none;
|
| 15 |
+
}
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
<?php if ( $this->has_feedback_menu ) : ?>
|
| 18 |
+
.toplevel_page_feedback div.wp-menu-image {
|
| 19 |
+
background: url('<?php echo $this->base_url; ?>img/grunion-menu.png') no-repeat 7px 7px !important;
|
| 20 |
+
background-size: 15px 16px !important;
|
| 21 |
+
}
|
|
|
|
| 22 |
|
| 23 |
+
.toplevel_page_feedback:hover div.wp-menu-image,
|
| 24 |
+
.toplevel_page_feedback.wp-has-current-submenu div.wp-menu-image,
|
| 25 |
+
.toplevel_page_feedback.current div.wp-menu-image {
|
| 26 |
+
background: url('<?php echo $this->base_url; ?>img/grunion-menu-hover.png') no-repeat 7px 7px !important;
|
| 27 |
+
background-size: 15px 16px !important;
|
| 28 |
+
}
|
| 29 |
+
<?php else: ?>
|
| 30 |
+
.toplevel_page_feedback div.wp-menu-image{
|
| 31 |
+
background:url('<?php echo $this->base_url; ?>img/pd-wp-icons.png') 7px <?php echo $yoffset; ?>px no-repeat !important;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
.toplevel_page_feedback:hover div.wp-menu-image,
|
| 35 |
+
.toplevel_page_feedback.wp-has-current-submenu div.wp-menu-image,
|
| 36 |
+
.toplevel_page_feedback.current div.wp-menu-image {
|
| 37 |
+
background:url('<?php echo $this->base_url; ?>img/pd-wp-icons.png') 7px -77px no-repeat !important;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
<?php endif;?>
|
| 41 |
+
|
| 42 |
+
#polldaddy-error.error{
|
| 43 |
+
border-radius:6px;
|
| 44 |
+
margin-left:5px;
|
| 45 |
+
margin-right:2%;
|
| 46 |
+
background-color:#FFC;
|
| 47 |
+
background:url('<?php echo $this->base_url; ?>img/error-<?php echo $color; ?>.png') no-repeat 3px 3px, -moz-linear-gradient(top, #FFF, #FFC);
|
| 48 |
+
background:url('<?php echo $this->base_url; ?>img/error-<?php echo $color; ?>.png') no-repeat 3px 3px, -webkit-linear-gradient(top, #FFF, #FFC);
|
| 49 |
+
margin-top:14px;
|
| 50 |
+
border:1px #cccccc solid;
|
| 51 |
+
padding:3px 5px 3px 40px;
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
|
| 55 |
+
h2#polldaddy-header, h2#poll-list-header{
|
| 56 |
+
padding-left:38px;
|
| 57 |
+
background:url('<?php echo $this->base_url; ?>img/pd-wp-icon-<?php echo $color; ?>-lrg.png') no-repeat 0 9px;
|
| 58 |
+
margin-bottom: 14px;
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
|
| 62 |
+
|
| 63 |
+
<?php if ( $this->has_feedback_menu ) : ?>
|
| 64 |
+
#adminmenu .menu-icon-feedback:hover div.wp-menu-image,
|
| 65 |
+
#adminmenu .menu-icon-feedback.wp-has-current-submenu div.wp-menu-image,
|
| 66 |
+
#adminmenu .menu-icon-feedback.current div.wp-menu-image {
|
| 67 |
+
background: url('<?php echo $this->base_url; ?>img/grunion-menu-hover-2x.png') no-repeat 7px 7px !important;
|
| 68 |
+
background-size: 15px 16px !important;
|
| 69 |
}
|
|
|
|
| 70 |
|
| 71 |
+
#adminmenu .menu-icon-feedback div.wp-menu-image {
|
| 72 |
+
background: url('<?php echo $this->base_url; ?>img/grunion-menu-2x.png') no-repeat 7px 7px !important;
|
| 73 |
+
background-size: 15px 16px !important;
|
|
|
|
| 74 |
}
|
| 75 |
|
| 76 |
+
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
|
| 78 |
+
h2#polldaddy-header, h2#poll-list-header{
|
| 79 |
+
background:url('<?php echo $this->base_url; ?>img/pd-wp-icon-<?php echo $color; ?>-lrg@2x.png') no-repeat 0 9px;
|
| 80 |
+
background-size: 31px 31px;
|
| 81 |
}
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
<?php if( isset( $_GET['iframe']) ):?>
|
| 85 |
+
h2#polldaddy-header, h2#poll-list-header{
|
| 86 |
+
background-position: 0 0;
|
| 87 |
+
margin-top: 20px;
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
.pd-tabs li a{
|
| 91 |
+
font-size:11px !important;
|
| 92 |
+
}
|
| 93 |
+
<?php endif; ?>
|
| 94 |
|
| 95 |
</style>
|
css/polldaddy.css
CHANGED
|
@@ -100,6 +100,8 @@ ul#answers li span.handle{
|
|
| 100 |
}
|
| 101 |
|
| 102 |
ul#answer-options{
|
|
|
|
|
|
|
| 103 |
list-style: none;
|
| 104 |
}
|
| 105 |
|
|
@@ -311,4 +313,4 @@ tr.polldaddy-shortcode-row input{float:left;background-color:#fff;border:1px sol
|
|
| 311 |
#st_sizes{width:152px;text-align:center;font-size:12px;}
|
| 312 |
#st_sizes a{width:150px;text-align:center;font-size:12px;}
|
| 313 |
.st_image_loader{width:150px;padding:0px;margin:0px;background:url(../img/st-loader.gif) no-repeat center center;}
|
| 314 |
-
#st_description{padding:6px 0px;font-size:9px;width:300px;text-align:center;}
|
| 100 |
}
|
| 101 |
|
| 102 |
ul#answer-options{
|
| 103 |
+
margin-top: 0;
|
| 104 |
+
margin-bottom: 0;
|
| 105 |
list-style: none;
|
| 106 |
}
|
| 107 |
|
| 313 |
#st_sizes{width:152px;text-align:center;font-size:12px;}
|
| 314 |
#st_sizes a{width:150px;text-align:center;font-size:12px;}
|
| 315 |
.st_image_loader{width:150px;padding:0px;margin:0px;background:url(../img/st-loader.gif) no-repeat center center;}
|
| 316 |
+
#st_description{padding:6px 0px;font-size:9px;width:300px;text-align:center;}
|
img/grunion-menu-2x.png
ADDED
|
Binary file
|
img/grunion-menu-hover-2x.png
ADDED
|
Binary file
|
img/grunion-menu-hover.png
ADDED
|
Binary file
|
img/grunion-menu.png
ADDED
|
Binary file
|
polldaddy-client.php
CHANGED
|
@@ -91,7 +91,7 @@ class api_client {
|
|
| 91 |
|
| 92 |
$parser = new Polldaddy_XML_Parser( $this->response_xml );
|
| 93 |
|
| 94 |
-
$this->response
|
| 95 |
if ( isset( $this->response->errors->error ) ) {
|
| 96 |
if ( !is_array( $this->response->errors->error ) )
|
| 97 |
$this->response->errors->error = array( $this->response->errors->error );
|
|
@@ -130,7 +130,7 @@ class api_client {
|
|
| 130 |
if ( is_a( $object, 'Ghetto_XML_Object' ) )
|
| 131 |
$args = array( $object->___name => &$object );
|
| 132 |
elseif ( is_array( $object ) )
|
| 133 |
-
$args
|
| 134 |
else
|
| 135 |
$args = null;
|
| 136 |
|
|
@@ -1169,12 +1169,8 @@ function &polldaddy_poll( $args = null, $id = null, $_require_data = true ) {
|
|
| 1169 |
$args[$bool] = $defaults[$bool];
|
| 1170 |
}
|
| 1171 |
|
| 1172 |
-
|
| 1173 |
-
|
| 1174 |
-
$public = (int) $wpdb->get_var( $wpdb->prepare( "SELECT public FROM {$wpdb->blogs} WHERE blog_id = %d", $wpdb->blogid ) );
|
| 1175 |
-
if( $public == -1 )
|
| 1176 |
-
$args['makePublic'] = 'no';
|
| 1177 |
-
}
|
| 1178 |
|
| 1179 |
foreach ( array( 'styleID', 'packID', 'folderID', 'languageID', 'choices', 'blockExpiration' ) as $int )
|
| 1180 |
if ( !is_numeric( $args[$int] ) )
|
|
@@ -1317,7 +1313,7 @@ function wp_parse_args( $args, $defaults = '' ) {
|
|
| 1317 |
if ( is_object( $args ) )
|
| 1318 |
$r = get_object_vars( $args );
|
| 1319 |
elseif ( is_array( $args ) )
|
| 1320 |
-
$r
|
| 1321 |
else
|
| 1322 |
wp_parse_str( $args, $r );
|
| 1323 |
|
| 91 |
|
| 92 |
$parser = new Polldaddy_XML_Parser( $this->response_xml );
|
| 93 |
|
| 94 |
+
$this->response = $parser->objects[0];
|
| 95 |
if ( isset( $this->response->errors->error ) ) {
|
| 96 |
if ( !is_array( $this->response->errors->error ) )
|
| 97 |
$this->response->errors->error = array( $this->response->errors->error );
|
| 130 |
if ( is_a( $object, 'Ghetto_XML_Object' ) )
|
| 131 |
$args = array( $object->___name => &$object );
|
| 132 |
elseif ( is_array( $object ) )
|
| 133 |
+
$args = $object;
|
| 134 |
else
|
| 135 |
$args = null;
|
| 136 |
|
| 1169 |
$args[$bool] = $defaults[$bool];
|
| 1170 |
}
|
| 1171 |
|
| 1172 |
+
if ( '0' == get_option( 'blog_public' ) )
|
| 1173 |
+
$args['makePublic'] = 'no';
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1174 |
|
| 1175 |
foreach ( array( 'styleID', 'packID', 'folderID', 'languageID', 'choices', 'blockExpiration' ) as $int )
|
| 1176 |
if ( !is_numeric( $args[$int] ) )
|
| 1313 |
if ( is_object( $args ) )
|
| 1314 |
$r = get_object_vars( $args );
|
| 1315 |
elseif ( is_array( $args ) )
|
| 1316 |
+
$r = $args;
|
| 1317 |
else
|
| 1318 |
wp_parse_str( $args, $r );
|
| 1319 |
|
polldaddy-org.php
CHANGED
|
@@ -61,26 +61,17 @@ class WPORG_Polldaddy extends WP_Polldaddy {
|
|
| 61 |
|
| 62 |
function admin_title( $admin_title ) {
|
| 63 |
global $page;
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
|
|
|
|
|
|
|
|
|
| 68 |
}
|
| 69 |
|
| 70 |
function admin_menu() {
|
| 71 |
-
parent::admin_menu();
|
| 72 |
-
|
| 73 |
-
if ( class_exists( 'Jetpack' ) ) {
|
| 74 |
-
add_submenu_page( 'edit.php?post_type=feedback', __( 'Feedbacks', 'polldaddy' ), __( 'Feedbacks', 'polldaddy' ), 'edit_pages', 'edit.php?post_type=feedback' );
|
| 75 |
-
|
| 76 |
-
foreach( array( 'polls' => __( 'Polls', 'polldaddy' ), 'ratings' => __( 'Ratings', 'polldaddy' ) ) as $menu_slug => $menu_title ) {
|
| 77 |
-
remove_menu_page( $menu_slug );
|
| 78 |
-
add_submenu_page( 'edit.php?post_type=feedback', $menu_title, $menu_title, 'edit_posts', 'edit.php?page='.$menu_slug );
|
| 79 |
-
}
|
| 80 |
-
}
|
| 81 |
-
else {
|
| 82 |
-
remove_menu_page( 'ratings' );
|
| 83 |
-
}
|
| 84 |
}
|
| 85 |
|
| 86 |
function management_page_load() {
|
|
@@ -147,19 +138,8 @@ class WPORG_Polldaddy extends WP_Polldaddy {
|
|
| 147 |
$submenu_file = $page.'&action=options';
|
| 148 |
}
|
| 149 |
else {
|
| 150 |
-
|
| 151 |
-
|
| 152 |
-
add_filter( 'admin_title', array( &$this, 'admin_title' ) );
|
| 153 |
-
|
| 154 |
-
$parent_file = 'edit.php?post_type=feedback';
|
| 155 |
-
$typenow = 'feedback';
|
| 156 |
-
$submenu_file = 'edit.php?page='.$page;
|
| 157 |
-
remove_submenu_page( $page, $page );
|
| 158 |
-
}
|
| 159 |
-
elseif ( $page == 'ratings' ) {
|
| 160 |
-
add_filter( 'admin_title', array( &$this, 'admin_title' ) );
|
| 161 |
-
$submenu_file = 'ratings';
|
| 162 |
-
}
|
| 163 |
}
|
| 164 |
|
| 165 |
parent::management_page_load();
|
|
@@ -300,7 +280,7 @@ class WPORG_Polldaddy extends WP_Polldaddy {
|
|
| 300 |
<label for="polldaddy-email"><?php _e( 'Polldaddy Email Address', 'polldaddy' ); ?></label>
|
| 301 |
</th>
|
| 302 |
<td>
|
| 303 |
-
<input type="text" name="polldaddy_email" id="polldaddy-email" aria-required="true" size="40" value="<?php if ( isset( $_POST['polldaddy_email'] ) ) echo
|
| 304 |
</td>
|
| 305 |
</tr>
|
| 306 |
<tr class="form-field form-required">
|
|
@@ -332,7 +312,7 @@ class WPORG_Polldaddy extends WP_Polldaddy {
|
|
| 332 |
<?php wp_nonce_field( 'polldaddy-account' ); ?>
|
| 333 |
<input type="hidden" name="action" value="account" />
|
| 334 |
<input type="hidden" name="account" value="import" />
|
| 335 |
-
<input class="button-secondary" type="submit" value="<?php echo
|
| 336 |
</p>
|
| 337 |
</form>
|
| 338 |
</div>
|
|
@@ -990,7 +970,7 @@ EOD;
|
|
| 990 |
$item_count = (int) $instance['item_count'];
|
| 991 |
?>
|
| 992 |
<p>
|
| 993 |
-
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title', 'polldaddy' ); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo
|
| 994 |
<p>
|
| 995 |
<label for="<?php echo $this->get_field_id( 'show_posts' ); ?>">
|
| 996 |
<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'show_posts' ); ?>" name="<?php echo $this->get_field_name( 'show_posts' ); ?>" value="1" <?php echo $show_posts == 1 ? 'checked="checked"' : ''; ?> />
|
|
@@ -1030,4 +1010,12 @@ EOD;
|
|
| 1030 |
}
|
| 1031 |
add_action('widgets_init', create_function('', 'return register_widget("PD_Top_Rated");'));
|
| 1032 |
}
|
| 1033 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
|
| 62 |
function admin_title( $admin_title ) {
|
| 63 |
global $page;
|
| 64 |
+
|
| 65 |
+
if ( $page == 'ratings' )
|
| 66 |
+
return (stripos( $admin_title, $page ) === false ? __( "Ratings", "polldaddy" ) : '' ).$admin_title;
|
| 67 |
+
elseif ( $page == 'polls' )
|
| 68 |
+
return (stripos( $admin_title, $page ) === false ? __( "Polls", "polldaddy" ) : '' ).$admin_title;
|
| 69 |
+
|
| 70 |
+
return $admin_title;
|
| 71 |
}
|
| 72 |
|
| 73 |
function admin_menu() {
|
| 74 |
+
parent::admin_menu();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
}
|
| 76 |
|
| 77 |
function management_page_load() {
|
| 138 |
$submenu_file = $page.'&action=options';
|
| 139 |
}
|
| 140 |
else {
|
| 141 |
+
add_filter( 'admin_title', array( &$this, 'admin_title' ) );
|
| 142 |
+
$submenu_file = $page;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 143 |
}
|
| 144 |
|
| 145 |
parent::management_page_load();
|
| 280 |
<label for="polldaddy-email"><?php _e( 'Polldaddy Email Address', 'polldaddy' ); ?></label>
|
| 281 |
</th>
|
| 282 |
<td>
|
| 283 |
+
<input type="text" name="polldaddy_email" id="polldaddy-email" aria-required="true" size="40" value="<?php if ( isset( $_POST['polldaddy_email'] ) ) echo esc_attr( $_POST['polldaddy_email'] ); ?>" />
|
| 284 |
</td>
|
| 285 |
</tr>
|
| 286 |
<tr class="form-field form-required">
|
| 312 |
<?php wp_nonce_field( 'polldaddy-account' ); ?>
|
| 313 |
<input type="hidden" name="action" value="account" />
|
| 314 |
<input type="hidden" name="account" value="import" />
|
| 315 |
+
<input class="button-secondary" type="submit" value="<?php echo esc_attr( __( 'Submit', 'polldaddy' ) ); ?>" />
|
| 316 |
</p>
|
| 317 |
</form>
|
| 318 |
</div>
|
| 970 |
$item_count = (int) $instance['item_count'];
|
| 971 |
?>
|
| 972 |
<p>
|
| 973 |
+
<label for="<?php echo $this->get_field_id('title'); ?>"><?php _e( 'Title', 'polldaddy' ); ?>: <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /></label></p>
|
| 974 |
<p>
|
| 975 |
<label for="<?php echo $this->get_field_id( 'show_posts' ); ?>">
|
| 976 |
<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'show_posts' ); ?>" name="<?php echo $this->get_field_name( 'show_posts' ); ?>" value="1" <?php echo $show_posts == 1 ? 'checked="checked"' : ''; ?> />
|
| 1010 |
}
|
| 1011 |
add_action('widgets_init', create_function('', 'return register_widget("PD_Top_Rated");'));
|
| 1012 |
}
|
| 1013 |
+
|
| 1014 |
+
function polldaddy_login_warning() {
|
| 1015 |
+
global $cache_enabled;
|
| 1016 |
+
$page = isset( $_GET[ 'page' ] ) ? $_GET[ 'page' ] : '';
|
| 1017 |
+
if ( $page != 'polls' && false == get_option( 'polldaddy_api_key' ) && function_exists( "admin_url" ) )
|
| 1018 |
+
echo '<div class="updated"><p><strong>' . sprintf( __( 'Warning! The Polldaddy plugin must be linked to your Polldaddy.com account. Please visit the <a href="%s">plugin settings page</a> to login.', 'polldaddy' ), admin_url( 'options-general.php?page=polls&action=options' ) ) . '</strong></p></div>';
|
| 1019 |
+
}
|
| 1020 |
+
add_action( 'admin_notices', 'polldaddy_login_warning' );
|
| 1021 |
+
?>
|
polldaddy-xml.php
CHANGED
|
@@ -265,6 +265,7 @@ class Polldaddy_Account extends Polldaddy_XML_Object {
|
|
| 265 |
var $websiteURL;
|
| 266 |
var $avatarURL;
|
| 267 |
var $bio;
|
|
|
|
| 268 |
}
|
| 269 |
|
| 270 |
class Polldaddy_List extends Polldaddy_XML_Object {
|
|
@@ -740,18 +741,18 @@ class Polldaddy_XML_Parser {
|
|
| 740 |
die( 'damn' );
|
| 741 |
|
| 742 |
$new = $this->polldaddy_objects[$tag];
|
| 743 |
-
$new_object
|
| 744 |
|
| 745 |
if ( is_numeric( $this->object_stack[$this->object_pos]['parent'] ) ) {
|
| 746 |
$this->object_pos = $this->object_stack[$this->object_pos]['parent'];
|
| 747 |
if ( $this->object_stack[$this->object_pos]['args_tag_pos'] ) {
|
| 748 |
-
$this->object_stack[$this->object_pos]['args'][$this->object_stack[$this->object_pos]['args_tag']][$this->object_stack[$this->object_pos]['args_tag_pos']]
|
| 749 |
} elseif ( $this->object_stack[$this->object_pos]['args_tag'] ) {
|
| 750 |
-
$this->object_stack[$this->object_pos]['args'][$this->object_stack[$this->object_pos]['args_tag']]
|
| 751 |
}
|
| 752 |
} else {
|
| 753 |
$this->object_pos = null;
|
| 754 |
-
$this->objects[]
|
| 755 |
}
|
| 756 |
|
| 757 |
array_pop( $this->object_stack );
|
| 265 |
var $websiteURL;
|
| 266 |
var $avatarURL;
|
| 267 |
var $bio;
|
| 268 |
+
var $src;
|
| 269 |
}
|
| 270 |
|
| 271 |
class Polldaddy_List extends Polldaddy_XML_Object {
|
| 741 |
die( 'damn' );
|
| 742 |
|
| 743 |
$new = $this->polldaddy_objects[$tag];
|
| 744 |
+
$new_object = new $new( $this->object_stack[$this->object_pos]['args'], $this->object_stack[$this->object_pos]['atts'] );
|
| 745 |
|
| 746 |
if ( is_numeric( $this->object_stack[$this->object_pos]['parent'] ) ) {
|
| 747 |
$this->object_pos = $this->object_stack[$this->object_pos]['parent'];
|
| 748 |
if ( $this->object_stack[$this->object_pos]['args_tag_pos'] ) {
|
| 749 |
+
$this->object_stack[$this->object_pos]['args'][$this->object_stack[$this->object_pos]['args_tag']][$this->object_stack[$this->object_pos]['args_tag_pos']] = $new_object;
|
| 750 |
} elseif ( $this->object_stack[$this->object_pos]['args_tag'] ) {
|
| 751 |
+
$this->object_stack[$this->object_pos]['args'][$this->object_stack[$this->object_pos]['args_tag']] = $new_object;
|
| 752 |
}
|
| 753 |
} else {
|
| 754 |
$this->object_pos = null;
|
| 755 |
+
$this->objects[] = $new_object;
|
| 756 |
}
|
| 757 |
|
| 758 |
array_pop( $this->object_stack );
|
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
|
|
@@ -25,7 +25,8 @@ class WP_Polldaddy {
|
|
| 25 |
var $multiple_accounts;
|
| 26 |
var $user_code;
|
| 27 |
var $rating_user_code;
|
| 28 |
-
|
|
|
|
| 29 |
function WP_Polldaddy() {
|
| 30 |
$this->__construct();
|
| 31 |
}
|
|
@@ -45,6 +46,15 @@ class WP_Polldaddy {
|
|
| 45 |
$this->user_code = null;
|
| 46 |
$this->rating_user_code = null;
|
| 47 |
$this->id = ($current_user instanceof WP_User) ? intval( $current_user->ID ): 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
}
|
| 49 |
|
| 50 |
function &get_client( $api_key, $userCode = null ) {
|
|
@@ -65,6 +75,7 @@ class WP_Polldaddy {
|
|
| 65 |
|
| 66 |
function admin_menu() {
|
| 67 |
add_action( 'admin_head', array( &$this, 'do_admin_css' ) );
|
|
|
|
| 68 |
|
| 69 |
if ( !defined( 'WP_POLLDADDY__PARTNERGUID' ) ) {
|
| 70 |
$guid = get_option( 'polldaddy_api_key' );
|
|
@@ -86,28 +97,32 @@ class WP_Polldaddy {
|
|
| 86 |
return false;
|
| 87 |
}
|
| 88 |
|
|
|
|
|
|
|
|
|
|
| 89 |
foreach( array( 'polls' => __( 'Polls', 'polldaddy' ), 'ratings' => __( 'Ratings', 'polldaddy' ) ) as $menu_slug => $page_title ) {
|
| 90 |
$menu_title = $page_title;
|
| 91 |
-
$parent_slug = $menu_slug;
|
| 92 |
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
$parent_slug = 'polls';
|
| 99 |
-
}
|
| 100 |
-
|
| 101 |
-
$hook = add_object_page( $page_title, $menu_title, $capability, $menu_slug, array( &$this, 'management_page' ), $icon );
|
| 102 |
-
add_action( "load-$hook", array( &$this, 'management_page_load' ) );
|
| 103 |
-
|
| 104 |
-
add_submenu_page( $parent_slug, $page_title, $page_title, $capability, $menu_slug, $function );
|
| 105 |
-
|
| 106 |
add_options_page( $page_title, $page_title, $menu_slug == 'ratings' ? 'manage_options' : $capability, $menu_slug.'&action=options', $function );
|
| 107 |
}
|
| 108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
add_action( 'media_buttons', array( &$this, 'media_buttons' ) );
|
| 110 |
}
|
|
|
|
|
|
|
| 111 |
|
| 112 |
function do_admin_css() {
|
| 113 |
|
|
@@ -294,7 +309,7 @@ class WP_Polldaddy {
|
|
| 294 |
|
| 295 |
function media_buttons() {
|
| 296 |
$title = __( 'Add Poll', 'polldaddy' );
|
| 297 |
-
echo "<a href='admin.php?page=polls&
|
| 298 |
}
|
| 299 |
|
| 300 |
function set_api_user_code() {
|
|
@@ -314,14 +329,17 @@ class WP_Polldaddy {
|
|
| 314 |
}
|
| 315 |
|
| 316 |
function management_page_load() {
|
| 317 |
-
|
| 318 |
wp_reset_vars( array( 'page', 'action', 'poll', 'style', 'rating', 'id' ) );
|
| 319 |
global $plugin_page, $page, $action, $poll, $style, $rating, $id, $wp_locale;
|
| 320 |
|
| 321 |
$this->set_api_user_code();
|
| 322 |
|
| 323 |
if ( empty( $this->user_code ) && $page == 'polls' ) {
|
| 324 |
-
|
|
|
|
|
|
|
|
|
|
| 325 |
}
|
| 326 |
|
| 327 |
require_once WP_POLLDADDY__POLLDADDY_CLIENT_PATH;
|
|
@@ -436,12 +454,13 @@ class WP_Polldaddy {
|
|
| 436 |
return;
|
| 437 |
|
| 438 |
check_admin_referer( 'polldaddy-account' );
|
| 439 |
-
|
| 440 |
$this->user_code = '';
|
| 441 |
update_option( 'pd-usercode-'.$this->id, '' );
|
| 442 |
|
| 443 |
if ( $new_args = $this->management_page_load_signup() )
|
| 444 |
$query_args = array_merge( $query_args, $new_args );
|
|
|
|
| 445 |
if ( $this->errors->get_error_codes() )
|
| 446 |
return false;
|
| 447 |
|
|
@@ -454,6 +473,8 @@ class WP_Polldaddy {
|
|
| 454 |
$query_args['action'] = $_GET['action'];
|
| 455 |
else
|
| 456 |
$query_args['action'] = false;
|
|
|
|
|
|
|
| 457 |
break;
|
| 458 |
|
| 459 |
case 'delete' :
|
|
@@ -1106,7 +1127,7 @@ class WP_Polldaddy {
|
|
| 1106 |
$message = sprintf( _n( '%s Style Deleted.', '%s Custom Styles Deleted.', $deleted, 'polldaddy' ), number_format_i18n( $deleted ) );
|
| 1107 |
break;
|
| 1108 |
case 'imported-account' :
|
| 1109 |
-
$message = __( 'Account
|
| 1110 |
break;
|
| 1111 |
case 'updated-options' :
|
| 1112 |
$message = __( 'Options Updated.', 'polldaddy' );
|
|
@@ -1250,9 +1271,15 @@ class WP_Polldaddy {
|
|
| 1250 |
if ( $this->is_author )
|
| 1251 |
printf( __( 'Polldaddy Polls <a href="%s" class="add-new-h2">Add New</a>', 'polldaddy' ), esc_url( add_query_arg( array( 'action' => 'create-poll', 'poll' => false, 'message' => false ) ) ) );
|
| 1252 |
else
|
| 1253 |
-
_e( 'Polldaddy Polls ', 'polldaddy' );
|
| 1254 |
-
|
| 1255 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1256 |
|
| 1257 |
if ( !isset( $_GET['view'] ) )
|
| 1258 |
$this->polls_table( 'user' );
|
|
@@ -1499,14 +1526,14 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
| 1499 |
<td colspan="4" id="empty-set"><?php
|
| 1500 |
if ( $this->is_author ) { ?>
|
| 1501 |
|
| 1502 |
-
<h3 style="margin-bottom:0px;"><?php _e( 'You haven\'t
|
| 1503 |
<p style="margin-bottom:20px;"><?php _e( 'Why don\'t you go ahead and get started on that?', 'polldaddy' ); ?></p>
|
| 1504 |
<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'create-poll' ) ) ); ?>" class="button-primary"><?php _e( 'Create a Poll Now', 'polldaddy' ); ?></a>
|
| 1505 |
|
| 1506 |
<?php
|
| 1507 |
} else { ?>
|
| 1508 |
|
| 1509 |
-
<p id="no-polls"><?php _e( 'No one has created any polls for this blog
|
| 1510 |
|
| 1511 |
<?php }
|
| 1512 |
?></td>
|
|
@@ -1609,10 +1636,10 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
| 1609 |
|
| 1610 |
if ( isset( $_POST['answer'] ) )
|
| 1611 |
foreach ( $_POST['answer'] as $answer_id => $answer )
|
| 1612 |
-
$answers[
|
| 1613 |
} elseif ( isset( $poll->answers->answer ) ) {
|
| 1614 |
foreach ( $poll->answers->answer as $answer ) {
|
| 1615 |
-
$answers[(int) $answer->_id] =
|
| 1616 |
|
| 1617 |
if ( $answer->mediaType == 1 && !empty( $answer->mediaCode ) ) {
|
| 1618 |
$polldaddy->reset();
|
|
@@ -1838,7 +1865,7 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
| 1838 |
</td>
|
| 1839 |
<td class="answer-media-icons" <?php echo isset( $_GET['iframe'] ) ? 'style="width: 55px !important;"' : '';?>>
|
| 1840 |
<ul class="answer-media" <?php echo isset( $_GET['iframe'] ) ? 'style="min-width: 30px;"' : '';?>>
|
| 1841 |
-
<?php if ( $mediaType[999999999] == 2 ) { ?>
|
| 1842 |
<li class="media-preview image-added" style="width: 20px; height: 16px; padding-left: 5px;"><img height="16" width="16" src="<?php echo $this->base_url; ?>img/icon-report-ip-analysis.png" alt="Video Embed"><?php echo $delete_media_link;?></li>
|
| 1843 |
<?php } else {
|
| 1844 |
$url = '';
|
|
@@ -4710,9 +4737,8 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
| 4710 |
|
| 4711 |
function plugin_options() {
|
| 4712 |
if ( isset( $_POST['polldaddy_email'] ) ) {
|
| 4713 |
-
$account_email =
|
| 4714 |
-
}
|
| 4715 |
-
else {
|
| 4716 |
$polldaddy = $this->get_client( WP_POLLDADDY__PARTNERGUID, $this->user_code );
|
| 4717 |
$account = $polldaddy->get_account();
|
| 4718 |
|
|
@@ -4798,34 +4824,46 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
| 4798 |
<h2>
|
| 4799 |
<?php _e( 'Poll Settings', 'polldaddy' ); ?>
|
| 4800 |
</h2>
|
| 4801 |
-
|
| 4802 |
-
|
| 4803 |
-
|
| 4804 |
-
|
| 4805 |
-
|
| 4806 |
-
|
| 4807 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4808 |
<form action="" method="post">
|
| 4809 |
<table class="form-table">
|
| 4810 |
<tbody>
|
| 4811 |
<tr class="form-field form-required">
|
| 4812 |
<th valign="top" scope="row">
|
| 4813 |
<label for="polldaddy-email">
|
| 4814 |
-
<?php _e( '
|
| 4815 |
</label>
|
| 4816 |
</th>
|
| 4817 |
<td>
|
| 4818 |
-
|
| 4819 |
</td>
|
| 4820 |
</tr>
|
| 4821 |
<tr class="form-field form-required">
|
| 4822 |
<th valign="top" scope="row">
|
| 4823 |
<label for="polldaddy-password">
|
| 4824 |
-
<?php _e( '
|
| 4825 |
</label>
|
| 4826 |
</th>
|
| 4827 |
<td>
|
| 4828 |
<input type="password" name="polldaddy_password" id="polldaddy-password" aria-required="true" size="40" />
|
|
|
|
|
|
|
|
|
|
| 4829 |
</td>
|
| 4830 |
</tr>
|
| 4831 |
</tbody>
|
|
@@ -4834,7 +4872,7 @@ src="http://static.polldaddy.com/p/<?php echo (int) $poll_id; ?>.js"></scr
|
|
| 4834 |
<?php wp_nonce_field( 'polldaddy-account' ); ?>
|
| 4835 |
<input type="hidden" name="action" value="import-account" />
|
| 4836 |
<input type="hidden" name="account" value="import" />
|
| 4837 |
-
<input type="submit" class="button-primary" value="<?php echo esc_attr( __( '
|
| 4838 |
</p>
|
| 4839 |
</form>
|
| 4840 |
<br />
|
|
@@ -4978,4 +5016,4 @@ require dirname( __FILE__ ).'/ajax.php';
|
|
| 4978 |
require dirname( __FILE__ ).'/popups.php';
|
| 4979 |
require dirname( __FILE__ ).'/polldaddy-org.php';
|
| 4980 |
|
| 4981 |
-
$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.20
|
| 10 |
*/
|
| 11 |
|
| 12 |
// You can hardcode your Polldaddy PartnerGUID (API Key) here
|
| 25 |
var $multiple_accounts;
|
| 26 |
var $user_code;
|
| 27 |
var $rating_user_code;
|
| 28 |
+
var $has_feedback_menu;
|
| 29 |
+
|
| 30 |
function WP_Polldaddy() {
|
| 31 |
$this->__construct();
|
| 32 |
}
|
| 46 |
$this->user_code = null;
|
| 47 |
$this->rating_user_code = null;
|
| 48 |
$this->id = ($current_user instanceof WP_User) ? intval( $current_user->ID ): 0;
|
| 49 |
+
$this->has_feedback_menu = false;
|
| 50 |
+
|
| 51 |
+
if ( class_exists( 'Jetpack' ) ) {
|
| 52 |
+
if ( method_exists( 'Jetpack', 'is_active' ) && Jetpack::is_active() ) {
|
| 53 |
+
$jetpack_active_modules = get_option('jetpack_active_modules');
|
| 54 |
+
if ( $jetpack_active_modules && in_array( 'contact-form', $jetpack_active_modules ) )
|
| 55 |
+
$this->has_feedback_menu = true;
|
| 56 |
+
}
|
| 57 |
+
}
|
| 58 |
}
|
| 59 |
|
| 60 |
function &get_client( $api_key, $userCode = null ) {
|
| 75 |
|
| 76 |
function admin_menu() {
|
| 77 |
add_action( 'admin_head', array( &$this, 'do_admin_css' ) );
|
| 78 |
+
add_action( 'admin_enqueue_scripts', array( &$this, 'menu_alter' ) );
|
| 79 |
|
| 80 |
if ( !defined( 'WP_POLLDADDY__PARTNERGUID' ) ) {
|
| 81 |
$guid = get_option( 'polldaddy_api_key' );
|
| 97 |
return false;
|
| 98 |
}
|
| 99 |
|
| 100 |
+
$hook = add_object_page( __( 'Feedback', 'polldaddy' ), __( 'Feedback', 'polldaddy' ), $capability, 'feedback', $function, $icon );
|
| 101 |
+
add_action( "load-$hook", array( &$this, 'management_page_load' ) );
|
| 102 |
+
|
| 103 |
foreach( array( 'polls' => __( 'Polls', 'polldaddy' ), 'ratings' => __( 'Ratings', 'polldaddy' ) ) as $menu_slug => $page_title ) {
|
| 104 |
$menu_title = $page_title;
|
|
|
|
| 105 |
|
| 106 |
+
$hook = add_object_page( $menu_title, $menu_title, $capability, $menu_slug, $function, $icon );
|
| 107 |
+
add_action( "load-$hook", array( &$this, 'management_page_load' ) );
|
| 108 |
+
|
| 109 |
+
add_submenu_page( 'feedback', $page_title, $page_title, $capability, $menu_slug, $function );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
add_options_page( $page_title, $page_title, $menu_slug == 'ratings' ? 'manage_options' : $capability, $menu_slug.'&action=options', $function );
|
| 111 |
}
|
| 112 |
+
|
| 113 |
+
remove_submenu_page( 'feedback', 'feedback' );
|
| 114 |
+
remove_menu_page( 'polls' );
|
| 115 |
+
remove_menu_page( 'ratings' );
|
| 116 |
+
|
| 117 |
+
if ( $this->has_feedback_menu ) {
|
| 118 |
+
add_submenu_page( 'feedback', __( 'Feedback', 'polldaddy' ), __( 'Feedback', 'polldaddy' ), 'edit_posts', 'edit.php?post_type=feedback' );
|
| 119 |
+
remove_menu_page( 'edit.php?post_type=feedback' );
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
add_action( 'media_buttons', array( &$this, 'media_buttons' ) );
|
| 123 |
}
|
| 124 |
+
|
| 125 |
+
function menu_alter() {}
|
| 126 |
|
| 127 |
function do_admin_css() {
|
| 128 |
|
| 309 |
|
| 310 |
function media_buttons() {
|
| 311 |
$title = __( 'Add Poll', 'polldaddy' );
|
| 312 |
+
echo " <a href='admin.php?page=polls&iframe&TB_iframe=true' onclick='return false;' id='add_poll' class='button thickbox' title='" . esc_attr( $title ) . "'><img src='{$this->base_url}img/polldaddy@2x.png' width='15' height='15' alt='" . esc_attr( $title ) . "' style='margin: -2px 0 0 -1px; padding: 0 2px 0 0; vertical-align: middle;' /> " . esc_html( $title ) . "</a>";
|
| 313 |
}
|
| 314 |
|
| 315 |
function set_api_user_code() {
|
| 329 |
}
|
| 330 |
|
| 331 |
function management_page_load() {
|
| 332 |
+
|
| 333 |
wp_reset_vars( array( 'page', 'action', 'poll', 'style', 'rating', 'id' ) );
|
| 334 |
global $plugin_page, $page, $action, $poll, $style, $rating, $id, $wp_locale;
|
| 335 |
|
| 336 |
$this->set_api_user_code();
|
| 337 |
|
| 338 |
if ( empty( $this->user_code ) && $page == 'polls' ) {
|
| 339 |
+
// one last try to get the user code automatically if possible
|
| 340 |
+
$this->user_code = apply_filters_ref_array( 'polldaddy_get_user_code', array( $this->user_code, &$this ) );
|
| 341 |
+
if ( false == $this->user_code )
|
| 342 |
+
$action = 'signup';
|
| 343 |
}
|
| 344 |
|
| 345 |
require_once WP_POLLDADDY__POLLDADDY_CLIENT_PATH;
|
| 454 |
return;
|
| 455 |
|
| 456 |
check_admin_referer( 'polldaddy-account' );
|
| 457 |
+
|
| 458 |
$this->user_code = '';
|
| 459 |
update_option( 'pd-usercode-'.$this->id, '' );
|
| 460 |
|
| 461 |
if ( $new_args = $this->management_page_load_signup() )
|
| 462 |
$query_args = array_merge( $query_args, $new_args );
|
| 463 |
+
|
| 464 |
if ( $this->errors->get_error_codes() )
|
| 465 |
return false;
|
| 466 |
|
| 473 |
$query_args['action'] = $_GET['action'];
|
| 474 |
else
|
| 475 |
$query_args['action'] = false;
|
| 476 |
+
if ( $action == 'import-account' )
|
| 477 |
+
$query_args[ 'action' ] = 'options'; // make sure we redirect back to the right page.
|
| 478 |
break;
|
| 479 |
|
| 480 |
case 'delete' :
|
| 1127 |
$message = sprintf( _n( '%s Style Deleted.', '%s Custom Styles Deleted.', $deleted, 'polldaddy' ), number_format_i18n( $deleted ) );
|
| 1128 |
break;
|
| 1129 |
case 'imported-account' :
|
| 1130 |
+
$message = __( 'Account Linked.', 'polldaddy' );
|
| 1131 |
break;
|
| 1132 |
case 'updated-options' :
|
| 1133 |
$message = __( 'Options Updated.', 'polldaddy' );
|
| 1271 |
if ( $this->is_author )
|
| 1272 |
printf( __( 'Polldaddy Polls <a href="%s" class="add-new-h2">Add New</a>', 'polldaddy' ), esc_url( add_query_arg( array( 'action' => 'create-poll', 'poll' => false, 'message' => false ) ) ) );
|
| 1273 |
else
|
| 1274 |
+
_e( 'Polldaddy Polls ', 'polldaddy' );
|
| 1275 |
+
?></h2><?php
|
| 1276 |
+
$polldaddy = $this->get_client( WP_POLLDADDY__PARTNERGUID, $this->user_code );
|
| 1277 |
+
$account = $polldaddy->get_account();
|
| 1278 |
+
if ( !empty( $account ) )
|
| 1279 |
+
$account_email = esc_attr( $account->email );
|
| 1280 |
+
if ( isset( $account_email ) && current_user_can( 'manage_options' ) ) {
|
| 1281 |
+
echo "<p>" . sprintf( __( 'Linked to WordPress.com Account: <strong>%s</strong> (<a target="_blank" href="options-general.php?page=polls&action=options">Settings</a> / <a target="_blank" href="http://polldaddy.com/dashboard/">Polldaddy.com</a>)', 'polldaddy' ), $account_email ) . "</p>";
|
| 1282 |
+
}
|
| 1283 |
|
| 1284 |
if ( !isset( $_GET['view'] ) )
|
| 1285 |
$this->polls_table( 'user' );
|
| 1526 |
<td colspan="4" id="empty-set"><?php
|
| 1527 |
if ( $this->is_author ) { ?>
|
| 1528 |
|
| 1529 |
+
<h3 style="margin-bottom:0px;"><?php _e( 'You haven\'t created any polls for this blog.', 'polldaddy');?> </h3>
|
| 1530 |
<p style="margin-bottom:20px;"><?php _e( 'Why don\'t you go ahead and get started on that?', 'polldaddy' ); ?></p>
|
| 1531 |
<a href="<?php echo esc_url( add_query_arg( array( 'action' => 'create-poll' ) ) ); ?>" class="button-primary"><?php _e( 'Create a Poll Now', 'polldaddy' ); ?></a>
|
| 1532 |
|
| 1533 |
<?php
|
| 1534 |
} else { ?>
|
| 1535 |
|
| 1536 |
+
<p id="no-polls"><?php _e( 'No one has created any polls for this blog.', 'polldaddy' ); ?></p>
|
| 1537 |
|
| 1538 |
<?php }
|
| 1539 |
?></td>
|
| 1636 |
|
| 1637 |
if ( isset( $_POST['answer'] ) )
|
| 1638 |
foreach ( $_POST['answer'] as $answer_id => $answer )
|
| 1639 |
+
$answers[esc_attr($answer_id)] = esc_attr( stripslashes($answer) );
|
| 1640 |
} elseif ( isset( $poll->answers->answer ) ) {
|
| 1641 |
foreach ( $poll->answers->answer as $answer ) {
|
| 1642 |
+
$answers[(int) $answer->_id] = esc_attr( $answer->text );
|
| 1643 |
|
| 1644 |
if ( $answer->mediaType == 1 && !empty( $answer->mediaCode ) ) {
|
| 1645 |
$polldaddy->reset();
|
| 1865 |
</td>
|
| 1866 |
<td class="answer-media-icons" <?php echo isset( $_GET['iframe'] ) ? 'style="width: 55px !important;"' : '';?>>
|
| 1867 |
<ul class="answer-media" <?php echo isset( $_GET['iframe'] ) ? 'style="min-width: 30px;"' : '';?>>
|
| 1868 |
+
<?php if ( isset( $mediaType[999999999] ) && $mediaType[999999999] == 2 ) { ?>
|
| 1869 |
<li class="media-preview image-added" style="width: 20px; height: 16px; padding-left: 5px;"><img height="16" width="16" src="<?php echo $this->base_url; ?>img/icon-report-ip-analysis.png" alt="Video Embed"><?php echo $delete_media_link;?></li>
|
| 1870 |
<?php } else {
|
| 1871 |
$url = '';
|
| 4737 |
|
| 4738 |
function plugin_options() {
|
| 4739 |
if ( isset( $_POST['polldaddy_email'] ) ) {
|
| 4740 |
+
$account_email = false;
|
| 4741 |
+
} else {
|
|
|
|
| 4742 |
$polldaddy = $this->get_client( WP_POLLDADDY__PARTNERGUID, $this->user_code );
|
| 4743 |
$account = $polldaddy->get_account();
|
| 4744 |
|
| 4824 |
<h2>
|
| 4825 |
<?php _e( 'Poll Settings', 'polldaddy' ); ?>
|
| 4826 |
</h2>
|
| 4827 |
+
<?php
|
| 4828 |
+
if ( $this->is_admin || $this->multiple_accounts ) {
|
| 4829 |
+
if ( $account_email != false ) {
|
| 4830 |
+
?>
|
| 4831 |
+
<h3>
|
| 4832 |
+
<?php _e( 'Polldaddy Account Info', 'polldaddy' ); ?>
|
| 4833 |
+
</h3>
|
| 4834 |
+
<p><?php _e( '<em>Polldaddy</em> and <em>WordPress.com</em> are now connected using <a href="http://en.support.wordpress.com/wpcc-faq/">WordPress.com Connect</a>. If you have a WordPress.com account you can use it to login to <a href="http://polldaddy.com/">Polldaddy.com</a>. Click on the Polldaddy "sign in" button, authorize the connection and create your new Polldaddy account. Use the same email and password to login on this page.', 'polldaddy' ); ?></p>
|
| 4835 |
+
<p><strong><?php _e( 'You must login at least once on <a href="http://polldaddy.com/">Polldaddy.com</a> before using this plugin.' ); ?></strong></p>
|
| 4836 |
+
<p><?php printf( __( 'Your account is currently link to this WordPress.com account: <strong>%s</strong>', 'polldaddy' ), $account_email ); ?></p>
|
| 4837 |
+
<br />
|
| 4838 |
+
<h3><?php _e( 'Link to a different Polldaddy account', 'polldaddy' ); ?></h3>
|
| 4839 |
+
<?php } else { ?>
|
| 4840 |
+
<br />
|
| 4841 |
+
<h3><?php _e( 'Link to your Polldaddy account', 'polldaddy' ); ?></h3>
|
| 4842 |
+
<?php } ?>
|
| 4843 |
<form action="" method="post">
|
| 4844 |
<table class="form-table">
|
| 4845 |
<tbody>
|
| 4846 |
<tr class="form-field form-required">
|
| 4847 |
<th valign="top" scope="row">
|
| 4848 |
<label for="polldaddy-email">
|
| 4849 |
+
<?php _e( 'WordPress.com Email Address', 'polldaddy' ); ?>
|
| 4850 |
</label>
|
| 4851 |
</th>
|
| 4852 |
<td>
|
| 4853 |
+
<input type="text" name="polldaddy_email" id="polldaddy-email" aria-required="true" size="40" value="<?php if ( isset( $_POST[ 'polldaddy_email' ] ) ) echo esc_attr( $_POST[ 'polldaddy_email' ] ); ?>" />
|
| 4854 |
</td>
|
| 4855 |
</tr>
|
| 4856 |
<tr class="form-field form-required">
|
| 4857 |
<th valign="top" scope="row">
|
| 4858 |
<label for="polldaddy-password">
|
| 4859 |
+
<?php _e( 'WordPress.com Password', 'polldaddy' ); ?>
|
| 4860 |
</label>
|
| 4861 |
</th>
|
| 4862 |
<td>
|
| 4863 |
<input type="password" name="polldaddy_password" id="polldaddy-password" aria-required="true" size="40" />
|
| 4864 |
+
<?php if ( $account_email ) { ?>
|
| 4865 |
+
<p><?php printf( __( 'Any polls or ratings created in your current account will still be available on Polldaddy.com when you login as %s.', 'polldaddy' ), $account_email ); ?></p>
|
| 4866 |
+
<?php } ?>
|
| 4867 |
</td>
|
| 4868 |
</tr>
|
| 4869 |
</tbody>
|
| 4872 |
<?php wp_nonce_field( 'polldaddy-account' ); ?>
|
| 4873 |
<input type="hidden" name="action" value="import-account" />
|
| 4874 |
<input type="hidden" name="account" value="import" />
|
| 4875 |
+
<input type="submit" class="button-primary" value="<?php echo esc_attr( __( 'Link Account', 'polldaddy' ) ); ?>" />
|
| 4876 |
</p>
|
| 4877 |
</form>
|
| 4878 |
<br />
|
| 5016 |
require dirname( __FILE__ ).'/popups.php';
|
| 5017 |
require dirname( __FILE__ ).'/polldaddy-org.php';
|
| 5018 |
|
| 5019 |
+
$GLOBALS[ 'wp_log_plugins' ][] = 'polldaddy';
|
polldaddy.pot
CHANGED
|
@@ -1,1858 +1,1895 @@
|
|
| 1 |
-
# Copyright (C)
|
| 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.
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
| 7 |
-
"POT-Creation-Date:
|
| 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:
|
| 12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
| 13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
| 14 |
|
| 15 |
-
#: ajax.php:
|
| 16 |
msgid "click and drag to reorder"
|
| 17 |
msgstr ""
|
| 18 |
|
| 19 |
-
#: ajax.php:
|
| 20 |
msgid "Enter an answer here"
|
| 21 |
msgstr ""
|
| 22 |
|
| 23 |
-
#: ajax.php:
|
| 24 |
-
#: polldaddy.php:
|
| 25 |
msgid "Add an Image"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
-
#: ajax.php:
|
| 29 |
-
#: polldaddy.php:
|
| 30 |
msgid "Add Audio"
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: ajax.php:
|
| 34 |
-
#: polldaddy.php:
|
| 35 |
msgid "Add Video"
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
-
#: polldaddy-org.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
msgid "Email address required"
|
| 40 |
msgstr ""
|
| 41 |
|
| 42 |
-
#: polldaddy-org.php:
|
| 43 |
msgid "Password required"
|
| 44 |
msgstr ""
|
| 45 |
|
| 46 |
-
#: polldaddy-org.php:
|
| 47 |
msgid "Could not connect to Polldaddy API Key service"
|
| 48 |
msgstr ""
|
| 49 |
|
| 50 |
-
#: polldaddy-org.php:
|
| 51 |
msgid "Can't connect to Polldaddy.com"
|
| 52 |
msgstr ""
|
| 53 |
|
| 54 |
-
#: polldaddy-org.php:
|
| 55 |
msgid ""
|
| 56 |
"Login to Polldaddy failed. Double check your email address and password."
|
| 57 |
msgstr ""
|
| 58 |
|
| 59 |
-
#: polldaddy-org.php:
|
| 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:
|
| 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:
|
| 72 |
msgid ""
|
| 73 |
"Account could not be accessed. Are your email address and password correct?"
|
| 74 |
msgstr ""
|
| 75 |
|
| 76 |
-
#: polldaddy-org.php:
|
| 77 |
msgid "Polldaddy Account"
|
| 78 |
msgstr ""
|
| 79 |
|
| 80 |
-
#: polldaddy-org.php:
|
| 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:
|
| 87 |
msgid "Polldaddy Email Address"
|
| 88 |
msgstr ""
|
| 89 |
|
| 90 |
-
#: polldaddy-org.php:
|
| 91 |
msgid "Polldaddy Password"
|
| 92 |
msgstr ""
|
| 93 |
|
| 94 |
-
#: polldaddy-org.php:
|
| 95 |
msgid "Use SSL to Log in"
|
| 96 |
msgstr ""
|
| 97 |
|
| 98 |
-
#: polldaddy-org.php:
|
| 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:
|
| 105 |
msgid "Submit"
|
| 106 |
msgstr ""
|
| 107 |
|
| 108 |
-
#: polldaddy-org.php:
|
| 109 |
msgid "Load Shortcodes Inline"
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
-
#: polldaddy-org.php:
|
| 113 |
msgid ""
|
| 114 |
"This will load the Polldaddy shortcodes inline rather than in the page "
|
| 115 |
"footer."
|
| 116 |
msgstr ""
|
| 117 |
|
| 118 |
-
#: polldaddy-org.php:
|
| 119 |
msgid "Multiple Polldaddy Accounts"
|
| 120 |
msgstr ""
|
| 121 |
|
| 122 |
-
#: polldaddy-org.php:
|
| 123 |
msgid "This setting will allow each blog user to import a Polldaddy account."
|
| 124 |
msgstr ""
|
| 125 |
|
| 126 |
-
#: polldaddy-org.php:
|
| 127 |
msgid "Sync Ratings Account"
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
-
#: polldaddy-org.php:
|
| 131 |
msgid "This will synchronize your ratings Polldaddy account."
|
| 132 |
msgstr ""
|
| 133 |
|
| 134 |
-
#: polldaddy-org.php:
|
| 135 |
msgid "Ratings Title Filter"
|
| 136 |
msgstr ""
|
| 137 |
|
| 138 |
-
#: polldaddy-org.php:
|
| 139 |
msgid ""
|
| 140 |
"This setting allows you to specify a filter to use with your ratings title."
|
| 141 |
msgstr ""
|
| 142 |
|
| 143 |
-
#: polldaddy-org.php:
|
| 144 |
msgid "A list of your top rated posts, pages or comments."
|
| 145 |
msgstr ""
|
| 146 |
|
| 147 |
-
#: polldaddy-org.php:
|
| 148 |
msgid "Top Rated"
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
-
#: polldaddy-org.php:
|
| 152 |
msgid "Title"
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
-
#: polldaddy-org.php:
|
| 156 |
msgid "Show for posts"
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
-
#: polldaddy-org.php:
|
| 160 |
msgid "Show for pages"
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
-
#: polldaddy-org.php:
|
| 164 |
msgid "Show for comments"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
-
#: polldaddy-org.php:
|
| 168 |
-
msgid "
|
| 169 |
-
msgstr ""
|
| 170 |
-
|
| 171 |
-
#: polldaddy.php:80 polldaddy.php:82 polldaddy.php:99 polldaddy.php:101
|
| 172 |
-
#: polldaddy.php:121
|
| 173 |
-
msgid "Polls"
|
| 174 |
-
msgstr ""
|
| 175 |
-
|
| 176 |
-
#: polldaddy.php:87 polldaddy.php:89 polldaddy.php:106 polldaddy.php:108
|
| 177 |
-
msgid "Ratings"
|
| 178 |
-
msgstr ""
|
| 179 |
-
|
| 180 |
-
#: polldaddy.php:114
|
| 181 |
-
msgid "Ratings – Settings"
|
| 182 |
-
msgstr ""
|
| 183 |
-
|
| 184 |
-
#: polldaddy.php:114
|
| 185 |
-
msgid "All Ratings"
|
| 186 |
-
msgstr ""
|
| 187 |
-
|
| 188 |
-
#: polldaddy.php:115 polldaddy.php:118
|
| 189 |
-
msgid "Ratings – Reports"
|
| 190 |
-
msgstr ""
|
| 191 |
-
|
| 192 |
-
#: polldaddy.php:115 polldaddy.php:118
|
| 193 |
-
msgid "Reports"
|
| 194 |
msgstr ""
|
| 195 |
|
| 196 |
-
#: polldaddy.php:
|
| 197 |
-
msgid "
|
| 198 |
-
msgstr ""
|
| 199 |
-
|
| 200 |
-
#: polldaddy.php:124
|
| 201 |
-
msgid "Add New Poll"
|
| 202 |
-
msgstr ""
|
| 203 |
-
|
| 204 |
-
#: polldaddy.php:124
|
| 205 |
-
msgid "Add New"
|
| 206 |
msgstr ""
|
| 207 |
|
| 208 |
-
#: polldaddy.php:
|
| 209 |
-
|
| 210 |
-
|
|
|
|
| 211 |
msgstr ""
|
| 212 |
|
| 213 |
-
#: polldaddy.php:
|
| 214 |
-
msgid "
|
| 215 |
msgstr ""
|
| 216 |
|
| 217 |
-
#: polldaddy.php:
|
| 218 |
msgid "Invalid Account"
|
| 219 |
msgstr ""
|
| 220 |
|
| 221 |
-
#: polldaddy.php:
|
| 222 |
-
msgid ""
|
| 223 |
-
"Obsolete Polldaddy User API Key: <a href=\"%s\">Sign in again to re-"
|
| 224 |
-
"authenticate</a>"
|
| 225 |
-
msgstr ""
|
| 226 |
-
|
| 227 |
-
#: polldaddy.php:277
|
| 228 |
msgid "Polldaddy"
|
| 229 |
msgstr ""
|
| 230 |
|
| 231 |
-
#: polldaddy.php:
|
| 232 |
msgid "Add Poll"
|
| 233 |
msgstr ""
|
| 234 |
|
| 235 |
-
#: polldaddy.php:
|
| 236 |
msgid "Star Colors"
|
| 237 |
msgstr ""
|
| 238 |
|
| 239 |
-
#: polldaddy.php:
|
| 240 |
msgid "Star Size"
|
| 241 |
msgstr ""
|
| 242 |
|
| 243 |
-
#: polldaddy.php:
|
| 244 |
msgid "Nero Type"
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
-
#: polldaddy.php:
|
| 248 |
msgid "Nero Size"
|
| 249 |
msgstr ""
|
| 250 |
|
| 251 |
-
#: polldaddy.php:
|
| 252 |
msgid "You are not allowed to delete this poll."
|
| 253 |
msgstr ""
|
| 254 |
|
| 255 |
-
#: polldaddy.php:
|
| 256 |
msgid "Invalid Poll Author"
|
| 257 |
msgstr ""
|
| 258 |
|
| 259 |
-
#: polldaddy.php:
|
| 260 |
msgid "You are not allowed to open this poll."
|
| 261 |
msgstr ""
|
| 262 |
|
| 263 |
-
#: polldaddy.php:
|
| 264 |
msgid "You are not allowed to close this poll."
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
-
#: polldaddy.php:
|
| 268 |
msgid "You are not allowed to edit this poll."
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
-
#: polldaddy.php:
|
| 272 |
msgid "Poll not found"
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
-
#: polldaddy.php:
|
| 276 |
msgid "Invalid answers"
|
| 277 |
msgstr ""
|
| 278 |
|
| 279 |
-
#: polldaddy.php:
|
| 280 |
msgid "You must include at least 2 answers"
|
| 281 |
msgstr ""
|
| 282 |
|
| 283 |
-
#: polldaddy.php:
|
| 284 |
msgid "Please choose a poll style"
|
| 285 |
msgstr ""
|
| 286 |
|
| 287 |
-
#: polldaddy.php:
|
| 288 |
msgid "Poll could not be updated"
|
| 289 |
msgstr ""
|
| 290 |
|
| 291 |
-
#: polldaddy.php:
|
| 292 |
msgid "Poll could not be created"
|
| 293 |
msgstr ""
|
| 294 |
|
| 295 |
-
#: polldaddy.php:
|
| 296 |
msgid "Style could not be updated"
|
| 297 |
msgstr ""
|
| 298 |
|
| 299 |
-
#: polldaddy.php:
|
| 300 |
msgid "Style could not be created"
|
| 301 |
msgstr ""
|
| 302 |
|
| 303 |
-
#: polldaddy.php:
|
| 304 |
msgid ""
|
| 305 |
"Account could not be imported. Are your email address and password correct?"
|
| 306 |
msgstr ""
|
| 307 |
|
| 308 |
-
#: polldaddy.php:
|
| 309 |
msgid "Poll deleted."
|
| 310 |
msgstr ""
|
| 311 |
|
| 312 |
-
#: polldaddy.php:
|
| 313 |
msgid "%s Poll Deleted."
|
| 314 |
msgid_plural "%s Polls Deleted."
|
| 315 |
msgstr[0] ""
|
| 316 |
msgstr[1] ""
|
| 317 |
|
| 318 |
-
#: polldaddy.php:
|
| 319 |
msgid "Poll opened."
|
| 320 |
msgstr ""
|
| 321 |
|
| 322 |
-
#: polldaddy.php:
|
| 323 |
msgid "%s Poll Opened."
|
| 324 |
msgid_plural "%s Polls Opened."
|
| 325 |
msgstr[0] ""
|
| 326 |
msgstr[1] ""
|
| 327 |
|
| 328 |
-
#: polldaddy.php:
|
| 329 |
msgid "Poll closed."
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
-
#: polldaddy.php:
|
| 333 |
msgid "%s Poll Closed."
|
| 334 |
msgid_plural "%s Polls Closed."
|
| 335 |
msgstr[0] ""
|
| 336 |
msgstr[1] ""
|
| 337 |
|
| 338 |
-
#: polldaddy.php:
|
| 339 |
msgid "Poll updated."
|
| 340 |
msgstr ""
|
| 341 |
|
| 342 |
-
#: polldaddy.php:
|
| 343 |
msgid "Poll created."
|
| 344 |
msgstr ""
|
| 345 |
|
| 346 |
-
#: polldaddy.php:
|
| 347 |
msgid "Embed in Post"
|
| 348 |
msgstr ""
|
| 349 |
|
| 350 |
-
#: polldaddy.php:
|
| 351 |
msgid "Custom Style updated."
|
| 352 |
msgstr ""
|
| 353 |
|
| 354 |
-
#: polldaddy.php:
|
| 355 |
msgid "Custom Style created."
|
| 356 |
msgstr ""
|
| 357 |
|
| 358 |
-
#: polldaddy.php:
|
| 359 |
msgid "Custom Style deleted."
|
| 360 |
msgstr ""
|
| 361 |
|
| 362 |
-
#: polldaddy.php:
|
| 363 |
msgid "%s Style Deleted."
|
| 364 |
msgid_plural "%s Custom Styles Deleted."
|
| 365 |
msgstr[0] ""
|
| 366 |
msgstr[1] ""
|
| 367 |
|
| 368 |
-
#: polldaddy.php:
|
| 369 |
-
msgid "Account
|
| 370 |
msgstr ""
|
| 371 |
|
| 372 |
-
#: polldaddy.php:
|
| 373 |
msgid "Options Updated."
|
| 374 |
msgstr ""
|
| 375 |
|
| 376 |
-
#: polldaddy.php:
|
| 377 |
msgid "Rating deleted."
|
| 378 |
msgstr ""
|
| 379 |
|
| 380 |
-
#: polldaddy.php:
|
| 381 |
msgid "%s Rating Deleted."
|
| 382 |
msgid_plural "%s Ratings Deleted."
|
| 383 |
msgstr[0] ""
|
| 384 |
msgstr[1] ""
|
| 385 |
|
| 386 |
-
#: polldaddy.php:
|
| 387 |
msgid "Error: An error has occurred; Poll not created."
|
| 388 |
msgstr ""
|
| 389 |
|
| 390 |
-
#: polldaddy.php:
|
| 391 |
msgid "Error: An error has occurred; Poll not updated."
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
-
#: polldaddy.php:
|
| 395 |
msgid ""
|
| 396 |
"Error: An error has occurred; Account could not be imported. Perhaps your "
|
| 397 |
"email address or password is incorrect?"
|
| 398 |
msgstr ""
|
| 399 |
|
| 400 |
-
#: polldaddy.php:
|
| 401 |
msgid "Error: An error has occurred; Account could not be created."
|
| 402 |
msgstr ""
|
| 403 |
|
| 404 |
-
#: polldaddy.php:
|
| 405 |
msgid "Polldaddy Polls"
|
| 406 |
msgstr ""
|
| 407 |
|
| 408 |
-
#: polldaddy.php:
|
| 409 |
-
msgid "Preview Poll <a href=\"%s\" class=\"
|
| 410 |
msgstr ""
|
| 411 |
|
| 412 |
-
#: polldaddy.php:
|
| 413 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 414 |
msgstr ""
|
| 415 |
|
| 416 |
-
#: polldaddy.php:
|
| 417 |
-
msgid "
|
| 418 |
msgstr ""
|
| 419 |
|
| 420 |
-
#: polldaddy.php:
|
| 421 |
-
msgid "
|
| 422 |
msgstr ""
|
| 423 |
|
| 424 |
-
#: polldaddy.php:
|
| 425 |
-
|
|
|
|
| 426 |
msgstr ""
|
| 427 |
|
| 428 |
-
#: polldaddy.php:
|
| 429 |
-
msgid "Edit Style <a href=\"%s\" class=\"
|
| 430 |
msgstr ""
|
| 431 |
|
| 432 |
-
#: polldaddy.php:
|
| 433 |
-
msgid "Create Style <a href=\"%s\" class=\"
|
| 434 |
msgstr ""
|
| 435 |
|
| 436 |
-
#: polldaddy.php:
|
| 437 |
-
msgid "Polldaddy Polls <a href=\"%s\" class=\"
|
| 438 |
msgstr ""
|
| 439 |
|
| 440 |
-
#: polldaddy.php:
|
| 441 |
msgid "Polldaddy Polls "
|
| 442 |
msgstr ""
|
| 443 |
|
| 444 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 445 |
msgid "Actions"
|
| 446 |
msgstr ""
|
| 447 |
|
| 448 |
-
#: polldaddy.php:
|
| 449 |
-
#: polldaddy.php:
|
| 450 |
msgid "Delete"
|
| 451 |
msgstr ""
|
| 452 |
|
| 453 |
-
#: polldaddy.php:
|
| 454 |
msgid "Close"
|
| 455 |
msgstr ""
|
| 456 |
|
| 457 |
-
#: polldaddy.php:
|
| 458 |
msgid "Open"
|
| 459 |
msgstr ""
|
| 460 |
|
| 461 |
-
#: polldaddy.php:
|
| 462 |
msgid "Apply"
|
| 463 |
msgstr ""
|
| 464 |
|
| 465 |
-
#: polldaddy.php:
|
| 466 |
msgid "View All Polls"
|
| 467 |
msgstr ""
|
| 468 |
|
| 469 |
-
#: polldaddy.php:
|
| 470 |
msgid "This Blog's Polls"
|
| 471 |
msgstr ""
|
| 472 |
|
| 473 |
-
#: polldaddy.php:
|
| 474 |
msgid "Filter"
|
| 475 |
msgstr ""
|
| 476 |
|
| 477 |
-
#: polldaddy.php:
|
| 478 |
msgid "Poll"
|
| 479 |
msgstr ""
|
| 480 |
|
| 481 |
-
#: polldaddy.php:
|
| 482 |
msgid "Y/m/d g:i:s A"
|
| 483 |
msgstr ""
|
| 484 |
|
| 485 |
-
#: polldaddy.php:
|
| 486 |
msgid "created"
|
| 487 |
msgstr ""
|
| 488 |
|
| 489 |
-
#: polldaddy.php:
|
| 490 |
msgid "M d, Y"
|
| 491 |
msgstr ""
|
| 492 |
|
| 493 |
-
#: polldaddy.php:
|
| 494 |
msgid "Edit"
|
| 495 |
msgstr ""
|
| 496 |
|
| 497 |
-
#: polldaddy.php:
|
| 498 |
msgid "Embed & Link"
|
| 499 |
msgstr ""
|
| 500 |
|
| 501 |
-
#: polldaddy.php:
|
| 502 |
msgid "Preview"
|
| 503 |
msgstr ""
|
| 504 |
|
| 505 |
-
#: polldaddy.php:
|
| 506 |
msgid "Results"
|
| 507 |
msgstr ""
|
| 508 |
|
| 509 |
-
#: polldaddy.php:
|
| 510 |
msgid "votes"
|
| 511 |
msgstr ""
|
| 512 |
|
| 513 |
-
#: polldaddy.php:
|
| 514 |
msgid "WordPress Shortcode"
|
| 515 |
msgstr ""
|
| 516 |
|
| 517 |
-
#: polldaddy.php:
|
| 518 |
msgid "Short URL (Good for Twitter etc.)"
|
| 519 |
msgstr ""
|
| 520 |
|
| 521 |
-
#: polldaddy.php:
|
| 522 |
msgid "Facebook URL"
|
| 523 |
msgstr ""
|
| 524 |
|
| 525 |
-
#: polldaddy.php:
|
| 526 |
msgid "JavaScript"
|
| 527 |
msgstr ""
|
| 528 |
|
| 529 |
-
#: polldaddy.php:
|
| 530 |
msgid "Done"
|
| 531 |
msgstr ""
|
| 532 |
|
| 533 |
-
#: polldaddy.php:
|
| 534 |
msgid "What are you doing here? <a href=\"%s\">Go back</a>."
|
| 535 |
msgstr ""
|
| 536 |
|
| 537 |
-
#: polldaddy.php:
|
| 538 |
-
msgid "You haven't
|
| 539 |
msgstr ""
|
| 540 |
|
| 541 |
-
#: polldaddy.php:
|
| 542 |
msgid "Why don't you go ahead and get started on that?"
|
| 543 |
msgstr ""
|
| 544 |
|
| 545 |
-
#: polldaddy.php:
|
| 546 |
msgid "Create a Poll Now"
|
| 547 |
msgstr ""
|
| 548 |
|
| 549 |
-
#: polldaddy.php:
|
| 550 |
-
msgid "No one has created any polls for this blog
|
| 551 |
msgstr ""
|
| 552 |
|
| 553 |
-
#: polldaddy.php:
|
| 554 |
-
#: polldaddy.php:
|
| 555 |
msgid "Are you sure you want to delete the rating for \"%s\"?"
|
| 556 |
msgstr ""
|
| 557 |
|
| 558 |
-
#: polldaddy.php:
|
| 559 |
msgid "Are you sure you want to delete the poll %s?"
|
| 560 |
msgstr ""
|
| 561 |
|
| 562 |
-
#: polldaddy.php:
|
| 563 |
-
#: polldaddy.php:
|
| 564 |
msgid "Are you sure you want to delete this answer?"
|
| 565 |
msgstr ""
|
| 566 |
|
| 567 |
-
#: polldaddy.php:
|
| 568 |
-
#: polldaddy.php:
|
| 569 |
msgid "delete this answer"
|
| 570 |
msgstr ""
|
| 571 |
|
| 572 |
-
#: polldaddy.php:
|
| 573 |
-
#: polldaddy.php:
|
| 574 |
msgid "Standard Styles"
|
| 575 |
msgstr ""
|
| 576 |
|
| 577 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 578 |
msgid "Save"
|
| 579 |
msgstr ""
|
| 580 |
|
| 581 |
-
#: polldaddy.php:
|
| 582 |
msgid "Randomize answer order"
|
| 583 |
msgstr ""
|
| 584 |
|
| 585 |
-
#: polldaddy.php:
|
| 586 |
msgid "Allow other answers"
|
| 587 |
msgstr ""
|
| 588 |
|
| 589 |
-
#: polldaddy.php:
|
| 590 |
-
msgid "
|
| 591 |
msgstr ""
|
| 592 |
|
| 593 |
-
#: polldaddy.php:
|
| 594 |
-
msgid "
|
| 595 |
msgstr ""
|
| 596 |
|
| 597 |
-
#: polldaddy.php:
|
| 598 |
msgid "Number of choices"
|
| 599 |
msgstr ""
|
| 600 |
|
| 601 |
-
#: polldaddy.php:
|
| 602 |
msgid "No Limit"
|
| 603 |
msgstr ""
|
| 604 |
|
| 605 |
-
#: polldaddy.php:
|
| 606 |
msgid "Save Poll"
|
| 607 |
msgstr ""
|
| 608 |
|
| 609 |
-
#: polldaddy.php:
|
| 610 |
msgid "Results Display"
|
| 611 |
msgstr ""
|
| 612 |
|
| 613 |
-
#: polldaddy.php:
|
| 614 |
msgid "Show results to voters"
|
| 615 |
msgstr ""
|
| 616 |
|
| 617 |
-
#: polldaddy.php:
|
| 618 |
msgid "Only show percentages"
|
| 619 |
msgstr ""
|
| 620 |
|
| 621 |
-
#: polldaddy.php:
|
| 622 |
msgid "Hide all results"
|
| 623 |
msgstr ""
|
| 624 |
|
| 625 |
-
#: polldaddy.php:
|
| 626 |
msgid "Repeat Voting"
|
| 627 |
msgstr ""
|
| 628 |
|
| 629 |
-
#: polldaddy.php:
|
| 630 |
msgid "Don't block repeat voters"
|
| 631 |
msgstr ""
|
| 632 |
|
| 633 |
-
#: polldaddy.php:
|
| 634 |
msgid "Block by cookie (recommended)"
|
| 635 |
msgstr ""
|
| 636 |
|
| 637 |
-
#: polldaddy.php:
|
| 638 |
msgid "Block by cookie and by IP address"
|
| 639 |
msgstr ""
|
| 640 |
|
| 641 |
-
#: polldaddy.php:
|
| 642 |
msgid "Expires: "
|
| 643 |
msgstr ""
|
| 644 |
|
| 645 |
-
#: polldaddy.php:
|
| 646 |
msgid "Never"
|
| 647 |
msgstr ""
|
| 648 |
|
| 649 |
-
#: polldaddy.php:
|
| 650 |
msgid "%d hour"
|
| 651 |
msgstr ""
|
| 652 |
|
| 653 |
-
#: polldaddy.php:
|
| 654 |
-
#: polldaddy.php:
|
| 655 |
msgid "%d hours"
|
| 656 |
msgstr ""
|
| 657 |
|
| 658 |
-
#: polldaddy.php:
|
| 659 |
msgid "%d day"
|
| 660 |
msgstr ""
|
| 661 |
|
| 662 |
-
#: polldaddy.php:
|
| 663 |
msgid "%d week"
|
| 664 |
msgstr ""
|
| 665 |
|
| 666 |
-
#: polldaddy.php:
|
| 667 |
msgid "%d month"
|
| 668 |
msgstr ""
|
| 669 |
|
| 670 |
-
#: polldaddy.php:
|
| 671 |
msgid ""
|
| 672 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
| 673 |
msgstr ""
|
| 674 |
|
| 675 |
-
#: polldaddy.php:
|
|
|
|
| 676 |
msgid "Comments"
|
| 677 |
msgstr ""
|
| 678 |
|
| 679 |
-
#: polldaddy.php:
|
| 680 |
msgid "Allow comments"
|
| 681 |
msgstr ""
|
| 682 |
|
| 683 |
-
#: polldaddy.php:
|
| 684 |
msgid "Moderate first"
|
| 685 |
msgstr ""
|
| 686 |
|
| 687 |
-
#: polldaddy.php:
|
| 688 |
msgid "No comments"
|
| 689 |
msgstr ""
|
| 690 |
|
| 691 |
-
#: polldaddy.php:
|
| 692 |
msgid "Enter Question Here"
|
| 693 |
msgstr ""
|
| 694 |
|
| 695 |
-
#: polldaddy.php:
|
| 696 |
msgid "WordPress Shortcode:"
|
| 697 |
msgstr ""
|
| 698 |
|
| 699 |
-
#: polldaddy.php:
|
| 700 |
msgid "Embed Poll in New Post"
|
| 701 |
msgstr ""
|
| 702 |
|
| 703 |
-
#: polldaddy.php:
|
| 704 |
msgid "Answers"
|
| 705 |
msgstr ""
|
| 706 |
|
| 707 |
-
#: polldaddy.php:
|
| 708 |
msgid "Add New Answer"
|
| 709 |
msgstr ""
|
| 710 |
|
| 711 |
-
#: polldaddy.php:
|
| 712 |
msgid "Aluminum Narrow"
|
| 713 |
msgstr ""
|
| 714 |
|
| 715 |
-
#: polldaddy.php:
|
| 716 |
msgid "Aluminum Medium"
|
| 717 |
msgstr ""
|
| 718 |
|
| 719 |
-
#: polldaddy.php:
|
| 720 |
msgid "Aluminum Wide"
|
| 721 |
msgstr ""
|
| 722 |
|
| 723 |
-
#: polldaddy.php:
|
| 724 |
msgid "Plain White Narrow"
|
| 725 |
msgstr ""
|
| 726 |
|
| 727 |
-
#: polldaddy.php:
|
| 728 |
msgid "Plain White Medium"
|
| 729 |
msgstr ""
|
| 730 |
|
| 731 |
-
#: polldaddy.php:
|
| 732 |
msgid "Plain White Wide"
|
| 733 |
msgstr ""
|
| 734 |
|
| 735 |
-
#: polldaddy.php:
|
| 736 |
msgid "Plain Black Narrow"
|
| 737 |
msgstr ""
|
| 738 |
|
| 739 |
-
#: polldaddy.php:
|
| 740 |
msgid "Plain Black Medium"
|
| 741 |
msgstr ""
|
| 742 |
|
| 743 |
-
#: polldaddy.php:
|
| 744 |
msgid "Plain Black Wide"
|
| 745 |
msgstr ""
|
| 746 |
|
| 747 |
-
#: polldaddy.php:
|
| 748 |
msgid "Paper Narrow"
|
| 749 |
msgstr ""
|
| 750 |
|
| 751 |
-
#: polldaddy.php:
|
| 752 |
msgid "Paper Medium"
|
| 753 |
msgstr ""
|
| 754 |
|
| 755 |
-
#: polldaddy.php:
|
| 756 |
msgid "Paper Wide"
|
| 757 |
msgstr ""
|
| 758 |
|
| 759 |
-
#: polldaddy.php:
|
| 760 |
msgid "Skull Dark Narrow"
|
| 761 |
msgstr ""
|
| 762 |
|
| 763 |
-
#: polldaddy.php:
|
| 764 |
msgid "Skull Dark Medium"
|
| 765 |
msgstr ""
|
| 766 |
|
| 767 |
-
#: polldaddy.php:
|
| 768 |
msgid "Skull Dark Wide"
|
| 769 |
msgstr ""
|
| 770 |
|
| 771 |
-
#: polldaddy.php:
|
| 772 |
msgid "Skull Light Narrow"
|
| 773 |
msgstr ""
|
| 774 |
|
| 775 |
-
#: polldaddy.php:
|
| 776 |
msgid "Skull Light Medium"
|
| 777 |
msgstr ""
|
| 778 |
|
| 779 |
-
#: polldaddy.php:
|
| 780 |
msgid "Skull Light Wide"
|
| 781 |
msgstr ""
|
| 782 |
|
| 783 |
-
#: polldaddy.php:
|
| 784 |
msgid "Micro"
|
| 785 |
msgstr ""
|
| 786 |
|
| 787 |
-
#: polldaddy.php:
|
| 788 |
msgid "Plastic White Narrow"
|
| 789 |
msgstr ""
|
| 790 |
|
| 791 |
-
#: polldaddy.php:
|
| 792 |
msgid "Plastic White Medium"
|
| 793 |
msgstr ""
|
| 794 |
|
| 795 |
-
#: polldaddy.php:
|
| 796 |
msgid "Plastic White Wide"
|
| 797 |
msgstr ""
|
| 798 |
|
| 799 |
-
#: polldaddy.php:
|
| 800 |
msgid "Plastic Grey Narrow"
|
| 801 |
msgstr ""
|
| 802 |
|
| 803 |
-
#: polldaddy.php:
|
| 804 |
msgid "Plastic Grey Medium"
|
| 805 |
msgstr ""
|
| 806 |
|
| 807 |
-
#: polldaddy.php:
|
| 808 |
msgid "Plastic Grey Wide"
|
| 809 |
msgstr ""
|
| 810 |
|
| 811 |
-
#: polldaddy.php:
|
| 812 |
msgid "Plastic Black Narrow"
|
| 813 |
msgstr ""
|
| 814 |
|
| 815 |
-
#: polldaddy.php:
|
| 816 |
msgid "Plastic Black Medium"
|
| 817 |
msgstr ""
|
| 818 |
|
| 819 |
-
#: polldaddy.php:
|
| 820 |
msgid "Plastic Black Wide"
|
| 821 |
msgstr ""
|
| 822 |
|
| 823 |
-
#: polldaddy.php:
|
| 824 |
msgid "Manga Narrow"
|
| 825 |
msgstr ""
|
| 826 |
|
| 827 |
-
#: polldaddy.php:
|
| 828 |
msgid "Manga Medium"
|
| 829 |
msgstr ""
|
| 830 |
|
| 831 |
-
#: polldaddy.php:
|
| 832 |
msgid "Manga Wide"
|
| 833 |
msgstr ""
|
| 834 |
|
| 835 |
-
#: polldaddy.php:
|
| 836 |
msgid "Tech Dark Narrow"
|
| 837 |
msgstr ""
|
| 838 |
|
| 839 |
-
#: polldaddy.php:
|
| 840 |
msgid "Tech Dark Medium"
|
| 841 |
msgstr ""
|
| 842 |
|
| 843 |
-
#: polldaddy.php:
|
| 844 |
msgid "Tech Dark Wide"
|
| 845 |
msgstr ""
|
| 846 |
|
| 847 |
-
#: polldaddy.php:
|
| 848 |
msgid "Tech Grey Narrow"
|
| 849 |
msgstr ""
|
| 850 |
|
| 851 |
-
#: polldaddy.php:
|
| 852 |
msgid "Tech Grey Medium"
|
| 853 |
msgstr ""
|
| 854 |
|
| 855 |
-
#: polldaddy.php:
|
| 856 |
msgid "Tech Grey Wide"
|
| 857 |
msgstr ""
|
| 858 |
|
| 859 |
-
#: polldaddy.php:
|
| 860 |
msgid "Tech Light Narrow"
|
| 861 |
msgstr ""
|
| 862 |
|
| 863 |
-
#: polldaddy.php:
|
| 864 |
msgid "Tech Light Medium"
|
| 865 |
msgstr ""
|
| 866 |
|
| 867 |
-
#: polldaddy.php:
|
| 868 |
msgid "Tech Light Wide"
|
| 869 |
msgstr ""
|
| 870 |
|
| 871 |
-
#: polldaddy.php:
|
| 872 |
msgid "Working Male Narrow"
|
| 873 |
msgstr ""
|
| 874 |
|
| 875 |
-
#: polldaddy.php:
|
| 876 |
msgid "Working Male Medium"
|
| 877 |
msgstr ""
|
| 878 |
|
| 879 |
-
#: polldaddy.php:
|
| 880 |
msgid "Working Male Wide"
|
| 881 |
msgstr ""
|
| 882 |
|
| 883 |
-
#: polldaddy.php:
|
| 884 |
msgid "Working Female Narrow"
|
| 885 |
msgstr ""
|
| 886 |
|
| 887 |
-
#: polldaddy.php:
|
| 888 |
msgid "Working Female Medium"
|
| 889 |
msgstr ""
|
| 890 |
|
| 891 |
-
#: polldaddy.php:
|
| 892 |
msgid "Working Female Wide"
|
| 893 |
msgstr ""
|
| 894 |
|
| 895 |
-
#: polldaddy.php:
|
| 896 |
msgid "Thinking Male Narrow"
|
| 897 |
msgstr ""
|
| 898 |
|
| 899 |
-
#: polldaddy.php:
|
| 900 |
msgid "Thinking Male Medium"
|
| 901 |
msgstr ""
|
| 902 |
|
| 903 |
-
#: polldaddy.php:
|
| 904 |
msgid "Thinking Male Wide"
|
| 905 |
msgstr ""
|
| 906 |
|
| 907 |
-
#: polldaddy.php:
|
| 908 |
msgid "Thinking Female Narrow"
|
| 909 |
msgstr ""
|
| 910 |
|
| 911 |
-
#: polldaddy.php:
|
| 912 |
msgid "Thinking Female Medium"
|
| 913 |
msgstr ""
|
| 914 |
|
| 915 |
-
#: polldaddy.php:
|
| 916 |
msgid "Thinking Female Wide"
|
| 917 |
msgstr ""
|
| 918 |
|
| 919 |
-
#: polldaddy.php:
|
| 920 |
msgid "Sunset Narrow"
|
| 921 |
msgstr ""
|
| 922 |
|
| 923 |
-
#: polldaddy.php:
|
| 924 |
msgid "Sunset Medium"
|
| 925 |
msgstr ""
|
| 926 |
|
| 927 |
-
#: polldaddy.php:
|
| 928 |
msgid "Sunset Wide"
|
| 929 |
msgstr ""
|
| 930 |
|
| 931 |
-
#: polldaddy.php:
|
| 932 |
msgid "Music Medium"
|
| 933 |
msgstr ""
|
| 934 |
|
| 935 |
-
#: polldaddy.php:
|
| 936 |
msgid "Music Wide"
|
| 937 |
msgstr ""
|
| 938 |
|
| 939 |
-
#: polldaddy.php:
|
| 940 |
msgid "Poll Style"
|
| 941 |
msgstr ""
|
| 942 |
|
| 943 |
-
#: polldaddy.php:
|
| 944 |
msgid "Polldaddy Styles"
|
| 945 |
msgstr ""
|
| 946 |
|
| 947 |
-
#: polldaddy.php:
|
| 948 |
msgid "Polldaddy Style"
|
| 949 |
msgstr ""
|
| 950 |
|
| 951 |
-
#: polldaddy.php:
|
| 952 |
msgid "Custom Style"
|
| 953 |
msgstr ""
|
| 954 |
|
| 955 |
-
#: polldaddy.php:
|
| 956 |
-
msgid "Please choose a custom style
|
| 957 |
msgstr ""
|
| 958 |
|
| 959 |
-
#: polldaddy.php:
|
| 960 |
msgid "Please choose a style."
|
| 961 |
msgstr ""
|
| 962 |
|
| 963 |
-
#: polldaddy.php:
|
| 964 |
msgid "You currently have no custom styles created."
|
| 965 |
msgstr ""
|
| 966 |
|
| 967 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 968 |
msgid ""
|
| 969 |
"Did you know we have a new editor for building your own custom poll styles? "
|
| 970 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
| 971 |
msgstr ""
|
| 972 |
|
| 973 |
-
#: polldaddy.php:
|
| 974 |
msgid "Are you sure you want to delete \"%s\"?"
|
| 975 |
msgstr ""
|
| 976 |
|
| 977 |
-
#: polldaddy.php:
|
| 978 |
msgid "Aluminum"
|
| 979 |
msgstr ""
|
| 980 |
|
| 981 |
-
#: polldaddy.php:
|
| 982 |
msgid "Plain White"
|
| 983 |
msgstr ""
|
| 984 |
|
| 985 |
-
#: polldaddy.php:
|
| 986 |
msgid "Plain Black"
|
| 987 |
msgstr ""
|
| 988 |
|
| 989 |
-
#: polldaddy.php:
|
| 990 |
msgid "Paper"
|
| 991 |
msgstr ""
|
| 992 |
|
| 993 |
-
#: polldaddy.php:
|
| 994 |
msgid "Skull Dark"
|
| 995 |
msgstr ""
|
| 996 |
|
| 997 |
-
#: polldaddy.php:
|
| 998 |
msgid "Skull Light"
|
| 999 |
msgstr ""
|
| 1000 |
|
| 1001 |
-
#: polldaddy.php:
|
| 1002 |
msgid "Width 150px, the micro style is useful when space is tight."
|
| 1003 |
msgstr ""
|
| 1004 |
|
| 1005 |
-
#: polldaddy.php:
|
| 1006 |
msgid "Plastic White"
|
| 1007 |
msgstr ""
|
| 1008 |
|
| 1009 |
-
#: polldaddy.php:
|
| 1010 |
msgid "Plastic Grey"
|
| 1011 |
msgstr ""
|
| 1012 |
|
| 1013 |
-
#: polldaddy.php:
|
| 1014 |
msgid "Plastic Black"
|
| 1015 |
msgstr ""
|
| 1016 |
|
| 1017 |
-
#: polldaddy.php:
|
| 1018 |
msgid "Manga"
|
| 1019 |
msgstr ""
|
| 1020 |
|
| 1021 |
-
#: polldaddy.php:
|
| 1022 |
msgid "Tech Dark"
|
| 1023 |
msgstr ""
|
| 1024 |
|
| 1025 |
-
#: polldaddy.php:
|
| 1026 |
msgid "Tech Grey"
|
| 1027 |
msgstr ""
|
| 1028 |
|
| 1029 |
-
#: polldaddy.php:
|
| 1030 |
msgid "Tech Light"
|
| 1031 |
msgstr ""
|
| 1032 |
|
| 1033 |
-
#: polldaddy.php:
|
| 1034 |
msgid "Working Male"
|
| 1035 |
msgstr ""
|
| 1036 |
|
| 1037 |
-
#: polldaddy.php:
|
| 1038 |
msgid "Working Female"
|
| 1039 |
msgstr ""
|
| 1040 |
|
| 1041 |
-
#: polldaddy.php:
|
| 1042 |
msgid "Thinking Male"
|
| 1043 |
msgstr ""
|
| 1044 |
|
| 1045 |
-
#: polldaddy.php:
|
| 1046 |
msgid "Thinking Female"
|
| 1047 |
msgstr ""
|
| 1048 |
|
| 1049 |
-
#: polldaddy.php:
|
| 1050 |
msgid "Sunset"
|
| 1051 |
msgstr ""
|
| 1052 |
|
| 1053 |
-
#: polldaddy.php:
|
| 1054 |
msgid "Music"
|
| 1055 |
msgstr ""
|
| 1056 |
|
| 1057 |
-
#: polldaddy.php:
|
| 1058 |
msgid "Wide"
|
| 1059 |
msgstr ""
|
| 1060 |
|
| 1061 |
-
#: polldaddy.php:
|
| 1062 |
msgid "Medium"
|
| 1063 |
msgstr ""
|
| 1064 |
|
| 1065 |
-
#: polldaddy.php:
|
| 1066 |
msgid "Narrow"
|
| 1067 |
msgstr ""
|
| 1068 |
|
| 1069 |
-
#: polldaddy.php:
|
| 1070 |
msgid "Width: 630px, the wide style is good for blog posts."
|
| 1071 |
msgstr ""
|
| 1072 |
|
| 1073 |
-
#: polldaddy.php:
|
| 1074 |
msgid "Width: 300px, the medium style is good for general use."
|
| 1075 |
msgstr ""
|
| 1076 |
|
| 1077 |
-
#: polldaddy.php:
|
| 1078 |
msgid "Width 150px, the narrow style is good for sidebars etc."
|
| 1079 |
msgstr ""
|
| 1080 |
|
| 1081 |
-
#: polldaddy.php:
|
| 1082 |
msgid "Answer"
|
| 1083 |
msgstr ""
|
| 1084 |
|
| 1085 |
-
#: polldaddy.php:
|
| 1086 |
msgid "Votes"
|
| 1087 |
msgstr ""
|
| 1088 |
|
| 1089 |
-
#: polldaddy.php:
|
| 1090 |
msgid "Percent"
|
| 1091 |
msgstr ""
|
| 1092 |
|
| 1093 |
-
#: polldaddy.php:
|
| 1094 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
| 1095 |
msgstr ""
|
| 1096 |
|
| 1097 |
-
#: polldaddy.php:
|
| 1098 |
msgid "Other Answer"
|
| 1099 |
msgstr ""
|
| 1100 |
|
| 1101 |
-
#: polldaddy.php:
|
| 1102 |
msgid "Style"
|
| 1103 |
msgstr ""
|
| 1104 |
|
| 1105 |
-
#: polldaddy.php:
|
| 1106 |
msgid "Last Modified"
|
| 1107 |
msgstr ""
|
| 1108 |
|
| 1109 |
-
#: polldaddy.php:
|
| 1110 |
msgid "Y/m/d"
|
| 1111 |
msgstr ""
|
| 1112 |
|
| 1113 |
-
#: polldaddy.php:
|
| 1114 |
msgid "You haven't used our fancy style editor to create any custom styles!"
|
| 1115 |
msgstr ""
|
| 1116 |
|
| 1117 |
-
#: polldaddy.php:
|
| 1118 |
msgid "Create a Custom Style Now"
|
| 1119 |
msgstr ""
|
| 1120 |
|
| 1121 |
-
#: polldaddy.php:
|
| 1122 |
msgid "Style Name"
|
| 1123 |
msgstr ""
|
| 1124 |
|
| 1125 |
-
#: polldaddy.php:
|
| 1126 |
msgid "Preload Basic Style"
|
| 1127 |
msgstr ""
|
| 1128 |
|
| 1129 |
-
#: polldaddy.php:
|
| 1130 |
msgid "Load Style"
|
| 1131 |
msgstr ""
|
| 1132 |
|
| 1133 |
-
#: polldaddy.php:
|
| 1134 |
msgid "Text Direction"
|
| 1135 |
msgstr ""
|
| 1136 |
|
| 1137 |
-
#: polldaddy.php:
|
| 1138 |
msgid "Force RTL"
|
| 1139 |
msgstr ""
|
| 1140 |
|
| 1141 |
-
#: polldaddy.php:
|
| 1142 |
msgid "Force LTR"
|
| 1143 |
msgstr ""
|
| 1144 |
|
| 1145 |
-
#: polldaddy.php:
|
| 1146 |
msgid "Style Editor"
|
| 1147 |
msgstr ""
|
| 1148 |
|
| 1149 |
-
#: polldaddy.php:
|
| 1150 |
msgid "Select a template part to edit:"
|
| 1151 |
msgstr ""
|
| 1152 |
|
| 1153 |
-
#: polldaddy.php:
|
| 1154 |
msgid "Poll Box"
|
| 1155 |
msgstr ""
|
| 1156 |
|
| 1157 |
-
#: polldaddy.php:
|
| 1158 |
msgid "Question"
|
| 1159 |
msgstr ""
|
| 1160 |
|
| 1161 |
-
#: polldaddy.php:
|
| 1162 |
msgid "Answer Group"
|
| 1163 |
msgstr ""
|
| 1164 |
|
| 1165 |
-
#: polldaddy.php:
|
| 1166 |
msgid "Answer Check"
|
| 1167 |
msgstr ""
|
| 1168 |
|
| 1169 |
-
#: polldaddy.php:
|
| 1170 |
msgid "Other Input"
|
| 1171 |
msgstr ""
|
| 1172 |
|
| 1173 |
-
#: polldaddy.php:
|
| 1174 |
msgid "Vote Button"
|
| 1175 |
msgstr ""
|
| 1176 |
|
| 1177 |
-
#: polldaddy.php:
|
| 1178 |
msgid "Links"
|
| 1179 |
msgstr ""
|
| 1180 |
|
| 1181 |
-
#: polldaddy.php:
|
| 1182 |
msgid "Feedback Group"
|
| 1183 |
msgstr ""
|
| 1184 |
|
| 1185 |
-
#: polldaddy.php:
|
| 1186 |
msgid "Results Group"
|
| 1187 |
msgstr ""
|
| 1188 |
|
| 1189 |
-
#: polldaddy.php:
|
| 1190 |
msgid "Results Percent"
|
| 1191 |
msgstr ""
|
| 1192 |
|
| 1193 |
-
#: polldaddy.php:
|
| 1194 |
msgid "Results Votes"
|
| 1195 |
msgstr ""
|
| 1196 |
|
| 1197 |
-
#: polldaddy.php:
|
| 1198 |
msgid "Results Text"
|
| 1199 |
msgstr ""
|
| 1200 |
|
| 1201 |
-
#: polldaddy.php:
|
| 1202 |
msgid "Results Background"
|
| 1203 |
msgstr ""
|
| 1204 |
|
| 1205 |
-
#: polldaddy.php:
|
| 1206 |
msgid "Results Bar"
|
| 1207 |
msgstr ""
|
| 1208 |
|
| 1209 |
-
#: polldaddy.php:
|
| 1210 |
msgid "Total Votes"
|
| 1211 |
msgstr ""
|
| 1212 |
|
| 1213 |
-
#: polldaddy.php:
|
| 1214 |
msgid "Font"
|
| 1215 |
msgstr ""
|
| 1216 |
|
| 1217 |
-
#: polldaddy.php:
|
| 1218 |
msgid "Background"
|
| 1219 |
msgstr ""
|
| 1220 |
|
| 1221 |
-
#: polldaddy.php:
|
| 1222 |
msgid "Border"
|
| 1223 |
msgstr ""
|
| 1224 |
|
| 1225 |
-
#: polldaddy.php:
|
| 1226 |
msgid "Margin"
|
| 1227 |
msgstr ""
|
| 1228 |
|
| 1229 |
-
#: polldaddy.php:
|
| 1230 |
msgid "Padding"
|
| 1231 |
msgstr ""
|
| 1232 |
|
| 1233 |
-
#: polldaddy.php:
|
| 1234 |
msgid "Width"
|
| 1235 |
msgstr ""
|
| 1236 |
|
| 1237 |
-
#: polldaddy.php:
|
| 1238 |
msgid "Height"
|
| 1239 |
msgstr ""
|
| 1240 |
|
| 1241 |
-
#: polldaddy.php:
|
| 1242 |
msgid "Position"
|
| 1243 |
msgstr ""
|
| 1244 |
|
| 1245 |
-
#: polldaddy.php:
|
| 1246 |
msgid "Font Size"
|
| 1247 |
msgstr ""
|
| 1248 |
|
| 1249 |
-
#: polldaddy.php:
|
| 1250 |
msgid "Color"
|
| 1251 |
msgstr ""
|
| 1252 |
|
| 1253 |
-
#: polldaddy.php:
|
| 1254 |
msgid "Bold"
|
| 1255 |
msgstr ""
|
| 1256 |
|
| 1257 |
-
#: polldaddy.php:
|
| 1258 |
msgid "Italic"
|
| 1259 |
msgstr ""
|
| 1260 |
|
| 1261 |
-
#: polldaddy.php:
|
| 1262 |
msgid "Underline"
|
| 1263 |
msgstr ""
|
| 1264 |
|
| 1265 |
-
#: polldaddy.php:
|
| 1266 |
msgid "Line Height"
|
| 1267 |
msgstr ""
|
| 1268 |
|
| 1269 |
-
#: polldaddy.php:
|
| 1270 |
msgid "Align"
|
| 1271 |
msgstr ""
|
| 1272 |
|
| 1273 |
-
#: polldaddy.php:
|
| 1274 |
msgid "Left"
|
| 1275 |
msgstr ""
|
| 1276 |
|
| 1277 |
-
#: polldaddy.php:
|
| 1278 |
msgid "Center"
|
| 1279 |
msgstr ""
|
| 1280 |
|
| 1281 |
-
#: polldaddy.php:
|
| 1282 |
-
#: polldaddy.php:
|
| 1283 |
msgid "Right"
|
| 1284 |
msgstr ""
|
| 1285 |
|
| 1286 |
-
#: polldaddy.php:
|
| 1287 |
msgid "Image URL"
|
| 1288 |
msgstr ""
|
| 1289 |
|
| 1290 |
-
#: polldaddy.php:
|
| 1291 |
msgid "Click here for more information"
|
| 1292 |
msgstr ""
|
| 1293 |
|
| 1294 |
-
#: polldaddy.php:
|
| 1295 |
msgid "Image Repeat"
|
| 1296 |
msgstr ""
|
| 1297 |
|
| 1298 |
-
#: polldaddy.php:
|
| 1299 |
msgid "repeat"
|
| 1300 |
msgstr ""
|
| 1301 |
|
| 1302 |
-
#: polldaddy.php:
|
| 1303 |
msgid "no-repeat"
|
| 1304 |
msgstr ""
|
| 1305 |
|
| 1306 |
-
#: polldaddy.php:
|
| 1307 |
msgid "repeat-x"
|
| 1308 |
msgstr ""
|
| 1309 |
|
| 1310 |
-
#: polldaddy.php:
|
| 1311 |
msgid "repeat-y"
|
| 1312 |
msgstr ""
|
| 1313 |
|
| 1314 |
-
#: polldaddy.php:
|
| 1315 |
msgid "Image Position"
|
| 1316 |
msgstr ""
|
| 1317 |
|
| 1318 |
-
#: polldaddy.php:
|
| 1319 |
msgid "left top"
|
| 1320 |
msgstr ""
|
| 1321 |
|
| 1322 |
-
#: polldaddy.php:
|
| 1323 |
msgid "left center"
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
-
#: polldaddy.php:
|
| 1327 |
msgid "left bottom"
|
| 1328 |
msgstr ""
|
| 1329 |
|
| 1330 |
-
#: polldaddy.php:
|
| 1331 |
msgid "center top"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
-
#: polldaddy.php:
|
| 1335 |
msgid "center center"
|
| 1336 |
msgstr ""
|
| 1337 |
|
| 1338 |
-
#: polldaddy.php:
|
| 1339 |
msgid "center bottom"
|
| 1340 |
msgstr ""
|
| 1341 |
|
| 1342 |
-
#: polldaddy.php:
|
| 1343 |
msgid "right top"
|
| 1344 |
msgstr ""
|
| 1345 |
|
| 1346 |
-
#: polldaddy.php:
|
| 1347 |
msgid "right center"
|
| 1348 |
msgstr ""
|
| 1349 |
|
| 1350 |
-
#: polldaddy.php:
|
| 1351 |
msgid "right bottom"
|
| 1352 |
msgstr ""
|
| 1353 |
|
| 1354 |
-
#: polldaddy.php:
|
| 1355 |
msgid "none"
|
| 1356 |
msgstr ""
|
| 1357 |
|
| 1358 |
-
#: polldaddy.php:
|
| 1359 |
msgid "solid"
|
| 1360 |
msgstr ""
|
| 1361 |
|
| 1362 |
-
#: polldaddy.php:
|
| 1363 |
msgid "dotted"
|
| 1364 |
msgstr ""
|
| 1365 |
|
| 1366 |
-
#: polldaddy.php:
|
| 1367 |
msgid "dashed"
|
| 1368 |
msgstr ""
|
| 1369 |
|
| 1370 |
-
#: polldaddy.php:
|
| 1371 |
msgid "double"
|
| 1372 |
msgstr ""
|
| 1373 |
|
| 1374 |
-
#: polldaddy.php:
|
| 1375 |
msgid "groove"
|
| 1376 |
msgstr ""
|
| 1377 |
|
| 1378 |
-
#: polldaddy.php:
|
| 1379 |
msgid "inset"
|
| 1380 |
msgstr ""
|
| 1381 |
|
| 1382 |
-
#: polldaddy.php:
|
| 1383 |
msgid "outset"
|
| 1384 |
msgstr ""
|
| 1385 |
|
| 1386 |
-
#: polldaddy.php:
|
| 1387 |
msgid "ridge"
|
| 1388 |
msgstr ""
|
| 1389 |
|
| 1390 |
-
#: polldaddy.php:
|
| 1391 |
msgid "hidden"
|
| 1392 |
msgstr ""
|
| 1393 |
|
| 1394 |
-
#: polldaddy.php:
|
| 1395 |
msgid "Rounded Corners"
|
| 1396 |
msgstr ""
|
| 1397 |
|
| 1398 |
-
#: polldaddy.php:
|
| 1399 |
msgid "Not supported in Internet Explorer."
|
| 1400 |
msgstr ""
|
| 1401 |
|
| 1402 |
-
#: polldaddy.php:
|
| 1403 |
msgid "Top"
|
| 1404 |
msgstr ""
|
| 1405 |
|
| 1406 |
-
#: polldaddy.php:
|
| 1407 |
msgid "Bottom"
|
| 1408 |
msgstr ""
|
| 1409 |
|
| 1410 |
-
#: polldaddy.php:
|
| 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:
|
| 1417 |
msgid "Do you mostly use the internet at work, in school or at home?"
|
| 1418 |
msgstr ""
|
| 1419 |
|
| 1420 |
-
#: polldaddy.php:
|
| 1421 |
msgid "I use it in school."
|
| 1422 |
msgstr ""
|
| 1423 |
|
| 1424 |
-
#: polldaddy.php:
|
| 1425 |
msgid "I use it at home."
|
| 1426 |
msgstr ""
|
| 1427 |
|
| 1428 |
-
#: polldaddy.php:
|
| 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:
|
| 1434 |
msgid "Other"
|
| 1435 |
msgstr ""
|
| 1436 |
|
| 1437 |
-
#: polldaddy.php:
|
| 1438 |
msgid "Vote"
|
| 1439 |
msgstr ""
|
| 1440 |
|
| 1441 |
-
#: polldaddy.php:
|
| 1442 |
msgid "View Results"
|
| 1443 |
msgstr ""
|
| 1444 |
|
| 1445 |
-
#: polldaddy.php:
|
| 1446 |
msgid "I use it in school!"
|
| 1447 |
msgstr ""
|
| 1448 |
|
| 1449 |
-
#: polldaddy.php:
|
| 1450 |
msgid "(%d votes)"
|
| 1451 |
msgstr ""
|
| 1452 |
|
| 1453 |
-
#: polldaddy.php:
|
| 1454 |
msgid "Return To Poll"
|
| 1455 |
msgstr ""
|
| 1456 |
|
| 1457 |
-
#: polldaddy.php:
|
| 1458 |
msgid "Save Style"
|
| 1459 |
msgstr ""
|
| 1460 |
|
| 1461 |
-
#: polldaddy.php:
|
| 1462 |
msgid "Check this box if you wish to update the polls that use this style."
|
| 1463 |
msgstr ""
|
| 1464 |
|
| 1465 |
-
#: polldaddy.php:
|
| 1466 |
msgid "Thank you for voting!"
|
| 1467 |
msgstr ""
|
| 1468 |
|
| 1469 |
-
#: polldaddy.php:
|
| 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:
|
| 1476 |
-
msgid "
|
| 1477 |
msgstr ""
|
| 1478 |
|
| 1479 |
-
#: polldaddy.php:
|
| 1480 |
msgid "Rating updated"
|
| 1481 |
msgstr ""
|
| 1482 |
|
| 1483 |
-
#: polldaddy.php:
|
| 1484 |
msgid "Posts"
|
| 1485 |
msgstr ""
|
| 1486 |
|
| 1487 |
-
#: polldaddy.php:
|
| 1488 |
msgid "Pages"
|
| 1489 |
msgstr ""
|
| 1490 |
|
| 1491 |
-
#: polldaddy.php:
|
| 1492 |
-
msgid "
|
| 1493 |
msgstr ""
|
| 1494 |
|
| 1495 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1496 |
msgid "Above each blog post"
|
| 1497 |
msgstr ""
|
| 1498 |
|
| 1499 |
-
#: polldaddy.php:
|
| 1500 |
msgid "Below each blog post"
|
| 1501 |
msgstr ""
|
| 1502 |
|
| 1503 |
-
#: polldaddy.php:
|
| 1504 |
-
msgid "
|
| 1505 |
msgstr ""
|
| 1506 |
|
| 1507 |
-
#: polldaddy.php:
|
| 1508 |
-
msgid "
|
| 1509 |
msgstr ""
|
| 1510 |
|
| 1511 |
-
#: polldaddy.php:
|
| 1512 |
-
msgid "Above each page"
|
| 1513 |
msgstr ""
|
| 1514 |
|
| 1515 |
-
#: polldaddy.php:
|
| 1516 |
-
msgid "Below each page"
|
| 1517 |
msgstr ""
|
| 1518 |
|
| 1519 |
-
#: polldaddy.php:
|
| 1520 |
-
msgid "
|
| 1521 |
msgstr ""
|
| 1522 |
|
| 1523 |
-
#: polldaddy.php:
|
| 1524 |
msgid "Above each comment"
|
| 1525 |
msgstr ""
|
| 1526 |
|
| 1527 |
-
#: polldaddy.php:
|
| 1528 |
msgid "Below each comment"
|
| 1529 |
msgstr ""
|
| 1530 |
|
| 1531 |
-
#: polldaddy.php:
|
| 1532 |
msgid "Save Changes"
|
| 1533 |
msgstr ""
|
| 1534 |
|
| 1535 |
-
#: polldaddy.php:
|
| 1536 |
msgid "Advanced Settings"
|
| 1537 |
msgstr ""
|
| 1538 |
|
| 1539 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1540 |
msgid "This is a demo of what your rating widget will look like"
|
| 1541 |
msgstr ""
|
| 1542 |
|
| 1543 |
-
#: polldaddy.php:
|
| 1544 |
msgid "Customize Labels"
|
| 1545 |
msgstr ""
|
| 1546 |
|
| 1547 |
-
#: polldaddy.php:
|
| 1548 |
msgid "Rate This"
|
| 1549 |
msgstr ""
|
| 1550 |
|
| 1551 |
-
#: polldaddy.php:
|
| 1552 |
msgid "%d star"
|
| 1553 |
msgstr ""
|
| 1554 |
|
| 1555 |
-
#: polldaddy.php:
|
| 1556 |
msgid "%d stars"
|
| 1557 |
msgstr ""
|
| 1558 |
|
| 1559 |
-
#: polldaddy.php:
|
| 1560 |
msgid "Thank You"
|
| 1561 |
msgstr ""
|
| 1562 |
|
| 1563 |
-
#: polldaddy.php:
|
| 1564 |
msgid "Rate Up"
|
| 1565 |
msgstr ""
|
| 1566 |
|
| 1567 |
-
#: polldaddy.php:
|
| 1568 |
msgid "Rate Down"
|
| 1569 |
msgstr ""
|
| 1570 |
|
| 1571 |
-
#: polldaddy.php:
|
| 1572 |
msgid "Most Popular Content"
|
| 1573 |
msgstr ""
|
| 1574 |
|
| 1575 |
-
#: polldaddy.php:
|
| 1576 |
msgid "All"
|
| 1577 |
msgstr ""
|
| 1578 |
|
| 1579 |
-
#: polldaddy.php:
|
| 1580 |
msgid "Today"
|
| 1581 |
msgstr ""
|
| 1582 |
|
| 1583 |
-
#: polldaddy.php:
|
| 1584 |
msgid "This Week"
|
| 1585 |
msgstr ""
|
| 1586 |
|
| 1587 |
-
#: polldaddy.php:
|
| 1588 |
msgid "This Month"
|
| 1589 |
msgstr ""
|
| 1590 |
|
| 1591 |
-
#: polldaddy.php:
|
| 1592 |
msgid "Rated"
|
| 1593 |
msgstr ""
|
| 1594 |
|
| 1595 |
-
#: polldaddy.php:
|
| 1596 |
msgid "There are no rated items for this period"
|
| 1597 |
msgstr ""
|
| 1598 |
|
| 1599 |
-
#: polldaddy.php:
|
| 1600 |
msgid "Rating Type"
|
| 1601 |
msgstr ""
|
| 1602 |
|
| 1603 |
-
#: polldaddy.php:
|
| 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:
|
| 1610 |
msgid "%d Star Rating"
|
| 1611 |
msgstr ""
|
| 1612 |
|
| 1613 |
-
#: polldaddy.php:
|
| 1614 |
msgid "Nero Rating"
|
| 1615 |
msgstr ""
|
| 1616 |
|
| 1617 |
-
#: polldaddy.php:
|
| 1618 |
msgid "Rating Style"
|
| 1619 |
msgstr ""
|
| 1620 |
|
| 1621 |
-
#: polldaddy.php:
|
| 1622 |
msgid "Small"
|
| 1623 |
msgstr ""
|
| 1624 |
|
| 1625 |
-
#: polldaddy.php:
|
| 1626 |
msgid "Large"
|
| 1627 |
msgstr ""
|
| 1628 |
|
| 1629 |
-
#: polldaddy.php:
|
| 1630 |
msgid "Star Color"
|
| 1631 |
msgstr ""
|
| 1632 |
|
| 1633 |
-
#: polldaddy.php:
|
| 1634 |
msgid "Yellow"
|
| 1635 |
msgstr ""
|
| 1636 |
|
| 1637 |
-
#: polldaddy.php:
|
| 1638 |
msgid "Red"
|
| 1639 |
msgstr ""
|
| 1640 |
|
| 1641 |
-
#: polldaddy.php:
|
| 1642 |
msgid "Blue"
|
| 1643 |
msgstr ""
|
| 1644 |
|
| 1645 |
-
#: polldaddy.php:
|
| 1646 |
msgid "Green"
|
| 1647 |
msgstr ""
|
| 1648 |
|
| 1649 |
-
#: polldaddy.php:
|
| 1650 |
msgid "Grey"
|
| 1651 |
msgstr ""
|
| 1652 |
|
| 1653 |
-
#: polldaddy.php:
|
| 1654 |
msgid "Hand"
|
| 1655 |
msgstr ""
|
| 1656 |
|
| 1657 |
-
#: polldaddy.php:
|
| 1658 |
msgid "Custom Image"
|
| 1659 |
msgstr ""
|
| 1660 |
|
| 1661 |
-
#: polldaddy.php:
|
| 1662 |
msgid "Text Layout & Font"
|
| 1663 |
msgstr ""
|
| 1664 |
|
| 1665 |
-
#: polldaddy.php:
|
| 1666 |
msgid "Inherit"
|
| 1667 |
msgstr ""
|
| 1668 |
|
| 1669 |
-
#: polldaddy.php:
|
| 1670 |
msgid "Size"
|
| 1671 |
msgstr ""
|
| 1672 |
|
| 1673 |
-
#: polldaddy.php:
|
| 1674 |
msgid "Extra Settings"
|
| 1675 |
msgstr ""
|
| 1676 |
|
| 1677 |
-
#: polldaddy.php:
|
| 1678 |
msgid "Results Popup"
|
| 1679 |
msgstr ""
|
| 1680 |
|
| 1681 |
-
#: polldaddy.php:
|
| 1682 |
msgid "Uncheck this box to disable the results popup"
|
| 1683 |
msgstr ""
|
| 1684 |
|
| 1685 |
-
#: polldaddy.php:
|
| 1686 |
msgid "Rating ID"
|
| 1687 |
msgstr ""
|
| 1688 |
|
| 1689 |
-
#: polldaddy.php:
|
| 1690 |
msgid "This is the rating ID used in posts"
|
| 1691 |
msgstr ""
|
| 1692 |
|
| 1693 |
-
#: polldaddy.php:
|
| 1694 |
msgid "Exclude Posts"
|
| 1695 |
msgstr ""
|
| 1696 |
|
| 1697 |
-
#: polldaddy.php:
|
| 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:
|
| 1704 |
msgid "This is the rating ID used in pages"
|
| 1705 |
msgstr ""
|
| 1706 |
|
| 1707 |
-
#: polldaddy.php:
|
| 1708 |
msgid "Exclude Pages"
|
| 1709 |
msgstr ""
|
| 1710 |
|
| 1711 |
-
#: polldaddy.php:
|
| 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:
|
| 1718 |
msgid "This is the rating ID used in comments"
|
| 1719 |
msgstr ""
|
| 1720 |
|
| 1721 |
-
#: polldaddy.php:
|
| 1722 |
msgid "«"
|
| 1723 |
msgstr ""
|
| 1724 |
|
| 1725 |
-
#: polldaddy.php:
|
| 1726 |
msgid "»"
|
| 1727 |
msgstr ""
|
| 1728 |
|
| 1729 |
-
#: polldaddy.php:
|
| 1730 |
-
msgid "Rating
|
| 1731 |
msgstr ""
|
| 1732 |
|
| 1733 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1734 |
msgid "Last 24 hours"
|
| 1735 |
msgstr ""
|
| 1736 |
|
| 1737 |
-
#: polldaddy.php:
|
| 1738 |
msgid "Last 7 days"
|
| 1739 |
msgstr ""
|
| 1740 |
|
| 1741 |
-
#: polldaddy.php:
|
| 1742 |
msgid "Last 31 days"
|
| 1743 |
msgstr ""
|
| 1744 |
|
| 1745 |
-
#: polldaddy.php:
|
| 1746 |
msgid "Last 3 months"
|
| 1747 |
msgstr ""
|
| 1748 |
|
| 1749 |
-
#: polldaddy.php:
|
| 1750 |
msgid "Last 12 months"
|
| 1751 |
msgstr ""
|
| 1752 |
|
| 1753 |
-
#: polldaddy.php:
|
| 1754 |
msgid "All time"
|
| 1755 |
msgstr ""
|
| 1756 |
|
| 1757 |
-
#: polldaddy.php:
|
| 1758 |
msgid "* The results are cached and are updated every hour"
|
| 1759 |
msgstr ""
|
| 1760 |
|
| 1761 |
-
#: polldaddy.php:
|
| 1762 |
msgid "* The results are cached and are updated every day"
|
| 1763 |
msgstr ""
|
| 1764 |
|
| 1765 |
-
#: polldaddy.php:
|
| 1766 |
msgid "* The results are cached and are updated every 3 days"
|
| 1767 |
msgstr ""
|
| 1768 |
|
| 1769 |
-
#: polldaddy.php:
|
| 1770 |
msgid "No ratings have been collected for your %s yet."
|
| 1771 |
msgstr ""
|
| 1772 |
|
| 1773 |
-
#: polldaddy.php:
|
| 1774 |
msgid "Unique ID"
|
| 1775 |
msgstr ""
|
| 1776 |
|
| 1777 |
-
#: polldaddy.php:
|
| 1778 |
msgid "Start Date"
|
| 1779 |
msgstr ""
|
| 1780 |
|
| 1781 |
-
#: polldaddy.php:
|
| 1782 |
msgid "Average Rating"
|
| 1783 |
msgstr ""
|
| 1784 |
|
| 1785 |
-
#: polldaddy.php:
|
| 1786 |
-
msgid "
|
| 1787 |
msgstr ""
|
| 1788 |
|
| 1789 |
-
#: polldaddy.php:
|
| 1790 |
msgid "Polldaddy Account Info"
|
| 1791 |
msgstr ""
|
| 1792 |
|
| 1793 |
-
#: polldaddy.php:
|
| 1794 |
msgid ""
|
| 1795 |
-
"
|
| 1796 |
-
"WordPress
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1797 |
msgstr ""
|
| 1798 |
|
| 1799 |
-
#: polldaddy.php:
|
| 1800 |
-
msgid "
|
|
|
|
|
|
|
| 1801 |
msgstr ""
|
| 1802 |
|
| 1803 |
-
#: polldaddy.php:
|
| 1804 |
-
msgid "
|
|
|
|
|
|
|
| 1805 |
msgstr ""
|
| 1806 |
|
| 1807 |
-
#: polldaddy.php:
|
| 1808 |
-
msgid "
|
| 1809 |
msgstr ""
|
| 1810 |
|
| 1811 |
-
#: polldaddy.php:
|
| 1812 |
-
msgid "
|
| 1813 |
msgstr ""
|
| 1814 |
|
| 1815 |
-
#: polldaddy.php:
|
| 1816 |
-
msgid "
|
| 1817 |
msgstr ""
|
| 1818 |
|
| 1819 |
-
#: polldaddy.php:
|
| 1820 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1821 |
msgstr ""
|
| 1822 |
|
| 1823 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1824 |
msgid "Show"
|
| 1825 |
msgstr ""
|
| 1826 |
|
| 1827 |
-
#: polldaddy.php:
|
| 1828 |
msgid "Hide"
|
| 1829 |
msgstr ""
|
| 1830 |
|
| 1831 |
-
#: polldaddy.php:
|
| 1832 |
msgid "Percentages"
|
| 1833 |
msgstr ""
|
| 1834 |
|
| 1835 |
-
#: polldaddy.php:
|
| 1836 |
msgid "Poll style"
|
| 1837 |
msgstr ""
|
| 1838 |
|
| 1839 |
-
#: polldaddy.php:
|
| 1840 |
msgid "Off"
|
| 1841 |
msgstr ""
|
| 1842 |
|
| 1843 |
-
#: polldaddy.php:
|
| 1844 |
msgid "Cookie"
|
| 1845 |
msgstr ""
|
| 1846 |
|
| 1847 |
-
#: polldaddy.php:
|
| 1848 |
msgid "Cookie & IP address"
|
| 1849 |
msgstr ""
|
| 1850 |
|
| 1851 |
-
#: polldaddy.php:
|
| 1852 |
msgid "Block expiration limit"
|
| 1853 |
msgstr ""
|
| 1854 |
|
| 1855 |
-
#: polldaddy.php:
|
| 1856 |
msgid "Save Options"
|
| 1857 |
msgstr ""
|
| 1858 |
|
| 1 |
+
# Copyright (C) 2013 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.19\n"
|
| 6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
| 7 |
+
"POT-Creation-Date: 2013-07-04 12:50:26+00:00\n"
|
| 8 |
"MIME-Version: 1.0\n"
|
| 9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
| 10 |
"Content-Transfer-Encoding: 8bit\n"
|
| 11 |
+
"PO-Revision-Date: 2013-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:77 polldaddy.php:1927 polldaddy.php:1978 polldaddy.php:2316
|
| 16 |
msgid "click and drag to reorder"
|
| 17 |
msgstr ""
|
| 18 |
|
| 19 |
+
#: ajax.php:80 polldaddy.php:1930 polldaddy.php:1981 polldaddy.php:2314
|
| 20 |
msgid "Enter an answer here"
|
| 21 |
msgstr ""
|
| 22 |
|
| 23 |
+
#: ajax.php:94 polldaddy.php:1882 polldaddy.php:1948 polldaddy.php:1988
|
| 24 |
+
#: polldaddy.php:2317
|
| 25 |
msgid "Add an Image"
|
| 26 |
msgstr ""
|
| 27 |
|
| 28 |
+
#: ajax.php:95 polldaddy.php:1883 polldaddy.php:1949 polldaddy.php:1989
|
| 29 |
+
#: polldaddy.php:2318
|
| 30 |
msgid "Add Audio"
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
+
#: ajax.php:96 polldaddy.php:1884 polldaddy.php:1950 polldaddy.php:1990
|
| 34 |
+
#: polldaddy.php:2319
|
| 35 |
msgid "Add Video"
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
+
#: polldaddy-org.php:66 polldaddy.php:93 polldaddy.php:103
|
| 39 |
+
msgid "Ratings"
|
| 40 |
+
msgstr ""
|
| 41 |
+
|
| 42 |
+
#: polldaddy-org.php:68 polldaddy.php:93 polldaddy.php:103
|
| 43 |
+
msgid "Polls"
|
| 44 |
+
msgstr ""
|
| 45 |
+
|
| 46 |
+
#: polldaddy-org.php:160 polldaddy.php:151 polldaddy.php:1059
|
| 47 |
msgid "Email address required"
|
| 48 |
msgstr ""
|
| 49 |
|
| 50 |
+
#: polldaddy-org.php:163 polldaddy.php:154 polldaddy.php:1062
|
| 51 |
msgid "Password required"
|
| 52 |
msgstr ""
|
| 53 |
|
| 54 |
+
#: polldaddy-org.php:196
|
| 55 |
msgid "Could not connect to Polldaddy API Key service"
|
| 56 |
msgstr ""
|
| 57 |
|
| 58 |
+
#: polldaddy-org.php:211 polldaddy.php:184
|
| 59 |
msgid "Can't connect to Polldaddy.com"
|
| 60 |
msgstr ""
|
| 61 |
|
| 62 |
+
#: polldaddy-org.php:242
|
| 63 |
msgid ""
|
| 64 |
"Login to Polldaddy failed. Double check your email address and password."
|
| 65 |
msgstr ""
|
| 66 |
|
| 67 |
+
#: polldaddy-org.php:244
|
| 68 |
msgid ""
|
| 69 |
"If your email address and password are correct, your host may not support "
|
| 70 |
"secure logins."
|
| 71 |
msgstr ""
|
| 72 |
|
| 73 |
+
#: polldaddy-org.php:245
|
| 74 |
msgid ""
|
| 75 |
"In that case, you may be able to log in to Polldaddy by unchecking the \"Use "
|
| 76 |
"SSL to Log in\" checkbox."
|
| 77 |
msgstr ""
|
| 78 |
|
| 79 |
+
#: polldaddy-org.php:257 polldaddy.php:221
|
| 80 |
msgid ""
|
| 81 |
"Account could not be accessed. Are your email address and password correct?"
|
| 82 |
msgstr ""
|
| 83 |
|
| 84 |
+
#: polldaddy-org.php:271
|
| 85 |
msgid "Polldaddy Account"
|
| 86 |
msgstr ""
|
| 87 |
|
| 88 |
+
#: polldaddy-org.php:273 polldaddy.php:275
|
| 89 |
msgid ""
|
| 90 |
"Before you can use the Polldaddy plugin, you need to enter your <a href=\"%s"
|
| 91 |
"\">Polldaddy.com</a> account details."
|
| 92 |
msgstr ""
|
| 93 |
|
| 94 |
+
#: polldaddy-org.php:280 polldaddy.php:282
|
| 95 |
msgid "Polldaddy Email Address"
|
| 96 |
msgstr ""
|
| 97 |
|
| 98 |
+
#: polldaddy-org.php:288 polldaddy.php:290
|
| 99 |
msgid "Polldaddy Password"
|
| 100 |
msgstr ""
|
| 101 |
|
| 102 |
+
#: polldaddy-org.php:301
|
| 103 |
msgid "Use SSL to Log in"
|
| 104 |
msgstr ""
|
| 105 |
|
| 106 |
+
#: polldaddy-org.php:305
|
| 107 |
msgid ""
|
| 108 |
"This ensures a secure login to your Polldaddy account. Only uncheck if you "
|
| 109 |
"are having problems logging in."
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
+
#: polldaddy-org.php:315 polldaddy.php:302
|
| 113 |
msgid "Submit"
|
| 114 |
msgstr ""
|
| 115 |
|
| 116 |
+
#: polldaddy-org.php:341
|
| 117 |
msgid "Load Shortcodes Inline"
|
| 118 |
msgstr ""
|
| 119 |
|
| 120 |
+
#: polldaddy-org.php:347
|
| 121 |
msgid ""
|
| 122 |
"This will load the Polldaddy shortcodes inline rather than in the page "
|
| 123 |
"footer."
|
| 124 |
msgstr ""
|
| 125 |
|
| 126 |
+
#: polldaddy-org.php:353
|
| 127 |
msgid "Multiple Polldaddy Accounts"
|
| 128 |
msgstr ""
|
| 129 |
|
| 130 |
+
#: polldaddy-org.php:359
|
| 131 |
msgid "This setting will allow each blog user to import a Polldaddy account."
|
| 132 |
msgstr ""
|
| 133 |
|
| 134 |
+
#: polldaddy-org.php:366
|
| 135 |
msgid "Sync Ratings Account"
|
| 136 |
msgstr ""
|
| 137 |
|
| 138 |
+
#: polldaddy-org.php:372
|
| 139 |
msgid "This will synchronize your ratings Polldaddy account."
|
| 140 |
msgstr ""
|
| 141 |
|
| 142 |
+
#: polldaddy-org.php:379
|
| 143 |
msgid "Ratings Title Filter"
|
| 144 |
msgstr ""
|
| 145 |
|
| 146 |
+
#: polldaddy-org.php:385
|
| 147 |
msgid ""
|
| 148 |
"This setting allows you to specify a filter to use with your ratings title."
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
+
#: polldaddy-org.php:889
|
| 152 |
msgid "A list of your top rated posts, pages or comments."
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
+
#: polldaddy-org.php:897
|
| 156 |
msgid "Top Rated"
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
+
#: polldaddy-org.php:973 polldaddy.php:4649
|
| 160 |
msgid "Title"
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
+
#: polldaddy-org.php:977
|
| 164 |
msgid "Show for posts"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
+
#: polldaddy-org.php:983
|
| 168 |
msgid "Show for pages"
|
| 169 |
msgstr ""
|
| 170 |
|
| 171 |
+
#: polldaddy-org.php:989
|
| 172 |
msgid "Show for comments"
|
| 173 |
msgstr ""
|
| 174 |
|
| 175 |
+
#: polldaddy-org.php:995
|
| 176 |
+
msgid "Filter by category"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 177 |
msgstr ""
|
| 178 |
|
| 179 |
+
#: polldaddy-org.php:999
|
| 180 |
+
msgid "How many items would you like to display?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 181 |
msgstr ""
|
| 182 |
|
| 183 |
+
#: polldaddy-org.php:1018
|
| 184 |
+
msgid ""
|
| 185 |
+
"Warning! The Polldaddy plugin must be linked to your Polldaddy.com account. "
|
| 186 |
+
"Please visit the <a href=\"%s\">plugin settings page</a> to login."
|
| 187 |
msgstr ""
|
| 188 |
|
| 189 |
+
#: polldaddy.php:100 polldaddy.php:118
|
| 190 |
+
msgid "Feedback"
|
| 191 |
msgstr ""
|
| 192 |
|
| 193 |
+
#: polldaddy.php:211
|
| 194 |
msgid "Invalid Account"
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
+
#: polldaddy.php:273
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 198 |
msgid "Polldaddy"
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
+
#: polldaddy.php:311
|
| 202 |
msgid "Add Poll"
|
| 203 |
msgstr ""
|
| 204 |
|
| 205 |
+
#: polldaddy.php:391
|
| 206 |
msgid "Star Colors"
|
| 207 |
msgstr ""
|
| 208 |
|
| 209 |
+
#: polldaddy.php:391 polldaddy.php:4086
|
| 210 |
msgid "Star Size"
|
| 211 |
msgstr ""
|
| 212 |
|
| 213 |
+
#: polldaddy.php:392
|
| 214 |
msgid "Nero Type"
|
| 215 |
msgstr ""
|
| 216 |
|
| 217 |
+
#: polldaddy.php:392
|
| 218 |
msgid "Nero Size"
|
| 219 |
msgstr ""
|
| 220 |
|
| 221 |
+
#: polldaddy.php:496
|
| 222 |
msgid "You are not allowed to delete this poll."
|
| 223 |
msgstr ""
|
| 224 |
|
| 225 |
+
#: polldaddy.php:504 polldaddy.php:540 polldaddy.php:576 polldaddy.php:609
|
| 226 |
msgid "Invalid Poll Author"
|
| 227 |
msgstr ""
|
| 228 |
|
| 229 |
+
#: polldaddy.php:532
|
| 230 |
msgid "You are not allowed to open this poll."
|
| 231 |
msgstr ""
|
| 232 |
|
| 233 |
+
#: polldaddy.php:568
|
| 234 |
msgid "You are not allowed to close this poll."
|
| 235 |
msgstr ""
|
| 236 |
|
| 237 |
+
#: polldaddy.php:601 polldaddy.php:1608
|
| 238 |
msgid "You are not allowed to edit this poll."
|
| 239 |
msgstr ""
|
| 240 |
|
| 241 |
+
#: polldaddy.php:616
|
| 242 |
msgid "Poll not found"
|
| 243 |
msgstr ""
|
| 244 |
|
| 245 |
+
#: polldaddy.php:658
|
| 246 |
msgid "Invalid answers"
|
| 247 |
msgstr ""
|
| 248 |
|
| 249 |
+
#: polldaddy.php:693
|
| 250 |
msgid "You must include at least 2 answers"
|
| 251 |
msgstr ""
|
| 252 |
|
| 253 |
+
#: polldaddy.php:704 polldaddy.php:823
|
| 254 |
msgid "Please choose a poll style"
|
| 255 |
msgstr ""
|
| 256 |
|
| 257 |
+
#: polldaddy.php:734
|
| 258 |
msgid "Poll could not be updated"
|
| 259 |
msgstr ""
|
| 260 |
|
| 261 |
+
#: polldaddy.php:848
|
| 262 |
msgid "Poll could not be created"
|
| 263 |
msgstr ""
|
| 264 |
|
| 265 |
+
#: polldaddy.php:903
|
| 266 |
msgid "Style could not be updated"
|
| 267 |
msgstr ""
|
| 268 |
|
| 269 |
+
#: polldaddy.php:933
|
| 270 |
msgid "Style could not be created"
|
| 271 |
msgstr ""
|
| 272 |
|
| 273 |
+
#: polldaddy.php:1071
|
| 274 |
msgid ""
|
| 275 |
"Account could not be imported. Are your email address and password correct?"
|
| 276 |
msgstr ""
|
| 277 |
|
| 278 |
+
#: polldaddy.php:1090
|
| 279 |
msgid "Poll deleted."
|
| 280 |
msgstr ""
|
| 281 |
|
| 282 |
+
#: polldaddy.php:1092
|
| 283 |
msgid "%s Poll Deleted."
|
| 284 |
msgid_plural "%s Polls Deleted."
|
| 285 |
msgstr[0] ""
|
| 286 |
msgstr[1] ""
|
| 287 |
|
| 288 |
+
#: polldaddy.php:1097
|
| 289 |
msgid "Poll opened."
|
| 290 |
msgstr ""
|
| 291 |
|
| 292 |
+
#: polldaddy.php:1099
|
| 293 |
msgid "%s Poll Opened."
|
| 294 |
msgid_plural "%s Polls Opened."
|
| 295 |
msgstr[0] ""
|
| 296 |
msgstr[1] ""
|
| 297 |
|
| 298 |
+
#: polldaddy.php:1104
|
| 299 |
msgid "Poll closed."
|
| 300 |
msgstr ""
|
| 301 |
|
| 302 |
+
#: polldaddy.php:1106
|
| 303 |
msgid "%s Poll Closed."
|
| 304 |
msgid_plural "%s Polls Closed."
|
| 305 |
msgstr[0] ""
|
| 306 |
msgstr[1] ""
|
| 307 |
|
| 308 |
+
#: polldaddy.php:1109
|
| 309 |
msgid "Poll updated."
|
| 310 |
msgstr ""
|
| 311 |
|
| 312 |
+
#: polldaddy.php:1112
|
| 313 |
msgid "Poll created."
|
| 314 |
msgstr ""
|
| 315 |
|
| 316 |
+
#: polldaddy.php:1114 polldaddy.php:1445 polldaddy.php:1761
|
| 317 |
msgid "Embed in Post"
|
| 318 |
msgstr ""
|
| 319 |
|
| 320 |
+
#: polldaddy.php:1117
|
| 321 |
msgid "Custom Style updated."
|
| 322 |
msgstr ""
|
| 323 |
|
| 324 |
+
#: polldaddy.php:1120
|
| 325 |
msgid "Custom Style created."
|
| 326 |
msgstr ""
|
| 327 |
|
| 328 |
+
#: polldaddy.php:1125
|
| 329 |
msgid "Custom Style deleted."
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
+
#: polldaddy.php:1127
|
| 333 |
msgid "%s Style Deleted."
|
| 334 |
msgid_plural "%s Custom Styles Deleted."
|
| 335 |
msgstr[0] ""
|
| 336 |
msgstr[1] ""
|
| 337 |
|
| 338 |
+
#: polldaddy.php:1130
|
| 339 |
+
msgid "Account Linked."
|
| 340 |
msgstr ""
|
| 341 |
|
| 342 |
+
#: polldaddy.php:1133
|
| 343 |
msgid "Options Updated."
|
| 344 |
msgstr ""
|
| 345 |
|
| 346 |
+
#: polldaddy.php:1138
|
| 347 |
msgid "Rating deleted."
|
| 348 |
msgstr ""
|
| 349 |
|
| 350 |
+
#: polldaddy.php:1140
|
| 351 |
msgid "%s Rating Deleted."
|
| 352 |
msgid_plural "%s Ratings Deleted."
|
| 353 |
msgstr[0] ""
|
| 354 |
msgstr[1] ""
|
| 355 |
|
| 356 |
+
#: polldaddy.php:1149
|
| 357 |
msgid "Error: An error has occurred; Poll not created."
|
| 358 |
msgstr ""
|
| 359 |
|
| 360 |
+
#: polldaddy.php:1152
|
| 361 |
msgid "Error: An error has occurred; Poll not updated."
|
| 362 |
msgstr ""
|
| 363 |
|
| 364 |
+
#: polldaddy.php:1156
|
| 365 |
msgid ""
|
| 366 |
"Error: An error has occurred; Account could not be imported. Perhaps your "
|
| 367 |
"email address or password is incorrect?"
|
| 368 |
msgstr ""
|
| 369 |
|
| 370 |
+
#: polldaddy.php:1158
|
| 371 |
msgid "Error: An error has occurred; Account could not be created."
|
| 372 |
msgstr ""
|
| 373 |
|
| 374 |
+
#: polldaddy.php:1194
|
| 375 |
msgid "Polldaddy Polls"
|
| 376 |
msgstr ""
|
| 377 |
|
| 378 |
+
#: polldaddy.php:1197
|
| 379 |
+
msgid "Preview Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a>"
|
| 380 |
msgstr ""
|
| 381 |
|
| 382 |
+
#: polldaddy.php:1209
|
| 383 |
+
msgid ""
|
| 384 |
+
"Poll Results <a href=\"%s\" class=\"add-new-h2\">All Polls</a> <a href=\"%s"
|
| 385 |
+
"\" class=\"add-new-h2\">Edit Poll</a>"
|
| 386 |
+
msgstr ""
|
| 387 |
+
|
| 388 |
+
#: polldaddy.php:1218
|
| 389 |
+
msgid ""
|
| 390 |
+
"Edit Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a> <a href=\"%s\" "
|
| 391 |
+
"class=\"add-new-h2\">View Results</a>"
|
| 392 |
msgstr ""
|
| 393 |
|
| 394 |
+
#: polldaddy.php:1227
|
| 395 |
+
msgid "Add New Poll <a href=\"%s\" class=\"add-new-h2\">All Polls</a>"
|
| 396 |
msgstr ""
|
| 397 |
|
| 398 |
+
#: polldaddy.php:1237
|
| 399 |
+
msgid "Custom Styles <a href=\"%s\" class=\"add-new-h2\">Add New</a>"
|
| 400 |
msgstr ""
|
| 401 |
|
| 402 |
+
#: polldaddy.php:1239 polldaddy.php:1568 polldaddy.php:2120 polldaddy.php:2321
|
| 403 |
+
#: polldaddy.php:3569 polldaddy.php:4320 polldaddy.php:4732
|
| 404 |
+
msgid "Custom Styles"
|
| 405 |
msgstr ""
|
| 406 |
|
| 407 |
+
#: polldaddy.php:1247
|
| 408 |
+
msgid "Edit Style <a href=\"%s\" class=\"add-new-h2\">List Styles</a>"
|
| 409 |
msgstr ""
|
| 410 |
|
| 411 |
+
#: polldaddy.php:1256
|
| 412 |
+
msgid "Create Style <a href=\"%s\" class=\"add-new-h2\">List Styles</a>"
|
| 413 |
msgstr ""
|
| 414 |
|
| 415 |
+
#: polldaddy.php:1272
|
| 416 |
+
msgid "Polldaddy Polls <a href=\"%s\" class=\"add-new-h2\">Add New</a>"
|
| 417 |
msgstr ""
|
| 418 |
|
| 419 |
+
#: polldaddy.php:1274
|
| 420 |
msgid "Polldaddy Polls "
|
| 421 |
msgstr ""
|
| 422 |
|
| 423 |
+
#: polldaddy.php:1281
|
| 424 |
+
msgid ""
|
| 425 |
+
"Linked to WordPress.com Account: <strong>%s</strong> (<a target=\"_blank\" "
|
| 426 |
+
"href=\"options-general.php?page=polls&action=options\">Settings</a> / <a "
|
| 427 |
+
"target=\"_blank\" href=\"http://polldaddy.com/dashboard/\">Polldaddy.com</a>)"
|
| 428 |
+
msgstr ""
|
| 429 |
+
|
| 430 |
+
#: polldaddy.php:1353 polldaddy.php:2538 polldaddy.php:4593
|
| 431 |
msgid "Actions"
|
| 432 |
msgstr ""
|
| 433 |
|
| 434 |
+
#: polldaddy.php:1354 polldaddy.php:1463 polldaddy.php:2539 polldaddy.php:2581
|
| 435 |
+
#: polldaddy.php:4594 polldaddy.php:4669
|
| 436 |
msgid "Delete"
|
| 437 |
msgstr ""
|
| 438 |
|
| 439 |
+
#: polldaddy.php:1355 polldaddy.php:1455 polldaddy.php:4009
|
| 440 |
msgid "Close"
|
| 441 |
msgstr ""
|
| 442 |
|
| 443 |
+
#: polldaddy.php:1356 polldaddy.php:1452
|
| 444 |
msgid "Open"
|
| 445 |
msgstr ""
|
| 446 |
|
| 447 |
+
#: polldaddy.php:1359 polldaddy.php:2541 polldaddy.php:4597
|
| 448 |
msgid "Apply"
|
| 449 |
msgstr ""
|
| 450 |
|
| 451 |
+
#: polldaddy.php:1364
|
| 452 |
msgid "View All Polls"
|
| 453 |
msgstr ""
|
| 454 |
|
| 455 |
+
#: polldaddy.php:1365
|
| 456 |
msgid "This Blog's Polls"
|
| 457 |
msgstr ""
|
| 458 |
|
| 459 |
+
#: polldaddy.php:1367 polldaddy.php:4618
|
| 460 |
msgid "Filter"
|
| 461 |
msgstr ""
|
| 462 |
|
| 463 |
+
#: polldaddy.php:1381
|
| 464 |
msgid "Poll"
|
| 465 |
msgstr ""
|
| 466 |
|
| 467 |
+
#: polldaddy.php:1431 polldaddy.php:2584 polldaddy.php:4677
|
| 468 |
msgid "Y/m/d g:i:s A"
|
| 469 |
msgstr ""
|
| 470 |
|
| 471 |
+
#: polldaddy.php:1431
|
| 472 |
msgid "created"
|
| 473 |
msgstr ""
|
| 474 |
|
| 475 |
+
#: polldaddy.php:1431
|
| 476 |
msgid "M d, Y"
|
| 477 |
msgstr ""
|
| 478 |
|
| 479 |
+
#: polldaddy.php:1434 polldaddy.php:2576
|
| 480 |
msgid "Edit"
|
| 481 |
msgstr ""
|
| 482 |
|
| 483 |
+
#: polldaddy.php:1442
|
| 484 |
msgid "Embed & Link"
|
| 485 |
msgstr ""
|
| 486 |
|
| 487 |
+
#: polldaddy.php:1458 polldaddy.php:1460 polldaddy.php:3924
|
| 488 |
msgid "Preview"
|
| 489 |
msgstr ""
|
| 490 |
|
| 491 |
+
#: polldaddy.php:1466
|
| 492 |
msgid "Results"
|
| 493 |
msgstr ""
|
| 494 |
|
| 495 |
+
#: polldaddy.php:1472
|
| 496 |
msgid "votes"
|
| 497 |
msgstr ""
|
| 498 |
|
| 499 |
+
#: polldaddy.php:1480
|
| 500 |
msgid "WordPress Shortcode"
|
| 501 |
msgstr ""
|
| 502 |
|
| 503 |
+
#: polldaddy.php:1485
|
| 504 |
msgid "Short URL (Good for Twitter etc.)"
|
| 505 |
msgstr ""
|
| 506 |
|
| 507 |
+
#: polldaddy.php:1491
|
| 508 |
msgid "Facebook URL"
|
| 509 |
msgstr ""
|
| 510 |
|
| 511 |
+
#: polldaddy.php:1498
|
| 512 |
msgid "JavaScript"
|
| 513 |
msgstr ""
|
| 514 |
|
| 515 |
+
#: polldaddy.php:1506
|
| 516 |
msgid "Done"
|
| 517 |
msgstr ""
|
| 518 |
|
| 519 |
+
#: polldaddy.php:1518
|
| 520 |
msgid "What are you doing here? <a href=\"%s\">Go back</a>."
|
| 521 |
msgstr ""
|
| 522 |
|
| 523 |
+
#: polldaddy.php:1529
|
| 524 |
+
msgid "You haven't created any polls for this blog."
|
| 525 |
msgstr ""
|
| 526 |
|
| 527 |
+
#: polldaddy.php:1530 polldaddy.php:2597
|
| 528 |
msgid "Why don't you go ahead and get started on that?"
|
| 529 |
msgstr ""
|
| 530 |
|
| 531 |
+
#: polldaddy.php:1531
|
| 532 |
msgid "Create a Poll Now"
|
| 533 |
msgstr ""
|
| 534 |
|
| 535 |
+
#: polldaddy.php:1536
|
| 536 |
+
msgid "No one has created any polls for this blog."
|
| 537 |
msgstr ""
|
| 538 |
|
| 539 |
+
#: polldaddy.php:1563 polldaddy.php:2311 polldaddy.php:3564 polldaddy.php:4315
|
| 540 |
+
#: polldaddy.php:4727
|
| 541 |
msgid "Are you sure you want to delete the rating for \"%s\"?"
|
| 542 |
msgstr ""
|
| 543 |
|
| 544 |
+
#: polldaddy.php:1564
|
| 545 |
msgid "Are you sure you want to delete the poll %s?"
|
| 546 |
msgstr ""
|
| 547 |
|
| 548 |
+
#: polldaddy.php:1565 polldaddy.php:2313 polldaddy.php:3566 polldaddy.php:4317
|
| 549 |
+
#: polldaddy.php:4729
|
| 550 |
msgid "Are you sure you want to delete this answer?"
|
| 551 |
msgstr ""
|
| 552 |
|
| 553 |
+
#: polldaddy.php:1566 polldaddy.php:1952 polldaddy.php:1992 polldaddy.php:2315
|
| 554 |
+
#: polldaddy.php:3567 polldaddy.php:4318 polldaddy.php:4730
|
| 555 |
msgid "delete this answer"
|
| 556 |
msgstr ""
|
| 557 |
|
| 558 |
+
#: polldaddy.php:1567 polldaddy.php:2320 polldaddy.php:3568 polldaddy.php:4319
|
| 559 |
+
#: polldaddy.php:4731
|
| 560 |
msgid "Standard Styles"
|
| 561 |
msgstr ""
|
| 562 |
|
| 563 |
+
#: polldaddy.php:1667
|
| 564 |
+
msgid "delete this image"
|
| 565 |
+
msgstr ""
|
| 566 |
+
|
| 567 |
+
#: polldaddy.php:1692
|
| 568 |
msgid "Save"
|
| 569 |
msgstr ""
|
| 570 |
|
| 571 |
+
#: polldaddy.php:1699 polldaddy.php:4895
|
| 572 |
msgid "Randomize answer order"
|
| 573 |
msgstr ""
|
| 574 |
|
| 575 |
+
#: polldaddy.php:1699 polldaddy.php:4895
|
| 576 |
msgid "Allow other answers"
|
| 577 |
msgstr ""
|
| 578 |
|
| 579 |
+
#: polldaddy.php:1699 polldaddy.php:4895
|
| 580 |
+
msgid "Multiple choice"
|
| 581 |
msgstr ""
|
| 582 |
|
| 583 |
+
#: polldaddy.php:1699 polldaddy.php:4895
|
| 584 |
+
msgid "Sharing"
|
| 585 |
msgstr ""
|
| 586 |
|
| 587 |
+
#: polldaddy.php:1720
|
| 588 |
msgid "Number of choices"
|
| 589 |
msgstr ""
|
| 590 |
|
| 591 |
+
#: polldaddy.php:1720
|
| 592 |
msgid "No Limit"
|
| 593 |
msgstr ""
|
| 594 |
|
| 595 |
+
#: polldaddy.php:1757
|
| 596 |
msgid "Save Poll"
|
| 597 |
msgstr ""
|
| 598 |
|
| 599 |
+
#: polldaddy.php:1772 polldaddy.php:4905
|
| 600 |
msgid "Results Display"
|
| 601 |
msgstr ""
|
| 602 |
|
| 603 |
+
#: polldaddy.php:1777
|
| 604 |
msgid "Show results to voters"
|
| 605 |
msgstr ""
|
| 606 |
|
| 607 |
+
#: polldaddy.php:1777
|
| 608 |
msgid "Only show percentages"
|
| 609 |
msgstr ""
|
| 610 |
|
| 611 |
+
#: polldaddy.php:1777
|
| 612 |
msgid "Hide all results"
|
| 613 |
msgstr ""
|
| 614 |
|
| 615 |
+
#: polldaddy.php:1795 polldaddy.php:4927
|
| 616 |
msgid "Repeat Voting"
|
| 617 |
msgstr ""
|
| 618 |
|
| 619 |
+
#: polldaddy.php:1800
|
| 620 |
msgid "Don't block repeat voters"
|
| 621 |
msgstr ""
|
| 622 |
|
| 623 |
+
#: polldaddy.php:1800
|
| 624 |
msgid "Block by cookie (recommended)"
|
| 625 |
msgstr ""
|
| 626 |
|
| 627 |
+
#: polldaddy.php:1800
|
| 628 |
msgid "Block by cookie and by IP address"
|
| 629 |
msgstr ""
|
| 630 |
|
| 631 |
+
#: polldaddy.php:1815
|
| 632 |
msgid "Expires: "
|
| 633 |
msgstr ""
|
| 634 |
|
| 635 |
+
#: polldaddy.php:1817 polldaddy.php:4941
|
| 636 |
msgid "Never"
|
| 637 |
msgstr ""
|
| 638 |
|
| 639 |
+
#: polldaddy.php:1818 polldaddy.php:4942
|
| 640 |
msgid "%d hour"
|
| 641 |
msgstr ""
|
| 642 |
|
| 643 |
+
#: polldaddy.php:1819 polldaddy.php:1820 polldaddy.php:1821 polldaddy.php:4943
|
| 644 |
+
#: polldaddy.php:4944 polldaddy.php:4945
|
| 645 |
msgid "%d hours"
|
| 646 |
msgstr ""
|
| 647 |
|
| 648 |
+
#: polldaddy.php:1822 polldaddy.php:4946
|
| 649 |
msgid "%d day"
|
| 650 |
msgstr ""
|
| 651 |
|
| 652 |
+
#: polldaddy.php:1823 polldaddy.php:4947
|
| 653 |
msgid "%d week"
|
| 654 |
msgstr ""
|
| 655 |
|
| 656 |
+
#: polldaddy.php:1824 polldaddy.php:4948
|
| 657 |
msgid "%d month"
|
| 658 |
msgstr ""
|
| 659 |
|
| 660 |
+
#: polldaddy.php:1826
|
| 661 |
msgid ""
|
| 662 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
| 663 |
msgstr ""
|
| 664 |
|
| 665 |
+
#: polldaddy.php:1831 polldaddy.php:3529 polldaddy.php:3793 polldaddy.php:3863
|
| 666 |
+
#: polldaddy.php:4601
|
| 667 |
msgid "Comments"
|
| 668 |
msgstr ""
|
| 669 |
|
| 670 |
+
#: polldaddy.php:1836
|
| 671 |
msgid "Allow comments"
|
| 672 |
msgstr ""
|
| 673 |
|
| 674 |
+
#: polldaddy.php:1836
|
| 675 |
msgid "Moderate first"
|
| 676 |
msgstr ""
|
| 677 |
|
| 678 |
+
#: polldaddy.php:1836
|
| 679 |
msgid "No comments"
|
| 680 |
msgstr ""
|
| 681 |
|
| 682 |
+
#: polldaddy.php:1864
|
| 683 |
msgid "Enter Question Here"
|
| 684 |
msgstr ""
|
| 685 |
|
| 686 |
+
#: polldaddy.php:1898
|
| 687 |
msgid "WordPress Shortcode:"
|
| 688 |
msgstr ""
|
| 689 |
|
| 690 |
+
#: polldaddy.php:1900
|
| 691 |
msgid "Embed Poll in New Post"
|
| 692 |
msgstr ""
|
| 693 |
|
| 694 |
+
#: polldaddy.php:1909 polldaddy.php:2730
|
| 695 |
msgid "Answers"
|
| 696 |
msgstr ""
|
| 697 |
|
| 698 |
+
#: polldaddy.php:2017
|
| 699 |
msgid "Add New Answer"
|
| 700 |
msgstr ""
|
| 701 |
|
| 702 |
+
#: polldaddy.php:2034 polldaddy.php:4752
|
| 703 |
msgid "Aluminum Narrow"
|
| 704 |
msgstr ""
|
| 705 |
|
| 706 |
+
#: polldaddy.php:2035 polldaddy.php:4753
|
| 707 |
msgid "Aluminum Medium"
|
| 708 |
msgstr ""
|
| 709 |
|
| 710 |
+
#: polldaddy.php:2036 polldaddy.php:4754
|
| 711 |
msgid "Aluminum Wide"
|
| 712 |
msgstr ""
|
| 713 |
|
| 714 |
+
#: polldaddy.php:2037 polldaddy.php:4755
|
| 715 |
msgid "Plain White Narrow"
|
| 716 |
msgstr ""
|
| 717 |
|
| 718 |
+
#: polldaddy.php:2038 polldaddy.php:4756
|
| 719 |
msgid "Plain White Medium"
|
| 720 |
msgstr ""
|
| 721 |
|
| 722 |
+
#: polldaddy.php:2039 polldaddy.php:4757
|
| 723 |
msgid "Plain White Wide"
|
| 724 |
msgstr ""
|
| 725 |
|
| 726 |
+
#: polldaddy.php:2040 polldaddy.php:4758
|
| 727 |
msgid "Plain Black Narrow"
|
| 728 |
msgstr ""
|
| 729 |
|
| 730 |
+
#: polldaddy.php:2041 polldaddy.php:4759
|
| 731 |
msgid "Plain Black Medium"
|
| 732 |
msgstr ""
|
| 733 |
|
| 734 |
+
#: polldaddy.php:2042 polldaddy.php:4760
|
| 735 |
msgid "Plain Black Wide"
|
| 736 |
msgstr ""
|
| 737 |
|
| 738 |
+
#: polldaddy.php:2043 polldaddy.php:4761
|
| 739 |
msgid "Paper Narrow"
|
| 740 |
msgstr ""
|
| 741 |
|
| 742 |
+
#: polldaddy.php:2044 polldaddy.php:4762
|
| 743 |
msgid "Paper Medium"
|
| 744 |
msgstr ""
|
| 745 |
|
| 746 |
+
#: polldaddy.php:2045 polldaddy.php:4763
|
| 747 |
msgid "Paper Wide"
|
| 748 |
msgstr ""
|
| 749 |
|
| 750 |
+
#: polldaddy.php:2046 polldaddy.php:4764
|
| 751 |
msgid "Skull Dark Narrow"
|
| 752 |
msgstr ""
|
| 753 |
|
| 754 |
+
#: polldaddy.php:2047 polldaddy.php:4765
|
| 755 |
msgid "Skull Dark Medium"
|
| 756 |
msgstr ""
|
| 757 |
|
| 758 |
+
#: polldaddy.php:2048 polldaddy.php:4766
|
| 759 |
msgid "Skull Dark Wide"
|
| 760 |
msgstr ""
|
| 761 |
|
| 762 |
+
#: polldaddy.php:2049 polldaddy.php:4767
|
| 763 |
msgid "Skull Light Narrow"
|
| 764 |
msgstr ""
|
| 765 |
|
| 766 |
+
#: polldaddy.php:2050 polldaddy.php:4768
|
| 767 |
msgid "Skull Light Medium"
|
| 768 |
msgstr ""
|
| 769 |
|
| 770 |
+
#: polldaddy.php:2051 polldaddy.php:4769
|
| 771 |
msgid "Skull Light Wide"
|
| 772 |
msgstr ""
|
| 773 |
|
| 774 |
+
#: polldaddy.php:2052 polldaddy.php:2352 polldaddy.php:2700 polldaddy.php:4770
|
| 775 |
msgid "Micro"
|
| 776 |
msgstr ""
|
| 777 |
|
| 778 |
+
#: polldaddy.php:2053 polldaddy.php:4771
|
| 779 |
msgid "Plastic White Narrow"
|
| 780 |
msgstr ""
|
| 781 |
|
| 782 |
+
#: polldaddy.php:2054 polldaddy.php:4772
|
| 783 |
msgid "Plastic White Medium"
|
| 784 |
msgstr ""
|
| 785 |
|
| 786 |
+
#: polldaddy.php:2055 polldaddy.php:4773
|
| 787 |
msgid "Plastic White Wide"
|
| 788 |
msgstr ""
|
| 789 |
|
| 790 |
+
#: polldaddy.php:2056 polldaddy.php:4774
|
| 791 |
msgid "Plastic Grey Narrow"
|
| 792 |
msgstr ""
|
| 793 |
|
| 794 |
+
#: polldaddy.php:2057 polldaddy.php:4775
|
| 795 |
msgid "Plastic Grey Medium"
|
| 796 |
msgstr ""
|
| 797 |
|
| 798 |
+
#: polldaddy.php:2058 polldaddy.php:4776
|
| 799 |
msgid "Plastic Grey Wide"
|
| 800 |
msgstr ""
|
| 801 |
|
| 802 |
+
#: polldaddy.php:2059 polldaddy.php:4777
|
| 803 |
msgid "Plastic Black Narrow"
|
| 804 |
msgstr ""
|
| 805 |
|
| 806 |
+
#: polldaddy.php:2060 polldaddy.php:4778
|
| 807 |
msgid "Plastic Black Medium"
|
| 808 |
msgstr ""
|
| 809 |
|
| 810 |
+
#: polldaddy.php:2061 polldaddy.php:4779
|
| 811 |
msgid "Plastic Black Wide"
|
| 812 |
msgstr ""
|
| 813 |
|
| 814 |
+
#: polldaddy.php:2062 polldaddy.php:4780
|
| 815 |
msgid "Manga Narrow"
|
| 816 |
msgstr ""
|
| 817 |
|
| 818 |
+
#: polldaddy.php:2063 polldaddy.php:4781
|
| 819 |
msgid "Manga Medium"
|
| 820 |
msgstr ""
|
| 821 |
|
| 822 |
+
#: polldaddy.php:2064 polldaddy.php:4782
|
| 823 |
msgid "Manga Wide"
|
| 824 |
msgstr ""
|
| 825 |
|
| 826 |
+
#: polldaddy.php:2065 polldaddy.php:4783
|
| 827 |
msgid "Tech Dark Narrow"
|
| 828 |
msgstr ""
|
| 829 |
|
| 830 |
+
#: polldaddy.php:2066 polldaddy.php:4784
|
| 831 |
msgid "Tech Dark Medium"
|
| 832 |
msgstr ""
|
| 833 |
|
| 834 |
+
#: polldaddy.php:2067 polldaddy.php:4785
|
| 835 |
msgid "Tech Dark Wide"
|
| 836 |
msgstr ""
|
| 837 |
|
| 838 |
+
#: polldaddy.php:2068 polldaddy.php:4786
|
| 839 |
msgid "Tech Grey Narrow"
|
| 840 |
msgstr ""
|
| 841 |
|
| 842 |
+
#: polldaddy.php:2069 polldaddy.php:4787
|
| 843 |
msgid "Tech Grey Medium"
|
| 844 |
msgstr ""
|
| 845 |
|
| 846 |
+
#: polldaddy.php:2070 polldaddy.php:4788
|
| 847 |
msgid "Tech Grey Wide"
|
| 848 |
msgstr ""
|
| 849 |
|
| 850 |
+
#: polldaddy.php:2071 polldaddy.php:4789
|
| 851 |
msgid "Tech Light Narrow"
|
| 852 |
msgstr ""
|
| 853 |
|
| 854 |
+
#: polldaddy.php:2072 polldaddy.php:4790
|
| 855 |
msgid "Tech Light Medium"
|
| 856 |
msgstr ""
|
| 857 |
|
| 858 |
+
#: polldaddy.php:2073 polldaddy.php:4791
|
| 859 |
msgid "Tech Light Wide"
|
| 860 |
msgstr ""
|
| 861 |
|
| 862 |
+
#: polldaddy.php:2074 polldaddy.php:4792
|
| 863 |
msgid "Working Male Narrow"
|
| 864 |
msgstr ""
|
| 865 |
|
| 866 |
+
#: polldaddy.php:2075 polldaddy.php:4793
|
| 867 |
msgid "Working Male Medium"
|
| 868 |
msgstr ""
|
| 869 |
|
| 870 |
+
#: polldaddy.php:2076 polldaddy.php:4794
|
| 871 |
msgid "Working Male Wide"
|
| 872 |
msgstr ""
|
| 873 |
|
| 874 |
+
#: polldaddy.php:2077 polldaddy.php:4795
|
| 875 |
msgid "Working Female Narrow"
|
| 876 |
msgstr ""
|
| 877 |
|
| 878 |
+
#: polldaddy.php:2078 polldaddy.php:4796
|
| 879 |
msgid "Working Female Medium"
|
| 880 |
msgstr ""
|
| 881 |
|
| 882 |
+
#: polldaddy.php:2079 polldaddy.php:4797
|
| 883 |
msgid "Working Female Wide"
|
| 884 |
msgstr ""
|
| 885 |
|
| 886 |
+
#: polldaddy.php:2080 polldaddy.php:4798
|
| 887 |
msgid "Thinking Male Narrow"
|
| 888 |
msgstr ""
|
| 889 |
|
| 890 |
+
#: polldaddy.php:2081 polldaddy.php:4799
|
| 891 |
msgid "Thinking Male Medium"
|
| 892 |
msgstr ""
|
| 893 |
|
| 894 |
+
#: polldaddy.php:2082 polldaddy.php:4800
|
| 895 |
msgid "Thinking Male Wide"
|
| 896 |
msgstr ""
|
| 897 |
|
| 898 |
+
#: polldaddy.php:2083 polldaddy.php:4801
|
| 899 |
msgid "Thinking Female Narrow"
|
| 900 |
msgstr ""
|
| 901 |
|
| 902 |
+
#: polldaddy.php:2084 polldaddy.php:4802
|
| 903 |
msgid "Thinking Female Medium"
|
| 904 |
msgstr ""
|
| 905 |
|
| 906 |
+
#: polldaddy.php:2085 polldaddy.php:4803
|
| 907 |
msgid "Thinking Female Wide"
|
| 908 |
msgstr ""
|
| 909 |
|
| 910 |
+
#: polldaddy.php:2086 polldaddy.php:4804
|
| 911 |
msgid "Sunset Narrow"
|
| 912 |
msgstr ""
|
| 913 |
|
| 914 |
+
#: polldaddy.php:2087 polldaddy.php:4805
|
| 915 |
msgid "Sunset Medium"
|
| 916 |
msgstr ""
|
| 917 |
|
| 918 |
+
#: polldaddy.php:2088 polldaddy.php:4806
|
| 919 |
msgid "Sunset Wide"
|
| 920 |
msgstr ""
|
| 921 |
|
| 922 |
+
#: polldaddy.php:2089 polldaddy.php:4807
|
| 923 |
msgid "Music Medium"
|
| 924 |
msgstr ""
|
| 925 |
|
| 926 |
+
#: polldaddy.php:2090 polldaddy.php:4808
|
| 927 |
msgid "Music Wide"
|
| 928 |
msgstr ""
|
| 929 |
|
| 930 |
+
#: polldaddy.php:2113
|
| 931 |
msgid "Poll Style"
|
| 932 |
msgstr ""
|
| 933 |
|
| 934 |
+
#: polldaddy.php:2118
|
| 935 |
msgid "Polldaddy Styles"
|
| 936 |
msgstr ""
|
| 937 |
|
| 938 |
+
#: polldaddy.php:2205
|
| 939 |
msgid "Polldaddy Style"
|
| 940 |
msgstr ""
|
| 941 |
|
| 942 |
+
#: polldaddy.php:2211
|
| 943 |
msgid "Custom Style"
|
| 944 |
msgstr ""
|
| 945 |
|
| 946 |
+
#: polldaddy.php:2287
|
| 947 |
+
msgid "Please choose a custom style…"
|
| 948 |
msgstr ""
|
| 949 |
|
| 950 |
+
#: polldaddy.php:2293
|
| 951 |
msgid "Please choose a style."
|
| 952 |
msgstr ""
|
| 953 |
|
| 954 |
+
#: polldaddy.php:2295
|
| 955 |
msgid "You currently have no custom styles created."
|
| 956 |
msgstr ""
|
| 957 |
|
| 958 |
+
#: polldaddy.php:2295
|
| 959 |
+
msgid "New Style"
|
| 960 |
+
msgstr ""
|
| 961 |
+
|
| 962 |
+
#: polldaddy.php:2296
|
| 963 |
msgid ""
|
| 964 |
"Did you know we have a new editor for building your own custom poll styles? "
|
| 965 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
| 966 |
msgstr ""
|
| 967 |
|
| 968 |
+
#: polldaddy.php:2312 polldaddy.php:3565 polldaddy.php:4316 polldaddy.php:4728
|
| 969 |
msgid "Are you sure you want to delete \"%s\"?"
|
| 970 |
msgstr ""
|
| 971 |
|
| 972 |
+
#: polldaddy.php:2334 polldaddy.php:2694
|
| 973 |
msgid "Aluminum"
|
| 974 |
msgstr ""
|
| 975 |
|
| 976 |
+
#: polldaddy.php:2337 polldaddy.php:2695
|
| 977 |
msgid "Plain White"
|
| 978 |
msgstr ""
|
| 979 |
|
| 980 |
+
#: polldaddy.php:2340 polldaddy.php:2696
|
| 981 |
msgid "Plain Black"
|
| 982 |
msgstr ""
|
| 983 |
|
| 984 |
+
#: polldaddy.php:2343 polldaddy.php:2697
|
| 985 |
msgid "Paper"
|
| 986 |
msgstr ""
|
| 987 |
|
| 988 |
+
#: polldaddy.php:2346 polldaddy.php:2698
|
| 989 |
msgid "Skull Dark"
|
| 990 |
msgstr ""
|
| 991 |
|
| 992 |
+
#: polldaddy.php:2349 polldaddy.php:2699
|
| 993 |
msgid "Skull Light"
|
| 994 |
msgstr ""
|
| 995 |
|
| 996 |
+
#: polldaddy.php:2353 polldaddy.php:2403
|
| 997 |
msgid "Width 150px, the micro style is useful when space is tight."
|
| 998 |
msgstr ""
|
| 999 |
|
| 1000 |
+
#: polldaddy.php:2356
|
| 1001 |
msgid "Plastic White"
|
| 1002 |
msgstr ""
|
| 1003 |
|
| 1004 |
+
#: polldaddy.php:2359
|
| 1005 |
msgid "Plastic Grey"
|
| 1006 |
msgstr ""
|
| 1007 |
|
| 1008 |
+
#: polldaddy.php:2362
|
| 1009 |
msgid "Plastic Black"
|
| 1010 |
msgstr ""
|
| 1011 |
|
| 1012 |
+
#: polldaddy.php:2365
|
| 1013 |
msgid "Manga"
|
| 1014 |
msgstr ""
|
| 1015 |
|
| 1016 |
+
#: polldaddy.php:2368
|
| 1017 |
msgid "Tech Dark"
|
| 1018 |
msgstr ""
|
| 1019 |
|
| 1020 |
+
#: polldaddy.php:2371
|
| 1021 |
msgid "Tech Grey"
|
| 1022 |
msgstr ""
|
| 1023 |
|
| 1024 |
+
#: polldaddy.php:2374
|
| 1025 |
msgid "Tech Light"
|
| 1026 |
msgstr ""
|
| 1027 |
|
| 1028 |
+
#: polldaddy.php:2377
|
| 1029 |
msgid "Working Male"
|
| 1030 |
msgstr ""
|
| 1031 |
|
| 1032 |
+
#: polldaddy.php:2380
|
| 1033 |
msgid "Working Female"
|
| 1034 |
msgstr ""
|
| 1035 |
|
| 1036 |
+
#: polldaddy.php:2383
|
| 1037 |
msgid "Thinking Male"
|
| 1038 |
msgstr ""
|
| 1039 |
|
| 1040 |
+
#: polldaddy.php:2386
|
| 1041 |
msgid "Thinking Female"
|
| 1042 |
msgstr ""
|
| 1043 |
|
| 1044 |
+
#: polldaddy.php:2389
|
| 1045 |
msgid "Sunset"
|
| 1046 |
msgstr ""
|
| 1047 |
|
| 1048 |
+
#: polldaddy.php:2392
|
| 1049 |
msgid "Music"
|
| 1050 |
msgstr ""
|
| 1051 |
|
| 1052 |
+
#: polldaddy.php:2397
|
| 1053 |
msgid "Wide"
|
| 1054 |
msgstr ""
|
| 1055 |
|
| 1056 |
+
#: polldaddy.php:2398 polldaddy.php:4089
|
| 1057 |
msgid "Medium"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
+
#: polldaddy.php:2399
|
| 1061 |
msgid "Narrow"
|
| 1062 |
msgstr ""
|
| 1063 |
|
| 1064 |
+
#: polldaddy.php:2400
|
| 1065 |
msgid "Width: 630px, the wide style is good for blog posts."
|
| 1066 |
msgstr ""
|
| 1067 |
|
| 1068 |
+
#: polldaddy.php:2401
|
| 1069 |
msgid "Width: 300px, the medium style is good for general use."
|
| 1070 |
msgstr ""
|
| 1071 |
|
| 1072 |
+
#: polldaddy.php:2402
|
| 1073 |
msgid "Width 150px, the narrow style is good for sidebars etc."
|
| 1074 |
msgstr ""
|
| 1075 |
|
| 1076 |
+
#: polldaddy.php:2437
|
| 1077 |
msgid "Answer"
|
| 1078 |
msgstr ""
|
| 1079 |
|
| 1080 |
+
#: polldaddy.php:2438 polldaddy.php:2487 polldaddy.php:3943 polldaddy.php:4652
|
| 1081 |
msgid "Votes"
|
| 1082 |
msgstr ""
|
| 1083 |
|
| 1084 |
+
#: polldaddy.php:2439
|
| 1085 |
msgid "Percent"
|
| 1086 |
msgstr ""
|
| 1087 |
|
| 1088 |
+
#: polldaddy.php:2454
|
| 1089 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
| 1090 |
msgstr ""
|
| 1091 |
|
| 1092 |
+
#: polldaddy.php:2486
|
| 1093 |
msgid "Other Answer"
|
| 1094 |
msgstr ""
|
| 1095 |
|
| 1096 |
+
#: polldaddy.php:2551 polldaddy.php:2967
|
| 1097 |
msgid "Style"
|
| 1098 |
msgstr ""
|
| 1099 |
|
| 1100 |
+
#: polldaddy.php:2552
|
| 1101 |
msgid "Last Modified"
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
+
#: polldaddy.php:2584
|
| 1105 |
msgid "Y/m/d"
|
| 1106 |
msgstr ""
|
| 1107 |
|
| 1108 |
+
#: polldaddy.php:2596
|
| 1109 |
msgid "You haven't used our fancy style editor to create any custom styles!"
|
| 1110 |
msgstr ""
|
| 1111 |
|
| 1112 |
+
#: polldaddy.php:2598
|
| 1113 |
msgid "Create a Custom Style Now"
|
| 1114 |
msgstr ""
|
| 1115 |
|
| 1116 |
+
#: polldaddy.php:2676
|
| 1117 |
msgid "Style Name"
|
| 1118 |
msgstr ""
|
| 1119 |
|
| 1120 |
+
#: polldaddy.php:2688
|
| 1121 |
msgid "Preload Basic Style"
|
| 1122 |
msgstr ""
|
| 1123 |
|
| 1124 |
+
#: polldaddy.php:2702
|
| 1125 |
msgid "Load Style"
|
| 1126 |
msgstr ""
|
| 1127 |
|
| 1128 |
+
#: polldaddy.php:2708
|
| 1129 |
msgid "Text Direction"
|
| 1130 |
msgstr ""
|
| 1131 |
|
| 1132 |
+
#: polldaddy.php:2712
|
| 1133 |
msgid "Force RTL"
|
| 1134 |
msgstr ""
|
| 1135 |
|
| 1136 |
+
#: polldaddy.php:2713
|
| 1137 |
msgid "Force LTR"
|
| 1138 |
msgstr ""
|
| 1139 |
|
| 1140 |
+
#: polldaddy.php:2719
|
| 1141 |
msgid "Style Editor"
|
| 1142 |
msgstr ""
|
| 1143 |
|
| 1144 |
+
#: polldaddy.php:2723
|
| 1145 |
msgid "Select a template part to edit:"
|
| 1146 |
msgstr ""
|
| 1147 |
|
| 1148 |
+
#: polldaddy.php:2726
|
| 1149 |
msgid "Poll Box"
|
| 1150 |
msgstr ""
|
| 1151 |
|
| 1152 |
+
#: polldaddy.php:2727
|
| 1153 |
msgid "Question"
|
| 1154 |
msgstr ""
|
| 1155 |
|
| 1156 |
+
#: polldaddy.php:2728
|
| 1157 |
msgid "Answer Group"
|
| 1158 |
msgstr ""
|
| 1159 |
|
| 1160 |
+
#: polldaddy.php:2729
|
| 1161 |
msgid "Answer Check"
|
| 1162 |
msgstr ""
|
| 1163 |
|
| 1164 |
+
#: polldaddy.php:2731
|
| 1165 |
msgid "Other Input"
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
+
#: polldaddy.php:2732
|
| 1169 |
msgid "Vote Button"
|
| 1170 |
msgstr ""
|
| 1171 |
|
| 1172 |
+
#: polldaddy.php:2733
|
| 1173 |
msgid "Links"
|
| 1174 |
msgstr ""
|
| 1175 |
|
| 1176 |
+
#: polldaddy.php:2734
|
| 1177 |
msgid "Feedback Group"
|
| 1178 |
msgstr ""
|
| 1179 |
|
| 1180 |
+
#: polldaddy.php:2735
|
| 1181 |
msgid "Results Group"
|
| 1182 |
msgstr ""
|
| 1183 |
|
| 1184 |
+
#: polldaddy.php:2736
|
| 1185 |
msgid "Results Percent"
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
+
#: polldaddy.php:2737
|
| 1189 |
msgid "Results Votes"
|
| 1190 |
msgstr ""
|
| 1191 |
|
| 1192 |
+
#: polldaddy.php:2738
|
| 1193 |
msgid "Results Text"
|
| 1194 |
msgstr ""
|
| 1195 |
|
| 1196 |
+
#: polldaddy.php:2739
|
| 1197 |
msgid "Results Background"
|
| 1198 |
msgstr ""
|
| 1199 |
|
| 1200 |
+
#: polldaddy.php:2740
|
| 1201 |
msgid "Results Bar"
|
| 1202 |
msgstr ""
|
| 1203 |
|
| 1204 |
+
#: polldaddy.php:2741 polldaddy.php:3523
|
| 1205 |
msgid "Total Votes"
|
| 1206 |
msgstr ""
|
| 1207 |
|
| 1208 |
+
#: polldaddy.php:2757 polldaddy.php:4162
|
| 1209 |
msgid "Font"
|
| 1210 |
msgstr ""
|
| 1211 |
|
| 1212 |
+
#: polldaddy.php:2760
|
| 1213 |
msgid "Background"
|
| 1214 |
msgstr ""
|
| 1215 |
|
| 1216 |
+
#: polldaddy.php:2763
|
| 1217 |
msgid "Border"
|
| 1218 |
msgstr ""
|
| 1219 |
|
| 1220 |
+
#: polldaddy.php:2766
|
| 1221 |
msgid "Margin"
|
| 1222 |
msgstr ""
|
| 1223 |
|
| 1224 |
+
#: polldaddy.php:2769
|
| 1225 |
msgid "Padding"
|
| 1226 |
msgstr ""
|
| 1227 |
|
| 1228 |
+
#: polldaddy.php:2772 polldaddy.php:2929 polldaddy.php:3343
|
| 1229 |
msgid "Width"
|
| 1230 |
msgstr ""
|
| 1231 |
|
| 1232 |
+
#: polldaddy.php:2775 polldaddy.php:3359
|
| 1233 |
msgid "Height"
|
| 1234 |
msgstr ""
|
| 1235 |
|
| 1236 |
+
#: polldaddy.php:2778 polldaddy.php:3368 polldaddy.php:4148
|
| 1237 |
msgid "Position"
|
| 1238 |
msgstr ""
|
| 1239 |
|
| 1240 |
+
#: polldaddy.php:2791 polldaddy.php:2813
|
| 1241 |
msgid "Font Size"
|
| 1242 |
msgstr ""
|
| 1243 |
|
| 1244 |
+
#: polldaddy.php:2828 polldaddy.php:2887 polldaddy.php:2984 polldaddy.php:4176
|
| 1245 |
msgid "Color"
|
| 1246 |
msgstr ""
|
| 1247 |
|
| 1248 |
+
#: polldaddy.php:2834 polldaddy.php:4209
|
| 1249 |
msgid "Bold"
|
| 1250 |
msgstr ""
|
| 1251 |
|
| 1252 |
+
#: polldaddy.php:2840 polldaddy.php:4218
|
| 1253 |
msgid "Italic"
|
| 1254 |
msgstr ""
|
| 1255 |
|
| 1256 |
+
#: polldaddy.php:2846
|
| 1257 |
msgid "Underline"
|
| 1258 |
msgstr ""
|
| 1259 |
|
| 1260 |
+
#: polldaddy.php:2852 polldaddy.php:4195
|
| 1261 |
msgid "Line Height"
|
| 1262 |
msgstr ""
|
| 1263 |
|
| 1264 |
+
#: polldaddy.php:2874 polldaddy.php:4134
|
| 1265 |
msgid "Align"
|
| 1266 |
msgstr ""
|
| 1267 |
|
| 1268 |
+
#: polldaddy.php:2877 polldaddy.php:3147 polldaddy.php:3302 polldaddy.php:4137
|
| 1269 |
msgid "Left"
|
| 1270 |
msgstr ""
|
| 1271 |
|
| 1272 |
+
#: polldaddy.php:2878 polldaddy.php:4137
|
| 1273 |
msgid "Center"
|
| 1274 |
msgstr ""
|
| 1275 |
|
| 1276 |
+
#: polldaddy.php:2879 polldaddy.php:3071 polldaddy.php:3226 polldaddy.php:4137
|
| 1277 |
+
#: polldaddy.php:4151
|
| 1278 |
msgid "Right"
|
| 1279 |
msgstr ""
|
| 1280 |
|
| 1281 |
+
#: polldaddy.php:2893 popups.php:58
|
| 1282 |
msgid "Image URL"
|
| 1283 |
msgstr ""
|
| 1284 |
|
| 1285 |
+
#: polldaddy.php:2893 polldaddy.php:3343
|
| 1286 |
msgid "Click here for more information"
|
| 1287 |
msgstr ""
|
| 1288 |
|
| 1289 |
+
#: polldaddy.php:2899
|
| 1290 |
msgid "Image Repeat"
|
| 1291 |
msgstr ""
|
| 1292 |
|
| 1293 |
+
#: polldaddy.php:2902
|
| 1294 |
msgid "repeat"
|
| 1295 |
msgstr ""
|
| 1296 |
|
| 1297 |
+
#: polldaddy.php:2903
|
| 1298 |
msgid "no-repeat"
|
| 1299 |
msgstr ""
|
| 1300 |
|
| 1301 |
+
#: polldaddy.php:2904
|
| 1302 |
msgid "repeat-x"
|
| 1303 |
msgstr ""
|
| 1304 |
|
| 1305 |
+
#: polldaddy.php:2905
|
| 1306 |
msgid "repeat-y"
|
| 1307 |
msgstr ""
|
| 1308 |
|
| 1309 |
+
#: polldaddy.php:2910
|
| 1310 |
msgid "Image Position"
|
| 1311 |
msgstr ""
|
| 1312 |
|
| 1313 |
+
#: polldaddy.php:2913
|
| 1314 |
msgid "left top"
|
| 1315 |
msgstr ""
|
| 1316 |
|
| 1317 |
+
#: polldaddy.php:2914
|
| 1318 |
msgid "left center"
|
| 1319 |
msgstr ""
|
| 1320 |
|
| 1321 |
+
#: polldaddy.php:2915
|
| 1322 |
msgid "left bottom"
|
| 1323 |
msgstr ""
|
| 1324 |
|
| 1325 |
+
#: polldaddy.php:2916
|
| 1326 |
msgid "center top"
|
| 1327 |
msgstr ""
|
| 1328 |
|
| 1329 |
+
#: polldaddy.php:2917
|
| 1330 |
msgid "center center"
|
| 1331 |
msgstr ""
|
| 1332 |
|
| 1333 |
+
#: polldaddy.php:2918
|
| 1334 |
msgid "center bottom"
|
| 1335 |
msgstr ""
|
| 1336 |
|
| 1337 |
+
#: polldaddy.php:2919
|
| 1338 |
msgid "right top"
|
| 1339 |
msgstr ""
|
| 1340 |
|
| 1341 |
+
#: polldaddy.php:2920
|
| 1342 |
msgid "right center"
|
| 1343 |
msgstr ""
|
| 1344 |
|
| 1345 |
+
#: polldaddy.php:2921
|
| 1346 |
msgid "right bottom"
|
| 1347 |
msgstr ""
|
| 1348 |
|
| 1349 |
+
#: polldaddy.php:2970
|
| 1350 |
msgid "none"
|
| 1351 |
msgstr ""
|
| 1352 |
|
| 1353 |
+
#: polldaddy.php:2971
|
| 1354 |
msgid "solid"
|
| 1355 |
msgstr ""
|
| 1356 |
|
| 1357 |
+
#: polldaddy.php:2972
|
| 1358 |
msgid "dotted"
|
| 1359 |
msgstr ""
|
| 1360 |
|
| 1361 |
+
#: polldaddy.php:2973
|
| 1362 |
msgid "dashed"
|
| 1363 |
msgstr ""
|
| 1364 |
|
| 1365 |
+
#: polldaddy.php:2974
|
| 1366 |
msgid "double"
|
| 1367 |
msgstr ""
|
| 1368 |
|
| 1369 |
+
#: polldaddy.php:2975
|
| 1370 |
msgid "groove"
|
| 1371 |
msgstr ""
|
| 1372 |
|
| 1373 |
+
#: polldaddy.php:2976
|
| 1374 |
msgid "inset"
|
| 1375 |
msgstr ""
|
| 1376 |
|
| 1377 |
+
#: polldaddy.php:2977
|
| 1378 |
msgid "outset"
|
| 1379 |
msgstr ""
|
| 1380 |
|
| 1381 |
+
#: polldaddy.php:2978
|
| 1382 |
msgid "ridge"
|
| 1383 |
msgstr ""
|
| 1384 |
|
| 1385 |
+
#: polldaddy.php:2979
|
| 1386 |
msgid "hidden"
|
| 1387 |
msgstr ""
|
| 1388 |
|
| 1389 |
+
#: polldaddy.php:2990
|
| 1390 |
msgid "Rounded Corners"
|
| 1391 |
msgstr ""
|
| 1392 |
|
| 1393 |
+
#: polldaddy.php:3026
|
| 1394 |
msgid "Not supported in Internet Explorer."
|
| 1395 |
msgstr ""
|
| 1396 |
|
| 1397 |
+
#: polldaddy.php:3033 polldaddy.php:3188 polldaddy.php:4151
|
| 1398 |
msgid "Top"
|
| 1399 |
msgstr ""
|
| 1400 |
|
| 1401 |
+
#: polldaddy.php:3109 polldaddy.php:3264 polldaddy.php:4151
|
| 1402 |
msgid "Bottom"
|
| 1403 |
msgstr ""
|
| 1404 |
|
| 1405 |
+
#: polldaddy.php:3351
|
| 1406 |
msgid ""
|
| 1407 |
"If you change the width of the<br/> poll you may also need to change<br/> "
|
| 1408 |
"the width of your answers."
|
| 1409 |
msgstr ""
|
| 1410 |
|
| 1411 |
+
#: polldaddy.php:3400 polldaddy.php:3574
|
| 1412 |
msgid "Do you mostly use the internet at work, in school or at home?"
|
| 1413 |
msgstr ""
|
| 1414 |
|
| 1415 |
+
#: polldaddy.php:3413
|
| 1416 |
msgid "I use it in school."
|
| 1417 |
msgstr ""
|
| 1418 |
|
| 1419 |
+
#: polldaddy.php:3421 polldaddy.php:3479
|
| 1420 |
msgid "I use it at home."
|
| 1421 |
msgstr ""
|
| 1422 |
|
| 1423 |
+
#: polldaddy.php:3429 polldaddy.php:3493
|
| 1424 |
msgid ""
|
| 1425 |
"I use it every where I go, at work and home and anywhere else that I can!"
|
| 1426 |
msgstr ""
|
| 1427 |
|
| 1428 |
+
#: polldaddy.php:3437 polldaddy.php:3507
|
| 1429 |
msgid "Other"
|
| 1430 |
msgstr ""
|
| 1431 |
|
| 1432 |
+
#: polldaddy.php:3449 polldaddy.php:3937
|
| 1433 |
msgid "Vote"
|
| 1434 |
msgstr ""
|
| 1435 |
|
| 1436 |
+
#: polldaddy.php:3451
|
| 1437 |
msgid "View Results"
|
| 1438 |
msgstr ""
|
| 1439 |
|
| 1440 |
+
#: polldaddy.php:3465
|
| 1441 |
msgid "I use it in school!"
|
| 1442 |
msgstr ""
|
| 1443 |
|
| 1444 |
+
#: polldaddy.php:3467 polldaddy.php:3481 polldaddy.php:3495 polldaddy.php:3509
|
| 1445 |
msgid "(%d votes)"
|
| 1446 |
msgstr ""
|
| 1447 |
|
| 1448 |
+
#: polldaddy.php:3531
|
| 1449 |
msgid "Return To Poll"
|
| 1450 |
msgstr ""
|
| 1451 |
|
| 1452 |
+
#: polldaddy.php:3552
|
| 1453 |
msgid "Save Style"
|
| 1454 |
msgstr ""
|
| 1455 |
|
| 1456 |
+
#: polldaddy.php:3554
|
| 1457 |
msgid "Check this box if you wish to update the polls that use this style."
|
| 1458 |
msgstr ""
|
| 1459 |
|
| 1460 |
+
#: polldaddy.php:3573
|
| 1461 |
msgid "Thank you for voting!"
|
| 1462 |
msgstr ""
|
| 1463 |
|
| 1464 |
+
#: polldaddy.php:3665
|
| 1465 |
msgid ""
|
| 1466 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
| 1467 |
"href=\"%1$s\" %2$s>Polldaddy support</a> to fix this."
|
| 1468 |
msgstr ""
|
| 1469 |
|
| 1470 |
+
#: polldaddy.php:3770
|
| 1471 |
+
msgid "Rating Settings"
|
| 1472 |
msgstr ""
|
| 1473 |
|
| 1474 |
+
#: polldaddy.php:3773
|
| 1475 |
msgid "Rating updated"
|
| 1476 |
msgstr ""
|
| 1477 |
|
| 1478 |
+
#: polldaddy.php:3785 polldaddy.php:3805 polldaddy.php:4601
|
| 1479 |
msgid "Posts"
|
| 1480 |
msgstr ""
|
| 1481 |
|
| 1482 |
+
#: polldaddy.php:3789 polldaddy.php:3841 polldaddy.php:4601
|
| 1483 |
msgid "Pages"
|
| 1484 |
msgstr ""
|
| 1485 |
|
| 1486 |
+
#: polldaddy.php:3802 polldaddy.php:3839 polldaddy.php:3861
|
| 1487 |
+
msgid "Show Ratings on"
|
| 1488 |
msgstr ""
|
| 1489 |
|
| 1490 |
+
#: polldaddy.php:3804
|
| 1491 |
+
msgid "Front Page, Archive Pages, and Search Results"
|
| 1492 |
+
msgstr ""
|
| 1493 |
+
|
| 1494 |
+
#: polldaddy.php:3809
|
| 1495 |
+
msgid "Position Front Page, Archive Pages, and Search Results Ratings"
|
| 1496 |
+
msgstr ""
|
| 1497 |
+
|
| 1498 |
+
#: polldaddy.php:3812 polldaddy.php:3826
|
| 1499 |
msgid "Above each blog post"
|
| 1500 |
msgstr ""
|
| 1501 |
|
| 1502 |
+
#: polldaddy.php:3812 polldaddy.php:3826
|
| 1503 |
msgid "Below each blog post"
|
| 1504 |
msgstr ""
|
| 1505 |
|
| 1506 |
+
#: polldaddy.php:3823
|
| 1507 |
+
msgid "Position Post Ratings"
|
| 1508 |
msgstr ""
|
| 1509 |
|
| 1510 |
+
#: polldaddy.php:3845
|
| 1511 |
+
msgid "Position Page Ratings"
|
| 1512 |
msgstr ""
|
| 1513 |
|
| 1514 |
+
#: polldaddy.php:3848
|
| 1515 |
+
msgid "Above each blog page"
|
| 1516 |
msgstr ""
|
| 1517 |
|
| 1518 |
+
#: polldaddy.php:3848
|
| 1519 |
+
msgid "Below each blog page"
|
| 1520 |
msgstr ""
|
| 1521 |
|
| 1522 |
+
#: polldaddy.php:3867
|
| 1523 |
+
msgid "Position Comment Ratings"
|
| 1524 |
msgstr ""
|
| 1525 |
|
| 1526 |
+
#: polldaddy.php:3870
|
| 1527 |
msgid "Above each comment"
|
| 1528 |
msgstr ""
|
| 1529 |
|
| 1530 |
+
#: polldaddy.php:3870
|
| 1531 |
msgid "Below each comment"
|
| 1532 |
msgstr ""
|
| 1533 |
|
| 1534 |
+
#: polldaddy.php:3882 polldaddy.php:3915
|
| 1535 |
msgid "Save Changes"
|
| 1536 |
msgstr ""
|
| 1537 |
|
| 1538 |
+
#: polldaddy.php:3899
|
| 1539 |
msgid "Advanced Settings"
|
| 1540 |
msgstr ""
|
| 1541 |
|
| 1542 |
+
#: polldaddy.php:3910
|
| 1543 |
+
msgid "Save Advanced Settings"
|
| 1544 |
+
msgstr ""
|
| 1545 |
+
|
| 1546 |
+
#: polldaddy.php:3926
|
| 1547 |
msgid "This is a demo of what your rating widget will look like"
|
| 1548 |
msgstr ""
|
| 1549 |
|
| 1550 |
+
#: polldaddy.php:3933
|
| 1551 |
msgid "Customize Labels"
|
| 1552 |
msgstr ""
|
| 1553 |
|
| 1554 |
+
#: polldaddy.php:3949
|
| 1555 |
msgid "Rate This"
|
| 1556 |
msgstr ""
|
| 1557 |
|
| 1558 |
+
#: polldaddy.php:3955
|
| 1559 |
msgid "%d star"
|
| 1560 |
msgstr ""
|
| 1561 |
|
| 1562 |
+
#: polldaddy.php:3961 polldaddy.php:3967 polldaddy.php:3973 polldaddy.php:3979
|
| 1563 |
msgid "%d stars"
|
| 1564 |
msgstr ""
|
| 1565 |
|
| 1566 |
+
#: polldaddy.php:3985
|
| 1567 |
msgid "Thank You"
|
| 1568 |
msgstr ""
|
| 1569 |
|
| 1570 |
+
#: polldaddy.php:3991
|
| 1571 |
msgid "Rate Up"
|
| 1572 |
msgstr ""
|
| 1573 |
|
| 1574 |
+
#: polldaddy.php:3997
|
| 1575 |
msgid "Rate Down"
|
| 1576 |
msgstr ""
|
| 1577 |
|
| 1578 |
+
#: polldaddy.php:4003
|
| 1579 |
msgid "Most Popular Content"
|
| 1580 |
msgstr ""
|
| 1581 |
|
| 1582 |
+
#: polldaddy.php:4015
|
| 1583 |
msgid "All"
|
| 1584 |
msgstr ""
|
| 1585 |
|
| 1586 |
+
#: polldaddy.php:4021
|
| 1587 |
msgid "Today"
|
| 1588 |
msgstr ""
|
| 1589 |
|
| 1590 |
+
#: polldaddy.php:4027
|
| 1591 |
msgid "This Week"
|
| 1592 |
msgstr ""
|
| 1593 |
|
| 1594 |
+
#: polldaddy.php:4033
|
| 1595 |
msgid "This Month"
|
| 1596 |
msgstr ""
|
| 1597 |
|
| 1598 |
+
#: polldaddy.php:4039
|
| 1599 |
msgid "Rated"
|
| 1600 |
msgstr ""
|
| 1601 |
|
| 1602 |
+
#: polldaddy.php:4045
|
| 1603 |
msgid "There are no rated items for this period"
|
| 1604 |
msgstr ""
|
| 1605 |
|
| 1606 |
+
#: polldaddy.php:4056
|
| 1607 |
msgid "Rating Type"
|
| 1608 |
msgstr ""
|
| 1609 |
|
| 1610 |
+
#: polldaddy.php:4058
|
| 1611 |
msgid ""
|
| 1612 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
| 1613 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
| 1614 |
msgstr ""
|
| 1615 |
|
| 1616 |
+
#: polldaddy.php:4066
|
| 1617 |
msgid "%d Star Rating"
|
| 1618 |
msgstr ""
|
| 1619 |
|
| 1620 |
+
#: polldaddy.php:4075
|
| 1621 |
msgid "Nero Rating"
|
| 1622 |
msgstr ""
|
| 1623 |
|
| 1624 |
+
#: polldaddy.php:4082
|
| 1625 |
msgid "Rating Style"
|
| 1626 |
msgstr ""
|
| 1627 |
|
| 1628 |
+
#: polldaddy.php:4089
|
| 1629 |
msgid "Small"
|
| 1630 |
msgstr ""
|
| 1631 |
|
| 1632 |
+
#: polldaddy.php:4089
|
| 1633 |
msgid "Large"
|
| 1634 |
msgstr ""
|
| 1635 |
|
| 1636 |
+
#: polldaddy.php:4100
|
| 1637 |
msgid "Star Color"
|
| 1638 |
msgstr ""
|
| 1639 |
|
| 1640 |
+
#: polldaddy.php:4103
|
| 1641 |
msgid "Yellow"
|
| 1642 |
msgstr ""
|
| 1643 |
|
| 1644 |
+
#: polldaddy.php:4103
|
| 1645 |
msgid "Red"
|
| 1646 |
msgstr ""
|
| 1647 |
|
| 1648 |
+
#: polldaddy.php:4103
|
| 1649 |
msgid "Blue"
|
| 1650 |
msgstr ""
|
| 1651 |
|
| 1652 |
+
#: polldaddy.php:4103
|
| 1653 |
msgid "Green"
|
| 1654 |
msgstr ""
|
| 1655 |
|
| 1656 |
+
#: polldaddy.php:4103
|
| 1657 |
msgid "Grey"
|
| 1658 |
msgstr ""
|
| 1659 |
|
| 1660 |
+
#: polldaddy.php:4112
|
| 1661 |
msgid "Hand"
|
| 1662 |
msgstr ""
|
| 1663 |
|
| 1664 |
+
#: polldaddy.php:4123
|
| 1665 |
msgid "Custom Image"
|
| 1666 |
msgstr ""
|
| 1667 |
|
| 1668 |
+
#: polldaddy.php:4130
|
| 1669 |
msgid "Text Layout & Font"
|
| 1670 |
msgstr ""
|
| 1671 |
|
| 1672 |
+
#: polldaddy.php:4165 polldaddy.php:4184 polldaddy.php:4198
|
| 1673 |
msgid "Inherit"
|
| 1674 |
msgstr ""
|
| 1675 |
|
| 1676 |
+
#: polldaddy.php:4181
|
| 1677 |
msgid "Size"
|
| 1678 |
msgstr ""
|
| 1679 |
|
| 1680 |
+
#: polldaddy.php:4230
|
| 1681 |
msgid "Extra Settings"
|
| 1682 |
msgstr ""
|
| 1683 |
|
| 1684 |
+
#: polldaddy.php:4234
|
| 1685 |
msgid "Results Popup"
|
| 1686 |
msgstr ""
|
| 1687 |
|
| 1688 |
+
#: polldaddy.php:4240
|
| 1689 |
msgid "Uncheck this box to disable the results popup"
|
| 1690 |
msgstr ""
|
| 1691 |
|
| 1692 |
+
#: polldaddy.php:4247 polldaddy.php:4271 polldaddy.php:4294
|
| 1693 |
msgid "Rating ID"
|
| 1694 |
msgstr ""
|
| 1695 |
|
| 1696 |
+
#: polldaddy.php:4253
|
| 1697 |
msgid "This is the rating ID used in posts"
|
| 1698 |
msgstr ""
|
| 1699 |
|
| 1700 |
+
#: polldaddy.php:4258
|
| 1701 |
msgid "Exclude Posts"
|
| 1702 |
msgstr ""
|
| 1703 |
|
| 1704 |
+
#: polldaddy.php:4264
|
| 1705 |
msgid ""
|
| 1706 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
| 1707 |
"comma-delimited list, eg. 1,2,3"
|
| 1708 |
msgstr ""
|
| 1709 |
|
| 1710 |
+
#: polldaddy.php:4277
|
| 1711 |
msgid "This is the rating ID used in pages"
|
| 1712 |
msgstr ""
|
| 1713 |
|
| 1714 |
+
#: polldaddy.php:4282
|
| 1715 |
msgid "Exclude Pages"
|
| 1716 |
msgstr ""
|
| 1717 |
|
| 1718 |
+
#: polldaddy.php:4288
|
| 1719 |
msgid ""
|
| 1720 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
| 1721 |
"comma-delimited list, eg. 1,2,3"
|
| 1722 |
msgstr ""
|
| 1723 |
|
| 1724 |
+
#: polldaddy.php:4300
|
| 1725 |
msgid "This is the rating ID used in comments"
|
| 1726 |
msgstr ""
|
| 1727 |
|
| 1728 |
+
#: polldaddy.php:4575
|
| 1729 |
msgid "«"
|
| 1730 |
msgstr ""
|
| 1731 |
|
| 1732 |
+
#: polldaddy.php:4576
|
| 1733 |
msgid "»"
|
| 1734 |
msgstr ""
|
| 1735 |
|
| 1736 |
+
#: polldaddy.php:4583
|
| 1737 |
+
msgid "Rating Results <a href=\"%s\" class=\"add-new-h2\">Settings</a>"
|
| 1738 |
msgstr ""
|
| 1739 |
|
| 1740 |
+
#: polldaddy.php:4585
|
| 1741 |
+
msgid "Rating Results"
|
| 1742 |
+
msgstr ""
|
| 1743 |
+
|
| 1744 |
+
#: polldaddy.php:4610
|
| 1745 |
msgid "Last 24 hours"
|
| 1746 |
msgstr ""
|
| 1747 |
|
| 1748 |
+
#: polldaddy.php:4610
|
| 1749 |
msgid "Last 7 days"
|
| 1750 |
msgstr ""
|
| 1751 |
|
| 1752 |
+
#: polldaddy.php:4610
|
| 1753 |
msgid "Last 31 days"
|
| 1754 |
msgstr ""
|
| 1755 |
|
| 1756 |
+
#: polldaddy.php:4610
|
| 1757 |
msgid "Last 3 months"
|
| 1758 |
msgstr ""
|
| 1759 |
|
| 1760 |
+
#: polldaddy.php:4610
|
| 1761 |
msgid "Last 12 months"
|
| 1762 |
msgstr ""
|
| 1763 |
|
| 1764 |
+
#: polldaddy.php:4610
|
| 1765 |
msgid "All time"
|
| 1766 |
msgstr ""
|
| 1767 |
|
| 1768 |
+
#: polldaddy.php:4620
|
| 1769 |
msgid "* The results are cached and are updated every hour"
|
| 1770 |
msgstr ""
|
| 1771 |
|
| 1772 |
+
#: polldaddy.php:4622
|
| 1773 |
msgid "* The results are cached and are updated every day"
|
| 1774 |
msgstr ""
|
| 1775 |
|
| 1776 |
+
#: polldaddy.php:4624
|
| 1777 |
msgid "* The results are cached and are updated every 3 days"
|
| 1778 |
msgstr ""
|
| 1779 |
|
| 1780 |
+
#: polldaddy.php:4638
|
| 1781 |
msgid "No ratings have been collected for your %s yet."
|
| 1782 |
msgstr ""
|
| 1783 |
|
| 1784 |
+
#: polldaddy.php:4650
|
| 1785 |
msgid "Unique ID"
|
| 1786 |
msgstr ""
|
| 1787 |
|
| 1788 |
+
#: polldaddy.php:4651
|
| 1789 |
msgid "Start Date"
|
| 1790 |
msgstr ""
|
| 1791 |
|
| 1792 |
+
#: polldaddy.php:4653
|
| 1793 |
msgid "Average Rating"
|
| 1794 |
msgstr ""
|
| 1795 |
|
| 1796 |
+
#: polldaddy.php:4825
|
| 1797 |
+
msgid "Poll Settings"
|
| 1798 |
msgstr ""
|
| 1799 |
|
| 1800 |
+
#: polldaddy.php:4832
|
| 1801 |
msgid "Polldaddy Account Info"
|
| 1802 |
msgstr ""
|
| 1803 |
|
| 1804 |
+
#: polldaddy.php:4834
|
| 1805 |
msgid ""
|
| 1806 |
+
"<em>Polldaddy</em> and <em>WordPress.com</em> are now connected using <a "
|
| 1807 |
+
"href=\"http://en.support.wordpress.com/wpcc-faq/\">WordPress.com Connect</"
|
| 1808 |
+
"a>. If you have a WordPress.com account you can use it to login to <a href="
|
| 1809 |
+
"\"http://polldaddy.com/\">Polldaddy.com</a>. Click on the Polldaddy \"sign in"
|
| 1810 |
+
"\" button, authorize the connection and create your new Polldaddy account. "
|
| 1811 |
+
"Use the same email and password to login on this page."
|
| 1812 |
msgstr ""
|
| 1813 |
|
| 1814 |
+
#: polldaddy.php:4835
|
| 1815 |
+
msgid ""
|
| 1816 |
+
"You must login at least once on <a href=\"http://polldaddy.com/\">Polldaddy."
|
| 1817 |
+
"com</a> before using this plugin."
|
| 1818 |
msgstr ""
|
| 1819 |
|
| 1820 |
+
#: polldaddy.php:4836
|
| 1821 |
+
msgid ""
|
| 1822 |
+
"Your account is currently link to this WordPress.com account: <strong>%s</"
|
| 1823 |
+
"strong>"
|
| 1824 |
msgstr ""
|
| 1825 |
|
| 1826 |
+
#: polldaddy.php:4838
|
| 1827 |
+
msgid "Link to a different Polldaddy account"
|
| 1828 |
msgstr ""
|
| 1829 |
|
| 1830 |
+
#: polldaddy.php:4841
|
| 1831 |
+
msgid "Link to your Polldaddy account"
|
| 1832 |
msgstr ""
|
| 1833 |
|
| 1834 |
+
#: polldaddy.php:4849
|
| 1835 |
+
msgid "WordPress.com Email Address"
|
| 1836 |
msgstr ""
|
| 1837 |
|
| 1838 |
+
#: polldaddy.php:4859
|
| 1839 |
+
msgid "WordPress.com Password"
|
| 1840 |
+
msgstr ""
|
| 1841 |
+
|
| 1842 |
+
#: polldaddy.php:4865
|
| 1843 |
+
msgid ""
|
| 1844 |
+
"Any polls or ratings created in your current account will still be available "
|
| 1845 |
+
"on Polldaddy.com when you login as %s."
|
| 1846 |
+
msgstr ""
|
| 1847 |
+
|
| 1848 |
+
#: polldaddy.php:4875
|
| 1849 |
+
msgid "Link Account"
|
| 1850 |
+
msgstr ""
|
| 1851 |
+
|
| 1852 |
+
#: polldaddy.php:4881
|
| 1853 |
+
msgid "General Settings"
|
| 1854 |
msgstr ""
|
| 1855 |
|
| 1856 |
+
#: polldaddy.php:4889
|
| 1857 |
+
msgid "Default poll settings"
|
| 1858 |
+
msgstr ""
|
| 1859 |
+
|
| 1860 |
+
#: polldaddy.php:4907
|
| 1861 |
msgid "Show"
|
| 1862 |
msgstr ""
|
| 1863 |
|
| 1864 |
+
#: polldaddy.php:4908
|
| 1865 |
msgid "Hide"
|
| 1866 |
msgstr ""
|
| 1867 |
|
| 1868 |
+
#: polldaddy.php:4909
|
| 1869 |
msgid "Percentages"
|
| 1870 |
msgstr ""
|
| 1871 |
|
| 1872 |
+
#: polldaddy.php:4915
|
| 1873 |
msgid "Poll style"
|
| 1874 |
msgstr ""
|
| 1875 |
|
| 1876 |
+
#: polldaddy.php:4929
|
| 1877 |
msgid "Off"
|
| 1878 |
msgstr ""
|
| 1879 |
|
| 1880 |
+
#: polldaddy.php:4930
|
| 1881 |
msgid "Cookie"
|
| 1882 |
msgstr ""
|
| 1883 |
|
| 1884 |
+
#: polldaddy.php:4931
|
| 1885 |
msgid "Cookie & IP address"
|
| 1886 |
msgstr ""
|
| 1887 |
|
| 1888 |
+
#: polldaddy.php:4937
|
| 1889 |
msgid "Block expiration limit"
|
| 1890 |
msgstr ""
|
| 1891 |
|
| 1892 |
+
#: polldaddy.php:4962
|
| 1893 |
msgid "Save Options"
|
| 1894 |
msgstr ""
|
| 1895 |
|
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: eoigal, alternatekev, mdawaffe, donncha, johnny5
|
| 3 |
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
| 4 |
Requires at least: 3.2
|
| 5 |
-
Tested up to: 3.5.
|
| 6 |
-
Stable tag: 2.0.
|
| 7 |
|
| 8 |
Create and manage Polldaddy polls and ratings from within WordPress.
|
| 9 |
|
|
@@ -53,13 +53,16 @@ Polldaddy Polls is localizable and currently available in:
|
|
| 53 |
* Swedish
|
| 54 |
* Uighur
|
| 55 |
|
| 56 |
-
Want to help translate the plugin or keep an existing translation up-to-date? Head on over to http://translate.wordpress.com/projects/polldaddy/plugin
|
|
|
|
|
|
|
| 57 |
|
| 58 |
== Installation ==
|
| 59 |
|
| 60 |
-
Upload the plugin to your blog (or search for it and install it on your plugins page), activate it, then go to
|
|
|
|
| 61 |
|
| 62 |
-
You can find further help on our [support page](http://support.polldaddy.com/). If you have any problems please use the [support forum](http://wordpress.org/
|
| 63 |
|
| 64 |
== Screenshots ==
|
| 65 |
|
|
@@ -108,10 +111,17 @@ Your theme is getting the post content, without necessarily showing it. If the p
|
|
| 108 |
|
| 109 |
|
| 110 |
== Upgrade Notice ==
|
| 111 |
-
= 2.0.
|
| 112 |
-
|
| 113 |
|
| 114 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 115 |
= 2.0.19 =
|
| 116 |
* Added filter by category to Top Rated Widget
|
| 117 |
* Added more retina images for 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.5.2
|
| 6 |
+
Stable tag: 2.0.20
|
| 7 |
|
| 8 |
Create and manage Polldaddy polls and ratings from within WordPress.
|
| 9 |
|
| 53 |
* Swedish
|
| 54 |
* Uighur
|
| 55 |
|
| 56 |
+
Want to help translate the plugin or keep an existing translation up-to-date? Head on over to the [translation site](http://translate.wordpress.com/projects/polldaddy/plugin).
|
| 57 |
+
|
| 58 |
+
Some strings are not translated when polls and surveys are embedded. You will have to translate them using a language pack on [http://polldaddy.com/](Polldaddy.com).
|
| 59 |
|
| 60 |
== Installation ==
|
| 61 |
|
| 62 |
+
Upload the plugin to your blog (or search for it and install it on your plugins page), activate it, then go to Settings->Polls while logged into your site. Enter your [Polldaddy.com](http://polldaddy.com/) email address and password to sync your account and pull in your existing polls and ratings.
|
| 63 |
+
Polldaddy.com is now linked to WordPress.com using [WordPress.com Connect](http://en.support.wordpress.com/wpcc-faq/) which means you can use your WordPress.com username and password to login to Polldaddy.com. If you have a WordPress.com account and have never used Polldaddy.com you can login [here](https://polldaddy.com/login/) to access Polldaddy.com. You can then use those login details to sign in to the plugin.
|
| 64 |
|
| 65 |
+
You can find further help on our [support page](http://support.polldaddy.com/). If you have any problems please use the [support forum](http://wordpress.org/support/plugin/polldaddy). The plugin also logs activity to a file using the [WP Debug Logger](http://wordpress.org/extend/plugins/wp-debug-logger/) plugin which can be useful in determining the cause of a problem.
|
| 66 |
|
| 67 |
== Screenshots ==
|
| 68 |
|
| 111 |
|
| 112 |
|
| 113 |
== Upgrade Notice ==
|
| 114 |
+
= 2.0.20 =
|
| 115 |
+
Updated poll settings page, bugfixes
|
| 116 |
|
| 117 |
== Changelog ==
|
| 118 |
+
= 2.0.20 =
|
| 119 |
+
* Updated settings page: text, layout, Import -> Link.
|
| 120 |
+
* On MU sites use blog_public blog option.
|
| 121 |
+
* Removed deprecated warnings, props @Till
|
| 122 |
+
*
|
| 123 |
+
|
| 124 |
+
|
| 125 |
= 2.0.19 =
|
| 126 |
* Added filter by category to Top Rated Widget
|
| 127 |
* Added more retina images for ratings
|
