Changeset 41988
- Timestamp:
- 04/21/08 14:26:54 (3 months ago)
- Location:
- wp-polls/trunk
- Files:
-
- 6 modified
-
polls-css.css (modified) (2 diffs)
-
polls-templates.php (modified) (5 diffs)
-
readme.html (modified) (1 diff)
-
wp-polls.mo (modified) (previous)
-
wp-polls.php (modified) (4 diffs)
-
wp-polls.pot (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-polls/trunk/polls-css.css
r35561 r41988 56 56 text-align: center; 57 57 height: 16px; 58 line-height: 16px; 58 59 } 59 60 .wp-polls-image { … … 64 65 background-color: #f3f6f8; 65 66 } 67 /* Polls Archive Paging */ 68 .wp-polls-paging a, .wp-polls-paging a:link { 69 padding: 2px 4px 2px 4px; 70 margin: 2px; 71 text-decoration: none; 72 border: 1px solid #0066cc; 73 color: #0066cc; 74 background-color: #FFFFFF; 75 } 76 .wp-polls-paging a:visited { 77 padding: 2px 4px 2px 4px; 78 margin: 2px; 79 text-decoration: none; 80 border: 1px solid #0066cc; 81 color: #0066cc; 82 background-color: #FFFFFF; 83 } 84 .wp-polls-paging a:hover { 85 border: 1px solid #000000; 86 color: #000000; 87 background-color: #FFFFFF; 88 } 89 .wp-polls-paging a:active { 90 padding: 2px 4px 2px 4px; 91 margin: 2px; 92 text-decoration: none; 93 border: 1px solid #0066cc; 94 color: #0066cc; 95 background-color: #FFFFFF; 96 } 97 .wp-polls-paging span.pages { 98 padding: 2px 4px 2px 4px; 99 margin: 2px 2px 2px 2px; 100 color: #000000; 101 border: 1px solid #000000; 102 background-color: #FFFFFF; 103 } 104 .wp-polls-paging span.current { 105 padding: 2px 4px 2px 4px; 106 margin: 2px; 107 font-weight: bold; 108 border: 1px solid #000000; 109 color: #000000; 110 background-color: #FFFFFF; 111 } 112 .wp-polls-paging span.extend { 113 padding: 2px 4px 2px 4px; 114 margin: 2px; 115 border: 1px solid #000000; 116 color: #000000; 117 background-color: #FFFFFF; 118 } 66 119 /* Styles Used In WP-Admin */ 67 .wp-polls-usage-pre {68 margin: 20px;69 padding: 10px;70 border: 1px solid #c8c8c8;71 background-color: #f0f0f0;72 overflow: auto;73 }74 120 #wp-polls-pollbar-bg { 75 121 width: 25px; -
wp-polls/trunk/polls-templates.php
r36832 r41988 43 43 $poll_template_pollarchiveheader = trim($_POST['poll_template_pollarchiveheader']); 44 44 $poll_template_pollarchivefooter = trim($_POST['poll_template_pollarchivefooter']); 45 $poll_template_pollarchivepagingheader = trim($_POST['poll_template_pollarchivepagingheader']); 46 $poll_template_pollarchivepagingfooter = trim($_POST['poll_template_pollarchivepagingfooter']); 45 47 $poll_template_disable = trim($_POST['poll_template_disable']); 46 48 $poll_template_error = trim($_POST['poll_template_error']); … … 58 60 $update_poll_queries[] = update_option('poll_template_pollarchiveheader', $poll_template_pollarchiveheader); 59 61 $update_poll_queries[] = update_option('poll_template_pollarchivefooter', $poll_template_pollarchivefooter); 62 $update_poll_queries[] = update_option('poll_template_pollarchivepagingheader', $poll_template_pollarchivepagingheader); 63 $update_poll_queries[] = update_option('poll_template_pollarchivepagingfooter', $poll_template_pollarchivepagingfooter); 60 64 $update_poll_queries[] = update_option('poll_template_disable', $poll_template_disable); 61 65 $update_poll_queries[] = update_option('poll_template_error', $poll_template_error); … … 71 75 $update_poll_text[] = __('Poll Archive Poll Header Template', 'wp-polls'); 72 76 $update_poll_text[] = __('Poll Archive Poll Footer Template', 'wp-polls'); 77 $update_poll_text[] = __('Poll Archive Paging Header Template', 'wp-polls'); 78 $update_poll_text[] = __('Poll Archive Paging Footer Template', 'wp-polls'); 73 79 $update_poll_text[] = __('Poll Disabled Template', 'wp-polls'); 74 80 $update_poll_text[] = __('Poll Error Template', 'wp-polls'); … … 128 134 default_template = "<p><?php _e('Start Date:', 'wp-polls'); ?> %POLL_START_DATE%<br /><?php _e('End Date:', 'wp-polls'); ?> %POLL_END_DATE%</p>"; 129 135 break; 136 case "pollarchivepagingheader": 137 default_template = ""; 138 break; 139 case "pollarchivepagingfooter": 140 default_template = ""; 141 break; 130 142 case "disable": 131 143 default_template = "<?php _e('Sorry, there are no polls available at the moment.', 'wp-polls'); ?>"; … … 435 447 <td align="left"><textarea cols="80" rows="15" id="poll_template_pollarchivefooter" name="poll_template_pollarchivefooter"><?php echo htmlspecialchars(stripslashes(get_option('poll_template_pollarchivefooter'))); ?></textarea></td> 436 448 </tr> 449 <tr> 450 <td width="30%" align="left"> 451 <strong><?php _e('Paging Header', 'wp-polls'); ?></strong><br /><?php _e('Displayed Before Paging In The Poll Archive', 'wp-polls'); ?><br /><br /> 452 <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> 453 - <?php _e('N/A', 'wp-polls'); ?><br /> 454 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchivepagingheader');" class="button" /> 455 </td> 456 <td align="left"><textarea cols="80" rows="15" id="poll_template_pollarchivepagingheader" name="poll_template_pollarchivepagingheader"><?php echo htmlspecialchars(stripslashes(get_option('poll_template_pollarchivepagingheader'))); ?></textarea></td> 457 </tr> 458 <tr> 459 <td width="30%" align="left"> 460 <strong><?php _e('Paging Footer', 'wp-polls'); ?></strong><br /><?php _e('Displayed After Paging In The Poll Archive', 'wp-polls'); ?><br /><br /> 461 <?php _e('Allowed Variables:', 'wp-polls'); ?><br /> 462 - <?php _e('N/A', 'wp-polls'); ?><br /> 463 <input type="button" name="RestoreDefault" value="<?php _e('Restore Default Template', 'wp-polls'); ?>" onclick="poll_default_templates('pollarchivepagingfooter');" class="button" /> 464 </td> 465 <td align="left"><textarea cols="80" rows="15" id="poll_template_pollarchivepagingfooter" name="poll_template_pollarchivepagingfooter"><?php echo htmlspecialchars(stripslashes(get_option('poll_template_pollarchivepagingfooter'))); ?></textarea></td> 466 </tr> 437 467 </table> 438 468 -
wp-polls/trunk/readme.html
r41123 r41988 284 284 <ul> 285 285 <li>NEW: Works For WordPress 2.5 Only</li> 286 <li>NEW: Added Paging Header And Footer Template For Polls Archive Page</li> 287 <li>NEW: Uses WP-PageNavi Style Paging For Polls Archive Page</li> 286 288 <li>NEW: WP-Polls Will Load 'polls-css.css' Inside Your Theme Directory If It Exists. If Not, It Will Just Load The Default 'polls-css.css' By WP-Polls</li> 287 289 <li>NEW: Uses Shortcode API</li> -
wp-polls/trunk/wp-polls.php
r41123 r41988 176 176 echo '</script>'."\n"; 177 177 wp_print_scripts(array('sack', 'wp-polls')); 178 if(@file_exists( get_template_directory().'/polls-css.css')) {178 if(@file_exists(TEMPLATEPATH.'/polls-css.css')) { 179 179 echo '<link rel="stylesheet" href="'.get_stylesheet_directory_uri().'/polls-css.css" type="text/css" media="screen" />'."\n"; 180 180 } else { … … 829 829 $total_polls = $wpdb->get_var("SELECT COUNT(pollq_id) FROM $wpdb->pollsq WHERE $polls_type_sql AND pollq_active != -1"); 830 830 831 // Checking $page and $offset 832 if (empty($page) || $page == 0) { $page = 1; } 833 if (empty($offset)) { $offset = 0; } 834 835 // Determin $offset 836 $offset = ($page-1) * $polls_perpage; 837 838 // Determine Max Number Of Polls To Display On Page 839 if(($offset + $polls_perpage) > $total_polls) { 840 $max_on_page = $total_polls; 831 // Calculate Paging 832 $numposts = $total_polls; 833 $perpage = $polls_perpage; 834 $max_page = ceil($numposts/$perpage); 835 if(empty($page) || $page == 0) { 836 $page = 1; 837 } 838 $offset = ($page-1) * $perpage; 839 $pages_to_show = 10; 840 $pages_to_show_minus_1 = $pages_to_show-1; 841 $half_page_start = floor($pages_to_show_minus_1/2); 842 $half_page_end = ceil($pages_to_show_minus_1/2); 843 $start_page = $page - $half_page_start; 844 if($start_page <= 0) { 845 $start_page = 1; 846 } 847 $end_page = $page + $half_page_end; 848 if(($end_page - $start_page) != $pages_to_show_minus_1) { 849 $end_page = $start_page + $pages_to_show_minus_1; 850 } 851 if($end_page > $max_page) { 852 $start_page = $max_page - $pages_to_show_minus_1; 853 $end_page = $max_page; 854 } 855 if($start_page <= 0) { 856 $start_page = 1; 857 } 858 if(($offset + $perpage) > $numposts) { 859 $max_on_page = $numposts; 841 860 } else { 842 $max_on_page = ($offset + $polls_perpage); 843 } 844 845 // Determine Number Of Polls To Display On Page 846 if (($offset + 1) > ($total_polls)) { 847 $display_on_page = $total_polls; 861 $max_on_page = ($offset + $perpage); 862 } 863 if (($offset + 1) > ($numposts)) { 864 $display_on_page = $numposts; 848 865 } else { 849 866 $display_on_page = ($offset + 1); 850 867 } 851 852 // Determing Total Amount Of Pages 853 $total_pages = ceil($total_polls / $polls_perpage); 854 868 855 869 // Get Poll Questions 856 870 $questions = $wpdb->get_results("SELECT * FROM $wpdb->pollsq WHERE $polls_type_sql ORDER BY pollq_id DESC LIMIT $offset, $polls_perpage"); … … 1018 1032 1019 1033 // Polls Archive Paging 1020 if($total_pages > 1) { 1021 // Output Previous Page 1022 $pollsarchive_output_archive .= "<p>\n"; 1023 $pollsarchive_output_archive .= "<span style=\"float: left;\">\n"; 1024 if($page > 1 && ((($page*$polls_perpage)-($polls_perpage-1)) <= $total_polls)) { 1025 $pollsarchive_output_archive .= '<strong>«</strong> <a href="'.polls_archive_link($page-1).'" title="« '.__('Previous Page', 'wp-polls').'">'.__('Previous Page', 'wp-polls').'</a>'; 1026 } else { 1027 $pollsarchive_output_archive .= ' '; 1028 } 1029 $pollsarchive_output_archive .= "</span>\n"; 1030 // Output Next Page 1031 $pollsarchive_output_archive .= "<span style=\"float: right;\">\n"; 1032 if($page >= 1 && ((($page*$polls_perpage)+1) <= $total_polls)) { 1033 $pollsarchive_output_archive .= '<a href="'.polls_archive_link($page+1).'" title="'.__('Next Page', 'wp-polls').' »">'.__('Next Page', 'wp-polls').'</a> <strong>»</strong>'; 1034 } else { 1035 $pollsarchive_output_archive .= ' '; 1036 } 1037 $pollsarchive_output_archive .= "</span>\n"; 1038 // Output Pages 1039 $pollsarchive_output_archive .= "</p>\n"; 1040 $pollsarchive_output_archive .= "<br style=\"clear: both;\" />\n"; 1041 $pollsarchive_output_archive .= "<p style=\"text-align: center;\">\n"; 1042 $pollsarchive_output_archive .= __('Pages', 'wp-polls')." ($total_pages): "; 1043 if ($page >= 4) { 1044 $pollsarchive_output_archive .= '<strong><a href="'.polls_archive_link(1).'" title="'.__('Go to First Page', 'wp-polls').'">« '.__('First', 'wp-polls').'</a></strong> ... '; 1034 if($max_page > 1) { 1035 $pollsarchive_output_archive .= stripslashes(get_option('poll_template_pollarchivepagingheader')); 1036 if(function_exists('wp_pagenavi')) { 1037 $pollsarchive_output_archive .= '<div class="wp-pagenavi">'."\n"; 1038 } else { 1039 $pollsarchive_output_archive .= '<div class="wp-polls-paging">'."\n"; 1040 } 1041 $pollsarchive_output_archive .= '<span class="pages">'.sprintf(__('Page %s of %s', 'wp-polls'), $page, $max_page).'</span>'; 1042 if ($start_page >= 2 && $pages_to_show < $max_page) { 1043 $pollsarchive_output_archive .= '<a href="'.polls_archive_link(1).'" title="'.__('« First', 'wp-polls').'">'.__('« First', 'wp-polls').'</a>'; 1044 $pollsarchive_output_archive .= '<span class="extend">...</span>'; 1045 1045 } 1046 1046 if($page > 1) { 1047 $pollsarchive_output_archive .= ' <strong><a href="'.polls_archive_link($page-1).'" title="« '.__('Go to Page', 'wp-polls').' '.($page-1).'">«</a></strong>';1048 } 1049 for($i = $ page - 2 ; $i <= $page +2; $i++) {1050 if ($i >= 1 && $i <= $total_pages) {1051 if($i == $page) {1052 $pollsarchive_output_archive .= "<strong>[$i]</strong> ";1053 } else {1054 $pollsarchive_output_archive .= '<a href="'.polls_archive_link($i).'" title="'.__('Page', 'wp-polls').' '.$i.'">'.$i.'</a> ';1055 }1056 }1057 }1058 if($page < $total_pages) {1059 $pollsarchive_output_archive .= ' <strong><a href="'.polls_archive_link($page+1).'" title="'.__('Go to Page', 'wp-polls').' '.($page+1).' »">»</a></strong> ';1060 }1061 if (($page+2) < $total_pages) {1062 $pollsarchive_output_archive .= ' ... <strong><a href="'.polls_archive_link($total_pages).'" title="'.__('Go to Last Page', 'wp-polls').'">'.__('Last', 'wp-polls').' »</a></strong>';1063 }1064 $pollsarchive_output_archive .= "</p>\n";1047 $pollsarchive_output_archive .= '<a href="'.polls_archive_link(($page-1)).'" title="'.__('«', 'wp-polls').'">'.__('«', 'wp-polls').'</a>'; 1048 } 1049 for($i = $start_page; $i <= $end_page; $i++) { 1050 if($i == $page) { 1051 $pollsarchive_output_archive .= '<span class="current">'.$i.'</span>'; 1052 } else { 1053 $pollsarchive_output_archive .= '<a href="'.polls_archive_link($i).'" title="'.$i.'">'.$i.'</a>'; 1054 } 1055 } 1056 if(empty($page) || ($page+1) <= $max_page) { 1057 $pollsarchive_output_archive .= '<a href="'.polls_archive_link(($page+1)).'" title="'.__('»', 'wp-polls').'">'.__('»', 'wp-polls').'</a>'; 1058 } 1059 if ($end_page < $max_page) { 1060 $pollsarchive_output_archive .= '<span class="extend">...</span>'; 1061 $pollsarchive_output_archive .= '<a href="'.polls_archive_link($max_page).'" title="'.__('Last »', 'wp-polls').'">'.__('Last »', 'wp-polls').'</a>'; 1062 } 1063 $pollsarchive_output_archive .= '</div>'; 1064 $pollsarchive_output_archive .= stripslashes(get_option('poll_template_pollarchivepagingfooter')); 1065 1065 } 1066 1066 … … 1410 1410 } 1411 1411 // Database Upgrade For WP-Polls 2.30 1412 add_option('poll_cookielog_expiry', 0, 'Cookie And Log Expiry Time'); 1412 add_option('poll_cookielog_expiry', 0, 'Cookie And Log Expiry Time'); 1413 add_option('poll_template_pollarchivepagingheader', '', 'Displayed Before Paging In The Poll Archive'); 1414 add_option('poll_template_pollarchivepagingfooter', '', 'Displayed After Paging In The Poll Archive'); 1413 1415 // Set 'manage_polls' Capabilities To Administrator 1414 1416 $role = get_role('administrator'); -
wp-polls/trunk/wp-polls.pot
r41123 r41988 3 3 "Project-Id-Version: WP-Polls 2.30\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2008-04- 17 17:25+0800\n"6 "PO-Revision-Date: 2008-04- 17 17:25+0800\n"5 "POT-Creation-Date: 2008-04-21 22:14+0800\n" 6 "PO-Revision-Date: 2008-04-21 22:14+0800\n" 7 7 "Last-Translator: Lester Chan <lesterchan@gmail.com>\n" 8 8 "Language-Team: Lester Chan <lesterchan@gmail.com>\n" … … 387 387 #: wp-polls.php:520 388 388 #: wp-polls.php:525 389 #: wp-polls.php: 896390 #: wp-polls.php:9 00389 #: wp-polls.php:910 390 #: wp-polls.php:914 391 391 #, php-format 392 392 msgid "%s @ %s" … … 535 535 #: polls-manager.php:465 536 536 #: polls-manager.php:576 537 #: polls-templates.php:1 16538 #: polls-templates.php:1 19537 #: polls-templates.php:122 538 #: polls-templates.php:125 539 539 #: wp-polls.php:1370 540 540 #: wp-polls.php:1373 … … 553 553 #: wp-polls.php:407 554 554 #: wp-polls.php:523 555 #: wp-polls.php: 898555 #: wp-polls.php:912 556 556 msgid "No Expiry" 557 557 msgstr "" … … 693 693 694 694 #: polls-options.php:89 695 #: polls-templates.php: 79695 #: polls-templates.php:85 696 696 msgid "Updated" 697 697 msgstr "" 698 698 699 699 #: polls-options.php:94 700 #: polls-templates.php: 84700 #: polls-templates.php:90 701 701 msgid "No Poll Option Updated" 702 702 msgstr "" … … 785 785 786 786 #: polls-options.php:251 787 #: polls-templates.php:11 0788 #: polls-templates.php:11 3787 #: polls-templates.php:116 788 #: polls-templates.php:119 789 789 #: wp-polls.php:1367 790 790 #: wp-polls.php:1368 … … 936 936 937 937 #: polls-options.php:392 938 #: polls-templates.php:4 62938 #: polls-templates.php:492 939 939 msgid "Save Changes" 940 940 msgstr "" 941 941 942 #: polls-templates.php:6 2942 #: polls-templates.php:66 943 943 msgid "Voting Form Header Template" 944 944 msgstr "" 945 945 946 #: polls-templates.php:6 3946 #: polls-templates.php:67 947 947 msgid "Voting Form Body Template" 948 948 msgstr "" 949 949 950 #: polls-templates.php:6 4950 #: polls-templates.php:68 951 951 msgid "Voting Form Footer Template" 952 952 msgstr "" 953 953 954 #: polls-templates.php:6 5954 #: polls-templates.php:69 955 955 msgid "Result Header Template" 956 956 msgstr "" 957 957 958 #: polls-templates.php: 66958 #: polls-templates.php:70 959 959 msgid "Result Body Template" 960 960 msgstr "" 961 961 962 #: polls-templates.php: 67962 #: polls-templates.php:71 963 963 msgid "Result Body2 Template" 964 964 msgstr "" 965 965 966 #: polls-templates.php: 68966 #: polls-templates.php:72 967 967 msgid "Result Footer Template" 968 968 msgstr "" 969 969 970 #: polls-templates.php: 69970 #: polls-templates.php:73 971 971 msgid "Result Footer2 Template" 972 972 msgstr "" 973 973 974 #: polls-templates.php:7 0974 #: polls-templates.php:74 975 975 msgid "Poll Archive Link Template" 976 976 msgstr "" 977 977 978 #: polls-templates.php:7 1978 #: polls-templates.php:75 979 979 msgid "Poll Archive Poll Header Template" 980 980 msgstr "" 981 981 982 #: polls-templates.php:7 2982 #: polls-templates.php:76 983 983 msgid "Poll Archive Poll Footer Template" 984 984 msgstr "" 985 985 986 #: polls-templates.php:73 986 #: polls-templates.php:77 987 msgid "Poll Archive Paging Header Template" 988 msgstr "" 989 990 #: polls-templates.php:78 991 msgid "Poll Archive Paging Footer Template" 992 msgstr "" 993 994 #: polls-templates.php:79 987 995 msgid "Poll Disabled Template" 988 996 msgstr "" 989 997 990 #: polls-templates.php: 74998 #: polls-templates.php:80 991 999 msgid "Poll Error Template" 992 1000 msgstr "" 993 1001 994 #: polls-templates.php:1 04995 #: polls-templates.php:1 191002 #: polls-templates.php:110 1003 #: polls-templates.php:125 996 1004 #: wp-polls.php:1361 997 1005 #: wp-polls.php:1374 … … 999 1007 msgstr "" 1000 1008 1001 #: polls-templates.php:1 041009 #: polls-templates.php:110 1002 1010 #: wp-polls.php:1362 1003 1011 msgid "View Results Of This Poll" 1004 1012 msgstr "" 1005 1013 1006 #: polls-templates.php:1 041014 #: polls-templates.php:110 1007 1015 #: wp-polls.php:1362 1008 1016 msgid "View Results" 1009 1017 msgstr "" 1010 1018 1011 #: polls-templates.php:11 31019 #: polls-templates.php:119 1012 1020 #: wp-polls.php:1368 1013 1021 msgid "You Have Voted For This Choice" 1014 1022 msgstr "" 1015 1023 1016 #: polls-templates.php:1 191024 #: polls-templates.php:125 1017 1025 #: wp-polls.php:1374 1018 1026 msgid "Vote For This Poll" 1019 1027 msgstr "" 1020 1028 1021 #: polls-templates.php:12 21029 #: polls-templates.php:128 1022 1030 #: wp-polls.php:1401 1023 1031 msgid "Polls Archive" 1024 1032 msgstr "" 1025 1033 1026 #: polls-templates.php:1 281034 #: polls-templates.php:134 1027 1035 msgid "Start Date:" 1028 1036 msgstr "" 1029 1037 1030 #: polls-templates.php:1 281038 #: polls-templates.php:134 1031 1039 msgid "End Date:" 1032 1040 msgstr "" 1033 1041 1034 #: polls-templates.php:1 311042 #: polls-templates.php:143 1035 1043 #: wp-polls.php:1376 1036 1044 msgid "Sorry, there are no polls available at the moment." 1037 1045 msgstr "" 1038 1046 1039 #: polls-templates.php:1 341047 #: polls-templates.php:146 1040 1048 #: wp-polls.php:1377 1041 1049 msgid "An error has occurred when processing your poll." 1042 1050 msgstr "" 1043 1051 1044 #: polls-templates.php:1 441052 #: polls-templates.php:156 1045 1053 #: wp-polls.php:61 1046 1054 msgid "Poll Templates" 1047 1055 msgstr "" 1048 1056 1049 #: polls-templates.php:1 461057 #: polls-templates.php:158 1050 1058 msgid "Template Variables" 1051 1059 msgstr "" 1052 1060 1053 #: polls-templates.php:1 511061 #: polls-templates.php:163 1054 1062 msgid "Display the poll's ID" 1055 1063 msgstr "" 1056 1064 1057 #: polls-templates.php:1 551065 #: polls-templates.php:167 1058 1066 msgid "Display the poll's answer ID" 1059 1067 msgstr "" 1060 1068 1061 #: polls-templates.php:1 611069 #: polls-templates.php:173 1062 1070 msgid "Display the poll's question" 1063 1071 msgstr "" 1064 1072 1065 #: polls-templates.php:1 651073 #: polls-templates.php:177 1066 1074 msgid "Display the poll's answer" 1067 1075 msgstr "" 1068 1076 1069 #: polls-templates.php:1 711077 #: polls-templates.php:183 1070 1078 msgid "Display the poll's total votes NOT the number of people who voted for the poll" 1071 1079 msgstr "" 1072 1080 1073 #: polls-templates.php:1 751081 #: polls-templates.php:187 1074 1082 msgid "Display the poll's answer without HTML formatting." 1075 1083 msgstr "" 1076 1084 1077 #: polls-templates.php:1 811085 #: polls-templates.php:193 1078 1086 msgid "Displays URL to poll's result" 1079 1087 msgstr "" 1080 1088 1081 #: polls-templates.php:1 851089 #: polls-templates.php:197 1082 1090 msgid "Display the poll's answer votes" 1083 1091 msgstr "" 1084 1092 1085 #: polls-templates.php: 1911093 #: polls-templates.php:203 1086 1094 msgid "Display the poll's most voted answer" 1087 1095 msgstr "" 1088 1096 1089 #: polls-templates.php: 1951097 #: polls-templates.php:207 1090 1098 msgid "Display the poll's answer percentage" 1091 1099 msgstr "" 1092 1100 1093 #: polls-templates.php:2 011101 #: polls-templates.php:213 1094 1102 msgid "Display the poll's answer votes for the most voted answer" 1095 1103 msgstr "" 1096 1104 1097 #: polls-templates.php:2 051105 #: polls-templates.php:217 1098 1106 msgid "Display the poll's answer image width" 1099 1107 msgstr "" 1100 1108 1101 #: polls-templates.php:2 111109 #: polls-templates.php:223 1102 1110 msgid "Display the poll's answer percentage for the most voted answer" 1103 1111 msgstr "" 1104 1112 1105 #: polls-templates.php:2 151113 #: polls-templates.php:227 1106 1114 msgid "Display the poll's least voted answer" 1107 1115 msgstr "" 1108 1116 1109 #: polls-templates.php:2 211117 #: polls-templates.php:233 1110 1118 msgid "Display the poll's start date/time" 1111 1119 msgstr "" 1112 1120 1113 #: polls-templates.php:2 251121 #: polls-templates.php:237 1114 1122 msgid "Display the poll's answer votes for the least voted answer" 1115 1123 msgstr "" 1116 1124 1117 #: polls-templates.php:2 311125 #: polls-templates.php:243 1118 1126 msgid "Display the poll's end date/time" 1119 1127 msgstr "" 1120 1128 1121 #: polls-templates.php:2 351129 #: polls-templates.php:247 1122 1130 msgid "Display the poll's answer percentage for the least voted answer" 1123 1131 msgstr "" 1124 1132 1125 #: polls-templates.php:2 411133 #: polls-templates.php:253 1126 1134 msgid "Display the the maximum number of answers the user can choose if the poll supports multiple answers" 1127 1135 msgstr "" 1128 1136 1129 #: polls-templates.php:2 451137 #: polls-templates.php:257 1130 1138 msgid "Display \"checkbox\" or \"radio\" input types depending on the poll type" 1131 1139 msgstr "" 1132 1140 1133 #: polls-templates.php:2 511141 #: polls-templates.php:263 1134 1142 msgid "Display the number of people who voted for the poll NOT the total votes of the poll" 1135 1143 msgstr "" 1136 1144 1137 #: polls-templates.php:2 551145 #: polls-templates.php:267 1138 1146 msgid "Display the poll archive URL" 1139 1147 msgstr "" 1140 1148 1141 #: polls-templates.php:2 601149 #: polls-templates.php:272
