Version Description
- Updated style editor to catch some missing strings so they can be now be localised
- Added string maps to javascript files to allow them to be localised
- Added extra label to ratings settings, vote, so now the label votes has a singular expression for localisation.
- Added option to style editor to update all polls that use this style, so any update to style will automatically be reflected in the poll.
- Bug Fix: Embed options are now in readonly text inputs, resolves issue of pre tags being pasted along with embed code/URL in the HTML editor.
Download this release
Release Info
Developer | eoigal |
Plugin | Crowdsignal Dashboard – Polls, Surveys & more |
Version | 1.8.8 |
Comparing to | |
See all releases |
Code changes from version 1.8.7 to 1.8.8
- common.js +87 -1
- polldaddy-org.php +1 -1
- polldaddy-rtl.css +16 -15
- polldaddy.css +61 -5
- polldaddy.js +150 -1
- polldaddy.php +382 -228
- polldaddy.pot +888 -270
- readme.txt +12 -14
common.js
CHANGED
@@ -1 +1,87 @@
|
|
1 |
-
function _$(id)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
function _$(id) {
|
2 |
+
return document.getElementById(id)
|
3 |
+
}
|
4 |
+
function pd_style() {
|
5 |
+
this.name = '';
|
6 |
+
this.n_id = 0;
|
7 |
+
this.n_desc = '';
|
8 |
+
this.m_id = 0;
|
9 |
+
this.m_desc = '';
|
10 |
+
this.w_id = 0;
|
11 |
+
this.w_desc = '';
|
12 |
+
this.tag = ''
|
13 |
+
}
|
14 |
+
function preload_pd_style() {
|
15 |
+
if (_$('preload_value').value != '0') {
|
16 |
+
url = window.location.href;
|
17 |
+
fnd = '';
|
18 |
+
qs = window.location.search.substring(1);
|
19 |
+
qv = qs.split("&");
|
20 |
+
for (i = 0; i < qv.length; i++) {
|
21 |
+
ft = qv[i].split("=");
|
22 |
+
if (ft[0] == 'preload') {
|
23 |
+
fnd = '&preload=' + ft[1];
|
24 |
+
url = url.replace(fnd, '')
|
25 |
+
}
|
26 |
+
}
|
27 |
+
window.location = url + "&preload=" + _$('preload_value').value
|
28 |
+
}
|
29 |
+
}
|
30 |
+
function pd_bind(obj) {
|
31 |
+
if (obj.id == 'font_bold') {
|
32 |
+
if (obj.checked) {
|
33 |
+
PDRTJS_1.font_bold = 'bold';
|
34 |
+
} else {
|
35 |
+
PDRTJS_1.font_bold = 'normal';
|
36 |
+
}
|
37 |
+
} else if (obj.id == 'font_italic') {
|
38 |
+
if (obj.checked) {
|
39 |
+
PDRTJS_1.font_italic = 'italic';
|
40 |
+
} else {
|
41 |
+
PDRTJS_1.font_italic = 'normal';
|
42 |
+
}
|
43 |
+
} else if (obj.id == 'nero_style') {
|
44 |
+
PDRTJS_1.star_color = obj.value;
|
45 |
+
} else {
|
46 |
+
eval('PDRTJS_1.' + obj.id + ' = "' + obj.value.replace('"', '"') + '";');
|
47 |
+
}
|
48 |
+
PDRTJS_1.build();
|
49 |
+
}
|
50 |
+
function pd_change_type(type) {
|
51 |
+
var dd_label = _$('editor_star_color_text');
|
52 |
+
var size_label = _$('editor_star_size_text');
|
53 |
+
var obj_star = _$('star_color');
|
54 |
+
var obj_nero = _$('nero_style');
|
55 |
+
if (type == 1) {
|
56 |
+
PDRTJS_1.type = 'nero';
|
57 |
+
PDRTJS_1.build();
|
58 |
+
dd_label.innerHTML = adminRatingsL10n.nero_type;
|
59 |
+
size_label.innerHTML = adminRatingsL10n.nero_size;
|
60 |
+
obj_star.style.display = 'none';
|
61 |
+
obj_nero.style.display = 'block';
|
62 |
+
pd_bind(obj_nero);
|
63 |
+
} else {
|
64 |
+
PDRTJS_1.type = 'stars';
|
65 |
+
PDRTJS_1.build();
|
66 |
+
dd_label.innerHTML = adminRatingsL10n.star_colors;
|
67 |
+
size_label.innerHTML = adminRatingsL10n.star_size;
|
68 |
+
obj_star.style.display = 'block';
|
69 |
+
obj_nero.style.display = 'none';
|
70 |
+
pd_bind(obj_star);
|
71 |
+
}
|
72 |
+
}
|
73 |
+
function show_options(id) {
|
74 |
+
if (_$('pd_show_' + id).checked == true) {
|
75 |
+
_$('span_' + id).style.display = 'inline-block';
|
76 |
+
} else {
|
77 |
+
_$('span_' + id).style.display = 'none';
|
78 |
+
}
|
79 |
+
}
|
80 |
+
function show_settings() {
|
81 |
+
var div = _$('poststuff');
|
82 |
+
if (div.style.display == 'block') {
|
83 |
+
div.style.display = 'none';
|
84 |
+
} else {
|
85 |
+
div.style.display = 'block';
|
86 |
+
}
|
87 |
+
}
|
polldaddy-org.php
CHANGED
@@ -290,7 +290,7 @@ class WPORG_PollDaddy extends WP_PollDaddy {
|
|
290 |
<td>
|
291 |
<input type="checkbox" name="polldaddy-sync-account" id="polldaddy-sync-account" value="1" style="width: auto" />
|
292 |
<span class="description">
|
293 |
-
<label for="polldaddy-sync-account"><?php _e( 'This will
|
294 |
</span>
|
295 |
</td>
|
296 |
</tr><?php }
|
290 |
<td>
|
291 |
<input type="checkbox" name="polldaddy-sync-account" id="polldaddy-sync-account" value="1" style="width: auto" />
|
292 |
<span class="description">
|
293 |
+
<label for="polldaddy-sync-account"><?php _e( 'This will synchronize your ratings PollDaddy account.', 'polldaddy' ); ?></label>
|
294 |
</span>
|
295 |
</td>
|
296 |
</tr><?php }
|
polldaddy-rtl.css
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
-
body.poll-preview-iframe div#manage-polls.wrap{text-align:right;}
|
2 |
-
table.poll-results .column-vote{padding:3px 3px 3px 5px;}
|
3 |
-
table.poll-results span.result-total{right:.75em;left:auto;}
|
4 |
-
table.poll-results span.result-percent{right:auto;left:.75em;}
|
5 |
-
ul#answers li span.handle{right:0;left:auto;}
|
6 |
-
ul#answers li a.delete{left:0;right:auto;}
|
7 |
-
ul#answer-options{margin-right:20px;margin-left:0;}
|
8 |
-
ul#answer-options li{margin-left:1em;margin-right:0;}
|
9 |
-
p#add-answer-holder{text-align:left;}
|
10 |
-
.inner-sidebar-ratings{clear:left;float:left;}
|
11 |
-
#poststuff #post-body.has-sidebar,.has-sidebar{clear:right;float:right;margin-left:-240px;margin-right:0;}
|
12 |
-
.has-sidebar .has-sidebar-content{margin-left:245px;margin-right:0;}
|
13 |
-
tr.polldaddy-shortcode-row pre{float:right;}
|
14 |
-
.
|
15 |
-
.
|
|
|
16 |
#design_standard,.st_selector .dir_right{padding:0 20px 0 0;}
|
1 |
+
body.poll-preview-iframe div#manage-polls.wrap{text-align:right;}
|
2 |
+
table.poll-results .column-vote{padding:3px 3px 3px 5px;}
|
3 |
+
table.poll-results span.result-total{right:.75em;left:auto;}
|
4 |
+
table.poll-results span.result-percent{right:auto;left:.75em;}
|
5 |
+
ul#answers li span.handle{right:0;left:auto;}
|
6 |
+
ul#answers li a.delete{left:0;right:auto;}
|
7 |
+
ul#answer-options{margin-right:20px;margin-left:0;}
|
8 |
+
ul#answer-options li{margin-left:1em;margin-right:0;}
|
9 |
+
p#add-answer-holder{text-align:left;}
|
10 |
+
.inner-sidebar-ratings{clear:left;float:left;}
|
11 |
+
#poststuff #post-body.has-sidebar,.has-sidebar{clear:right;float:right;margin-left:-240px;margin-right:0;}
|
12 |
+
.has-sidebar .has-sidebar-content{margin-left:245px;margin-right:0;}
|
13 |
+
tr.polldaddy-shortcode-row pre{float:right;}
|
14 |
+
tr.polldaddy-shortcode-row input{float:right;}
|
15 |
+
.st_selector .dir_left{padding:0 0 0 10px;}
|
16 |
+
.polldaddy-show-design-options,.pollStyle .customSelect,body.poll-preview-iframe div#manage-polls.wrap,#design h3,.pollStyle TH{text-align:right;}
|
17 |
#design_standard,.st_selector .dir_right{padding:0 20px 0 0;}
|
polldaddy.css
CHANGED
@@ -1,5 +1,61 @@
|
|
1 |
-
html,body{height:auto !important;}
|
2 |
-
body.poll-preview-iframe
|
3 |
-
|
4 |
-
|
5 |
-
.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
html,body{height:auto !important;}
|
2 |
+
body.poll-preview-iframe{min-width:0;}
|
3 |
+
body.poll-preview-iframe #sidemenu, body.poll-preview-iframe #submenu, body.poll-preview-iframe #wpcombar, body.poll-preview-iframe #wphead, body.poll-preview-iframe #gears-info-box, body.poll-preview-iframe #user_info, body.poll-preview-iframe #dashmenu, body.poll-preview-iframe #adminmenu, body.poll-preview-iframe #sidemenu-bg, body.poll-preview-iframe #footer, body.poll-preview-iframe #feedbacklink, body.poll-preview-iframe #screen-meta, body.poll-preview-iframe #manage-polls h2#preview-header{display:none;} body.poll-preview-iframe-editor #manage-polls h2#preview-header{display:block;}
|
4 |
+
body.poll-preview-iframe h2{padding-top:0;}
|
5 |
+
body.poll-preview-iframe{margin:0 !important;padding:0 !important;}
|
6 |
+
body.poll-preview-iframe .wrap{max-width:100%;}
|
7 |
+
body.poll-preview-iframe #wpwrap{min-height:0;}
|
8 |
+
body.poll-preview-iframe div#wpcontent{margin:0;padding:0;}
|
9 |
+
body.poll-preview-iframe div#wpbody{margin:0;padding:2em 3em;text-align:center;}
|
10 |
+
body.poll-preview-iframe div#wpbody-content{margin:0;padding:0;border:none;}
|
11 |
+
body.poll-preview-iframe div#manage-polls.wrap{text-align:left;}
|
12 |
+
body.poll-preview-iframe .pds-box{margin-left:auto;margin-right:auto;}
|
13 |
+
table td.post-title strong{display:block;}
|
14 |
+
table.poll-results .column-vote{min-width:50%;padding:3px 5px 3px 3px;margin:0;}
|
15 |
+
table.poll-results div.result-holder{position:relative;}
|
16 |
+
table.poll-results span.result-bar{display:block;padding:5px 0 4px 0;margin:0;height:100%;border:1px solid #EDB918;background-color:#FBD55E;}
|
17 |
+
table.poll-results span.result-total{position:absolute;left:.75em;top:6px;}
|
18 |
+
table.poll-results span.result-percent{position:absolute;right:.75em;top:6px;}
|
19 |
+
table.poll-others{margin-top:1.5em;}
|
20 |
+
table.poll-others .column-vote{min-width:50%;}
|
21 |
+
ul#answers,ul.poll-options{list-style:none;padding:0;}
|
22 |
+
ul#answers li{position:relative;}
|
23 |
+
ul#answers li div{border:1px solid #ccc;padding:2px 3px;margin:0 20px;}
|
24 |
+
ul#answers li span.handle{position:absolute;left:0;top:0;width:18px;height:100%;background-color:#E4F2FD;color:#70A6C4;display:none;cursor:move;text-align:center;line-height:1.8em;}
|
25 |
+
ul#answers li:hover span.handle{display:block;}
|
26 |
+
ul#answers li a.delete{display:block;position:absolute;top:0;right:0;width:18px;height:100%;text-align:center;line-height:1.8em;}
|
27 |
+
ul#answers li a.delete:hover{color:white;background-color:#f00;}
|
28 |
+
ul#answers input{padding:0;width:100%;border:none;}
|
29 |
+
ul#answer-options{list-style:none;padding:0;margin-left:20px;}
|
30 |
+
ul#answer-options li{display:inline;margin-right:1em;white-space:nowrap;}
|
31 |
+
p.submit input{padding:6px;}
|
32 |
+
p#add-answer-holder{display:none;text-align:right;}
|
33 |
+
.inner-sidebar-ratings{clear:right;float:right;position:relative;width:281px;}
|
34 |
+
#poststuff #post-body.has-sidebar,.has-sidebar{clear:left;float:left;margin-right:-240px;width:100%;}
|
35 |
+
.has-sidebar .has-sidebar-content{margin-right:245px;}
|
36 |
+
#post-body-content #titlediv{margin:10px 0;}
|
37 |
+
tr.polldaddy-shortcode-row{background-color:#FFFEEB;}
|
38 |
+
tr.polldaddy-shortcode-row h4{padding:0;margin:0.3em 0;clear:both;}
|
39 |
+
tr.polldaddy-shortcode-row pre{float:left;background-color:#fff;padding:.2em;margin:0 0 .5em;border:1px solid #ccc;}
|
40 |
+
tr.polldaddy-shortcode-row input{float:left;background-color:#fff;border:1px solid #ccc;padding:0.5em 0;margin:0 0 0.5em;font-size:11px;font-family:monospace;color: rgb(51, 51, 51);-moz-border-radius: 0px;}
|
41 |
+
.polldaddy-show-design-options{text-align:left;width:8em;display:block;font-size:1em;padding:1em 2em;text-decoration:none;}
|
42 |
+
#design{text-align:center;} #design h3{text-align:left;}
|
43 |
+
#design_standard{display:block;padding:0px 0px 0px 20px;}
|
44 |
+
#design_standard a{width:1em;font-size:4em;text-decoration:none;}
|
45 |
+
#design_custom {display:none;}
|
46 |
+
.pollStyle{width:100%;border-collapse:collapse;}
|
47 |
+
.pollStyle .cb{height:40px;width:30px;padding:0px 0px 2px 0px;}
|
48 |
+
.pollStyle .selector{width:250px;}
|
49 |
+
.pollStyle .customSelect{vertical-align:top;text-align:left;margin:0px;}
|
50 |
+
.pollStyle TH{text-align:left;}
|
51 |
+
.st_selector{border-collapse:collapse;}
|
52 |
+
.st_selector .img{width:150px;padding:0px;margin:0px;height:200px;}
|
53 |
+
.st_selector .dir_left{padding:0px 10px 0px 0px;width:75px;}
|
54 |
+
.st_selector .dir_right{padding:0px 0px 0px 20px;width:75px;}
|
55 |
+
.st_selector .title{text-align:center;height:20px;font-weight:bold;}
|
56 |
+
.st_selector .counter{text-align:center;width:150px;padding:10px 0px 0px 0px;}
|
57 |
+
#st_image{width:150px;padding:0px;margin:0px;height:200px;}
|
58 |
+
#st_sizes{width:152px;text-align:center;font-size:12px;}
|
59 |
+
#st_sizes a{width:150px;text-align:center;font-size:12px;}
|
60 |
+
.st_image_loader{width:150px;padding:0px;margin:0px;background:url(http://i.polldaddy.com/polls/st-loader.gif) no-repeat center center;}
|
61 |
+
#st_description{padding:6px 0px;font-size:9px;width:300px;text-align:center;}
|
polldaddy.js
CHANGED
@@ -1 +1,150 @@
|
|
1 |
-
jQuery(function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery(function ($) {
|
2 |
+
if (typeof(window.$) == 'undefined') { window.$ = jQuery; }
|
3 |
+
Plugin = function (args) {
|
4 |
+
var opts = $.extend( {
|
5 |
+
delete_rating: 'Are you sure you want to delete the rating for "%s"?',
|
6 |
+
delete_poll: 'Are you sure you want to delete "%s"?',
|
7 |
+
delete_answer: 'Are you sure you want to delete this answer?',
|
8 |
+
delete_answer_title: 'delete this answer',
|
9 |
+
standard_styles: 'Standard Styles',
|
10 |
+
custom_styles: 'Custom Styles'
|
11 |
+
}, args);
|
12 |
+
$('.hide-if-js').hide();
|
13 |
+
$('.empty-if-js').empty();
|
14 |
+
$('.hide-if-no-js').removeClass('hide-if-no-js');
|
15 |
+
$('.polldaddy-shortcode-row pre').click(function () {
|
16 |
+
var refNode = $(this)[0];
|
17 |
+
if ($.browser.msie) {
|
18 |
+
var range = document.body.createTextRange();
|
19 |
+
range.moveToElementText(refNode);
|
20 |
+
range.select();
|
21 |
+
} else if ($.browser.mozilla || $.browser.opera) {
|
22 |
+
var selection = window.getSelection();
|
23 |
+
var range = document.createRange();
|
24 |
+
range.selectNodeContents(refNode);
|
25 |
+
selection.removeAllRanges();
|
26 |
+
selection.addRange(range);
|
27 |
+
} else if ($.browser.safari) {
|
28 |
+
var selection = window.getSelection();
|
29 |
+
selection.setBaseAndExtent(refNode, 0, refNode, 1);
|
30 |
+
}
|
31 |
+
});
|
32 |
+
$('a.delete-rating').click(function () {
|
33 |
+
return confirm( opts.delete_rating.replace("%s", $(this).parents('td').find('strong').text() ) );
|
34 |
+
});
|
35 |
+
$('a.delete-poll').click(function () {
|
36 |
+
return confirm( opts.delete_poll.replace("%s", $(this).parents('td').find('strong').text() ) );
|
37 |
+
});
|
38 |
+
$('span.view a.thickbox').attr('href', function () {
|
39 |
+
return $(this).attr('href') + '&iframe&TB_iframe=true';
|
40 |
+
});
|
41 |
+
var delAnswerPrep = function (context) {
|
42 |
+
$('a.delete-answer', context || null).click(function () {
|
43 |
+
if (confirm( opts.delete_answer )) {
|
44 |
+
$(this).parents('li').remove();
|
45 |
+
$('#choices option:last-child').remove();
|
46 |
+
}
|
47 |
+
return false;
|
48 |
+
});
|
49 |
+
};
|
50 |
+
delAnswerPrep();
|
51 |
+
$('#answers').sortable({
|
52 |
+
axis: 'y',
|
53 |
+
containment: 'parent',
|
54 |
+
handle: '.handle',
|
55 |
+
tolerance: 'pointer'
|
56 |
+
});
|
57 |
+
$('#add-answer-holder').show().find('button').click(function () {
|
58 |
+
var aa = (1 + $('#answers li').size()).toString();
|
59 |
+
delAnswerPrep($('#answers').append('<li><span class="handle">↕</span><div><input type="text" name="answer[new' + aa + ']" size="30" tabindex="2" value="" autocomplete="off" /></div><a title="' + opts.delete_answer_title + '" class="delete-answer delete" href="#">×</a></li>').find('li:last'));
|
60 |
+
$('#choices').append('<option value="' + aa + '">' + aa + '</option>');
|
61 |
+
return false;
|
62 |
+
});
|
63 |
+
var win = window.dialogArguments || opener || parent || top;
|
64 |
+
$('.polldaddy-send-to-editor').click(function () {
|
65 |
+
var pollID = $(this).siblings('.polldaddy-poll-id').val();
|
66 |
+
if (!pollID) pollID = $('.polldaddy-poll-id:first').val();
|
67 |
+
win.send_to_editor('[polldaddy poll=' + parseInt(pollID).toString() + ']');
|
68 |
+
});
|
69 |
+
$('.polldaddy-show-shortcode').toggle(function () {
|
70 |
+
$(this).parents('tr:first').next('tr').fadeIn();
|
71 |
+
$(this).parents('tr:first').next('tr').show();
|
72 |
+
return false;
|
73 |
+
}, function () {
|
74 |
+
$(this).parents('tr:first').next('tr').fadeOut();
|
75 |
+
$(this).parents('tr:first').next('tr').hide();
|
76 |
+
return false;
|
77 |
+
});
|
78 |
+
var hiddenStyleID = $(':input[name=styleID]');
|
79 |
+
var customStyle = $(':input[name=customSelect]');
|
80 |
+
var customStyleVal = parseInt(customStyle.val());
|
81 |
+
customStyle.change(function () {
|
82 |
+
var customStyleVal = parseInt(customStyle.val());
|
83 |
+
hiddenStyleID.val(customStyleVal.toString());
|
84 |
+
});
|
85 |
+
if (customStyleVal > 0) {
|
86 |
+
$('#design_standard').hide();
|
87 |
+
$('#design_custom').show();
|
88 |
+
$('.polldaddy-show-design-options').html( opts.standard_styles );
|
89 |
+
hiddenStyleID.val(customStyleVal.toString());
|
90 |
+
$('.polldaddy-show-design-options').toggle(function () {
|
91 |
+
$('#design_custom').hide();
|
92 |
+
$('#design_standard').fadeIn();
|
93 |
+
$('.polldaddy-show-design-options').html( opts.custom_styles );
|
94 |
+
hiddenStyleID.val('x');
|
95 |
+
return false;
|
96 |
+
}, function () {
|
97 |
+
$('#design_standard').hide();
|
98 |
+
$('#design_custom').fadeIn();
|
99 |
+
$('.polldaddy-show-design-options').html( opts.standard_styles );
|
100 |
+
var customStyle = $(':input[name=customSelect]');
|
101 |
+
var customStyleVal = parseInt(customStyle.val());
|
102 |
+
if (customStyleVal > 0) {
|
103 |
+
hiddenStyleID.val(customStyleVal.toString());
|
104 |
+
} else {
|
105 |
+
hiddenStyleID.val('x');
|
106 |
+
}
|
107 |
+
return false;
|
108 |
+
});
|
109 |
+
} else {
|
110 |
+
$('#design_custom').hide();
|
111 |
+
$('#design_standard').show();
|
112 |
+
$('.polldaddy-show-design-options').toggle(function () {
|
113 |
+
$('#design_standard').hide();
|
114 |
+
$('#design_custom').fadeIn();
|
115 |
+
$('.polldaddy-show-design-options').html( opts.standard_styles );
|
116 |
+
var customStyle = $(':input[name=customSelect]');
|
117 |
+
var customStyleVal = parseInt(customStyle.val());
|
118 |
+
if (customStyleVal > 0) {
|
119 |
+
hiddenStyleID.val(customStyleVal.toString());
|
120 |
+
} else {
|
121 |
+
hiddenStyleID.val('x');
|
122 |
+
}
|
123 |
+
return false;
|
124 |
+
}, function () {
|
125 |
+
$('#design_custom').hide();
|
126 |
+
$('#design_standard').fadeIn();
|
127 |
+
$('.polldaddy-show-design-options').html( opts.custom_styles );
|
128 |
+
hiddenStyleID.val('x');
|
129 |
+
return false;
|
130 |
+
});
|
131 |
+
}
|
132 |
+
$("#multipleChoice").click(function () {
|
133 |
+
if ($("#multipleChoice").is(":checked")) {
|
134 |
+
$("#numberChoices").show("fast");
|
135 |
+
} else {
|
136 |
+
$("#numberChoices").hide("fast");
|
137 |
+
}
|
138 |
+
});
|
139 |
+
$('.block-repeat').click(function () {
|
140 |
+
var repeat = jQuery(this).val();
|
141 |
+
if (repeat == 'off') {
|
142 |
+
$('#cookieip_expiration_label').hide();
|
143 |
+
$('#cookieip_expiration').hide();
|
144 |
+
} else {
|
145 |
+
$('#cookieip_expiration_label').show();
|
146 |
+
$('#cookieip_expiration').show();
|
147 |
+
}
|
148 |
+
});
|
149 |
+
}
|
150 |
+
});
|
polldaddy.php
CHANGED
@@ -5,7 +5,7 @@ Plugin Name: PollDaddy Polls
|
|
5 |
Description: Create and manage PollDaddy polls and ratings in WordPress
|
6 |
Author: Automattic, Inc.
|
7 |
Author URL: http://automattic.com/
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
|
11 |
// You can hardcode your PollDaddy PartnerGUID (API Key) here
|
@@ -33,7 +33,7 @@ class WP_PollDaddy {
|
|
33 |
global $current_user;
|
34 |
$this->errors = new WP_Error;
|
35 |
$this->scheme = 'https';
|
36 |
-
$this->version = '1.8.
|
37 |
$this->multiple_accounts = true;
|
38 |
$this->polldaddy_client_class = 'api_client';
|
39 |
$this->polldaddy_clients = array();
|
@@ -333,7 +333,7 @@ class WP_PollDaddy {
|
|
333 |
break;
|
334 |
case 'edit-style' :
|
335 |
case 'create-style' :
|
336 |
-
wp_enqueue_script( 'polls-style', "http://i.polldaddy.com/js/style-editor.js", array(), $this->version );
|
337 |
wp_enqueue_script( 'polls-style-color', "http://i.polldaddy.com/js/jquery/jscolor.js", array(), $this->version );
|
338 |
wp_enqueue_style( 'polls', "{$this->base_url}style-editor.css", array(), $this->version );
|
339 |
$plugin_page = 'polls&action=list-styles';
|
@@ -771,6 +771,9 @@ class WP_PollDaddy {
|
|
771 |
|
772 |
if ( isset($_POST['CSSXML'] ) )
|
773 |
$style_data['css'] = urlencode( stripslashes( trim ( (string) $_POST['CSSXML'] ) ) );
|
|
|
|
|
|
|
774 |
|
775 |
$update_response = $polldaddy->update_style( $style, $style_data );
|
776 |
|
@@ -1309,7 +1312,7 @@ class WP_PollDaddy {
|
|
1309 |
<tr class="polldaddy-shortcode-row" style="display: none;">
|
1310 |
<td colspan="4">
|
1311 |
<h4><?php _e( 'WordPress Shortcode', 'polldaddy' ); ?></h4>
|
1312 |
-
<
|
1313 |
|
1314 |
<h4><?php _e( 'JavaScript', 'polldaddy' ); ?></h4>
|
1315 |
<pre><script type="text/javascript" language="javascript"
|
@@ -1319,9 +1322,9 @@ class WP_PollDaddy {
|
|
1319 |
<span style="font:9px;">(<a href="http://www.polldaddy.com">polls</a>)</span>
|
1320 |
</noscript></pre>
|
1321 |
<h4><?php _e( 'Short URL (Good for Twitter etc.)', 'polldaddy' ); ?></h4>
|
1322 |
-
<
|
1323 |
<h4><?php _e( 'Facebook URL', 'polldaddy' ); ?></h4>
|
1324 |
-
<
|
1325 |
</td>
|
1326 |
</tr>
|
1327 |
|
@@ -1355,6 +1358,18 @@ class WP_PollDaddy {
|
|
1355 |
<div class="tablenav-pages"><?php echo $page_links; ?></div>
|
1356 |
</div>
|
1357 |
<br class="clear" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1358 |
|
1359 |
<?php
|
1360 |
}
|
@@ -1590,63 +1605,63 @@ class WP_PollDaddy {
|
|
1590 |
$iframe_view = true;
|
1591 |
|
1592 |
$options = array(
|
1593 |
-
101 => 'Aluminum Narrow',
|
1594 |
-
102 => 'Aluminum Medium',
|
1595 |
-
103 => 'Aluminum Wide',
|
1596 |
-
104 => 'Plain White Narrow',
|
1597 |
-
105 => 'Plain White Medium',
|
1598 |
-
106 => 'Plain White Wide',
|
1599 |
-
107 => 'Plain Black Narrow',
|
1600 |
-
108 => 'Plain Black Medium',
|
1601 |
-
109 => 'Plain Black Wide',
|
1602 |
-
110 => 'Paper Narrow',
|
1603 |
-
111 => 'Paper Medium',
|
1604 |
-
112 => 'Paper Wide',
|
1605 |
-
113 => 'Skull Dark Narrow',
|
1606 |
-
114 => 'Skull Dark Medium',
|
1607 |
-
115 => 'Skull Dark Wide',
|
1608 |
-
116 => 'Skull Light Narrow',
|
1609 |
-
117 => 'Skull Light Medium',
|
1610 |
-
118 => 'Skull Light Wide',
|
1611 |
-
157 => 'Micro',
|
1612 |
-
119 => 'Plastic White Narrow',
|
1613 |
-
120 => 'Plastic White Medium',
|
1614 |
-
121 => 'Plastic White Wide',
|
1615 |
-
122 => 'Plastic Grey Narrow',
|
1616 |
-
123 => 'Plastic Grey Medium',
|
1617 |
-
124 => 'Plastic Grey Wide',
|
1618 |
-
125 => 'Plastic Black Narrow',
|
1619 |
-
126 => 'Plastic Black Medium',
|
1620 |
-
127 => 'Plastic Black Wide',
|
1621 |
-
128 => 'Manga Narrow',
|
1622 |
-
129 => 'Manga Medium',
|
1623 |
-
130 => 'Manga Wide',
|
1624 |
-
131 => 'Tech Dark Narrow',
|
1625 |
-
132 => 'Tech Dark Medium',
|
1626 |
-
133 => 'Tech Dark Wide',
|
1627 |
-
134 => 'Tech Grey Narrow',
|
1628 |
-
135 => 'Tech Grey Medium',
|
1629 |
-
136 => 'Tech Grey Wide',
|
1630 |
-
137 => 'Tech Light Narrow',
|
1631 |
-
138 => 'Tech Light Medium',
|
1632 |
-
139 => 'Tech Light Wide',
|
1633 |
-
140 => 'Working Male Narrow',
|
1634 |
-
141 => 'Working Male Medium',
|
1635 |
-
142 => 'Working Male Wide',
|
1636 |
-
143 => 'Working Female Narrow',
|
1637 |
-
144 => 'Working Female Medium',
|
1638 |
-
145 => 'Working Female Wide',
|
1639 |
-
146 => 'Thinking Male Narrow',
|
1640 |
-
147 => 'Thinking Male Medium',
|
1641 |
-
148 => 'Thinking Male Wide',
|
1642 |
-
149 => 'Thinking Female Narrow',
|
1643 |
-
150 => 'Thinking Female Medium',
|
1644 |
-
151 => 'Thinking Female Wide',
|
1645 |
-
152 => 'Sunset Narrow',
|
1646 |
-
153 => 'Sunset Medium',
|
1647 |
-
154 => 'Sunset Wide',
|
1648 |
-
155 => 'Music Medium',
|
1649 |
-
156 => 'Music Wide'
|
1650 |
);
|
1651 |
|
1652 |
$polldaddy->reset();
|
@@ -1773,7 +1788,7 @@ class WP_PollDaddy {
|
|
1773 |
<div id="styleIDErr" class="formErr" style="display:none;"><?php _e( 'Please choose a style.', 'polldaddy' ); ?></div></td>
|
1774 |
</tr>
|
1775 |
<tr>
|
1776 |
-
<td><?php $extra = $show_custom == false ? 'You currently have no custom styles created.' : ''; ?>
|
1777 |
<p><?php echo $extra ?></p>
|
1778 |
<p><?php printf( __( 'Did you know we have a new editor for building your own custom poll styles? Find out more <a href="%s" target="_blank">here</a>.', 'polldaddy' ), 'http://support.polldaddy.com/custom-poll-styles/' ); ?></p>
|
1779 |
</td>
|
@@ -1860,16 +1875,16 @@ class WP_PollDaddy {
|
|
1860 |
<td><?php $hide = $show_custom == true ? ' style="display:block;"' : ' style="display:none;"'; ?>
|
1861 |
<select id="customSelect" name="customSelect" onclick="pd_change_style(this.value);" <?php echo $hide ?>>
|
1862 |
<?php $selected = $custom_style_ID == 0 ? ' selected="selected"' : ''; ?>
|
1863 |
-
<option value="x"<?php echo $selected; ?>><?php _e( 'Please choose a custom style...'); ?></option>
|
1864 |
<?php if( $show_custom) : foreach ( (array)$styles->style as $style ) :
|
1865 |
$selected = $style->_id == $custom_style_ID ? ' selected="selected"' : ''; ?>
|
1866 |
<option value="<?php echo (int) $style->_id; ?>"<?php echo $selected; ?>><?php echo wp_specialchars( $style->title ); ?></option>
|
1867 |
<?php endforeach; endif;?>
|
1868 |
</select>
|
1869 |
-
<div id="styleIDErr" class="formErr" style="display:none;"><?php _e( 'Please choose a style.'); ?></div></td>
|
1870 |
</tr>
|
1871 |
<tr>
|
1872 |
-
<td><?php $extra = $show_custom == false ? 'You currently have no custom styles created.' : ''; ?>
|
1873 |
<p><?php echo $extra ?></p>
|
1874 |
<p><?php printf( __( 'Did you know we have a new editor for building your own custom poll styles? Find out more <a href="%s" target="_blank">here</a>.', 'polldaddy' ), 'http://support.polldaddy.com/custom-poll-styles/' ); ?></p>
|
1875 |
</td>
|
@@ -1893,7 +1908,96 @@ class WP_PollDaddy {
|
|
1893 |
</div>
|
1894 |
<?php } ?>
|
1895 |
<script language="javascript">
|
1896 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1897 |
pd_build_styles( current_pos );
|
1898 |
<?php if( $style_ID > 0 && $style_ID <= 1000 ){ ?>
|
1899 |
pd_pick_style( <?php echo $style_ID ?> );
|
@@ -2171,13 +2275,13 @@ class WP_PollDaddy {
|
|
2171 |
<div class="CSSE_preload">
|
2172 |
<select id="preload_value">
|
2173 |
<option value="0"></option>
|
2174 |
-
<option value="102"
|
2175 |
-
<option value="105"
|
2176 |
-
<option value="108"
|
2177 |
-
<option value="111"
|
2178 |
-
<option value="114"
|
2179 |
-
<option value="117"
|
2180 |
-
<option value="157"
|
2181 |
</select>
|
2182 |
<a tabindex="4" id="style-preload" href="javascript:preload_pd_style();" class="button"><?php echo attribute_escape( __( 'Load Style', 'polldaddy' ) ); ?></a>
|
2183 |
</div>
|
@@ -2185,21 +2289,21 @@ class WP_PollDaddy {
|
|
2185 |
</tr>
|
2186 |
<tr>
|
2187 |
<td width="13%">
|
2188 |
-
<p
|
2189 |
</td>
|
2190 |
<td>
|
2191 |
<select id="styleName" onchange="renderStyleEdit(this.value);">
|
2192 |
-
<option value="pds-box" selected="selected"
|
2193 |
-
<option value="pds-question-top"
|
2194 |
-
<option value="pds-answer-group"
|
2195 |
-
<option value="pds-answer-input"
|
2196 |
-
<option value="pds-answer"
|
2197 |
-
<option value="pds-textfield"
|
2198 |
-
<option value="pds-vote-button"
|
2199 |
-
<option value="pds-link"
|
2200 |
-
<option value="pds-answer-feedback"
|
2201 |
-
<option value="pds-answer-feedback-bar"
|
2202 |
-
<option value="pds-totalvotes-inner"
|
2203 |
</select>
|
2204 |
</td>
|
2205 |
</tr>
|
@@ -2211,25 +2315,25 @@ class WP_PollDaddy {
|
|
2211 |
<tr>
|
2212 |
<td class="CSSE_main_l" valign="top">
|
2213 |
<div class="off" id="D_Font">
|
2214 |
-
<a href="javascript:CSSE_changeView('Font');" id="A_Font" class="Aoff"
|
2215 |
</div>
|
2216 |
<div class="on" id="D_Background">
|
2217 |
-
<a href="javascript:CSSE_changeView('Background');" id="A_Background" class="Aon"
|
2218 |
</div>
|
2219 |
<div class="off" id="D_Border">
|
2220 |
-
<a href="javascript:CSSE_changeView('Border');" id="A_Border" class="Aoff"
|
2221 |
</div>
|
2222 |
<div class="off" id="D_Margin">
|
2223 |
-
<a href="javascript:CSSE_changeView('Margin');" id="A_Margin" class="Aoff"
|
2224 |
</div>
|
2225 |
<div class="off" id="D_Padding">
|
2226 |
-
<a href="javascript:CSSE_changeView('Padding');" id="A_Padding" class="Aoff"
|
2227 |
</div>
|
2228 |
<div class="off" id="D_Scale">
|
2229 |
-
<a href="javascript:CSSE_changeView('Scale');" id="A_Scale" class="Aoff"
|
2230 |
</div>
|
2231 |
<div class="off" id="D_Height">
|
2232 |
-
<a href="javascript:CSSE_changeView('Height');" id="A_Height" class="Aoff"
|
2233 |
</div>
|
2234 |
</td>
|
2235 |
<td class="CSSE_main_r" valign="top">
|
@@ -2242,7 +2346,7 @@ class WP_PollDaddy {
|
|
2242 |
<!-- Font Table -->
|
2243 |
<table class="CSSE_edit" id="editFont" style="display:none;">
|
2244 |
<tr>
|
2245 |
-
<td width="85"
|
2246 |
<td>
|
2247 |
<select id="font-size" onchange="bind(this);">
|
2248 |
<option value="6px">6px</option>
|
@@ -2264,7 +2368,7 @@ class WP_PollDaddy {
|
|
2264 |
</td>
|
2265 |
</tr>
|
2266 |
<tr>
|
2267 |
-
<td
|
2268 |
<td>
|
2269 |
<select id="font-family" onchange="bind(this);">
|
2270 |
<option value="Arial">Arial</option>
|
@@ -2279,31 +2383,31 @@ class WP_PollDaddy {
|
|
2279 |
</td>
|
2280 |
</tr>
|
2281 |
<tr>
|
2282 |
-
<td
|
2283 |
<td>
|
2284 |
<input type="text" maxlength="11" id="color" class="elmColor jscolor-picker" onblur="bind(this);" style="float:left;"/>
|
2285 |
</td>
|
2286 |
</tr>
|
2287 |
<tr>
|
2288 |
-
<td
|
2289 |
<td>
|
2290 |
<input type="checkbox" id="font-weight" value="bold" onclick="bind(this);"/>
|
2291 |
</td>
|
2292 |
</tr>
|
2293 |
<tr>
|
2294 |
-
<td
|
2295 |
<td>
|
2296 |
<input type="checkbox" id="font-style" value="italic" onclick="bind(this);"/>
|
2297 |
</td>
|
2298 |
</tr>
|
2299 |
<tr>
|
2300 |
-
<td
|
2301 |
<td>
|
2302 |
<input type="checkbox" id="text-decoration" value="underline" onclick="bind(this);"/>
|
2303 |
</td>
|
2304 |
</tr>
|
2305 |
<tr>
|
2306 |
-
<td
|
2307 |
<td>
|
2308 |
<select id="line-height" onchange="bind(this);">
|
2309 |
<option value="6px">6px</option>
|
@@ -2325,12 +2429,12 @@ class WP_PollDaddy {
|
|
2325 |
</td>
|
2326 |
</tr>
|
2327 |
<tr>
|
2328 |
-
<td
|
2329 |
<td>
|
2330 |
<select id="text-align" onchange="bind(this);">
|
2331 |
-
<option value="left"
|
2332 |
-
<option value="center"
|
2333 |
-
<option value="right"
|
2334 |
</select>
|
2335 |
</td>
|
2336 |
</tr>
|
@@ -2338,41 +2442,41 @@ class WP_PollDaddy {
|
|
2338 |
<!-- Background Table -->
|
2339 |
<table class="CSSE_edit" id="editBackground" style="display:none;">
|
2340 |
<tr>
|
2341 |
-
<td width="85"
|
2342 |
<td>
|
2343 |
<input type="text" maxlength="11" id="background-color" class="elmColor jscolor-picker" onblur="bind(this);"/>
|
2344 |
</td>
|
2345 |
</tr>
|
2346 |
<tr>
|
2347 |
-
<td
|
2348 |
<td>
|
2349 |
<input type="text" id="background-image" onblur="bind(this);"/>
|
2350 |
</td>
|
2351 |
</tr>
|
2352 |
<tr>
|
2353 |
-
<td
|
2354 |
<td>
|
2355 |
<select id="background-repeat" onchange="bind(this);">
|
2356 |
-
<option value="repeat"
|
2357 |
-
<option value="no-repeat"
|
2358 |
-
<option value="repeat-x"
|
2359 |
-
<option value="repeat-y"
|
2360 |
</select>
|
2361 |
</td>
|
2362 |
</tr>
|
2363 |
<tr>
|
2364 |
-
<td
|
2365 |
<td>
|
2366 |
<select id="background-position" onchange="bind(this);">
|
2367 |
-
<option value="left top"
|
2368 |
-
<option value="left center"
|
2369 |
-
<option value="left bottom"
|
2370 |
-
<option value="center top"
|
2371 |
-
<option value="center center"
|
2372 |
-
<option value="center bottom"
|
2373 |
-
<option value="right top"
|
2374 |
-
<option value="right center"
|
2375 |
-
<option value="right bottom"
|
2376 |
</select>
|
2377 |
</td>
|
2378 |
</tr>
|
@@ -2380,7 +2484,7 @@ class WP_PollDaddy {
|
|
2380 |
<!-- Border Table -->
|
2381 |
<table class="CSSE_edit" id="editBorder" style="display:none;">
|
2382 |
<tr>
|
2383 |
-
<td width="85"
|
2384 |
<td>
|
2385 |
<select id="border-width" onchange="bind(this);">
|
2386 |
<option value="0px">0px</option>
|
@@ -2418,30 +2522,30 @@ class WP_PollDaddy {
|
|
2418 |
</td>
|
2419 |
</tr>
|
2420 |
<tr>
|
2421 |
-
<td
|
2422 |
<td>
|
2423 |
<select id="border-style" onchange="bind(this);">
|
2424 |
-
<option value="none"
|
2425 |
-
<option value="solid"
|
2426 |
-
<option value="dotted"
|
2427 |
-
<option value="dashed"
|
2428 |
-
<option value="double"
|
2429 |
-
<option value="groove"
|
2430 |
-
<option value="inset"
|
2431 |
-
<option value="outset"
|
2432 |
-
<option value="ridge"
|
2433 |
-
<option value="hidden"
|
2434 |
</select>
|
2435 |
</td>
|
2436 |
</tr>
|
2437 |
<tr>
|
2438 |
-
<td
|
2439 |
<td>
|
2440 |
<input type="text" maxlength="11" class="elmColor jscolor-picker" id="border-color" onblur="bind(this);"/>
|
2441 |
</td>
|
2442 |
</tr>
|
2443 |
<tr>
|
2444 |
-
<td width="85"
|
2445 |
<td>
|
2446 |
<select id="border-radius" onchange="bind(this);">
|
2447 |
<option value="0px">0px</option>
|
@@ -2477,14 +2581,14 @@ class WP_PollDaddy {
|
|
2477 |
<option value="30px">30px</option>
|
2478 |
</select>
|
2479 |
<br/>
|
2480 |
-
Not supported in Internet Explorer.
|
2481 |
</td>
|
2482 |
</tr>
|
2483 |
</table>
|
2484 |
<!-- Margin Table -->
|
2485 |
<table class="CSSE_edit" id="editMargin" style="display:none;">
|
2486 |
<tr>
|
2487 |
-
<td width="85"
|
2488 |
<td>
|
2489 |
<select id="margin-top" onchange="bind(this);">
|
2490 |
<option value="0px">0px</option>
|
@@ -2522,7 +2626,7 @@ class WP_PollDaddy {
|
|
2522 |
</td>
|
2523 |
</tr>
|
2524 |
<tr>
|
2525 |
-
<td
|
2526 |
<td>
|
2527 |
<select id="margin-right" onchange="bind(this);">
|
2528 |
<option value="0px">0px</option>
|
@@ -2560,7 +2664,7 @@ class WP_PollDaddy {
|
|
2560 |
</td>
|
2561 |
</tr>
|
2562 |
<tr>
|
2563 |
-
<td
|
2564 |
<td>
|
2565 |
<select id="margin-bottom" onchange="bind(this);">
|
2566 |
<option value="0px">0px</option>
|
@@ -2598,7 +2702,7 @@ class WP_PollDaddy {
|
|
2598 |
</td>
|
2599 |
</tr>
|
2600 |
<tr>
|
2601 |
-
<td
|
2602 |
<td>
|
2603 |
<select id="margin-left" onchange="bind(this);">
|
2604 |
<option value="0px">0px</option>
|
@@ -2639,7 +2743,7 @@ class WP_PollDaddy {
|
|
2639 |
<!-- Padding Table -->
|
2640 |
<table class="CSSE_edit" id="editPadding" style="display:none;">
|
2641 |
<tr>
|
2642 |
-
<td width="85"
|
2643 |
<td>
|
2644 |
<select id="padding-top" onchange="bind(this);">
|
2645 |
<option value="0px">0px</option>
|
@@ -2677,7 +2781,7 @@ class WP_PollDaddy {
|
|
2677 |
</td>
|
2678 |
</tr>
|
2679 |
<tr>
|
2680 |
-
<td
|
2681 |
<td>
|
2682 |
<select id="padding-right" onchange="bind(this);">
|
2683 |
<option value="0px">0px</option>
|
@@ -2715,7 +2819,7 @@ class WP_PollDaddy {
|
|
2715 |
</td>
|
2716 |
</tr>
|
2717 |
<tr>
|
2718 |
-
<td
|
2719 |
<td>
|
2720 |
<select id="padding-bottom" onchange="bind(this);">
|
2721 |
<option value="0px">0px</option>
|
@@ -2753,7 +2857,7 @@ class WP_PollDaddy {
|
|
2753 |
</td>
|
2754 |
</tr>
|
2755 |
<tr>
|
2756 |
-
<td
|
2757 |
<td>
|
2758 |
<select id="padding-left" onchange="bind(this);">
|
2759 |
<option value="0px">0px</option>
|
@@ -2794,7 +2898,7 @@ class WP_PollDaddy {
|
|
2794 |
<!-- Scale Table -->
|
2795 |
<table class="CSSE_edit" id="editScale" style="display:none;">
|
2796 |
<tr>
|
2797 |
-
<td width="85"
|
2798 |
<td>
|
2799 |
<input type="text" maxlength="4" class="elmColor" id="width" onblur="bind(this);"/>
|
2800 |
</td>
|
@@ -2802,7 +2906,7 @@ class WP_PollDaddy {
|
|
2802 |
<tr>
|
2803 |
<td width="85"></td>
|
2804 |
<td>
|
2805 |
-
If you change the width of the<br/> poll you may also need to change<br/> the width of your answers.
|
2806 |
</td>
|
2807 |
</tr>
|
2808 |
</table>
|
@@ -2810,7 +2914,7 @@ class WP_PollDaddy {
|
|
2810 |
<!-- Height Table -->
|
2811 |
<table class="CSSE_edit" id="editHeight" style="display:none;">
|
2812 |
<tr>
|
2813 |
-
<td width="85"
|
2814 |
<td>
|
2815 |
<input type="text" maxlength="4" class="elmColor" id="height" onblur="bind(this);"/>
|
2816 |
</td>
|
@@ -2837,7 +2941,7 @@ class WP_PollDaddy {
|
|
2837 |
<div class="pds-question">
|
2838 |
<div class="pds-question-outer">
|
2839 |
<div class="pds-question-inner">
|
2840 |
-
<div class="pds-question-top" id="pds-question-top"
|
2841 |
</div>
|
2842 |
</div>
|
2843 |
</div>
|
@@ -2850,7 +2954,7 @@ class WP_PollDaddy {
|
|
2850 |
<span class="pds-answer-input" id="pds-answer-input">
|
2851 |
<input type="radio" name="PDI_answer" value="1" id="p1" class="pds-checkbox"/>
|
2852 |
</span>
|
2853 |
-
<label for="p1" class="pds-answer" id="pds-answer"><span class="pds-answer-span"
|
2854 |
<span class="pds-clear"></span>
|
2855 |
</span>
|
2856 |
|
@@ -2858,7 +2962,7 @@ class WP_PollDaddy {
|
|
2858 |
<span class="pds-answer-input" id="pds-answer-input1">
|
2859 |
<input type="radio" name="PDI_answer" value="2" id="p2" class="pds-checkbox"/>
|
2860 |
</span>
|
2861 |
-
<label for="p2" class="pds-answer" id="pds-answer1"><span class="pds-answer-span"
|
2862 |
<span class="pds-clear"></span>
|
2863 |
</span>
|
2864 |
|
@@ -2866,7 +2970,7 @@ class WP_PollDaddy {
|
|
2866 |
<span class="pds-answer-input" id="pds-answer-input2">
|
2867 |
<input type="radio" name="PDI_answer" value="3" id="p3" class="pds-checkbox"/>
|
2868 |
</span>
|
2869 |
-
<label for="p3" class="pds-answer" id="pds-answer2"><span class="pds-answer-span"
|
2870 |
<span class="pds-clear"></span>
|
2871 |
</span>
|
2872 |
|
@@ -2874,7 +2978,7 @@ class WP_PollDaddy {
|
|
2874 |
<span class="pds-answer-input" id="pds-answer-input3">
|
2875 |
<input type="radio" name="PDI_answer" value="4" id="p4" class="pds-checkbox"/>
|
2876 |
</span>
|
2877 |
-
<label for="p4" class="pds-answer" id="pds-answer3"><span class="pds-answer-span"
|
2878 |
<span class="pds-clear"></span>
|
2879 |
<span class="pds-answer-other">
|
2880 |
<input type="text" name="PDI_OtherText1761982" id="pds-textfield" maxlength="80" class="pds-textfield"/>
|
@@ -2886,9 +2990,9 @@ class WP_PollDaddy {
|
|
2886 |
<br/>
|
2887 |
<div class="pds-vote" id="pds-links">
|
2888 |
<div class="pds-votebutton-outer">
|
2889 |
-
<a href="javascript:renderStyleEdit('pds-answer-feedback');" id="pds-vote-button" style="display:block;float:left;" class="pds-vote-button"><span
|
2890 |
<span class="pds-links">
|
2891 |
-
<div style="padding: 0px 0px 0px 15px; float:left;"><a href="javascript:renderStyleEdit('pds-answer-feedback');" class="pds-link" id="pds-link"
|
2892 |
<span class="pds-clear"></span>
|
2893 |
</span>
|
2894 |
<span class="pds-clear"></span>
|
@@ -2901,7 +3005,7 @@ class WP_PollDaddy {
|
|
2901 |
<div id="divResults">
|
2902 |
|
2903 |
<div class="pds-answer-group" id="pds-answer-group4">
|
2904 |
-
<label for="PDI_feedback1" class="pds-answer" id="pds-answer4"><span class="pds-answer-text"
|
2905 |
<span class="pds-clear"></span>
|
2906 |
<div id="pds-answer-feedback">
|
2907 |
<div style="width:46%;" id="pds-answer-feedback-bar" class="pds-answer-feedback-bar"></div>
|
@@ -2910,7 +3014,7 @@ class WP_PollDaddy {
|
|
2910 |
</div>
|
2911 |
|
2912 |
<div class="pds-answer-group" id="pds-answer-group5">
|
2913 |
-
<label for="PDI_feedback2" class="pds-answer" id="pds-answer5"><span class="pds-answer-text"
|
2914 |
<span class="pds-clear"></span>
|
2915 |
<div id="pds-answer-feedback2">
|
2916 |
<div style="width:46%;" id="pds-answer-feedback-bar2" class="pds-answer-feedback-bar"></div>
|
@@ -2919,7 +3023,7 @@ class WP_PollDaddy {
|
|
2919 |
</div>
|
2920 |
|
2921 |
<div class="pds-answer-group" id="pds-answer-group6">
|
2922 |
-
<label for="PDI_feedback3" class="pds-answer" id="pds-answer6"><span class="pds-answer-text"
|
2923 |
<span class="pds-clear"></span>
|
2924 |
<div id="pds-answer-feedback3">
|
2925 |
<div style="width:16%;" id="pds-answer-feedback-bar3" class="pds-answer-feedback-bar"></div>
|
@@ -2928,7 +3032,7 @@ class WP_PollDaddy {
|
|
2928 |
</div>
|
2929 |
|
2930 |
<div class="pds-answer-group" id="pds-answer-group7">
|
2931 |
-
<label for="PDI_feedback4" class="pds-answer" id="pds-answer7"><span class="pds-answer-text"
|
2932 |
<span class="pds-clear"></span>
|
2933 |
<div id="pds-answer-feedback4">
|
2934 |
<div style="width:8%;" id="pds-answer-feedback-bar4" class="pds-answer-feedback-bar"></div>
|
@@ -2940,15 +3044,15 @@ class WP_PollDaddy {
|
|
2940 |
<!-- End divResults -->
|
2941 |
<span class="pds-clear"></span>
|
2942 |
<div style="height: 10px;"></div>
|
2943 |
-
<div id="pds-totalvotes-inner"
|
2944 |
</div>
|
2945 |
<div class="pds-vote" id="pds-links-back">
|
2946 |
<div class="pds-totalvotes-outer">
|
2947 |
<span class="pds-links-back">
|
2948 |
<br/>
|
2949 |
-
<a href="javascript:" class="pds-link" id="pds-link1"
|
2950 |
<xsl:text> </xsl:text>
|
2951 |
-
<a href="javascript:renderStyleEdit('pds-box');" class="pds-link" id="pds-link2"
|
2952 |
<span class="pds-clear"></span>
|
2953 |
</span>
|
2954 |
<span class="pds-clear"></span>
|
@@ -2964,15 +3068,36 @@ class WP_PollDaddy {
|
|
2964 |
</tr>
|
2965 |
</table>
|
2966 |
<div id="editBox"></div>
|
2967 |
-
<p class="pds-clear"></p>
|
2968 |
-
|
2969 |
-
|
2970 |
-
|
2971 |
-
|
|
|
|
|
|
|
|
|
|
|
2972 |
</div>
|
2973 |
</div>
|
2974 |
<textarea id="S_www" name="CSSXML" style="display:none;width: 1000px; height: 500px;" rows="10" cols="10"> </textarea>
|
2975 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2976 |
<script type="text/javascript" language="javascript">window.onload = function() {
|
2977 |
var CSSXML;
|
2978 |
loadStyle();
|
@@ -3319,11 +3444,15 @@ class WP_PollDaddy {
|
|
3319 |
<div class="inside">
|
3320 |
<table>
|
3321 |
<tr>
|
3322 |
-
<td width="100" height="30"><?php _e('
|
|
|
|
|
|
|
|
|
3323 |
<td><input onblur="pd_bind(this);" type="text" name="text_votes" id="text_votes" value="<?php echo( wp_specialchars( $settings->text_votes ) ); ?>" maxlength="20" />
|
3324 |
</tr>
|
3325 |
<tr>
|
3326 |
-
<td height="30"><?php _e('
|
3327 |
<td><input onblur="pd_bind(this);" type="text" name="text_rate_this" id="text_rate_this" value="<?php echo( wp_specialchars( $settings->text_rate_this ) ); ?>" maxlength="20" />
|
3328 |
</tr>
|
3329 |
<tr>
|
@@ -3621,6 +3750,18 @@ class WP_PollDaddy {
|
|
3621 |
</div>
|
3622 |
</div>
|
3623 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3624 |
<script type="text/javascript">
|
3625 |
PDRTJS_settings = <?php echo ( $settings_text ); ?>;
|
3626 |
PDRTJS_settings.id = "1";
|
@@ -3693,6 +3834,7 @@ class WP_PollDaddy {
|
|
3693 |
else
|
3694 |
$set->font_italic = 'normal';
|
3695 |
|
|
|
3696 |
$set->text_votes = wp_specialchars( $_REQUEST['text_votes'], 1 );
|
3697 |
$set->text_rate_this = wp_specialchars( $_REQUEST['text_rate_this'], 1 );
|
3698 |
$set->text_1_star = wp_specialchars( $_REQUEST['text_1_star'], 1 );
|
@@ -3988,7 +4130,19 @@ class WP_PollDaddy {
|
|
3988 |
</div>
|
3989 |
</form>
|
3990 |
</div>
|
3991 |
-
<p></p
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3992 |
}
|
3993 |
|
3994 |
function plugin_options() {
|
@@ -4006,64 +4160,64 @@ class WP_PollDaddy {
|
|
4006 |
$poll = $polldaddy->get_poll( 1 );
|
4007 |
|
4008 |
$options = array(
|
4009 |
-
|
4010 |
-
|
4011 |
-
|
4012 |
-
|
4013 |
-
|
4014 |
-
|
4015 |
-
|
4016 |
-
|
4017 |
-
|
4018 |
-
|
4019 |
-
|
4020 |
-
|
4021 |
-
|
4022 |
-
|
4023 |
-
|
4024 |
-
|
4025 |
-
|
4026 |
-
|
4027 |
-
|
4028 |
-
|
4029 |
-
|
4030 |
-
|
4031 |
-
|
4032 |
-
|
4033 |
-
|
4034 |
-
|
4035 |
-
|
4036 |
-
|
4037 |
-
|
4038 |
-
|
4039 |
-
|
4040 |
-
|
4041 |
-
|
4042 |
-
|
4043 |
-
|
4044 |
-
|
4045 |
-
|
4046 |
-
|
4047 |
-
|
4048 |
-
|
4049 |
-
|
4050 |
-
|
4051 |
-
|
4052 |
-
|
4053 |
-
|
4054 |
-
|
4055 |
-
|
4056 |
-
|
4057 |
-
|
4058 |
-
|
4059 |
-
|
4060 |
-
|
4061 |
-
|
4062 |
-
|
4063 |
-
|
4064 |
-
|
4065 |
-
|
4066 |
-
|
4067 |
|
4068 |
$polldaddy->reset();
|
4069 |
$styles = $polldaddy->get_styles();
|
5 |
Description: Create and manage PollDaddy polls and ratings in WordPress
|
6 |
Author: Automattic, Inc.
|
7 |
Author URL: http://automattic.com/
|
8 |
+
Version: 1.8.8
|
9 |
*/
|
10 |
|
11 |
// You can hardcode your PollDaddy PartnerGUID (API Key) here
|
33 |
global $current_user;
|
34 |
$this->errors = new WP_Error;
|
35 |
$this->scheme = 'https';
|
36 |
+
$this->version = '1.8.8';
|
37 |
$this->multiple_accounts = true;
|
38 |
$this->polldaddy_client_class = 'api_client';
|
39 |
$this->polldaddy_clients = array();
|
333 |
break;
|
334 |
case 'edit-style' :
|
335 |
case 'create-style' :
|
336 |
+
wp_enqueue_script( 'polls-style', "http://i.polldaddy.com/js/style-editor.js", array(), $this->version.mktime() );
|
337 |
wp_enqueue_script( 'polls-style-color', "http://i.polldaddy.com/js/jquery/jscolor.js", array(), $this->version );
|
338 |
wp_enqueue_style( 'polls', "{$this->base_url}style-editor.css", array(), $this->version );
|
339 |
$plugin_page = 'polls&action=list-styles';
|
771 |
|
772 |
if ( isset($_POST['CSSXML'] ) )
|
773 |
$style_data['css'] = urlencode( stripslashes( trim ( (string) $_POST['CSSXML'] ) ) );
|
774 |
+
|
775 |
+
if ( isset($_REQUEST['updatePollCheck'] ) && $_REQUEST['updatePollCheck'] == 'on' )
|
776 |
+
$style_data['retro'] = 1;
|
777 |
|
778 |
$update_response = $polldaddy->update_style( $style, $style_data );
|
779 |
|
1312 |
<tr class="polldaddy-shortcode-row" style="display: none;">
|
1313 |
<td colspan="4">
|
1314 |
<h4><?php _e( 'WordPress Shortcode', 'polldaddy' ); ?></h4>
|
1315 |
+
<input type="text" readonly="readonly" style="width: 175px;" onclick="this.select();" value="[polldaddy poll=<?php echo (int) $poll_id; ?>]"/>
|
1316 |
|
1317 |
<h4><?php _e( 'JavaScript', 'polldaddy' ); ?></h4>
|
1318 |
<pre><script type="text/javascript" language="javascript"
|
1322 |
<span style="font:9px;">(<a href="http://www.polldaddy.com">polls</a>)</span>
|
1323 |
</noscript></pre>
|
1324 |
<h4><?php _e( 'Short URL (Good for Twitter etc.)', 'polldaddy' ); ?></h4>
|
1325 |
+
<input type="text" readonly="readonly" style="width: 175px;" onclick="this.select();" value="http://poll.fm/<?php echo base_convert( $poll_id, 10, 36 ); ?>"/>
|
1326 |
<h4><?php _e( 'Facebook URL', 'polldaddy' ); ?></h4>
|
1327 |
+
<input type="text" readonly="readonly" style="width: 175px;" onclick="this.select();" value="http://poll.fm/f/<?php echo base_convert( $poll_id, 10, 36 ); ?>"/>
|
1328 |
</td>
|
1329 |
</tr>
|
1330 |
|
1358 |
<div class="tablenav-pages"><?php echo $page_links; ?></div>
|
1359 |
</div>
|
1360 |
<br class="clear" />
|
1361 |
+
<script language="javascript">
|
1362 |
+
jQuery( document ).ready(function(){
|
1363 |
+
plugin = new Plugin( {
|
1364 |
+
delete_rating: '<?php _e( 'Are you sure you want to delete the rating for "%s"?','polldaddy'); ?>',
|
1365 |
+
delete_poll: '<?php _e( 'Are you sure you want to delete "%s"?','polldaddy'); ?>',
|
1366 |
+
delete_answer: '<?php _e( 'Are you sure you want to delete this answer?','polldaddy'); ?>',
|
1367 |
+
delete_answer_title: '<?php _e( 'delete this answer','polldaddy'); ?>',
|
1368 |
+
standard_styles: '<?php _e( 'Standard Styles','polldaddy'); ?>',
|
1369 |
+
custom_styles: '<?php _e( 'Custom Styles','polldaddy'); ?>'
|
1370 |
+
} );
|
1371 |
+
});
|
1372 |
+
</script>
|
1373 |
|
1374 |
<?php
|
1375 |
}
|
1605 |
$iframe_view = true;
|
1606 |
|
1607 |
$options = array(
|
1608 |
+
101 => __( 'Aluminum Narrow','polldaddy'),
|
1609 |
+
102 => __( 'Aluminum Medium','polldaddy'),
|
1610 |
+
103 => __( 'Aluminum Wide','polldaddy'),
|
1611 |
+
104 => __( 'Plain White Narrow','polldaddy'),
|
1612 |
+
105 => __( 'Plain White Medium','polldaddy'),
|
1613 |
+
106 => __( 'Plain White Wide','polldaddy'),
|
1614 |
+
107 => __( 'Plain Black Narrow','polldaddy'),
|
1615 |
+
108 => __( 'Plain Black Medium','polldaddy'),
|
1616 |
+
109 => __( 'Plain Black Wide','polldaddy'),
|
1617 |
+
110 => __( 'Paper Narrow','polldaddy'),
|
1618 |
+
111 => __( 'Paper Medium','polldaddy'),
|
1619 |
+
112 => __( 'Paper Wide','polldaddy'),
|
1620 |
+
113 => __( 'Skull Dark Narrow','polldaddy'),
|
1621 |
+
114 => __( 'Skull Dark Medium','polldaddy'),
|
1622 |
+
115 => __( 'Skull Dark Wide','polldaddy'),
|
1623 |
+
116 => __( 'Skull Light Narrow','polldaddy'),
|
1624 |
+
117 => __( 'Skull Light Medium','polldaddy'),
|
1625 |
+
118 => __( 'Skull Light Wide','polldaddy'),
|
1626 |
+
157 => __( 'Micro','polldaddy'),
|
1627 |
+
119 => __( 'Plastic White Narrow','polldaddy'),
|
1628 |
+
120 => __( 'Plastic White Medium','polldaddy'),
|
1629 |
+
121 => __( 'Plastic White Wide','polldaddy'),
|
1630 |
+
122 => __( 'Plastic Grey Narrow','polldaddy'),
|
1631 |
+
123 => __( 'Plastic Grey Medium','polldaddy'),
|
1632 |
+
124 => __( 'Plastic Grey Wide','polldaddy'),
|
1633 |
+
125 => __( 'Plastic Black Narrow','polldaddy'),
|
1634 |
+
126 => __( 'Plastic Black Medium','polldaddy'),
|
1635 |
+
127 => __( 'Plastic Black Wide','polldaddy'),
|
1636 |
+
128 => __( 'Manga Narrow','polldaddy'),
|
1637 |
+
129 => __( 'Manga Medium','polldaddy'),
|
1638 |
+
130 => __( 'Manga Wide','polldaddy'),
|
1639 |
+
131 => __( 'Tech Dark Narrow','polldaddy'),
|
1640 |
+
132 => __( 'Tech Dark Medium','polldaddy'),
|
1641 |
+
133 => __( 'Tech Dark Wide','polldaddy'),
|
1642 |
+
134 => __( 'Tech Grey Narrow','polldaddy'),
|
1643 |
+
135 => __( 'Tech Grey Medium','polldaddy'),
|
1644 |
+
136 => __( 'Tech Grey Wide','polldaddy'),
|
1645 |
+
137 => __( 'Tech Light Narrow','polldaddy'),
|
1646 |
+
138 => __( 'Tech Light Medium','polldaddy'),
|
1647 |
+
139 => __( 'Tech Light Wide','polldaddy'),
|
1648 |
+
140 => __( 'Working Male Narrow','polldaddy'),
|
1649 |
+
141 => __( 'Working Male Medium','polldaddy'),
|
1650 |
+
142 => __( 'Working Male Wide','polldaddy'),
|
1651 |
+
143 => __( 'Working Female Narrow','polldaddy'),
|
1652 |
+
144 => __( 'Working Female Medium','polldaddy'),
|
1653 |
+
145 => __( 'Working Female Wide','polldaddy'),
|
1654 |
+
146 => __( 'Thinking Male Narrow','polldaddy'),
|
1655 |
+
147 => __( 'Thinking Male Medium','polldaddy'),
|
1656 |
+
148 => __( 'Thinking Male Wide','polldaddy'),
|
1657 |
+
149 => __( 'Thinking Female Narrow','polldaddy'),
|
1658 |
+
150 => __( 'Thinking Female Medium','polldaddy'),
|
1659 |
+
151 => __( 'Thinking Female Wide','polldaddy'),
|
1660 |
+
152 => __( 'Sunset Narrow','polldaddy'),
|
1661 |
+
153 => __( 'Sunset Medium','polldaddy'),
|
1662 |
+
154 => __( 'Sunset Wide','polldaddy'),
|
1663 |
+
155 => __( 'Music Medium','polldaddy'),
|
1664 |
+
156 => __( 'Music Wide','polldaddy')
|
1665 |
);
|
1666 |
|
1667 |
$polldaddy->reset();
|
1788 |
<div id="styleIDErr" class="formErr" style="display:none;"><?php _e( 'Please choose a style.', 'polldaddy' ); ?></div></td>
|
1789 |
</tr>
|
1790 |
<tr>
|
1791 |
+
<td><?php $extra = $show_custom == false ? __( 'You currently have no custom styles created.', 'polldaddy') : ''; ?>
|
1792 |
<p><?php echo $extra ?></p>
|
1793 |
<p><?php printf( __( 'Did you know we have a new editor for building your own custom poll styles? Find out more <a href="%s" target="_blank">here</a>.', 'polldaddy' ), 'http://support.polldaddy.com/custom-poll-styles/' ); ?></p>
|
1794 |
</td>
|
1875 |
<td><?php $hide = $show_custom == true ? ' style="display:block;"' : ' style="display:none;"'; ?>
|
1876 |
<select id="customSelect" name="customSelect" onclick="pd_change_style(this.value);" <?php echo $hide ?>>
|
1877 |
<?php $selected = $custom_style_ID == 0 ? ' selected="selected"' : ''; ?>
|
1878 |
+
<option value="x"<?php echo $selected; ?>><?php _e( 'Please choose a custom style...', 'polldaddy'); ?></option>
|
1879 |
<?php if( $show_custom) : foreach ( (array)$styles->style as $style ) :
|
1880 |
$selected = $style->_id == $custom_style_ID ? ' selected="selected"' : ''; ?>
|
1881 |
<option value="<?php echo (int) $style->_id; ?>"<?php echo $selected; ?>><?php echo wp_specialchars( $style->title ); ?></option>
|
1882 |
<?php endforeach; endif;?>
|
1883 |
</select>
|
1884 |
+
<div id="styleIDErr" class="formErr" style="display:none;"><?php _e( 'Please choose a style.', 'polldaddy'); ?></div></td>
|
1885 |
</tr>
|
1886 |
<tr>
|
1887 |
+
<td><?php $extra = $show_custom == false ? __( 'You currently have no custom styles created.', 'polldaddy' ) : ''; ?>
|
1888 |
<p><?php echo $extra ?></p>
|
1889 |
<p><?php printf( __( 'Did you know we have a new editor for building your own custom poll styles? Find out more <a href="%s" target="_blank">here</a>.', 'polldaddy' ), 'http://support.polldaddy.com/custom-poll-styles/' ); ?></p>
|
1890 |
</td>
|
1908 |
</div>
|
1909 |
<?php } ?>
|
1910 |
<script language="javascript">
|
1911 |
+
jQuery( document ).ready(function(){
|
1912 |
+
plugin = new Plugin( {
|
1913 |
+
delete_rating: '<?php _e( 'Are you sure you want to delete the rating for "%s"?','polldaddy'); ?>',
|
1914 |
+
delete_poll: '<?php _e( 'Are you sure you want to delete "%s"?','polldaddy'); ?>',
|
1915 |
+
delete_answer: '<?php _e( 'Are you sure you want to delete this answer?','polldaddy'); ?>',
|
1916 |
+
delete_answer_title: '<?php _e( 'delete this answer','polldaddy'); ?>',
|
1917 |
+
standard_styles: '<?php _e( 'Standard Styles','polldaddy'); ?>',
|
1918 |
+
custom_styles: '<?php _e( 'Custom Styles','polldaddy'); ?>'
|
1919 |
+
} );
|
1920 |
+
});
|
1921 |
+
</script>
|
1922 |
+
<script language="javascript">
|
1923 |
+
current_pos = 0;
|
1924 |
+
|
1925 |
+
for( var key in styles_array ) {
|
1926 |
+
var name = styles_array[key].name;
|
1927 |
+
|
1928 |
+
switch( name ){
|
1929 |
+
case 'Aluminum':
|
1930 |
+
styles_array[key].name = '<?php _e( 'Aluminum', 'polldaddy' ); ?>';
|
1931 |
+
break;
|
1932 |
+
case 'Plain White':
|
1933 |
+
styles_array[key].name = '<?php _e( 'Plain White', 'polldaddy' ); ?>';
|
1934 |
+
break;
|
1935 |
+
case 'Plain Black':
|
1936 |
+
styles_array[key].name = '<?php _e( 'Plain Black', 'polldaddy' ); ?>';
|
1937 |
+
break;
|
1938 |
+
case 'Paper':
|
1939 |
+
styles_array[key].name = '<?php _e( 'Paper', 'polldaddy' ); ?>';
|
1940 |
+
break;
|
1941 |
+
case 'Skull Dark':
|
1942 |
+
styles_array[key].name = '<?php _e( 'Skull Dark', 'polldaddy' ); ?>';
|
1943 |
+
break;
|
1944 |
+
case 'Skull Light':
|
1945 |
+
styles_array[key].name = '<?php _e( 'Skull Light', 'polldaddy' ); ?>';
|
1946 |
+
break;
|
1947 |
+
case 'Micro':
|
1948 |
+
styles_array[key].name = '<?php _e( 'Micro', 'polldaddy' ); ?>';
|
1949 |
+
styles_array[key].n_desc = '<?php _e( 'Width 150px, the micro style is useful when space is tight.', 'polldaddy' ); ?>';
|
1950 |
+
break;
|
1951 |
+
case 'Plastic White':
|
1952 |
+
styles_array[key].name = '<?php _e( 'Plastic White', 'polldaddy' ); ?>';
|
1953 |
+
break;
|
1954 |
+
case 'Plastic Grey':
|
1955 |
+
styles_array[key].name = '<?php _e( 'Plastic Grey', 'polldaddy' ); ?>';
|
1956 |
+
break;
|
1957 |
+
case 'Plastic Black':
|
1958 |
+
styles_array[key].name = '<?php _e( 'Plastic Black', 'polldaddy' ); ?>';
|
1959 |
+
break;
|
1960 |
+
case 'Manga':
|
1961 |
+
styles_array[key].name = '<?php _e( 'Manga', 'polldaddy' ); ?>';
|
1962 |
+
break;
|
1963 |
+
case 'Tech Dark':
|
1964 |
+
styles_array[key].name = '<?php _e( 'Tech Dark', 'polldaddy' ); ?>';
|
1965 |
+
break;
|
1966 |
+
case 'Tech Grey':
|
1967 |
+
styles_array[key].name = '<?php _e( 'Tech Grey', 'polldaddy' ); ?>';
|
1968 |
+
break;
|
1969 |
+
case 'Tech Light':
|
1970 |
+
styles_array[key].name = '<?php _e( 'Tech Light', 'polldaddy' ); ?>';
|
1971 |
+
break;
|
1972 |
+
case 'Working Male':
|
1973 |
+
styles_array[key].name = '<?php _e( 'Working Male', 'polldaddy' ); ?>';
|
1974 |
+
break;
|
1975 |
+
case 'Working Female':
|
1976 |
+
styles_array[key].name = '<?php _e( 'Working Female', 'polldaddy' ); ?>';
|
1977 |
+
break;
|
1978 |
+
case 'Thinking Male':
|
1979 |
+
styles_array[key].name = '<?php _e( 'Thinking Male', 'polldaddy' ); ?>';
|
1980 |
+
break;
|
1981 |
+
case 'Thinking Female':
|
1982 |
+
styles_array[key].name = '<?php _e( 'Thinking Female', 'polldaddy' ); ?>';
|
1983 |
+
break;
|
1984 |
+
case 'Sunset':
|
1985 |
+
styles_array[key].name = '<?php _e( 'Sunset', 'polldaddy' ); ?>';
|
1986 |
+
break;
|
1987 |
+
case 'Music':
|
1988 |
+
styles_array[key].name = '<?php _e( 'Music', 'polldaddy' ); ?>';
|
1989 |
+
break;
|
1990 |
+
}
|
1991 |
+
}
|
1992 |
+
pd_map = {
|
1993 |
+
wide : '<?php _e( 'Wide', 'polldaddy' ); ?>',
|
1994 |
+
medium : '<?php _e( 'Medium', 'polldaddy' ); ?>',
|
1995 |
+
narrow : '<?php _e( 'Narrow', 'polldaddy' ); ?>',
|
1996 |
+
style_desc_wide : '<?php _e( 'Width: 630px, the wide style is good for blog posts.', 'polldaddy' ); ?>',
|
1997 |
+
style_desc_medium : '<?php _e( 'Width: 300px, the medium style is good for general use.', 'polldaddy' ); ?>',
|
1998 |
+
style_desc_narrow : '<?php _e( 'Width 150px, the narrow style is good for sidebars etc.', 'polldaddy' ); ?>',
|
1999 |
+
style_desc_micro : '<?php _e( 'Width 150px, the micro style is useful when space is tight.', 'polldaddy' ); ?>'
|
2000 |
+
}
|
2001 |
pd_build_styles( current_pos );
|
2002 |
<?php if( $style_ID > 0 && $style_ID <= 1000 ){ ?>
|
2003 |
pd_pick_style( <?php echo $style_ID ?> );
|
2275 |
<div class="CSSE_preload">
|
2276 |
<select id="preload_value">
|
2277 |
<option value="0"></option>
|
2278 |
+
<option value="102"><?php _e( 'Aluminum', 'polldaddy' ); ?></option>
|
2279 |
+
<option value="105"><?php _e( 'Plain White', 'polldaddy' ); ?></option>
|
2280 |
+
<option value="108"><?php _e( 'Plain Black', 'polldaddy' ); ?></option>
|
2281 |
+
<option value="111"><?php _e( 'Paper', 'polldaddy' ); ?></option>
|
2282 |
+
<option value="114"><?php _e( 'Skull Dark', 'polldaddy' ); ?></option>
|
2283 |
+
<option value="117"><?php _e( 'Skull Light', 'polldaddy' ); ?></option>
|
2284 |
+
<option value="157"><?php _e( 'Micro', 'polldaddy' ); ?></option>
|
2285 |
</select>
|
2286 |
<a tabindex="4" id="style-preload" href="javascript:preload_pd_style();" class="button"><?php echo attribute_escape( __( 'Load Style', 'polldaddy' ) ); ?></a>
|
2287 |
</div>
|
2289 |
</tr>
|
2290 |
<tr>
|
2291 |
<td width="13%">
|
2292 |
+
<p><?php _e( 'Choose a part to edit...', 'polldaddy' ); ?></p>
|
2293 |
</td>
|
2294 |
<td>
|
2295 |
<select id="styleName" onchange="renderStyleEdit(this.value);">
|
2296 |
+
<option value="pds-box" selected="selected"><?php _e( 'Poll Box', 'polldaddy' ); ?></option>
|
2297 |
+
<option value="pds-question-top"><?php _e( 'Question', 'polldaddy' ); ?></option>
|
2298 |
+
<option value="pds-answer-group"><?php _e( 'Answer Group', 'polldaddy' ); ?></option>
|
2299 |
+
<option value="pds-answer-input"><?php _e( 'Answer Check', 'polldaddy' ); ?></option>
|
2300 |
+
<option value="pds-answer"><?php _e( 'Answers', 'polldaddy' ); ?></option>
|
2301 |
+
<option value="pds-textfield"><?php _e( 'Other Input', 'polldaddy' ); ?></option>
|
2302 |
+
<option value="pds-vote-button"><?php _e( 'Vote Button', 'polldaddy' ); ?></option>
|
2303 |
+
<option value="pds-link"><?php _e( 'Links', 'polldaddy' ); ?></option>
|
2304 |
+
<option value="pds-answer-feedback"><?php _e( 'Result Background', 'polldaddy' ); ?></option>
|
2305 |
+
<option value="pds-answer-feedback-bar"><?php _e( 'Result Bar', 'polldaddy' ); ?></option>
|
2306 |
+
<option value="pds-totalvotes-inner"><?php _e( 'Total Votes', 'polldaddy' ); ?></option>
|
2307 |
</select>
|
2308 |
</td>
|
2309 |
</tr>
|
2315 |
<tr>
|
2316 |
<td class="CSSE_main_l" valign="top">
|
2317 |
<div class="off" id="D_Font">
|
2318 |
+
<a href="javascript:CSSE_changeView('Font');" id="A_Font" class="Aoff"><?php _e( 'Font', 'polldaddy' ); ?></a>
|
2319 |
</div>
|
2320 |
<div class="on" id="D_Background">
|
2321 |
+
<a href="javascript:CSSE_changeView('Background');" id="A_Background" class="Aon"><?php _e( 'Background', 'polldaddy' ); ?></a>
|
2322 |
</div>
|
2323 |
<div class="off" id="D_Border">
|
2324 |
+
<a href="javascript:CSSE_changeView('Border');" id="A_Border" class="Aoff"><?php _e( 'Border', 'polldaddy' ); ?></a>
|
2325 |
</div>
|
2326 |
<div class="off" id="D_Margin">
|
2327 |
+
<a href="javascript:CSSE_changeView('Margin');" id="A_Margin" class="Aoff"><?php _e( 'Margin', 'polldaddy' ); ?></a>
|
2328 |
</div>
|
2329 |
<div class="off" id="D_Padding">
|
2330 |
+
<a href="javascript:CSSE_changeView('Padding');" id="A_Padding" class="Aoff"><?php _e( 'Padding', 'polldaddy' ); ?></a>
|
2331 |
</div>
|
2332 |
<div class="off" id="D_Scale">
|
2333 |
+
<a href="javascript:CSSE_changeView('Scale');" id="A_Scale" class="Aoff"><?php _e( 'Width', 'polldaddy' ); ?></a>
|
2334 |
</div>
|
2335 |
<div class="off" id="D_Height">
|
2336 |
+
<a href="javascript:CSSE_changeView('Height');" id="A_Height" class="Aoff"><?php _e( 'Height', 'polldaddy' ); ?></a>
|
2337 |
</div>
|
2338 |
</td>
|
2339 |
<td class="CSSE_main_r" valign="top">
|
2346 |
<!-- Font Table -->
|
2347 |
<table class="CSSE_edit" id="editFont" style="display:none;">
|
2348 |
<tr>
|
2349 |
+
<td width="85"><?php _e( 'Font Size', 'polldaddy' ); ?>:</td>
|
2350 |
<td>
|
2351 |
<select id="font-size" onchange="bind(this);">
|
2352 |
<option value="6px">6px</option>
|
2368 |
</td>
|
2369 |
</tr>
|
2370 |
<tr>
|
2371 |
+
<td><?php _e( 'Font Size', 'polldaddy' ); ?></td>
|
2372 |
<td>
|
2373 |
<select id="font-family" onchange="bind(this);">
|
2374 |
<option value="Arial">Arial</option>
|
2383 |
</td>
|
2384 |
</tr>
|
2385 |
<tr>
|
2386 |
+
<td><?php _e( 'Color', 'polldaddy' ); ?> (#hex):</td>
|
2387 |
<td>
|
2388 |
<input type="text" maxlength="11" id="color" class="elmColor jscolor-picker" onblur="bind(this);" style="float:left;"/>
|
2389 |
</td>
|
2390 |
</tr>
|
2391 |
<tr>
|
2392 |
+
<td><?php _e( 'Bold', 'polldaddy' ); ?>:</td>
|
2393 |
<td>
|
2394 |
<input type="checkbox" id="font-weight" value="bold" onclick="bind(this);"/>
|
2395 |
</td>
|
2396 |
</tr>
|
2397 |
<tr>
|
2398 |
+
<td><?php _e( 'Italic', 'polldaddy' ); ?>:</td>
|
2399 |
<td>
|
2400 |
<input type="checkbox" id="font-style" value="italic" onclick="bind(this);"/>
|
2401 |
</td>
|
2402 |
</tr>
|
2403 |
<tr>
|
2404 |
+
<td><?php _e( 'Underline', 'polldaddy' ); ?>:</td>
|
2405 |
<td>
|
2406 |
<input type="checkbox" id="text-decoration" value="underline" onclick="bind(this);"/>
|
2407 |
</td>
|
2408 |
</tr>
|
2409 |
<tr>
|
2410 |
+
<td><?php _e( 'Line Height', 'polldaddy' ); ?>:</td>
|
2411 |
<td>
|
2412 |
<select id="line-height" onchange="bind(this);">
|
2413 |
<option value="6px">6px</option>
|
2429 |
</td>
|
2430 |
</tr>
|
2431 |
<tr>
|
2432 |
+
<td><?php _e( 'Align', 'polldaddy' ); ?>:</td>
|
2433 |
<td>
|
2434 |
<select id="text-align" onchange="bind(this);">
|
2435 |
+
<option value="left"><?php _e( 'Left', 'polldaddy' ); ?></option>
|
2436 |
+
<option value="center"><?php _e( 'Center', 'polldaddy' ); ?></option>
|
2437 |
+
<option value="right"><?php _e( 'Right', 'polldaddy' ); ?></option>
|
2438 |
</select>
|
2439 |
</td>
|
2440 |
</tr>
|
2442 |
<!-- Background Table -->
|
2443 |
<table class="CSSE_edit" id="editBackground" style="display:none;">
|
2444 |
<tr>
|
2445 |
+
<td width="85"><?php _e( 'Color', 'polldaddy' ); ?> (#hex):</td>
|
2446 |
<td>
|
2447 |
<input type="text" maxlength="11" id="background-color" class="elmColor jscolor-picker" onblur="bind(this);"/>
|
2448 |
</td>
|
2449 |
</tr>
|
2450 |
<tr>
|
2451 |
+
<td><?php _e( 'Image URL', 'polldaddy' ); ?>: <a href="http://support.polldaddy.com/custom-poll-styles/" class="noteLink" title="<?php _e( 'Click here for more information', 'polldaddy' ); ?>">(?)</a></td>
|
2452 |
<td>
|
2453 |
<input type="text" id="background-image" onblur="bind(this);"/>
|
2454 |
</td>
|
2455 |
</tr>
|
2456 |
<tr>
|
2457 |
+
<td><?php _e( 'Image Repeat', 'polldaddy' ); ?>:</td>
|
2458 |
<td>
|
2459 |
<select id="background-repeat" onchange="bind(this);">
|
2460 |
+
<option value="repeat"><?php _e( 'repeat', 'polldaddy' ); ?></option>
|
2461 |
+
<option value="no-repeat"><?php _e( 'no-repeat', 'polldaddy' ); ?></option>
|
2462 |
+
<option value="repeat-x"><?php _e( 'repeat-x', 'polldaddy' ); ?></option>
|
2463 |
+
<option value="repeat-y"><?php _e( 'repeat-y', 'polldaddy' ); ?></option>
|
2464 |
</select>
|
2465 |
</td>
|
2466 |
</tr>
|
2467 |
<tr>
|
2468 |
+
<td><?php _e( 'Image Position', 'polldaddy' ); ?>:</td>
|
2469 |
<td>
|
2470 |
<select id="background-position" onchange="bind(this);">
|
2471 |
+
<option value="left top"><?php _e( 'left top', 'polldaddy' ); ?></option>
|
2472 |
+
<option value="left center"><?php _e( 'left center', 'polldaddy' ); ?></option>
|
2473 |
+
<option value="left bottom"><?php _e( 'left bottom', 'polldaddy' ); ?></option>
|
2474 |
+
<option value="center top"><?php _e( 'center top', 'polldaddy' ); ?></option>
|
2475 |
+
<option value="center center"><?php _e( 'center center', 'polldaddy' ); ?></option>
|
2476 |
+
<option value="center bottom"><?php _e( 'center bottom', 'polldaddy' ); ?></option>
|
2477 |
+
<option value="right top"><?php _e( 'right top', 'polldaddy' ); ?></option>
|
2478 |
+
<option value="right center"><?php _e( 'right center', 'polldaddy' ); ?></option>
|
2479 |
+
<option value="right bottom"><?php _e( 'right bottom', 'polldaddy' ); ?></option>
|
2480 |
</select>
|
2481 |
</td>
|
2482 |
</tr>
|
2484 |
<!-- Border Table -->
|
2485 |
<table class="CSSE_edit" id="editBorder" style="display:none;">
|
2486 |
<tr>
|
2487 |
+
<td width="85"><?php _e( 'Width', 'polldaddy' ); ?>:</td>
|
2488 |
<td>
|
2489 |
<select id="border-width" onchange="bind(this);">
|
2490 |
<option value="0px">0px</option>
|
2522 |
</td>
|
2523 |
</tr>
|
2524 |
<tr>
|
2525 |
+
<td><?php _e( 'Style', 'polldaddy' ); ?>:</td>
|
2526 |
<td>
|
2527 |
<select id="border-style" onchange="bind(this);">
|
2528 |
+
<option value="none"><?php _e( 'none', 'polldaddy' ); ?></option>
|
2529 |
+
<option value="solid"><?php _e( 'solid', 'polldaddy' ); ?></option>
|
2530 |
+
<option value="dotted"><?php _e( 'dotted', 'polldaddy' ); ?></option>
|
2531 |
+
<option value="dashed"><?php _e( 'dashed', 'polldaddy' ); ?></option>
|
2532 |
+
<option value="double"><?php _e( 'double', 'polldaddy' ); ?></option>
|
2533 |
+
<option value="groove"><?php _e( 'groove', 'polldaddy' ); ?></option>
|
2534 |
+
<option value="inset"><?php _e( 'inset', 'polldaddy' ); ?></option>
|
2535 |
+
<option value="outset"><?php _e( 'outset', 'polldaddy' ); ?></option>
|
2536 |
+
<option value="ridge"><?php _e( 'ridge', 'polldaddy' ); ?></option>
|
2537 |
+
<option value="hidden"><?php _e( 'hidden', 'polldaddy' ); ?></option>
|
2538 |
</select>
|
2539 |
</td>
|
2540 |
</tr>
|
2541 |
<tr>
|
2542 |
+
<td><?php _e( 'Color', 'polldaddy' ); ?> (#hex):</td>
|
2543 |
<td>
|
2544 |
<input type="text" maxlength="11" class="elmColor jscolor-picker" id="border-color" onblur="bind(this);"/>
|
2545 |
</td>
|
2546 |
</tr>
|
2547 |
<tr>
|
2548 |
+
<td width="85"><?php _e( 'Rounded Corners', 'polldaddy' ); ?>:</td>
|
2549 |
<td>
|
2550 |
<select id="border-radius" onchange="bind(this);">
|
2551 |
<option value="0px">0px</option>
|
2581 |
<option value="30px">30px</option>
|
2582 |
</select>
|
2583 |
<br/>
|
2584 |
+
<?php _e( 'Not supported in Internet Explorer.', 'polldaddy' ); ?>
|
2585 |
</td>
|
2586 |
</tr>
|
2587 |
</table>
|
2588 |
<!-- Margin Table -->
|
2589 |
<table class="CSSE_edit" id="editMargin" style="display:none;">
|
2590 |
<tr>
|
2591 |
+
<td width="85"><?php _e( 'Top', 'polldaddy' ); ?>: </td>
|
2592 |
<td>
|
2593 |
<select id="margin-top" onchange="bind(this);">
|
2594 |
<option value="0px">0px</option>
|
2626 |
</td>
|
2627 |
</tr>
|
2628 |
<tr>
|
2629 |
+
<td><?php _e( 'Right', 'polldaddy' ); ?>:</td>
|
2630 |
<td>
|
2631 |
<select id="margin-right" onchange="bind(this);">
|
2632 |
<option value="0px">0px</option>
|
2664 |
</td>
|
2665 |
</tr>
|
2666 |
<tr>
|
2667 |
+
<td><?php _e( 'Bottom', 'polldaddy' ); ?>:</td>
|
2668 |
<td>
|
2669 |
<select id="margin-bottom" onchange="bind(this);">
|
2670 |
<option value="0px">0px</option>
|
2702 |
</td>
|
2703 |
</tr>
|
2704 |
<tr>
|
2705 |
+
<td><?php _e( 'Left', 'polldaddy' ); ?>:</td>
|
2706 |
<td>
|
2707 |
<select id="margin-left" onchange="bind(this);">
|
2708 |
<option value="0px">0px</option>
|
2743 |
<!-- Padding Table -->
|
2744 |
<table class="CSSE_edit" id="editPadding" style="display:none;">
|
2745 |
<tr>
|
2746 |
+
<td width="85"><?php _e( 'Top', 'polldaddy' ); ?>:</td>
|
2747 |
<td>
|
2748 |
<select id="padding-top" onchange="bind(this);">
|
2749 |
<option value="0px">0px</option>
|
2781 |
</td>
|
2782 |
</tr>
|
2783 |
<tr>
|
2784 |
+
<td><?php _e( 'Right', 'polldaddy' ); ?>:</td>
|
2785 |
<td>
|
2786 |
<select id="padding-right" onchange="bind(this);">
|
2787 |
<option value="0px">0px</option>
|
2819 |
</td>
|
2820 |
</tr>
|
2821 |
<tr>
|
2822 |
+
<td><?php _e( 'Bottom', 'polldaddy' ); ?>:</td>
|
2823 |
<td>
|
2824 |
<select id="padding-bottom" onchange="bind(this);">
|
2825 |
<option value="0px">0px</option>
|
2857 |
</td>
|
2858 |
</tr>
|
2859 |
<tr>
|
2860 |
+
<td><?php _e( 'Left', 'polldaddy' ); ?>:</td>
|
2861 |
<td>
|
2862 |
<select id="padding-left" onchange="bind(this);">
|
2863 |
<option value="0px">0px</option>
|
2898 |
<!-- Scale Table -->
|
2899 |
<table class="CSSE_edit" id="editScale" style="display:none;">
|
2900 |
<tr>
|
2901 |
+
<td width="85"><?php _e( 'Width', 'polldaddy' ); ?> (px): <a href="http://support.polldaddy.com/custom-poll-styles/" class="noteLink" title="<?php _e( 'Click here for more information', 'polldaddy' ); ?>">(?)</a></td>
|
2902 |
<td>
|
2903 |
<input type="text" maxlength="4" class="elmColor" id="width" onblur="bind(this);"/>
|
2904 |
</td>
|
2906 |
<tr>
|
2907 |
<td width="85"></td>
|
2908 |
<td>
|
2909 |
+
<?php _e( 'If you change the width of the<br/> poll you may also need to change<br/> the width of your answers.', 'polldaddy' ); ?>
|
2910 |
</td>
|
2911 |
</tr>
|
2912 |
</table>
|
2914 |
<!-- Height Table -->
|
2915 |
<table class="CSSE_edit" id="editHeight" style="display:none;">
|
2916 |
<tr>
|
2917 |
+
<td width="85"><?php _e( 'Height', 'polldaddy' ); ?> (px):</td>
|
2918 |
<td>
|
2919 |
<input type="text" maxlength="4" class="elmColor" id="height" onblur="bind(this);"/>
|
2920 |
</td>
|
2941 |
<div class="pds-question">
|
2942 |
<div class="pds-question-outer">
|
2943 |
<div class="pds-question-inner">
|
2944 |
+
<div class="pds-question-top" id="pds-question-top"><?php _e( 'Do you mostly use the internet at work, in school or at home?', 'polldaddy' ); ?></div>
|
2945 |
</div>
|
2946 |
</div>
|
2947 |
</div>
|
2954 |
<span class="pds-answer-input" id="pds-answer-input">
|
2955 |
<input type="radio" name="PDI_answer" value="1" id="p1" class="pds-checkbox"/>
|
2956 |
</span>
|
2957 |
+
<label for="p1" class="pds-answer" id="pds-answer"><span class="pds-answer-span"><?php _e( 'I use it in school.', 'polldaddy' ); ?></span></label>
|
2958 |
<span class="pds-clear"></span>
|
2959 |
</span>
|
2960 |
|
2962 |
<span class="pds-answer-input" id="pds-answer-input1">
|
2963 |
<input type="radio" name="PDI_answer" value="2" id="p2" class="pds-checkbox"/>
|
2964 |
</span>
|
2965 |
+
<label for="p2" class="pds-answer" id="pds-answer1"><span class="pds-answer-span"><?php _e( 'I use it at home.', 'polldaddy' ); ?></span></label>
|
2966 |
<span class="pds-clear"></span>
|
2967 |
</span>
|
2968 |
|
2970 |
<span class="pds-answer-input" id="pds-answer-input2">
|
2971 |
<input type="radio" name="PDI_answer" value="3" id="p3" class="pds-checkbox"/>
|
2972 |
</span>
|
2973 |
+
<label for="p3" class="pds-answer" id="pds-answer2"><span class="pds-answer-span"><?php _e( 'I use it every where I go, at work and home and anywhere else that I can!', 'polldaddy' ); ?></span></label>
|
2974 |
<span class="pds-clear"></span>
|
2975 |
</span>
|
2976 |
|
2978 |
<span class="pds-answer-input" id="pds-answer-input3">
|
2979 |
<input type="radio" name="PDI_answer" value="4" id="p4" class="pds-checkbox"/>
|
2980 |
</span>
|
2981 |
+
<label for="p4" class="pds-answer" id="pds-answer3"><span class="pds-answer-span"><?php _e( 'Other', 'polldaddy' ); ?>:</span></label>
|
2982 |
<span class="pds-clear"></span>
|
2983 |
<span class="pds-answer-other">
|
2984 |
<input type="text" name="PDI_OtherText1761982" id="pds-textfield" maxlength="80" class="pds-textfield"/>
|
2990 |
<br/>
|
2991 |
<div class="pds-vote" id="pds-links">
|
2992 |
<div class="pds-votebutton-outer">
|
2993 |
+
<a href="javascript:renderStyleEdit('pds-answer-feedback');" id="pds-vote-button" style="display:block;float:left;" class="pds-vote-button"><span><?php _e( 'Vote', 'polldaddy' ); ?></span></a>
|
2994 |
<span class="pds-links">
|
2995 |
+
<div style="padding: 0px 0px 0px 15px; float:left;"><a href="javascript:renderStyleEdit('pds-answer-feedback');" class="pds-link" id="pds-link"><?php _e( 'View Results', 'polldaddy' ); ?></a></div>
|
2996 |
<span class="pds-clear"></span>
|
2997 |
</span>
|
2998 |
<span class="pds-clear"></span>
|
3005 |
<div id="divResults">
|
3006 |
|
3007 |
<div class="pds-answer-group" id="pds-answer-group4">
|
3008 |
+
<label for="PDI_feedback1" class="pds-answer" id="pds-answer4"><span class="pds-answer-text"><?php _e( 'I use it in school!', 'polldaddy' ); ?></span><xsl:text> </xsl:text><span class="pds-feedback-per"><strong>46%</strong></span><xsl:text> </xsl:text><span class="pds-feedback-votes"><?php printf( __( '(%d votes)', 'polldaddy' ), 620 ); ?></span></label>
|
3009 |
<span class="pds-clear"></span>
|
3010 |
<div id="pds-answer-feedback">
|
3011 |
<div style="width:46%;" id="pds-answer-feedback-bar" class="pds-answer-feedback-bar"></div>
|
3014 |
</div>
|
3015 |
|
3016 |
<div class="pds-answer-group" id="pds-answer-group5">
|
3017 |
+
<label for="PDI_feedback2" class="pds-answer" id="pds-answer5"><span class="pds-answer-text"><?php _e( 'I use it at home.', 'polldaddy' ); ?></span><xsl:text> </xsl:text><span class="pds-feedback-per"><strong>30%</strong></span><xsl:text> </xsl:text><span class="pds-feedback-votes"><?php printf( __( '(%d votes)', 'polldaddy' ), 400 ); ?></span></label>
|
3018 |
<span class="pds-clear"></span>
|
3019 |
<div id="pds-answer-feedback2">
|
3020 |
<div style="width:46%;" id="pds-answer-feedback-bar2" class="pds-answer-feedback-bar"></div>
|
3023 |
</div>
|
3024 |
|
3025 |
<div class="pds-answer-group" id="pds-answer-group6">
|
3026 |
+
<label for="PDI_feedback3" class="pds-answer" id="pds-answer6"><span class="pds-answer-text"><?php _e( 'I use it every where I go, at work and home and anywhere else that I can!', 'polldaddy' ); ?></span><xsl:text> </xsl:text><span class="pds-feedback-per"><strong>16%</strong></span><xsl:text> </xsl:text><span class="pds-feedback-votes"><?php printf( __( '(%d votes)', 'polldaddy' ), 220 ); ?></span></label>
|
3027 |
<span class="pds-clear"></span>
|
3028 |
<div id="pds-answer-feedback3">
|
3029 |
<div style="width:16%;" id="pds-answer-feedback-bar3" class="pds-answer-feedback-bar"></div>
|
3032 |
</div>
|
3033 |
|
3034 |
<div class="pds-answer-group" id="pds-answer-group7">
|
3035 |
+
<label for="PDI_feedback4" class="pds-answer" id="pds-answer7"><span class="pds-answer-text"><?php _e( 'Other', 'polldaddy' ); ?></span><xsl:text> </xsl:text><span class="pds-feedback-per"><strong>8%</strong></span><xsl:text> </xsl:text><span class="pds-feedback-votes"><?php printf( __( '(%d votes)', 'polldaddy' ), 110 ); ?></span></label>
|
3036 |
<span class="pds-clear"></span>
|
3037 |
<div id="pds-answer-feedback4">
|
3038 |
<div style="width:8%;" id="pds-answer-feedback-bar4" class="pds-answer-feedback-bar"></div>
|
3044 |
<!-- End divResults -->
|
3045 |
<span class="pds-clear"></span>
|
3046 |
<div style="height: 10px;"></div>
|
3047 |
+
<div id="pds-totalvotes-inner"><?php _e( 'Total Votes', 'polldaddy' ); ?>: <strong>1,350</strong></div>
|
3048 |
</div>
|
3049 |
<div class="pds-vote" id="pds-links-back">
|
3050 |
<div class="pds-totalvotes-outer">
|
3051 |
<span class="pds-links-back">
|
3052 |
<br/>
|
3053 |
+
<a href="javascript:" class="pds-link" id="pds-link1"><?php _e( 'Comments', 'polldaddy' ); ?> <strong>(19)</strong></a>
|
3054 |
<xsl:text> </xsl:text>
|
3055 |
+
<a href="javascript:renderStyleEdit('pds-box');" class="pds-link" id="pds-link2"><?php _e( 'Return To Poll', 'polldaddy' ); ?></a>
|
3056 |
<span class="pds-clear"></span>
|
3057 |
</span>
|
3058 |
<span class="pds-clear"></span>
|
3068 |
</tr>
|
3069 |
</table>
|
3070 |
<div id="editBox"></div>
|
3071 |
+
<p class="pds-clear"></p>
|
3072 |
+
<p>
|
3073 |
+
<?php wp_nonce_field( $style_id > 1000 ? "edit-style$style_id" : 'create-style' ); ?>
|
3074 |
+
<input type="hidden" name="action" value="<?php echo $style_id > 1000 ? 'edit-style' : 'create-style'; ?>" />
|
3075 |
+
<input type="hidden" class="polldaddy-style-id" name="style" value="<?php echo $style_id; ?>" />
|
3076 |
+
<input type="submit" class="button-primary" value="<?php echo attribute_escape( __( 'Save Style', 'polldaddy' ) ); ?>" />
|
3077 |
+
<?php if ( $style_id > 1000 ) { ?>
|
3078 |
+
<input name="updatePollCheck" id="updatePollCheck" type="checkbox"> <label for="updatePollCheck"><?php _e( 'Check this box if you wish to update the polls that use this style.' ); ?></label>
|
3079 |
+
<?php } ?>
|
3080 |
+
</p>
|
3081 |
</div>
|
3082 |
</div>
|
3083 |
<textarea id="S_www" name="CSSXML" style="display:none;width: 1000px; height: 500px;" rows="10" cols="10"> </textarea>
|
3084 |
</form>
|
3085 |
+
<script language="javascript">
|
3086 |
+
jQuery( document ).ready(function(){
|
3087 |
+
plugin = new Plugin( {
|
3088 |
+
delete_rating: '<?php _e( 'Are you sure you want to delete the rating for "%s"?','polldaddy'); ?>',
|
3089 |
+
delete_poll: '<?php _e( 'Are you sure you want to delete "%s"?','polldaddy'); ?>',
|
3090 |
+
delete_answer: '<?php _e( 'Are you sure you want to delete this answer?','polldaddy'); ?>',
|
3091 |
+
delete_answer_title: '<?php _e( 'delete this answer','polldaddy'); ?>',
|
3092 |
+
standard_styles: '<?php _e( 'Standard Styles','polldaddy'); ?>',
|
3093 |
+
custom_styles: '<?php _e( 'Custom Styles','polldaddy'); ?>'
|
3094 |
+
} );
|
3095 |
+
});
|
3096 |
+
pd_map = {
|
3097 |
+
thankyou : '<?php _e( 'Thank you for voting!', 'polldaddy' ); ?>',
|
3098 |
+
question : '<?php _e( 'Do you mostly use the internet at work, in school or at home?', 'polldaddy' ); ?>'
|
3099 |
+
}
|
3100 |
+
</script>
|
3101 |
<script type="text/javascript" language="javascript">window.onload = function() {
|
3102 |
var CSSXML;
|
3103 |
loadStyle();
|
3444 |
<div class="inside">
|
3445 |
<table>
|
3446 |
<tr>
|
3447 |
+
<td width="100" height="30"><?php _e('Vote', 'polldaddy');?></td>
|
3448 |
+
<td><input onblur="pd_bind(this);" type="text" name="text_vote" id="text_vote" value="<?php echo empty( $settings->text_vote ) ? 'Vote' : wp_specialchars( $settings->text_vote ); ?>" maxlength="20" />
|
3449 |
+
</tr>
|
3450 |
+
<tr>
|
3451 |
+
<td width="100" height="30"><?php _e('Votes', 'polldaddy');?></td>
|
3452 |
<td><input onblur="pd_bind(this);" type="text" name="text_votes" id="text_votes" value="<?php echo( wp_specialchars( $settings->text_votes ) ); ?>" maxlength="20" />
|
3453 |
</tr>
|
3454 |
<tr>
|
3455 |
+
<td height="30"><?php _e('Rate This', 'polldaddy');?></td>
|
3456 |
<td><input onblur="pd_bind(this);" type="text" name="text_rate_this" id="text_rate_this" value="<?php echo( wp_specialchars( $settings->text_rate_this ) ); ?>" maxlength="20" />
|
3457 |
</tr>
|
3458 |
<tr>
|
3750 |
</div>
|
3751 |
</div>
|
3752 |
</form>
|
3753 |
+
<script language="javascript">
|
3754 |
+
jQuery( document ).ready(function(){
|
3755 |
+
plugin = new Plugin( {
|
3756 |
+
delete_rating: '<?php _e( 'Are you sure you want to delete the rating for "%s"?','polldaddy'); ?>',
|
3757 |
+
delete_poll: '<?php _e( 'Are you sure you want to delete "%s"?','polldaddy'); ?>',
|
3758 |
+
delete_answer: '<?php _e( 'Are you sure you want to delete this answer?','polldaddy'); ?>',
|
3759 |
+
delete_answer_title: '<?php _e( 'delete this answer','polldaddy'); ?>',
|
3760 |
+
standard_styles: '<?php _e( 'Standard Styles','polldaddy'); ?>',
|
3761 |
+
custom_styles: '<?php _e( 'Custom Styles','polldaddy'); ?>'
|
3762 |
+
} );
|
3763 |
+
});
|
3764 |
+
</script>
|
3765 |
<script type="text/javascript">
|
3766 |
PDRTJS_settings = <?php echo ( $settings_text ); ?>;
|
3767 |
PDRTJS_settings.id = "1";
|
3834 |
else
|
3835 |
$set->font_italic = 'normal';
|
3836 |
|
3837 |
+
$set->text_vote = wp_specialchars( $_REQUEST['text_vote'], 1 );
|
3838 |
$set->text_votes = wp_specialchars( $_REQUEST['text_votes'], 1 );
|
3839 |
$set->text_rate_this = wp_specialchars( $_REQUEST['text_rate_this'], 1 );
|
3840 |
$set->text_1_star = wp_specialchars( $_REQUEST['text_1_star'], 1 );
|
4130 |
</div>
|
4131 |
</form>
|
4132 |
</div>
|
4133 |
+
<p></p>
|
4134 |
+
<script language="javascript">
|
4135 |
+
jQuery( document ).ready(function(){
|
4136 |
+
plugin = new Plugin( {
|
4137 |
+
delete_rating: '<?php _e( 'Are you sure you want to delete the rating for "%s"?','polldaddy'); ?>',
|
4138 |
+
delete_poll: '<?php _e( 'Are you sure you want to delete "%s"?','polldaddy'); ?>',
|
4139 |
+
delete_answer: '<?php _e( 'Are you sure you want to delete this answer?','polldaddy'); ?>',
|
4140 |
+
delete_answer_title: '<?php _e( 'delete this answer','polldaddy'); ?>',
|
4141 |
+
standard_styles: '<?php _e( 'Standard Styles','polldaddy'); ?>',
|
4142 |
+
custom_styles: '<?php _e( 'Custom Styles','polldaddy'); ?>'
|
4143 |
+
} );
|
4144 |
+
});
|
4145 |
+
</script><?php
|
4146 |
}
|
4147 |
|
4148 |
function plugin_options() {
|
4160 |
$poll = $polldaddy->get_poll( 1 );
|
4161 |
|
4162 |
$options = array(
|
4163 |
+
101 => __( 'Aluminum Narrow','polldaddy'),
|
4164 |
+
102 => __( 'Aluminum Medium','polldaddy'),
|
4165 |
+
103 => __( 'Aluminum Wide','polldaddy'),
|
4166 |
+
104 => __( 'Plain White Narrow','polldaddy'),
|
4167 |
+
105 => __( 'Plain White Medium','polldaddy'),
|
4168 |
+
106 => __( 'Plain White Wide','polldaddy'),
|
4169 |
+
107 => __( 'Plain Black Narrow','polldaddy'),
|
4170 |
+
108 => __( 'Plain Black Medium','polldaddy'),
|
4171 |
+
109 => __( 'Plain Black Wide','polldaddy'),
|
4172 |
+
110 => __( 'Paper Narrow','polldaddy'),
|
4173 |
+
111 => __( 'Paper Medium','polldaddy'),
|
4174 |
+
112 => __( 'Paper Wide','polldaddy'),
|
4175 |
+
113 => __( 'Skull Dark Narrow','polldaddy'),
|
4176 |
+
114 => __( 'Skull Dark Medium','polldaddy'),
|
4177 |
+
115 => __( 'Skull Dark Wide','polldaddy'),
|
4178 |
+
116 => __( 'Skull Light Narrow','polldaddy'),
|
4179 |
+
117 => __( 'Skull Light Medium','polldaddy'),
|
4180 |
+
118 => __( 'Skull Light Wide','polldaddy'),
|
4181 |
+
157 => __( 'Micro','polldaddy'),
|
4182 |
+
119 => __( 'Plastic White Narrow','polldaddy'),
|
4183 |
+
120 => __( 'Plastic White Medium','polldaddy'),
|
4184 |
+
121 => __( 'Plastic White Wide','polldaddy'),
|
4185 |
+
122 => __( 'Plastic Grey Narrow','polldaddy'),
|
4186 |
+
123 => __( 'Plastic Grey Medium','polldaddy'),
|
4187 |
+
124 => __( 'Plastic Grey Wide','polldaddy'),
|
4188 |
+
125 => __( 'Plastic Black Narrow','polldaddy'),
|
4189 |
+
126 => __( 'Plastic Black Medium','polldaddy'),
|
4190 |
+
127 => __( 'Plastic Black Wide','polldaddy'),
|
4191 |
+
128 => __( 'Manga Narrow','polldaddy'),
|
4192 |
+
129 => __( 'Manga Medium','polldaddy'),
|
4193 |
+
130 => __( 'Manga Wide','polldaddy'),
|
4194 |
+
131 => __( 'Tech Dark Narrow','polldaddy'),
|
4195 |
+
132 => __( 'Tech Dark Medium','polldaddy'),
|
4196 |
+
133 => __( 'Tech Dark Wide','polldaddy'),
|
4197 |
+
134 => __( 'Tech Grey Narrow','polldaddy'),
|
4198 |
+
135 => __( 'Tech Grey Medium','polldaddy'),
|
4199 |
+
136 => __( 'Tech Grey Wide','polldaddy'),
|
4200 |
+
137 => __( 'Tech Light Narrow','polldaddy'),
|
4201 |
+
138 => __( 'Tech Light Medium','polldaddy'),
|
4202 |
+
139 => __( 'Tech Light Wide','polldaddy'),
|
4203 |
+
140 => __( 'Working Male Narrow','polldaddy'),
|
4204 |
+
141 => __( 'Working Male Medium','polldaddy'),
|
4205 |
+
142 => __( 'Working Male Wide','polldaddy'),
|
4206 |
+
143 => __( 'Working Female Narrow','polldaddy'),
|
4207 |
+
144 => __( 'Working Female Medium','polldaddy'),
|
4208 |
+
145 => __( 'Working Female Wide','polldaddy'),
|
4209 |
+
146 => __( 'Thinking Male Narrow','polldaddy'),
|
4210 |
+
147 => __( 'Thinking Male Medium','polldaddy'),
|
4211 |
+
148 => __( 'Thinking Male Wide','polldaddy'),
|
4212 |
+
149 => __( 'Thinking Female Narrow','polldaddy'),
|
4213 |
+
150 => __( 'Thinking Female Medium','polldaddy'),
|
4214 |
+
151 => __( 'Thinking Female Wide','polldaddy'),
|
4215 |
+
152 => __( 'Sunset Narrow','polldaddy'),
|
4216 |
+
153 => __( 'Sunset Medium','polldaddy'),
|
4217 |
+
154 => __( 'Sunset Wide','polldaddy'),
|
4218 |
+
155 => __( 'Music Medium','polldaddy'),
|
4219 |
+
156 => __( 'Music Wide','polldaddy')
|
4220 |
+
);
|
4221 |
|
4222 |
$polldaddy->reset();
|
4223 |
$styles = $polldaddy->get_styles();
|
polldaddy.pot
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Translation of the WordPress plugin PollDaddy Polls 1.8.
|
2 |
# Copyright (C) 2010 Automattic, Inc.
|
3 |
# This file is distributed under the same license as the PollDaddy Polls package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
@@ -6,9 +6,9 @@
|
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
-
"Project-Id-Version: PollDaddy Polls 1.8.
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
11 |
-
"POT-Creation-Date: 2010-
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -17,11 +17,11 @@ msgstr ""
|
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19 |
|
20 |
-
#: polldaddy-org.php:107 polldaddy.php:132 polldaddy.php:
|
21 |
msgid "Email address required"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: polldaddy-org.php:110 polldaddy.php:135 polldaddy.php:
|
25 |
msgid "Password required"
|
26 |
msgstr ""
|
27 |
|
@@ -66,11 +66,11 @@ msgid ""
|
|
66 |
"\">PollDaddy.com</a> account details."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: polldaddy-org.php:223 polldaddy.php:262 polldaddy.php:
|
70 |
msgid "PollDaddy Email Address"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: polldaddy-org.php:231 polldaddy.php:270 polldaddy.php:
|
74 |
msgid "PollDaddy Password"
|
75 |
msgstr ""
|
76 |
|
@@ -101,7 +101,7 @@ msgid "Sync Ratings Account"
|
|
101 |
msgstr ""
|
102 |
|
103 |
#: polldaddy-org.php:293
|
104 |
-
msgid "This will
|
105 |
msgstr ""
|
106 |
|
107 |
#: polldaddy-org.php:453
|
@@ -112,7 +112,7 @@ msgstr ""
|
|
112 |
msgid "Top Rated"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: polldaddy-org.php:498 polldaddy.php:
|
116 |
msgid "Title"
|
117 |
msgstr ""
|
118 |
|
@@ -137,7 +137,7 @@ msgid "Ratings"
|
|
137 |
msgstr ""
|
138 |
|
139 |
#: polldaddy.php:79 polldaddy.php:81 polldaddy.php:97 polldaddy.php:99
|
140 |
-
#: polldaddy.php:111 polldaddy.php:
|
141 |
msgid "Polls"
|
142 |
msgstr ""
|
143 |
|
@@ -157,7 +157,7 @@ msgstr ""
|
|
157 |
msgid "Reports"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: polldaddy.php:111 polldaddy.php:
|
161 |
msgid "Edit"
|
162 |
msgstr ""
|
163 |
|
@@ -169,11 +169,12 @@ msgstr ""
|
|
169 |
msgid "Add New"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: polldaddy.php:115 polldaddy.php:
|
|
|
173 |
msgid "Custom Styles"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: polldaddy.php:116 polldaddy.php:
|
177 |
msgid "Options"
|
178 |
msgstr ""
|
179 |
|
@@ -192,894 +193,1511 @@ msgstr ""
|
|
192 |
msgid "Add Poll"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: polldaddy.php:
|
196 |
msgid "Star Colors"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: polldaddy.php:
|
200 |
msgid "Star Size"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: polldaddy.php:
|
204 |
msgid "Nero Type"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: polldaddy.php:
|
208 |
msgid "Nero Size"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: polldaddy.php:
|
212 |
msgid "You are not allowed to delete this poll."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: polldaddy.php:
|
216 |
msgid "Invalid Poll Author"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: polldaddy.php:
|
220 |
msgid "You are not allowed to open this poll."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: polldaddy.php:
|
224 |
msgid "You are not allowed to close this poll."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: polldaddy.php:
|
228 |
msgid "You are not allowed to edit this poll."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: polldaddy.php:
|
232 |
msgid "Poll not found"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: polldaddy.php:
|
236 |
msgid "Invalid answers"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: polldaddy.php:
|
240 |
msgid "You must include at least 2 answers"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: polldaddy.php:
|
244 |
msgid "Please choose a poll style"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: polldaddy.php:
|
248 |
msgid "Poll could not be updated"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: polldaddy.php:
|
252 |
msgid "Poll could not be created"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: polldaddy.php:
|
256 |
msgid "Style could not be updated"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: polldaddy.php:
|
260 |
msgid "Style could not be created"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: polldaddy.php:
|
264 |
msgid ""
|
265 |
"Account could not be imported. Are your email address and password correct?"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: polldaddy.php:
|
269 |
msgid "Poll deleted."
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: polldaddy.php:
|
273 |
#, php-format
|
274 |
msgid "%s Poll Deleted."
|
275 |
msgid_plural "%s Polls Deleted."
|
276 |
msgstr[0] ""
|
277 |
msgstr[1] ""
|
278 |
|
279 |
-
#: polldaddy.php:
|
280 |
msgid "Poll opened."
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: polldaddy.php:
|
284 |
#, php-format
|
285 |
msgid "%s Poll Opened."
|
286 |
msgid_plural "%s Polls Opened."
|
287 |
msgstr[0] ""
|
288 |
msgstr[1] ""
|
289 |
|
290 |
-
#: polldaddy.php:
|
291 |
msgid "Poll closed."
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: polldaddy.php:
|
295 |
#, php-format
|
296 |
msgid "%s Poll Closed."
|
297 |
msgid_plural "%s Polls Closed."
|
298 |
msgstr[0] ""
|
299 |
msgstr[1] ""
|
300 |
|
301 |
-
#: polldaddy.php:
|
302 |
msgid "Poll updated."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: polldaddy.php:
|
306 |
msgid "Poll created."
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: polldaddy.php:
|
310 |
msgid "Send to Editor"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: polldaddy.php:
|
314 |
msgid "Custom Style updated."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: polldaddy.php:
|
318 |
msgid "Custom Style created."
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: polldaddy.php:
|
322 |
msgid "Custom Style deleted."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: polldaddy.php:
|
326 |
#, php-format
|
327 |
msgid "%s Style Deleted."
|
328 |
msgid_plural "%s Custom Styles Deleted."
|
329 |
msgstr[0] ""
|
330 |
msgstr[1] ""
|
331 |
|
332 |
-
#: polldaddy.php:
|
333 |
msgid "Account Imported."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: polldaddy.php:
|
337 |
msgid "Options Updated."
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
msgid "Error: An error has occurred; Poll not created."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: polldaddy.php:
|
345 |
msgid "Error: An error has occurred; Poll not updated."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: polldaddy.php:
|
349 |
msgid ""
|
350 |
"Error: An error has occurred; Account could not be imported. Perhaps your "
|
351 |
"email address or password is incorrect?"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: polldaddy.php:
|
355 |
msgid "Error: An error has occurred; Account could not be created."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: polldaddy.php:
|
359 |
#, php-format
|
360 |
msgid ""
|
361 |
"Poll Preview (<a href=\"%s\">Edit Poll</a>, <a href=\"%s\">List Polls</a>)"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: polldaddy.php:
|
365 |
#, php-format
|
366 |
msgid "Poll Preview (<a href=\"%s\">List Polls</a>)"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: polldaddy.php:
|
370 |
#, php-format
|
371 |
msgid "Poll Results (<a href=\"%s\">Edit Poll</a>)"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: polldaddy.php:
|
375 |
#, php-format
|
376 |
msgid "Poll Results (<a href=\"%s\">List Polls</a>)"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: polldaddy.php:
|
380 |
#, php-format
|
381 |
msgid "Edit Poll (<a href=\"%s\">List Polls</a>)"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: polldaddy.php:
|
385 |
#, php-format
|
386 |
msgid "Create Poll (<a href=\"%s\">List Polls</a>)"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: polldaddy.php:
|
390 |
#, php-format
|
391 |
msgid "Custom Styles (<a href=\"%s\">Add New</a>)"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: polldaddy.php:
|
395 |
#, php-format
|
396 |
msgid "Edit Style (<a href=\"%s\">List Styles</a>)"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: polldaddy.php:
|
400 |
#, php-format
|
401 |
msgid "Create Style (<a href=\"%s\">List Styles</a>)"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: polldaddy.php:
|
405 |
#, php-format
|
406 |
msgid "Polls (<a href=\"%s\">Add New</a>)"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: polldaddy.php:
|
410 |
msgid "All Blog's Polls"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: polldaddy.php:
|
414 |
msgid "All My Polls"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: polldaddy.php:
|
418 |
msgid "Actions"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: polldaddy.php:
|
|
|
422 |
msgid "Delete"
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: polldaddy.php:
|
426 |
msgid "Close"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: polldaddy.php:
|
430 |
msgid "Open"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: polldaddy.php:
|
434 |
msgid "Apply"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: polldaddy.php:
|
438 |
msgid "Poll"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: polldaddy.php:
|
|
|
442 |
msgid "Votes"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: polldaddy.php:
|
446 |
msgid "Created"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: polldaddy.php:
|
450 |
msgid "Results"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: polldaddy.php:
|
454 |
msgid "Preview"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: polldaddy.php:
|
458 |
msgid "Send to editor"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: polldaddy.php:
|
462 |
msgid "Share-Embed"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: polldaddy.php:
|
466 |
msgid "Y/m/d g:i:s A"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: polldaddy.php:
|
470 |
msgid "Y/m/d"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: polldaddy.php:
|
474 |
msgid "WordPress Shortcode"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: polldaddy.php:
|
478 |
msgid "JavaScript"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: polldaddy.php:
|
482 |
msgid "Short URL (Good for Twitter etc.)"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: polldaddy.php:
|
486 |
msgid "Facebook URL"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: polldaddy.php:
|
490 |
#, php-format
|
491 |
msgid "What are you doing here? <a href=\"%s\">Go back</a>."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: polldaddy.php:
|
495 |
#, php-format
|
496 |
msgid "No polls yet. <a href=\"%s\">Create one</a>"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: polldaddy.php:
|
500 |
msgid "No polls yet."
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
msgid "Publish"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: polldaddy.php:
|
508 |
msgid "Save Poll"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: polldaddy.php:
|
512 |
msgid "Poll results"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: polldaddy.php:
|
516 |
msgid "Show results to voters"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: polldaddy.php:
|
520 |
msgid "Only show percentages"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: polldaddy.php:
|
524 |
msgid "Hide all results"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: polldaddy.php:
|
528 |
msgid "Block repeat voters"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: polldaddy.php:
|
532 |
msgid "Don't block repeat voters"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: polldaddy.php:
|
536 |
msgid "Block by cookie (recommended)"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: polldaddy.php:
|
540 |
msgid "Block by cookie and by IP address"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: polldaddy.php:
|
544 |
msgid "Expires: "
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: polldaddy.php:
|
548 |
msgid "Never"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: polldaddy.php:
|
552 |
#, php-format
|
553 |
msgid "%d hour"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: polldaddy.php:
|
557 |
-
#: polldaddy.php:
|
558 |
#, php-format
|
559 |
msgid "%d hours"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: polldaddy.php:
|
563 |
#, php-format
|
564 |
msgid "%d day"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: polldaddy.php:
|
568 |
#, php-format
|
569 |
msgid "%d week"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: polldaddy.php:
|
573 |
#, php-format
|
574 |
msgid "%d month"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: polldaddy.php:
|
578 |
msgid ""
|
579 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: polldaddy.php:
|
583 |
msgid "Answers"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: polldaddy.php:
|
587 |
msgid "Add another"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: polldaddy.php:
|
591 |
msgid "Multiple choice"
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: polldaddy.php:
|
595 |
msgid "Randomize answer order"
|
596 |
msgstr ""
|
597 |
|
598 |
-
#: polldaddy.php:
|
599 |
msgid "Allow other answers"
|
600 |
msgstr ""
|
601 |
|
602 |
-
#: polldaddy.php:
|
603 |
msgid "'Share This' link"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
607 |
msgid "Design"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: polldaddy.php:
|
611 |
msgid "Custom Style"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: polldaddy.php:
|
615 |
msgid "Please choose a custom style..."
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: polldaddy.php:
|
619 |
msgid "Please choose a style."
|
620 |
msgstr ""
|
621 |
|
622 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
623 |
#, php-format
|
624 |
msgid ""
|
625 |
"Did you know we have a new editor for building your own custom poll styles? "
|
626 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: polldaddy.php:
|
630 |
msgid "PollDaddy Style"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
634 |
msgid "Answer"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: polldaddy.php:
|
638 |
#, php-format
|
639 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: polldaddy.php:
|
643 |
msgid "Other Answer"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: polldaddy.php:
|
647 |
msgid "Style"
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: polldaddy.php:
|
651 |
msgid "Last Modified"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: polldaddy.php:
|
655 |
#, php-format
|
656 |
msgid "No custom styles yet. <a href=\"%s\">Create one</a>"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: polldaddy.php:
|
660 |
msgid "Style Name"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: polldaddy.php:
|
664 |
msgid "Preload Basic Style"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: polldaddy.php:
|
668 |
msgid "Load Style"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
msgid "Save Style"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
#, php-format
|
677 |
msgid ""
|
678 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
679 |
"href=\"%1$s\" %2$s>PollDaddy support</a> to fix this."
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: polldaddy.php:
|
683 |
msgid "Rating Settings"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: polldaddy.php:
|
687 |
msgid "Rating updated"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: polldaddy.php:
|
691 |
msgid "Posts"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: polldaddy.php:
|
695 |
msgid "Pages"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: polldaddy.php:
|
699 |
-
msgid "Comments"
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
#: polldaddy.php:3143
|
703 |
msgid "Enable for blog posts"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: polldaddy.php:
|
707 |
msgid "Above each blog post"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: polldaddy.php:
|
711 |
msgid "Below each blog post"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: polldaddy.php:
|
715 |
msgid "Enable for front page"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: polldaddy.php:
|
719 |
msgid "Enable for pages"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: polldaddy.php:
|
723 |
msgid "Above each page"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: polldaddy.php:
|
727 |
msgid "Below each page"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: polldaddy.php:
|
731 |
msgid "Enable for comments"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: polldaddy.php:
|
735 |
msgid "Above each comment"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: polldaddy.php:
|
739 |
msgid "Below each comment"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: polldaddy.php:
|
743 |
msgid "Save Changes"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: polldaddy.php:
|
747 |
msgid "Advanced Settings"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: polldaddy.php:
|
751 |
msgid "Save"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: polldaddy.php:
|
755 |
msgid "This is a demo of what your rating widget will look like"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: polldaddy.php:
|
759 |
msgid "Customize Labels"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: polldaddy.php:
|
763 |
-
msgid "
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: polldaddy.php:3275
|
767 |
-
msgid "rate this"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: polldaddy.php:
|
771 |
#, php-format
|
772 |
msgid "%d star"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: polldaddy.php:
|
776 |
#, php-format
|
777 |
msgid "%d stars"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: polldaddy.php:
|
781 |
msgid "Thank You"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: polldaddy.php:
|
785 |
msgid "Rate Up"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: polldaddy.php:
|
789 |
msgid "Rate Down"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: polldaddy.php:
|
793 |
msgid "Rating Type"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: polldaddy.php:
|
797 |
msgid ""
|
798 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
799 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: polldaddy.php:
|
803 |
#, php-format
|
804 |
msgid "%d Star Rating"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: polldaddy.php:
|
808 |
msgid "Nero Rating"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: polldaddy.php:
|
812 |
msgid "Rating Style"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: polldaddy.php:
|
816 |
msgid "Small"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: polldaddy.php:
|
820 |
-
msgid "Medium"
|
821 |
-
msgstr ""
|
822 |
-
|
823 |
-
#: polldaddy.php:3349
|
824 |
msgid "Large"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: polldaddy.php:
|
828 |
msgid "Star Color"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: polldaddy.php:
|
832 |
msgid "Yellow"
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: polldaddy.php:
|
836 |
msgid "Red"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: polldaddy.php:
|
840 |
msgid "Blue"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: polldaddy.php:
|
844 |
msgid "Green"
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: polldaddy.php:
|
848 |
msgid "Grey"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: polldaddy.php:
|
852 |
msgid "Hand"
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: polldaddy.php:
|
856 |
msgid "Custom Image"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: polldaddy.php:
|
860 |
msgid "Text Layout & Font"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: polldaddy.php:
|
864 |
-
msgid "Align"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
-
#: polldaddy.php:3397
|
868 |
-
msgid "Left"
|
869 |
-
msgstr ""
|
870 |
-
|
871 |
-
#: polldaddy.php:3397
|
872 |
-
msgid "Center"
|
873 |
-
msgstr ""
|
874 |
-
|
875 |
-
#: polldaddy.php:3397 polldaddy.php:3411
|
876 |
-
msgid "Right"
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: polldaddy.php:3408
|
880 |
msgid "Position"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: polldaddy.php:
|
884 |
-
msgid "Top"
|
885 |
-
msgstr ""
|
886 |
-
|
887 |
-
#: polldaddy.php:3411
|
888 |
-
msgid "Bottom"
|
889 |
-
msgstr ""
|
890 |
-
|
891 |
-
#: polldaddy.php:3422
|
892 |
-
msgid "Font"
|
893 |
-
msgstr ""
|
894 |
-
|
895 |
-
#: polldaddy.php:3425 polldaddy.php:3444 polldaddy.php:3458
|
896 |
msgid "Inherit"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: polldaddy.php:
|
900 |
-
msgid "Color"
|
901 |
-
msgstr ""
|
902 |
-
|
903 |
-
#: polldaddy.php:3441
|
904 |
msgid "Size"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: polldaddy.php:
|
908 |
-
msgid "Line Height"
|
909 |
-
msgstr ""
|
910 |
-
|
911 |
-
#: polldaddy.php:3469
|
912 |
-
msgid "Bold"
|
913 |
-
msgstr ""
|
914 |
-
|
915 |
-
#: polldaddy.php:3478
|
916 |
-
msgid "Italic"
|
917 |
-
msgstr ""
|
918 |
-
|
919 |
-
#: polldaddy.php:3491 polldaddy.php:3522 polldaddy.php:3552
|
920 |
msgid "Extra Settings"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: polldaddy.php:
|
924 |
msgid "Rating ID"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: polldaddy.php:
|
928 |
msgid "This is the rating ID used in posts"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: polldaddy.php:
|
932 |
msgid "Exclude Posts"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: polldaddy.php:
|
936 |
msgid ""
|
937 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
938 |
"comma-delimited list, eg. 1,2,3"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: polldaddy.php:
|
942 |
msgid "This is the rating ID used in pages"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: polldaddy.php:
|
946 |
msgid "Exclude Pages"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: polldaddy.php:
|
950 |
msgid ""
|
951 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
952 |
"comma-delimited list, eg. 1,2,3"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: polldaddy.php:
|
956 |
msgid "This is the rating ID used in comments"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: polldaddy.php:
|
960 |
msgid "«"
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: polldaddy.php:
|
964 |
msgid "»"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: polldaddy.php:
|
968 |
msgid "Rating Reports"
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: polldaddy.php:
|
972 |
-
msgid "View Report"
|
973 |
-
msgstr ""
|
974 |
-
|
975 |
-
#: polldaddy.php:3833
|
976 |
msgid "Last 24 hours"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: polldaddy.php:
|
980 |
msgid "Last 7 days"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: polldaddy.php:
|
984 |
msgid "Last 31 days"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: polldaddy.php:
|
988 |
msgid "Last 3 months"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: polldaddy.php:
|
992 |
msgid "Last 12 months"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: polldaddy.php:
|
996 |
msgid "All time"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: polldaddy.php:
|
1000 |
-
msgid "Filter
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: polldaddy.php:
|
1004 |
#, php-format
|
1005 |
msgid "No ratings have been collected for your %s yet."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: polldaddy.php:
|
|
|
|
|
|
|
|
|
1009 |
msgid "Start Date"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: polldaddy.php:
|
1013 |
msgid "Average Rating"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: polldaddy.php:
|
1017 |
msgid "PollDaddy Account Info"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: polldaddy.php:
|
1021 |
msgid ""
|
1022 |
"This is the PollDadddy account you currently have imported into your "
|
1023 |
"WordPress account"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: polldaddy.php:
|
1027 |
msgid "Import Account"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: polldaddy.php:
|
1031 |
msgid "General Settings"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: polldaddy.php:
|
1035 |
msgid "Default poll settings"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: polldaddy.php:
|
1039 |
msgid "Multiple Choice"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: polldaddy.php:
|
1043 |
msgid "Randomise Answers"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: polldaddy.php:
|
1047 |
msgid "Sharing"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: polldaddy.php:
|
1051 |
msgid "Show"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: polldaddy.php:
|
1055 |
msgid "Hide"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: polldaddy.php:
|
1059 |
msgid "Percentages"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: polldaddy.php:
|
1063 |
msgid "Poll style"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: polldaddy.php:
|
1067 |
msgid "Off"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: polldaddy.php:
|
1071 |
msgid "Cookie"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: polldaddy.php:
|
1075 |
msgid "Cookie & IP address"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: polldaddy.php:
|
1079 |
msgid "Block expiration limit"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: polldaddy.php:
|
1083 |
msgid "Save Options"
|
1084 |
msgstr ""
|
1085 |
|
1 |
+
# Translation of the WordPress plugin PollDaddy Polls 1.8.8 by Automattic, Inc..
|
2 |
# Copyright (C) 2010 Automattic, Inc.
|
3 |
# This file is distributed under the same license as the PollDaddy Polls package.
|
4 |
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010.
|
6 |
#, fuzzy
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
+
"Project-Id-Version: PollDaddy Polls 1.8.8\n"
|
10 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/polldaddy\n"
|
11 |
+
"POT-Creation-Date: 2010-06-14 15:14+0000\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19 |
|
20 |
+
#: polldaddy-org.php:107 polldaddy.php:132 polldaddy.php:932
|
21 |
msgid "Email address required"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: polldaddy-org.php:110 polldaddy.php:135 polldaddy.php:935
|
25 |
msgid "Password required"
|
26 |
msgstr ""
|
27 |
|
66 |
"\">PollDaddy.com</a> account details."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: polldaddy-org.php:223 polldaddy.php:262 polldaddy.php:4251
|
70 |
msgid "PollDaddy Email Address"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: polldaddy-org.php:231 polldaddy.php:270 polldaddy.php:4261
|
74 |
msgid "PollDaddy Password"
|
75 |
msgstr ""
|
76 |
|
101 |
msgstr ""
|
102 |
|
103 |
#: polldaddy-org.php:293
|
104 |
+
msgid "This will synchronize your ratings PollDaddy account."
|
105 |
msgstr ""
|
106 |
|
107 |
#: polldaddy-org.php:453
|
112 |
msgid "Top Rated"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: polldaddy-org.php:498 polldaddy.php:4059
|
116 |
msgid "Title"
|
117 |
msgstr ""
|
118 |
|
137 |
msgstr ""
|
138 |
|
139 |
#: polldaddy.php:79 polldaddy.php:81 polldaddy.php:97 polldaddy.php:99
|
140 |
+
#: polldaddy.php:111 polldaddy.php:1148
|
141 |
msgid "Polls"
|
142 |
msgstr ""
|
143 |
|
157 |
msgid "Reports"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: polldaddy.php:111 polldaddy.php:1280 polldaddy.php:2164
|
161 |
msgid "Edit"
|
162 |
msgstr ""
|
163 |
|
169 |
msgid "Add New"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: polldaddy.php:115 polldaddy.php:1113 polldaddy.php:1369 polldaddy.php:1804
|
173 |
+
#: polldaddy.php:1918 polldaddy.php:3093 polldaddy.php:3761 polldaddy.php:4142
|
174 |
msgid "Custom Styles"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: polldaddy.php:116 polldaddy.php:4236
|
178 |
msgid "Options"
|
179 |
msgstr ""
|
180 |
|
193 |
msgid "Add Poll"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: polldaddy.php:363
|
197 |
msgid "Star Colors"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: polldaddy.php:363 polldaddy.php:3526
|
201 |
msgid "Star Size"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: polldaddy.php:364
|
205 |
msgid "Nero Type"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: polldaddy.php:364
|
209 |
msgid "Nero Size"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: polldaddy.php:457
|
213 |
msgid "You are not allowed to delete this poll."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: polldaddy.php:465 polldaddy.php:501 polldaddy.php:537 polldaddy.php:571
|
217 |
msgid "Invalid Poll Author"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: polldaddy.php:493
|
221 |
msgid "You are not allowed to open this poll."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: polldaddy.php:529
|
225 |
msgid "You are not allowed to close this poll."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: polldaddy.php:562 polldaddy.php:1394
|
229 |
msgid "You are not allowed to edit this poll."
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: polldaddy.php:578
|
233 |
msgid "Poll not found"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: polldaddy.php:605
|
237 |
msgid "Invalid answers"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: polldaddy.php:621
|
241 |
msgid "You must include at least 2 answers"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: polldaddy.php:632 polldaddy.php:709
|
245 |
msgid "Please choose a poll style"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: polldaddy.php:654
|
249 |
msgid "Poll could not be updated"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: polldaddy.php:728
|
253 |
msgid "Poll could not be created"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: polldaddy.php:783
|
257 |
msgid "Style could not be updated"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: polldaddy.php:813
|
261 |
msgid "Style could not be created"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: polldaddy.php:944
|
265 |
msgid ""
|
266 |
"Account could not be imported. Are your email address and password correct?"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: polldaddy.php:962
|
270 |
msgid "Poll deleted."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: polldaddy.php:964
|
274 |
#, php-format
|
275 |
msgid "%s Poll Deleted."
|
276 |
msgid_plural "%s Polls Deleted."
|
277 |
msgstr[0] ""
|
278 |
msgstr[1] ""
|
279 |
|
280 |
+
#: polldaddy.php:969
|
281 |
msgid "Poll opened."
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: polldaddy.php:971
|
285 |
#, php-format
|
286 |
msgid "%s Poll Opened."
|
287 |
msgid_plural "%s Polls Opened."
|
288 |
msgstr[0] ""
|
289 |
msgstr[1] ""
|
290 |
|
291 |
+
#: polldaddy.php:976
|
292 |
msgid "Poll closed."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: polldaddy.php:978
|
296 |
#, php-format
|
297 |
msgid "%s Poll Closed."
|
298 |
msgid_plural "%s Polls Closed."
|
299 |
msgstr[0] ""
|
300 |
msgstr[1] ""
|
301 |
|
302 |
+
#: polldaddy.php:981
|
303 |
msgid "Poll updated."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: polldaddy.php:984
|
307 |
msgid "Poll created."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: polldaddy.php:986 polldaddy.php:1427
|
311 |
msgid "Send to Editor"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: polldaddy.php:989
|
315 |
msgid "Custom Style updated."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: polldaddy.php:992
|
319 |
msgid "Custom Style created."
|
320 |
msgstr ""
|
321 |
|
322 |
+
#: polldaddy.php:997
|
323 |
msgid "Custom Style deleted."
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: polldaddy.php:999
|
327 |
#, php-format
|
328 |
msgid "%s Style Deleted."
|
329 |
msgid_plural "%s Custom Styles Deleted."
|
330 |
msgstr[0] ""
|
331 |
msgstr[1] ""
|
332 |
|
333 |
+
#: polldaddy.php:1002
|
334 |
msgid "Account Imported."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: polldaddy.php:1005
|
338 |
msgid "Options Updated."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: polldaddy.php:1010
|
342 |
+
msgid "Rating deleted."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: polldaddy.php:1012
|
346 |
+
#, php-format
|
347 |
+
msgid "%s Rating Deleted."
|
348 |
+
msgid_plural "%s Ratings Deleted."
|
349 |
+
msgstr[0] ""
|
350 |
+
msgstr[1] ""
|
351 |
+
|
352 |
+
#: polldaddy.php:1021
|
353 |
msgid "Error: An error has occurred; Poll not created."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: polldaddy.php:1024
|
357 |
msgid "Error: An error has occurred; Poll not updated."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: polldaddy.php:1028
|
361 |
msgid ""
|
362 |
"Error: An error has occurred; Account could not be imported. Perhaps your "
|
363 |
"email address or password is incorrect?"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: polldaddy.php:1030
|
367 |
msgid "Error: An error has occurred; Account could not be created."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: polldaddy.php:1067
|
371 |
#, php-format
|
372 |
msgid ""
|
373 |
"Poll Preview (<a href=\"%s\">Edit Poll</a>, <a href=\"%s\">List Polls</a>)"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: polldaddy.php:1071
|
377 |
#, php-format
|
378 |
msgid "Poll Preview (<a href=\"%s\">List Polls</a>)"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: polldaddy.php:1081
|
382 |
#, php-format
|
383 |
msgid "Poll Results (<a href=\"%s\">Edit Poll</a>)"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: polldaddy.php:1083
|
387 |
#, php-format
|
388 |
msgid "Poll Results (<a href=\"%s\">List Polls</a>)"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: polldaddy.php:1092
|
392 |
#, php-format
|
393 |
msgid "Edit Poll (<a href=\"%s\">List Polls</a>)"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: polldaddy.php:1101
|
397 |
#, php-format
|
398 |
msgid "Create Poll (<a href=\"%s\">List Polls</a>)"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: polldaddy.php:1111
|
402 |
#, php-format
|
403 |
msgid "Custom Styles (<a href=\"%s\">Add New</a>)"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: polldaddy.php:1121
|
407 |
#, php-format
|
408 |
msgid "Edit Style (<a href=\"%s\">List Styles</a>)"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: polldaddy.php:1130
|
412 |
#, php-format
|
413 |
msgid "Create Style (<a href=\"%s\">List Styles</a>)"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: polldaddy.php:1146
|
417 |
#, php-format
|
418 |
msgid "Polls (<a href=\"%s\">Add New</a>)"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: polldaddy.php:1211
|
422 |
msgid "All Blog's Polls"
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: polldaddy.php:1212
|
426 |
msgid "All My Polls"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: polldaddy.php:1220 polldaddy.php:2127 polldaddy.php:4015
|
430 |
msgid "Actions"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: polldaddy.php:1221 polldaddy.php:1287 polldaddy.php:2128 polldaddy.php:2169
|
434 |
+
#: polldaddy.php:4016 polldaddy.php:4079
|
435 |
msgid "Delete"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: polldaddy.php:1222 polldaddy.php:1294
|
439 |
msgid "Close"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: polldaddy.php:1223 polldaddy.php:1291
|
443 |
msgid "Open"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: polldaddy.php:1225 polldaddy.php:2130 polldaddy.php:4019
|
447 |
msgid "Apply"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: polldaddy.php:1236
|
451 |
msgid "Poll"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: polldaddy.php:1237 polldaddy.php:2031 polldaddy.php:2076 polldaddy.php:3451
|
455 |
+
#: polldaddy.php:4062
|
456 |
msgid "Votes"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: polldaddy.php:1238
|
460 |
msgid "Created"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: polldaddy.php:1285
|
464 |
msgid "Results"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: polldaddy.php:1297 polldaddy.php:1303 polldaddy.php:3434
|
468 |
msgid "Preview"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: polldaddy.php:1299
|
472 |
msgid "Send to editor"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: polldaddy.php:1305
|
476 |
msgid "Share-Embed"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: polldaddy.php:1310 polldaddy.php:2171 polldaddy.php:4087
|
480 |
msgid "Y/m/d g:i:s A"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: polldaddy.php:1310 polldaddy.php:2171
|
484 |
msgid "Y/m/d"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: polldaddy.php:1314
|
488 |
msgid "WordPress Shortcode"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: polldaddy.php:1317
|
492 |
msgid "JavaScript"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: polldaddy.php:1324
|
496 |
msgid "Short URL (Good for Twitter etc.)"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: polldaddy.php:1326
|
500 |
msgid "Facebook URL"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: polldaddy.php:1337
|
504 |
#, php-format
|
505 |
msgid "What are you doing here? <a href=\"%s\">Go back</a>."
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: polldaddy.php:1347
|
509 |
#, php-format
|
510 |
msgid "No polls yet. <a href=\"%s\">Create one</a>"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: polldaddy.php:1349
|
514 |
msgid "No polls yet."
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: polldaddy.php:1364 polldaddy.php:1913 polldaddy.php:3088 polldaddy.php:3756
|
518 |
+
#: polldaddy.php:4137
|
519 |
+
#, php-format
|
520 |
+
msgid "Are you sure you want to delete the rating for \"%s\"?"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: polldaddy.php:1365 polldaddy.php:1914 polldaddy.php:3089 polldaddy.php:3757
|
524 |
+
#: polldaddy.php:4138
|
525 |
+
#, php-format
|
526 |
+
msgid "Are you sure you want to delete \"%s\"?"
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: polldaddy.php:1366 polldaddy.php:1915 polldaddy.php:3090 polldaddy.php:3758
|
530 |
+
#: polldaddy.php:4139
|
531 |
+
msgid "Are you sure you want to delete this answer?"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: polldaddy.php:1367 polldaddy.php:1916 polldaddy.php:3091 polldaddy.php:3759
|
535 |
+
#: polldaddy.php:4140
|
536 |
+
msgid "delete this answer"
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: polldaddy.php:1368 polldaddy.php:1917 polldaddy.php:3092 polldaddy.php:3760
|
540 |
+
#: polldaddy.php:4141
|
541 |
+
msgid "Standard Styles"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: polldaddy.php:1416
|
545 |
msgid "Publish"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: polldaddy.php:1423
|
549 |
msgid "Save Poll"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: polldaddy.php:1438 polldaddy.php:4319
|
553 |
msgid "Poll results"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: polldaddy.php:1443
|
557 |
msgid "Show results to voters"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: polldaddy.php:1443
|
561 |
msgid "Only show percentages"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: polldaddy.php:1443
|
565 |
msgid "Hide all results"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: polldaddy.php:1461 polldaddy.php:4336
|
569 |
msgid "Block repeat voters"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: polldaddy.php:1466
|
573 |
msgid "Don't block repeat voters"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: polldaddy.php:1466
|
577 |
msgid "Block by cookie (recommended)"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: polldaddy.php:1466
|
581 |
msgid "Block by cookie and by IP address"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: polldaddy.php:1481
|
585 |
msgid "Expires: "
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: polldaddy.php:1483 polldaddy.php:4341
|
589 |
msgid "Never"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: polldaddy.php:1484 polldaddy.php:4342
|
593 |
#, php-format
|
594 |
msgid "%d hour"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: polldaddy.php:1485 polldaddy.php:1486 polldaddy.php:1487 polldaddy.php:4343
|
598 |
+
#: polldaddy.php:4344 polldaddy.php:4345
|
599 |
#, php-format
|
600 |
msgid "%d hours"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: polldaddy.php:1488 polldaddy.php:4346
|
604 |
#, php-format
|
605 |
msgid "%d day"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: polldaddy.php:1489 polldaddy.php:4347
|
609 |
#, php-format
|
610 |
msgid "%d week"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: polldaddy.php:1490 polldaddy.php:4348
|
614 |
#, php-format
|
615 |
msgid "%d month"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: polldaddy.php:1492
|
619 |
msgid ""
|
620 |
"Note: Blocking by cookie and IP address can be problematic for some voters."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: polldaddy.php:1507 polldaddy.php:2300
|
624 |
msgid "Answers"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: polldaddy.php:1553
|
628 |
msgid "Add another"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: polldaddy.php:1559
|
632 |
msgid "Multiple choice"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: polldaddy.php:1559
|
636 |
msgid "Randomize answer order"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: polldaddy.php:1559
|
640 |
msgid "Allow other answers"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: polldaddy.php:1559
|
644 |
msgid "'Share This' link"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: polldaddy.php:1608 polldaddy.php:4163
|
648 |
+
msgid "Aluminum Narrow"
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: polldaddy.php:1609 polldaddy.php:4164
|
652 |
+
msgid "Aluminum Medium"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: polldaddy.php:1610 polldaddy.php:4165
|
656 |
+
msgid "Aluminum Wide"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: polldaddy.php:1611 polldaddy.php:4166
|
660 |
+
msgid "Plain White Narrow"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: polldaddy.php:1612 polldaddy.php:4167
|
664 |
+
msgid "Plain White Medium"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: polldaddy.php:1613 polldaddy.php:4168
|
668 |
+
msgid "Plain White Wide"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: polldaddy.php:1614 polldaddy.php:4169
|
672 |
+
msgid "Plain Black Narrow"
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: polldaddy.php:1615 polldaddy.php:4170
|
676 |
+
msgid "Plain Black Medium"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: polldaddy.php:1616 polldaddy.php:4171
|
680 |
+
msgid "Plain Black Wide"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: polldaddy.php:1617 polldaddy.php:4172
|
684 |
+
msgid "Paper Narrow"
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: polldaddy.php:1618 polldaddy.php:4173
|
688 |
+
msgid "Paper Medium"
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: polldaddy.php:1619 polldaddy.php:4174
|
692 |
+
msgid "Paper Wide"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: polldaddy.php:1620 polldaddy.php:4175
|
696 |
+
msgid "Skull Dark Narrow"
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: polldaddy.php:1621 polldaddy.php:4176
|
700 |
+
msgid "Skull Dark Medium"
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: polldaddy.php:1622 polldaddy.php:4177
|
704 |
+
msgid "Skull Dark Wide"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: polldaddy.php:1623 polldaddy.php:4178
|
708 |
+
msgid "Skull Light Narrow"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: polldaddy.php:1624 polldaddy.php:4179
|
712 |
+
msgid "Skull Light Medium"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: polldaddy.php:1625 polldaddy.php:4180
|
716 |
+
msgid "Skull Light Wide"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: polldaddy.php:1626 polldaddy.php:1948 polldaddy.php:2284 polldaddy.php:4181
|
720 |
+
msgid "Micro"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: polldaddy.php:1627 polldaddy.php:4182
|
724 |
+
msgid "Plastic White Narrow"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: polldaddy.php:1628 polldaddy.php:4183
|
728 |
+
msgid "Plastic White Medium"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: polldaddy.php:1629 polldaddy.php:4184
|
732 |
+
msgid "Plastic White Wide"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: polldaddy.php:1630 polldaddy.php:4185
|
736 |
+
msgid "Plastic Grey Narrow"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: polldaddy.php:1631 polldaddy.php:4186
|
740 |
+
msgid "Plastic Grey Medium"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: polldaddy.php:1632 polldaddy.php:4187
|
744 |
+
msgid "Plastic Grey Wide"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: polldaddy.php:1633 polldaddy.php:4188
|
748 |
+
msgid "Plastic Black Narrow"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: polldaddy.php:1634 polldaddy.php:4189
|
752 |
+
msgid "Plastic Black Medium"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: polldaddy.php:1635 polldaddy.php:4190
|
756 |
+
msgid "Plastic Black Wide"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: polldaddy.php:1636 polldaddy.php:4191
|
760 |
+
msgid "Manga Narrow"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: polldaddy.php:1637 polldaddy.php:4192
|
764 |
+
msgid "Manga Medium"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: polldaddy.php:1638 polldaddy.php:4193
|
768 |
+
msgid "Manga Wide"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: polldaddy.php:1639 polldaddy.php:4194
|
772 |
+
msgid "Tech Dark Narrow"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: polldaddy.php:1640 polldaddy.php:4195
|
776 |
+
msgid "Tech Dark Medium"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: polldaddy.php:1641 polldaddy.php:4196
|
780 |
+
msgid "Tech Dark Wide"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: polldaddy.php:1642 polldaddy.php:4197
|
784 |
+
msgid "Tech Grey Narrow"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: polldaddy.php:1643 polldaddy.php:4198
|
788 |
+
msgid "Tech Grey Medium"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: polldaddy.php:1644 polldaddy.php:4199
|
792 |
+
msgid "Tech Grey Wide"
|
793 |
+
msgstr ""
|
794 |
+
|
795 |
+
#: polldaddy.php:1645 polldaddy.php:4200
|
796 |
+
msgid "Tech Light Narrow"
|
797 |
+
msgstr ""
|
798 |
+
|
799 |
+
#: polldaddy.php:1646 polldaddy.php:4201
|
800 |
+
msgid "Tech Light Medium"
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: polldaddy.php:1647 polldaddy.php:4202
|
804 |
+
msgid "Tech Light Wide"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: polldaddy.php:1648 polldaddy.php:4203
|
808 |
+
msgid "Working Male Narrow"
|
809 |
+
msgstr ""
|
810 |
+
|
811 |
+
#: polldaddy.php:1649 polldaddy.php:4204
|
812 |
+
msgid "Working Male Medium"
|
813 |
+
msgstr ""
|
814 |
+
|
815 |
+
#: polldaddy.php:1650 polldaddy.php:4205
|
816 |
+
msgid "Working Male Wide"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: polldaddy.php:1651 polldaddy.php:4206
|
820 |
+
msgid "Working Female Narrow"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
+
#: polldaddy.php:1652 polldaddy.php:4207
|
824 |
+
msgid "Working Female Medium"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: polldaddy.php:1653 polldaddy.php:4208
|
828 |
+
msgid "Working Female Wide"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: polldaddy.php:1654 polldaddy.php:4209
|
832 |
+
msgid "Thinking Male Narrow"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: polldaddy.php:1655 polldaddy.php:4210
|
836 |
+
msgid "Thinking Male Medium"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: polldaddy.php:1656 polldaddy.php:4211
|
840 |
+
msgid "Thinking Male Wide"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: polldaddy.php:1657 polldaddy.php:4212
|
844 |
+
msgid "Thinking Female Narrow"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: polldaddy.php:1658 polldaddy.php:4213
|
848 |
+
msgid "Thinking Female Medium"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: polldaddy.php:1659 polldaddy.php:4214
|
852 |
+
msgid "Thinking Female Wide"
|
853 |
+
msgstr ""
|
854 |
+
|
855 |
+
#: polldaddy.php:1660 polldaddy.php:4215
|
856 |
+
msgid "Sunset Narrow"
|
857 |
+
msgstr ""
|
858 |
+
|
859 |
+
#: polldaddy.php:1661 polldaddy.php:4216
|
860 |
+
msgid "Sunset Medium"
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: polldaddy.php:1662 polldaddy.php:4217
|
864 |
+
msgid "Sunset Wide"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: polldaddy.php:1663 polldaddy.php:4218
|
868 |
+
msgid "Music Medium"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: polldaddy.php:1664 polldaddy.php:4219
|
872 |
+
msgid "Music Wide"
|
873 |
+
msgstr ""
|
874 |
+
|
875 |
+
#: polldaddy.php:1688
|
876 |
msgid "Design"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: polldaddy.php:1769 polldaddy.php:1824
|
880 |
msgid "Custom Style"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: polldaddy.php:1782 polldaddy.php:1878
|
884 |
msgid "Please choose a custom style..."
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: polldaddy.php:1788 polldaddy.php:1884
|
888 |
msgid "Please choose a style."
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: polldaddy.php:1791 polldaddy.php:1887
|
892 |
+
msgid "You currently have no custom styles created."
|
893 |
+
msgstr ""
|
894 |
+
|
895 |
+
#: polldaddy.php:1793 polldaddy.php:1889
|
896 |
#, php-format
|
897 |
msgid ""
|
898 |
"Did you know we have a new editor for building your own custom poll styles? "
|
899 |
"Find out more <a href=\"%s\" target=\"_blank\">here</a>."
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: polldaddy.php:1816
|
903 |
msgid "PollDaddy Style"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: polldaddy.php:1930 polldaddy.php:2278
|
907 |
+
msgid "Aluminum"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: polldaddy.php:1933 polldaddy.php:2279
|
911 |
+
msgid "Plain White"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: polldaddy.php:1936 polldaddy.php:2280
|
915 |
+
msgid "Plain Black"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: polldaddy.php:1939 polldaddy.php:2281
|
919 |
+
msgid "Paper"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: polldaddy.php:1942 polldaddy.php:2282
|
923 |
+
msgid "Skull Dark"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: polldaddy.php:1945 polldaddy.php:2283
|
927 |
+
msgid "Skull Light"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: polldaddy.php:1949 polldaddy.php:1999
|
931 |
+
msgid "Width 150px, the micro style is useful when space is tight."
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: polldaddy.php:1952
|
935 |
+
msgid "Plastic White"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: polldaddy.php:1955
|
939 |
+
msgid "Plastic Grey"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: polldaddy.php:1958
|
943 |
+
msgid "Plastic Black"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: polldaddy.php:1961
|
947 |
+
msgid "Manga"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: polldaddy.php:1964
|
951 |
+
msgid "Tech Dark"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: polldaddy.php:1967
|
955 |
+
msgid "Tech Grey"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: polldaddy.php:1970
|
959 |
+
msgid "Tech Light"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: polldaddy.php:1973
|
963 |
+
msgid "Working Male"
|
964 |
+
msgstr ""
|
965 |
+
|
966 |
+
#: polldaddy.php:1976
|
967 |
+
msgid "Working Female"
|
968 |
+
msgstr ""
|
969 |
+
|
970 |
+
#: polldaddy.php:1979
|
971 |
+
msgid "Thinking Male"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: polldaddy.php:1982
|
975 |
+
msgid "Thinking Female"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: polldaddy.php:1985
|
979 |
+
msgid "Sunset"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: polldaddy.php:1988
|
983 |
+
msgid "Music"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: polldaddy.php:1993
|
987 |
+
msgid "Wide"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: polldaddy.php:1994 polldaddy.php:3529
|
991 |
+
msgid "Medium"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: polldaddy.php:1995
|
995 |
+
msgid "Narrow"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: polldaddy.php:1996
|
999 |
+
msgid "Width: 630px, the wide style is good for blog posts."
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: polldaddy.php:1997
|
1003 |
+
msgid "Width: 300px, the medium style is good for general use."
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: polldaddy.php:1998
|
1007 |
+
msgid "Width 150px, the narrow style is good for sidebars etc."
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: polldaddy.php:2030
|
1011 |
msgid "Answer"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: polldaddy.php:2045
|
1015 |
#, php-format
|
1016 |
msgid "Other (<a href=\"%s\">see below</a>)"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: polldaddy.php:2075 polldaddy.php:4307
|
1020 |
msgid "Other Answer"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: polldaddy.php:2140 polldaddy.php:2525
|
1024 |
msgid "Style"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: polldaddy.php:2141
|
1028 |
msgid "Last Modified"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: polldaddy.php:2181
|
1032 |
#, php-format
|
1033 |
msgid "No custom styles yet. <a href=\"%s\">Create one</a>"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: polldaddy.php:2257
|
1037 |
msgid "Style Name"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: polldaddy.php:2272
|
1041 |
msgid "Preload Basic Style"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: polldaddy.php:2286
|
1045 |
msgid "Load Style"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: polldaddy.php:2292
|
1049 |
+
msgid "Choose a part to edit..."
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: polldaddy.php:2296
|
1053 |
+
msgid "Poll Box"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: polldaddy.php:2297
|
1057 |
+
msgid "Question"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: polldaddy.php:2298
|
1061 |
+
msgid "Answer Group"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: polldaddy.php:2299
|
1065 |
+
msgid "Answer Check"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: polldaddy.php:2301
|
1069 |
+
msgid "Other Input"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: polldaddy.php:2302
|
1073 |
+
msgid "Vote Button"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: polldaddy.php:2303
|
1077 |
+
msgid "Links"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: polldaddy.php:2304
|
1081 |
+
msgid "Result Background"
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: polldaddy.php:2305
|
1085 |
+
msgid "Result Bar"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: polldaddy.php:2306 polldaddy.php:3047
|
1089 |
+
msgid "Total Votes"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: polldaddy.php:2318 polldaddy.php:3602
|
1093 |
+
msgid "Font"
|
1094 |
+
msgstr ""
|
1095 |
+
|
1096 |
+
#: polldaddy.php:2321
|
1097 |
+
msgid "Background"
|
1098 |
+
msgstr ""
|
1099 |
+
|
1100 |
+
#: polldaddy.php:2324
|
1101 |
+
msgid "Border"
|
1102 |
+
msgstr ""
|
1103 |
+
|
1104 |
+
#: polldaddy.php:2327
|
1105 |
+
msgid "Margin"
|
1106 |
+
msgstr ""
|
1107 |
+
|
1108 |
+
#: polldaddy.php:2330
|
1109 |
+
msgid "Padding"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: polldaddy.php:2333 polldaddy.php:2487 polldaddy.php:2901
|
1113 |
+
msgid "Width"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: polldaddy.php:2336 polldaddy.php:2917
|
1117 |
+
msgid "Height"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: polldaddy.php:2349 polldaddy.php:2371
|
1121 |
+
msgid "Font Size"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: polldaddy.php:2386 polldaddy.php:2445 polldaddy.php:2542 polldaddy.php:3616
|
1125 |
+
msgid "Color"
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: polldaddy.php:2392 polldaddy.php:3649
|
1129 |
+
msgid "Bold"
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: polldaddy.php:2398 polldaddy.php:3658
|
1133 |
+
msgid "Italic"
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: polldaddy.php:2404
|
1137 |
+
msgid "Underline"
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: polldaddy.php:2410 polldaddy.php:3635
|
1141 |
+
msgid "Line Height"
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: polldaddy.php:2432 polldaddy.php:3574
|
1145 |
+
msgid "Align"
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: polldaddy.php:2435 polldaddy.php:2705 polldaddy.php:2860 polldaddy.php:3577
|
1149 |
+
msgid "Left"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: polldaddy.php:2436 polldaddy.php:3577
|
1153 |
+
msgid "Center"
|
1154 |
+
msgstr ""
|
1155 |
+
|
1156 |
+
#: polldaddy.php:2437 polldaddy.php:2629 polldaddy.php:2784 polldaddy.php:3577
|
1157 |
+
#: polldaddy.php:3591
|
1158 |
+
msgid "Right"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: polldaddy.php:2451
|
1162 |
+
msgid "Image URL"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: polldaddy.php:2451 polldaddy.php:2901
|
1166 |
+
msgid "Click here for more information"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: polldaddy.php:2457
|
1170 |
+
msgid "Image Repeat"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: polldaddy.php:2460
|
1174 |
+
msgid "repeat"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: polldaddy.php:2461
|
1178 |
+
msgid "no-repeat"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: polldaddy.php:2462
|
1182 |
+
msgid "repeat-x"
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: polldaddy.php:2463
|
1186 |
+
msgid "repeat-y"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: polldaddy.php:2468
|
1190 |
+
msgid "Image Position"
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: polldaddy.php:2471
|
1194 |
+
msgid "left top"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: polldaddy.php:2472
|
1198 |
+
msgid "left center"
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: polldaddy.php:2473
|
1202 |
+
msgid "left bottom"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: polldaddy.php:2474
|
1206 |
+
msgid "center top"
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: polldaddy.php:2475
|
1210 |
+
msgid "center center"
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: polldaddy.php:2476
|
1214 |
+
msgid "center bottom"
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: polldaddy.php:2477
|
1218 |
+
msgid "right top"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: polldaddy.php:2478
|
1222 |
+
msgid "right center"
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: polldaddy.php:2479
|
1226 |
+
msgid "right bottom"
|
1227 |
+
msgstr ""
|
1228 |
+
|
1229 |
+
#: polldaddy.php:2528
|
1230 |
+
msgid "none"
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: polldaddy.php:2529
|
1234 |
+
msgid "solid"
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: polldaddy.php:2530
|
1238 |
+
msgid "dotted"
|
1239 |
+
msgstr ""
|
1240 |
+
|
1241 |
+
#: polldaddy.php:2531
|
1242 |
+
msgid "dashed"
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: polldaddy.php:2532
|
1246 |
+
msgid "double"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: polldaddy.php:2533
|
1250 |
+
msgid "groove"
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: polldaddy.php:2534
|
1254 |
+
msgid "inset"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: polldaddy.php:2535
|
1258 |
+
msgid "outset"
|
1259 |
+
msgstr ""
|
1260 |
+
|
1261 |
+
#: polldaddy.php:2536
|
1262 |
+
msgid "ridge"
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: polldaddy.php:2537
|
1266 |
+
msgid "hidden"
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: polldaddy.php:2548
|
1270 |
+
msgid "Rounded Corners"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: polldaddy.php:2584
|
1274 |
+
msgid "Not supported in Internet Explorer."
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: polldaddy.php:2591 polldaddy.php:2746 polldaddy.php:3591
|
1278 |
+
msgid "Top"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: polldaddy.php:2667 polldaddy.php:2822 polldaddy.php:3591
|
1282 |
+
msgid "Bottom"
|
1283 |
+
msgstr ""
|
1284 |
+
|
1285 |
+
#: polldaddy.php:2909
|
1286 |
+
msgid ""
|
1287 |
+
"If you change the width of the<br/> poll you may also need to change<br/> "
|
1288 |
+
"the width of your answers."
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: polldaddy.php:2944 polldaddy.php:3098
|
1292 |
+
msgid "Do you mostly use the internet at work, in school or at home?"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: polldaddy.php:2957
|
1296 |
+
msgid "I use it in school."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: polldaddy.php:2965 polldaddy.php:3017
|
1300 |
+
msgid "I use it at home."
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: polldaddy.php:2973 polldaddy.php:3026
|
1304 |
+
msgid ""
|
1305 |
+
"I use it every where I go, at work and home and anywhere else that I can!"
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: polldaddy.php:2981 polldaddy.php:3035
|
1309 |
+
msgid "Other"
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: polldaddy.php:2993 polldaddy.php:3447
|
1313 |
+
msgid "Vote"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: polldaddy.php:2995
|
1317 |
+
msgid "View Results"
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: polldaddy.php:3008
|
1321 |
+
msgid "I use it in school!"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: polldaddy.php:3008 polldaddy.php:3017 polldaddy.php:3026 polldaddy.php:3035
|
1325 |
+
#, php-format
|
1326 |
+
msgid "(%d votes)"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: polldaddy.php:3053 polldaddy.php:3308 polldaddy.php:4022
|
1330 |
+
msgid "Comments"
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: polldaddy.php:3055
|
1334 |
+
msgid "Return To Poll"
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: polldaddy.php:3076
|
1338 |
msgid "Save Style"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: polldaddy.php:3078
|
1342 |
+
msgid "Check this box if you wish to update the polls that use this style."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: polldaddy.php:3097
|
1346 |
+
msgid "Thank you for voting!"
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: polldaddy.php:3186
|
1350 |
#, php-format
|
1351 |
msgid ""
|
1352 |
"Sorry! There was an error creating your rating widget. Please contact <a "
|
1353 |
"href=\"%1$s\" %2$s>PollDaddy support</a> to fix this."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: polldaddy.php:3286
|
1357 |
msgid "Rating Settings"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: polldaddy.php:3288
|
1361 |
msgid "Rating updated"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: polldaddy.php:3300 polldaddy.php:4022
|
1365 |
msgid "Posts"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: polldaddy.php:3304 polldaddy.php:4022
|
1369 |
msgid "Pages"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: polldaddy.php:3319
|
|
|
|
|
|
|
|
|
1373 |
msgid "Enable for blog posts"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: polldaddy.php:3323 polldaddy.php:3341
|
1377 |
msgid "Above each blog post"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: polldaddy.php:3323 polldaddy.php:3341
|
1381 |
msgid "Below each blog post"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: polldaddy.php:3337
|
1385 |
msgid "Enable for front page"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: polldaddy.php:3357
|
1389 |
msgid "Enable for pages"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: polldaddy.php:3361
|
1393 |
msgid "Above each page"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: polldaddy.php:3361
|
1397 |
msgid "Below each page"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: polldaddy.php:3377
|
1401 |
msgid "Enable for comments"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: polldaddy.php:3381
|
1405 |
msgid "Above each comment"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: polldaddy.php:3381
|
1409 |
msgid "Below each comment"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: polldaddy.php:3396 polldaddy.php:3427
|
1413 |
msgid "Save Changes"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: polldaddy.php:3407
|
1417 |
msgid "Advanced Settings"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: polldaddy.php:3420
|
1421 |
msgid "Save"
|
1422 |
msgstr ""
|
1423 |
|
1424 |
+
#: polldaddy.php:3436
|
1425 |
msgid "This is a demo of what your rating widget will look like"
|
1426 |
msgstr ""
|
1427 |
|
1428 |
+
#: polldaddy.php:3443
|
1429 |
msgid "Customize Labels"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: polldaddy.php:3455
|
1433 |
+
msgid "Rate This"
|
|
|
|
|
|
|
|
|
1434 |
msgstr ""
|
1435 |
|
1436 |
+
#: polldaddy.php:3459
|
1437 |
#, php-format
|
1438 |
msgid "%d star"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: polldaddy.php:3463 polldaddy.php:3467 polldaddy.php:3471 polldaddy.php:3475
|
1442 |
#, php-format
|
1443 |
msgid "%d stars"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: polldaddy.php:3479
|
1447 |
msgid "Thank You"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: polldaddy.php:3483
|
1451 |
msgid "Rate Up"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: polldaddy.php:3487
|
1455 |
msgid "Rate Down"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: polldaddy.php:3496
|
1459 |
msgid "Rating Type"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: polldaddy.php:3498
|
1463 |
msgid ""
|
1464 |
"Here you can choose how you want your rating to display. The 5 star rating "
|
1465 |
"is the most commonly used. The Nero rating is useful for keeping it simple."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: polldaddy.php:3506
|
1469 |
#, php-format
|
1470 |
msgid "%d Star Rating"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
+
#: polldaddy.php:3515
|
1474 |
msgid "Nero Rating"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: polldaddy.php:3522
|
1478 |
msgid "Rating Style"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: polldaddy.php:3529
|
1482 |
msgid "Small"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: polldaddy.php:3529
|
|
|
|
|
|
|
|
|
1486 |
msgid "Large"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: polldaddy.php:3540
|
1490 |
msgid "Star Color"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: polldaddy.php:3543
|
1494 |
msgid "Yellow"
|
1495 |
msgstr ""
|
1496 |
|
1497 |
+
#: polldaddy.php:3543
|
1498 |
msgid "Red"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: polldaddy.php:3543
|
1502 |
msgid "Blue"
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: polldaddy.php:3543
|
1506 |
msgid "Green"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: polldaddy.php:3543
|
1510 |
msgid "Grey"
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: polldaddy.php:3552
|
1514 |
msgid "Hand"
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: polldaddy.php:3563
|
1518 |
msgid "Custom Image"
|
1519 |
msgstr ""
|
1520 |
|
1521 |
+
#: polldaddy.php:3570
|
1522 |
msgid "Text Layout & Font"
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: polldaddy.php:3588
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1526 |
msgid "Position"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: polldaddy.php:3605 polldaddy.php:3624 polldaddy.php:3638
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1530 |
msgid "Inherit"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: polldaddy.php:3621
|
|
|
|
|
|
|
|
|
1534 |
msgid "Size"
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: polldaddy.php:3671 polldaddy.php:3702 polldaddy.php:3732
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1538 |
msgid "Extra Settings"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: polldaddy.php:3675 polldaddy.php:3706 polldaddy.php:3736
|
1542 |
msgid "Rating ID"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: polldaddy.php:3681
|
1546 |
msgid "This is the rating ID used in posts"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: polldaddy.php:3686
|
1550 |
msgid "Exclude Posts"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: polldaddy.php:3692
|
1554 |
msgid ""
|
1555 |
"Enter the Post IDs where you want to exclude ratings from. Please use a "
|
1556 |
"comma-delimited list, eg. 1,2,3"
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: polldaddy.php:3712
|
1560 |
msgid "This is the rating ID used in pages"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: polldaddy.php:3717
|
1564 |
msgid "Exclude Pages"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: polldaddy.php:3723
|
1568 |
msgid ""
|
1569 |
"Enter the Page IDs where you want to exclude ratings from. Please use a "
|
1570 |
"comma-delimited list, eg. 1,2,3"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: polldaddy.php:3742
|
1574 |
msgid "This is the rating ID used in comments"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: polldaddy.php:4002
|
1578 |
msgid "«"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: polldaddy.php:4003
|
1582 |
msgid "»"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: polldaddy.php:4009
|
1586 |
msgid "Rating Reports"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: polldaddy.php:4031
|
|
|
|
|
|
|
|
|
1590 |
msgid "Last 24 hours"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: polldaddy.php:4031
|
1594 |
msgid "Last 7 days"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: polldaddy.php:4031
|
1598 |
msgid "Last 31 days"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: polldaddy.php:4031
|
1602 |
msgid "Last 3 months"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: polldaddy.php:4031
|
1606 |
msgid "Last 12 months"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: polldaddy.php:4031
|
1610 |
msgid "All time"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: polldaddy.php:4039
|
1614 |
+
msgid "Filter"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: polldaddy.php:4052
|
1618 |
#, php-format
|
1619 |
msgid "No ratings have been collected for your %s yet."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: polldaddy.php:4060
|
1623 |
+
msgid "Unique ID"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: polldaddy.php:4061
|
1627 |
msgid "Start Date"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: polldaddy.php:4063
|
1631 |
msgid "Average Rating"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: polldaddy.php:4240
|
1635 |
msgid "PollDaddy Account Info"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: polldaddy.php:4243
|
1639 |
msgid ""
|
1640 |
"This is the PollDadddy account you currently have imported into your "
|
1641 |
"WordPress account"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: polldaddy.php:4274
|
1645 |
msgid "Import Account"
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: polldaddy.php:4280
|
1649 |
msgid "General Settings"
|
1650 |
msgstr ""
|
1651 |
|
1652 |
+
#: polldaddy.php:4288
|
1653 |
msgid "Default poll settings"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: polldaddy.php:4297
|
1657 |
msgid "Multiple Choice"
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: polldaddy.php:4302
|
1661 |
msgid "Randomise Answers"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: polldaddy.php:4312
|
1665 |
msgid "Sharing"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: polldaddy.php:4316
|
1669 |
msgid "Show"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: polldaddy.php:4317
|
1673 |
msgid "Hide"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: polldaddy.php:4318
|
1677 |
msgid "Percentages"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: polldaddy.php:4328
|
1681 |
msgid "Poll style"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: polldaddy.php:4333
|
1685 |
msgid "Off"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: polldaddy.php:4334
|
1689 |
msgid "Cookie"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: polldaddy.php:4335
|
1693 |
msgid "Cookie & IP address"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: polldaddy.php:4349
|
1697 |
msgid "Block expiration limit"
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: polldaddy.php:4361
|
1701 |
msgid "Save Options"
|
1702 |
msgstr ""
|
1703 |
|
readme.txt
CHANGED
@@ -1,24 +1,15 @@
|
|
1 |
=== PollDaddy Polls & Ratings ===
|
2 |
-
Contributors: mdawaffe, eoigal
|
3 |
-
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
Requires at least: 2.6
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 1.8.
|
7 |
|
8 |
Create and manage PollDaddy polls and ratings from within WordPress.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
-
The PollDaddy Polls and Ratings plugin allows you to create and manage polls and ratings from within your WordPress dashboard.
|
13 |
-
You can create polls, choose from 20 different styles for your polls, and view all results for your polls as they come in.
|
14 |
-
|
15 |
-
All PollDaddy polls are fully customizable, you can set a close date for your poll, create multiple choice polls, choose whether
|
16 |
-
to display the results or keep them private. You can also create your own custom style for your poll. You can even embed the polls
|
17 |
-
you create on other websites. You can collect unlimited votes and create unlimited polls.
|
18 |
-
|
19 |
-
The new ratings menu allows you to embed ratings into your posts, pages or comments. The rating editor allows you to fully
|
20 |
-
customize you rating. You can also avail of the the 'Top Rated' widget that will allow you to place the widget in your
|
21 |
-
sidebar. This widget will show you the top rated posts, pages and comments today, this week and this month.
|
22 |
|
23 |
PollDaddy Polls is localizable and currently available in:
|
24 |
|
@@ -73,6 +64,13 @@ More info here - http://codex.wordpress.org/Theme_Development#Plugin_API_Hooks
|
|
73 |
You need to select the synchronize ratings account in the Options menu to make sure the ratings API key is valid.
|
74 |
|
75 |
== Change Log ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
= 1.8.7 =
|
77 |
* Added delete option to rating reports to allow you to reset ratings results for posts/pages/comments
|
78 |
* Tidied poll and rating reports tables to use WordPress standard tables
|
1 |
=== PollDaddy Polls & Ratings ===
|
2 |
+
Contributors: mdawaffe, eoigal
|
3 |
+
Tags: polls, poll, polldaddy, wppolls, vote, polling, surveys, rate, rating, ratings
|
4 |
Requires at least: 2.6
|
5 |
+
Tested up to: 2.9.2
|
6 |
+
Stable tag: 1.8.8
|
7 |
|
8 |
Create and manage PollDaddy polls and ratings from within WordPress.
|
9 |
|
10 |
== Description ==
|
11 |
|
12 |
+
The PollDaddy Polls and Ratings plugin allows you to create and manage polls and ratings from within your WordPress dashboard. You can create polls, choose from 20 different styles for your polls, and view all results for your polls as they come in. All PollDaddy polls are fully customizable, you can set a close date for your poll, create multiple choice polls, choose whether to display the results or keep them private. You can also create your own custom style for your poll. You can even embed the polls you create on other websites. You can collect unlimited votes and create unlimited polls. The new ratings menu allows you to embed ratings into your posts, pages or comments. The rating editor allows you to fully customize you rating. You can also avail of the the 'Top Rated' widget that will allow you to place the widget in your sidebar. This widget will show you the top rated posts, pages and comments today, this week and this month.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
PollDaddy Polls is localizable and currently available in:
|
15 |
|
64 |
You need to select the synchronize ratings account in the Options menu to make sure the ratings API key is valid.
|
65 |
|
66 |
== Change Log ==
|
67 |
+
= 1.8.8 =
|
68 |
+
* Updated style editor to catch some missing strings so they can be now be localised
|
69 |
+
* Added string maps to javascript files to allow them to be localised
|
70 |
+
* Added extra label to ratings settings, vote, so now the label votes has a singular expression for localisation.
|
71 |
+
* Added option to style editor to update all polls that use this style, so any update to style will automatically be reflected in the poll.
|
72 |
+
* Bug Fix: Embed options are now in readonly text inputs, resolves issue of pre tags being pasted along with embed code/URL in the HTML editor.
|
73 |
+
|
74 |
= 1.8.7 =
|
75 |
* Added delete option to rating reports to allow you to reset ratings results for posts/pages/comments
|
76 |
* Tidied poll and rating reports tables to use WordPress standard tables
|