Changeset 21734
- Timestamp:
- 10/13/07 07:20:33 (9 months ago)
- Files:
-
- wp-polls/trunk/polls/polls-logs.php (modified) (3 diffs)
- wp-polls/trunk/polls/polls-manager.php (modified) (5 diffs)
- wp-polls/trunk/polls/polls.php (modified) (19 diffs)
- wp-polls/trunk/polls/wp-polls.mo (modified) (previous)
- wp-polls/trunk/polls/wp-polls.pot (modified) (9 diffs)
- wp-polls/trunk/readme.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wp-polls/trunk/polls/polls-logs.php
r20812 r21734 299 299 $pollip_ip = $poll_ip->pollip_ip; 300 300 $pollip_host = $poll_ip->pollip_host; 301 $pollip_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_ip->pollip_timestamp));301 $pollip_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_ip->pollip_timestamp); 302 302 if($i%2 == 0) { 303 303 $style = 'style=\'background-color: none\''; … … 327 327 $pollip_ip = $poll_ip->pollip_ip; 328 328 $pollip_host = $poll_ip->pollip_host; 329 $pollip_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_ip->pollip_timestamp));329 $pollip_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_ip->pollip_timestamp); 330 330 if($pollip_aid != $poll_last_aid) { 331 331 if($pollip_aid == 0) { … … 360 360 } 361 361 echo "<tr class=\"thead\">\n"; 362 echo "<td colspan=\"4\">".sprintf(__('Total number of records that matches this filter: <strong>%s</strong>', 'wp-polls'), number_format ($j))."</td>";362 echo "<td colspan=\"4\">".sprintf(__('Total number of records that matches this filter: <strong>%s</strong>', 'wp-polls'), number_format_i18n($j))."</td>"; 363 363 echo "</tr>\n"; 364 364 echo '</table>'."\n"; wp-polls/trunk/polls/polls-manager.php
r20812 r21734 398 398 <td width="20%" valign="top"><strong><?php _e('Start Date/Time', 'wp-polls'); ?></strong>:</td> 399 399 <td width="80%"> 400 <?php echo mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_timestamp)); ?><br />400 <?php echo date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_timestamp); ?><br /> 401 401 <input type="checkbox" name="edit_polltimestamp" id="edit_polltimestamp" value="1" onclick="check_polltimestamp()" /> <label for="edit_polltimestamp"><?php _e('Edit Start Date/Time', 'wp-polls'); ?></label><br /> 402 402 <?php poll_timestamp($poll_timestamp, 'pollq_timestamp', 'none'); ?> … … 410 410 _e('This Poll Will Not Expire', 'wp-polls'); 411 411 } else { 412 echo mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_expiry));412 echo date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_expiry); 413 413 } 414 414 ?> … … 487 487 $poll_id = intval($poll->pollq_id); 488 488 $poll_question = stripslashes($poll->pollq_question); 489 $poll_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll->pollq_timestamp));489 $poll_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll->pollq_timestamp); 490 490 $poll_totalvotes = intval($poll->pollq_totalvotes); 491 491 $poll_totalvoters = intval($poll->pollq_totalvoters); … … 495 495 $poll_expiry_text = __('No Expiry', 'wp-polls'); 496 496 } else { 497 $poll_expiry_text = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_expiry));497 $poll_expiry_text = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_expiry); 498 498 } 499 499 if($i%2 == 0) { … … 566 566 <tr> 567 567 <th align="left"><?php _e('Total Polls\' Answers:', 'wp-polls'); ?></th> 568 <td align="left"><?php echo number_format ($total_ans); ?></td>568 <td align="left"><?php echo number_format_i18n($total_ans); ?></td> 569 569 </tr> 570 570 <tr> 571 571 <th align="left"><?php _e('Total Votes Casted:', 'wp-polls'); ?></th> 572 <td align="left"><?php echo number_format ($total_votes); ?></td>572 <td align="left"><?php echo number_format_i18n($total_votes); ?></td> 573 573 </tr> 574 574 <tr> 575 575 <th align="left"><?php _e('Total Voters:', 'wp-polls'); ?></th> 576 <td align="left"><?php echo number_format ($total_voters); ?></td>576 <td align="left"><?php echo number_format_i18n($total_voters); ?></td> 577 577 </tr> 578 578 </table> wp-polls/trunk/polls/polls.php
r20812 r21734 154 154 function poll_header() { 155 155 echo "\n".'<!-- Start Of Script Generated By WP-Polls 2.20 -->'."\n"; 156 wp_register_script('wp-polls', '/wp-content/plugins/polls/polls-js.php', false, '2.2 0');156 wp_register_script('wp-polls', '/wp-content/plugins/polls/polls-js.php', false, '2.22'); 157 157 wp_print_scripts(array('sack', 'wp-polls')); 158 158 echo '<link rel="stylesheet" href="'.get_option('siteurl').'/wp-content/plugins/polls/polls-css.css" type="text/css" media="screen" />'."\n"; … … 179 179 } 180 180 echo '</style>'."\n"; 181 echo '<!-- End Of Script Generated By WP-Polls 2.2 0-->'."\n";181 echo '<!-- End Of Script Generated By WP-Polls 2.22 -->'."\n"; 182 182 } 183 183 … … 348 348 $poll_question_totalvotes = intval($poll_question->pollq_totalvotes); 349 349 $poll_question_totalvoters = intval($poll_question->pollq_totalvoters); 350 $poll_start_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_question->pollq_timestamp));350 $poll_start_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_question->pollq_timestamp); 351 351 $poll_expiry = trim($poll_question->pollq_expiry); 352 352 if(empty($poll_expiry)) { 353 353 $poll_end_date = __('No Expiry', 'wp-polls'); 354 354 } else { 355 $poll_end_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_expiry));355 $poll_end_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_expiry); 356 356 } 357 357 $poll_multiple_ans = intval($poll_question->pollq_multiple); … … 392 392 $template_answer = str_replace("%POLL_ANSWER_ID%", $poll_answer_id, $template_answer); 393 393 $template_answer = str_replace("%POLL_ANSWER%", $poll_answer_text, $template_answer); 394 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format ($poll_answer_votes), $template_answer);394 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format_i18n($poll_answer_votes), $template_answer); 395 395 if($poll_multiple_ans > 0) { 396 396 $template_answer = str_replace("%POLL_CHECKBOX_RADIO%", 'checkbox', $template_answer); … … 464 464 $poll_question_totalvoters = intval($poll_question->pollq_totalvoters); 465 465 $poll_question_active = intval($poll_question->pollq_active); 466 $poll_start_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_question->pollq_timestamp));466 $poll_start_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_question->pollq_timestamp); 467 467 $poll_expiry = trim($poll_question->pollq_expiry); 468 468 if(empty($poll_expiry)) { 469 469 $poll_end_date = __('No Expiry', 'wp-polls'); 470 470 } else { 471 $poll_end_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_expiry));471 $poll_end_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $poll_expiry); 472 472 } 473 473 $poll_multiple_ans = intval($poll_question->pollq_multiple); … … 528 528 $template_answer = str_replace("%POLL_ANSWER%", $poll_answer_text, $template_answer); 529 529 $template_answer = str_replace("%POLL_ANSWER_TEXT%", htmlspecialchars(strip_tags($poll_answer_text)), $template_answer); 530 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format ($poll_answer_votes), $template_answer);530 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format_i18n($poll_answer_votes), $template_answer); 531 531 $template_answer = str_replace("%POLL_ANSWER_PERCENTAGE%", $poll_answer_percentage, $template_answer); 532 532 $template_answer = str_replace("%POLL_ANSWER_IMAGEWIDTH%", $poll_answer_imagewidth, $template_answer); … … 539 539 $template_answer = str_replace("%POLL_ANSWER%", $poll_answer_text, $template_answer); 540 540 $template_answer = str_replace("%POLL_ANSWER_TEXT%", htmlspecialchars(strip_tags($poll_answer_text)), $template_answer); 541 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format ($poll_answer_votes), $template_answer);541 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format_i18n($poll_answer_votes), $template_answer); 542 542 $template_answer = str_replace("%POLL_ANSWER_PERCENTAGE%", $poll_answer_percentage, $template_answer); 543 543 $template_answer = str_replace("%POLL_ANSWER_IMAGEWIDTH%", $poll_answer_imagewidth, $template_answer); … … 570 570 $template_footer = str_replace("%POLL_END_DATE%", $poll_end_date, $template_footer); 571 571 $template_footer = str_replace("%POLL_ID%", $poll_question_id, $template_footer); 572 $template_footer = str_replace("%POLL_TOTALVOTES%", number_format ($poll_question_totalvotes), $template_footer);573 $template_footer = str_replace("%POLL_TOTALVOTERS%", number_format ($poll_question_totalvoters), $template_footer);572 $template_footer = str_replace("%POLL_TOTALVOTES%", number_format_i18n($poll_question_totalvotes), $template_footer); 573 $template_footer = str_replace("%POLL_TOTALVOTERS%", number_format_i18n($poll_question_totalvoters), $template_footer); 574 574 $template_footer = str_replace("%POLL_MOST_ANSWER%", $poll_most_answer, $template_footer); 575 $template_footer = str_replace("%POLL_MOST_VOTES%", number_format ($poll_most_votes), $template_footer);575 $template_footer = str_replace("%POLL_MOST_VOTES%", number_format_i18n($poll_most_votes), $template_footer); 576 576 $template_footer = str_replace("%POLL_MOST_PERCENTAGE%", $poll_most_percentage, $template_footer); 577 577 $template_footer = str_replace("%POLL_LEAST_ANSWER%", $poll_least_answer, $template_footer); 578 $template_footer = str_replace("%POLL_LEAST_VOTES%", number_format ($poll_least_votes), $template_footer);578 $template_footer = str_replace("%POLL_LEAST_VOTES%", number_format_i18n($poll_least_votes), $template_footer); 579 579 $template_footer = str_replace("%POLL_LEAST_PERCENTAGE%", $poll_least_percentage, $template_footer); 580 580 if($poll_multiple_ans > 0) { … … 650 650 $totalpollq = $wpdb->get_var("SELECT COUNT(pollq_id) FROM $wpdb->pollsq"); 651 651 if($display) { 652 echo number_format ($totalpollq);653 } else { 654 return number_format ($totalpollq);652 echo number_format_i18n($totalpollq); 653 } else { 654 return number_format_i18n($totalpollq); 655 655 } 656 656 } … … 664 664 $totalpolla = $wpdb->get_var("SELECT COUNT(polla_aid) FROM $wpdb->pollsa"); 665 665 if($display) { 666 echo number_format ($totalpolla);667 } else { 668 return number_format ($totalpolla);666 echo number_format_i18n($totalpolla); 667 } else { 668 return number_format_i18n($totalpolla); 669 669 } 670 670 } … … 678 678 $totalvotes = $wpdb->get_var("SELECT SUM(pollq_totalvotes) FROM $wpdb->pollsq"); 679 679 if($display) { 680 echo number_format ($totalvotes);681 } else { 682 return number_format ($totalvotes);680 echo number_format_i18n($totalvotes); 681 } else { 682 return number_format_i18n($totalvotes); 683 683 } 684 684 } … … 692 692 $totalvoters = $wpdb->get_var("SELECT SUM(pollq_totalvoters) FROM $wpdb->pollsq"); 693 693 if($display) { 694 echo number_format ($totalvoters);695 } else { 696 return number_format ($totalvoters);694 echo number_format_i18n($totalvoters); 695 } else { 696 return number_format_i18n($totalvoters); 697 697 } 698 698 } … … 721 721 ### Function: Polls Archive Link 722 722 function polls_archive_link($page) { 723 $current_url = $_SERVER['REQUEST_URI']; 724 $curren_pollpage = intval($_GET['poll_page']); 725 $polls_archive_url = preg_replace('/poll_page=(\d+)/i', 'poll_page='.$page, $current_url); 726 if($curren_pollpage == 0) { 727 if(strpos($current_url, '?') !== false) { 723 $polls_archive_url = get_option('poll_archive_url'); 724 if($page > 0) { 725 if(strpos($polls_archive_url, '?') !== false) { 728 726 $polls_archive_url = "$polls_archive_url&poll_page=$page"; 729 727 } else { … … 846 844 $poll_totalvotes_zero = false; 847 845 } 848 $poll_start_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $polls_question['start']));846 $poll_start_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $polls_question['start']); 849 847 if(empty($polls_question['end'])) { 850 848 $poll_end_date = __('No Expiry', 'wp-polls'); 851 849 } else { 852 $poll_end_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $polls_question['end']));850 $poll_end_date = date_i18n(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), $polls_question['end']); 853 851 } 854 852 // Archive Poll Header … … 858 856 $template_question = str_replace("%POLL_QUESTION%", $polls_question['question'], $template_question); 859 857 $template_question = str_replace("%POLL_ID%", $polls_question['id'], $template_question); 860 $template_question = str_replace("%POLL_TOTALVOTES%", number_format ($polls_question['totalvotes']), $template_question);861 $template_question = str_replace("%POLL_TOTALVOTERS%", number_format ($polls_question['totalvoters']), $template_question);858 $template_question = str_replace("%POLL_TOTALVOTES%", number_format_i18n($polls_question['totalvotes']), $template_question); 859 $template_question = str_replace("%POLL_TOTALVOTERS%", number_format_i18n($polls_question['totalvoters']), $template_question); 862 860 $template_question = str_replace("%POLL_START_DATE%", $poll_start_date, $template_question); 863 861 $template_question = str_replace("%POLL_END_DATE%", $poll_end_date, $template_question); … … 892 890 $template_answer = str_replace("%POLL_ANSWER%", $polls_answer['answers'], $template_answer); 893 891 $template_answer = str_replace("%POLL_ANSWER_TEXT%", htmlspecialchars(strip_tags($polls_answer['answers'])), $template_answer); 894 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format ($polls_answer['votes']), $template_answer);892 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format_i18n($polls_answer['votes']), $template_answer); 895 893 $template_answer = str_replace("%POLL_ANSWER_PERCENTAGE%", $poll_answer_percentage, $template_answer); 896 894 $template_answer = str_replace("%POLL_ANSWER_IMAGEWIDTH%", $poll_answer_imagewidth, $template_answer); … … 903 901 $template_answer = str_replace("%POLL_ANSWER%", $polls_answer['answers'], $template_answer); 904 902 $template_answer = str_replace("%POLL_ANSWER_TEXT%", htmlspecialchars(strip_tags($polls_answer['answers'])), $template_answer); 905 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format ($polls_answer['votes']), $template_answer);903 $template_answer = str_replace("%POLL_ANSWER_VOTES%", number_format_i18n($polls_answer['votes']), $template_answer); 906 904 $template_answer = str_replace("%POLL_ANSWER_PERCENTAGE%", $poll_answer_percentage, $template_answer); 907 905 $template_answer = str_replace("%POLL_ANSWER_IMAGEWIDTH%", $poll_answer_imagewidth, $template_answer); … … 932 930 $template_footer = str_replace("%POLL_START_DATE%", $poll_start_date, $template_footer); 933 931 $template_footer = str_replace("%POLL_END_DATE%", $poll_end_date, $template_footer); 934 $template_footer = str_replace("%POLL_TOTALVOTES%", number_format ($polls_question['totalvotes']), $template_footer);935 $template_footer = str_replace("%POLL_TOTALVOTERS%", number_format ($polls_question['totalvoters']), $template_footer);932 $template_footer = str_replace("%POLL_TOTALVOTES%", number_format_i18n($polls_question['totalvotes']), $template_footer); 933 $template_footer = str_replace("%POLL_TOTALVOTERS%", number_format_i18n($polls_question['totalvoters']), $template_footer); 936 934 $template_footer = str_replace("%POLL_MOST_ANSWER%", $poll_most_answer, $template_footer); 937 $template_footer = str_replace("%POLL_MOST_VOTES%", number_format ($poll_most_votes), $template_footer);935 $template_footer = str_replace("%POLL_MOST_VOTES%", number_format_i18n($poll_most_votes), $template_footer); 938 936 $template_footer = str_replace("%POLL_MOST_PERCENTAGE%", $poll_most_percentage, $template_footer); 939 937 $template_footer = str_replace("%POLL_LEAST_ANSWER%", $poll_least_answer, $template_footer); 940 $template_footer = str_replace("%POLL_LEAST_VOTES%", number_format ($poll_least_votes), $template_footer);938 $template_footer = str_replace("%POLL_LEAST_VOTES%", number_format_i18n($poll_least_votes), $template_footer); 941 939 $template_footer = str_replace("%POLL_LEAST_PERCENTAGE%", $poll_least_percentage, $template_footer); 942 940 if($polls_question['multiple'] > 0) { … … 949 947 $template_archive_footer = str_replace("%POLL_START_DATE%", $poll_start_date, $template_archive_footer); 950 948 $template_archive_footer = str_replace("%POLL_END_DATE%", $poll_end_date, $template_archive_footer); 951 $template_archive_footer = str_replace("%POLL_TOTALVOTES%", number_format ($polls_question['totalvotes']), $template_archive_footer);952 $template_archive_footer = str_replace("%POLL_TOTALVOTERS%", number_format ($polls_question['totalvoters']), $template_archive_footer);949 $template_archive_footer = str_replace("%POLL_TOTALVOTES%", number_format_i18n($polls_question['totalvotes']), $template_archive_footer); 950 $template_archive_footer = str_replace("%POLL_TOTALVOTERS%", number_format_i18n($polls_question['totalvoters']), $template_archive_footer); 953 951 $template_archive_footer = str_replace("%POLL_MOST_ANSWER%", $poll_most_answer, $template_archive_footer); 954 $template_archive_footer = str_replace("%POLL_MOST_VOTES%", number_format ($poll_most_votes), $template_archive_footer);952 $template_archive_footer = str_replace("%POLL_MOST_VOTES%", number_format_i18n($poll_most_votes), $template_archive_footer); 955 953 $template_archive_footer = str_replace("%POLL_MOST_PERCENTAGE%", $poll_most_percentage, $template_archive_footer); 956 954 $template_archive_footer = str_replace("%POLL_LEAST_ANSWER%", $poll_least_answer, $template_archive_footer); 957 $template_archive_footer = str_replace("%POLL_LEAST_VOTES%", number_format ($poll_least_votes), $template_archive_footer);955 $template_archive_footer = str_replace("%POLL_LEAST_VOTES%", number_format_i18n($poll_least_votes), $template_archive_footer); 958 956 $template_archive_footer = str_replace("%POLL_LEAST_PERCENTAGE%", $poll_least_percentage, $template_archive_footer); 959 957 if($polls_question['multiple'] > 0) { wp-polls/trunk/polls/wp-polls.pot
r20812 r21734 3 3 "Project-Id-Version: WP-Polls 2.22\n" 4 4 "POT-Creation-Date: \n" 5 "PO-Revision-Date: 2007-10- 04 01:30+0800\n"5 "PO-Revision-Date: 2007-10-13 15:18+0800\n" 6 6 "Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 7 7 "Language-Team: Lester Chan <gamerz84@hotmail.com>\n" … … 419 419 #: polls.php:466 420 420 #: polls.php:471 421 #: polls.php:84 8422 #: polls.php:85 2421 #: polls.php:846 422 #: polls.php:850 423 423 #, php-format 424 424 msgid "%s @ %s" … … 584 584 #: polls-templates.php:116 585 585 #: polls-templates.php:119 586 #: polls.php:131 6587 #: polls.php:131 9586 #: polls.php:1314 587 #: polls.php:1317 588 588 msgid "Total Voters" 589 589 msgstr "" … … 600 600 #: polls.php:353 601 601 #: polls.php:469 602 #: polls.php:8 50602 #: polls.php:848 603 603 msgid "No Expiry" 604 604 msgstr "" … … 826 826 #: polls-templates.php:110 827 827 #: polls-templates.php:113 828 #: polls.php:131 3829 #: polls.php:131 4828 #: polls.php:1311 829 #: polls.php:1312 830 830 msgid "Votes" 831 831 msgstr "" … … 1015 1015 #: polls-templates.php:104 1016 1016 #: polls-templates.php:119 1017 #: polls.php:130 71018 #: polls.php:13 201017 #: polls.php:1305 1018 #: polls.php:1318 1019 1019 msgid "Vote" 1020 1020 msgstr "" 1021 1021 1022 1022 #: polls-templates.php:104 1023 #: polls.php:130 81023 #: polls.php:1306 1024 1024 msgid "View Results Of This Poll" 1025 1025 msgstr "" 1026 1026 1027 1027 #: polls-templates.php:104 1028 #: polls.php:130 81028 #: polls.php:1306 1029 1029 msgid "View Results" 1030 1030 msgstr "" 1031 1031 1032 1032 #: polls-templates.php:113 1033 #: polls.php:131 41033 #: polls.php:1312 1034 1034 msgid "You Have Voted For This Choice" 1035 1035 msgstr "" 1036 1036 1037 1037 #: polls-templates.php:119 1038 #: polls.php:13 201038 #: polls.php:1318 1039 1039 msgid "Vote For This Poll" 1040 1040 msgstr "" … … 1042 1042 #: polls-templates.php:122 1043 1043 #: polls-usage.php:80 1044 #: polls.php:134 71044 #: polls.php:1345 1045 1045 msgid "Polls Archive" 1046 1046 msgstr "" … … 1055 1055 1056 1056 #: polls-templates.php:131 1057 #: polls.php:132 21057 #: polls.php:1320 1058 1058 msgid "Sorry, there are no polls available at the moment." 1059 1059 msgstr "" 1060 1060 1061 1061 #: polls-templates.php:134 1062 #: polls.php:132 31062 #: polls.php:1321 1063 1063 msgid "An error has occurred when processing your poll." 1064 1064 msgstr "" … … 1531 1531 msgstr "" 1532 1532 1533 #: polls.php:97 71533 #: polls.php:975 1534 1534 msgid "Previous Page" 1535 1535 msgstr "" 1536 1536 1537 #: polls.php:98 51537 #: polls.php:983 1538 1538 msgid "Next Page" 1539 1539 msgstr "" 1540 1540 1541 #: polls.php:992 1542 msgid "Pages" 1543 msgstr "" 1544 1541 1545 #: polls.php:994 1542 msgid "Pages"1543 msgstr ""1544 1545 #: polls.php:9961546 1546 msgid "Go to First Page" 1547 1547 msgstr "" 1548 1548 1549 #: polls.php:99 61549 #: polls.php:994 1550 1550 msgid "First" 1551 1551 msgstr "" 1552 1552 1553 #: polls.php:99 91554 #: polls.php:10 111553 #: polls.php:997 1554 #: polls.php:1009 1555 1555 msgid "Go to Page" 1556 1556 msgstr "" 1557 1557 1558 #: polls.php:100 61558 #: polls.php:1004 1559 1559 msgid "Page" 1560 1560 msgstr "" 1561 1561 1562 #: polls.php:101 41562 #: polls.php:1012 1563 1563 msgid "Go to Last Page" 1564 1564 msgstr "" 1565 1565 1566 #: polls.php:101 41566 #: polls.php:1012 1567 1567 msgid "Last" 1568 1568 msgstr "" 1569 1569 1570 #: polls.php:118 71570 #: polls.php:1185 1571 1571 #, php-format 1572 1572 msgid "Unable To Update Poll Total Votes And Poll Total Voters. Poll ID #%s" 1573 1573 msgstr "" 1574 1574 1575 #: polls.php:11 911575 #: polls.php:1189 1576 1576 #, php-format 1577 1577 msgid "You Had Already Voted For This Poll. Poll ID #%s" 1578 1578 msgstr "" 1579 1579 1580 #: polls.php:119 51580 #: polls.php:1193 1581 1581 #, php-format 1582 1582 msgid "Invalid Poll ID. Poll ID #%s" 1583 1583 msgstr "" 1584 1584 1585 #: polls.php:1219 1585 1586 #: polls.php:1221 1586 #: polls.php:1223 1587 #: polls.php:1231 1588 msgid "WP-Polls" 1589 msgstr "" 1590 1587 1591 #: polls.php:1233 1588 msgid "WP-Polls" 1592 msgid "polls were created." 1593 msgstr "" 1594 1595 #: polls.php:1234 1596 msgid "polls' answers were given." 1589 1597 msgstr "" 1590 1598 1591 1599 #: polls.php:1235 1592 msgid "polls were created."1593 msgstr ""1594 1595 #: polls.php:12361596 msgid "polls' answers were given."1597 msgstr ""1598 1599 #: polls.php:12371600 1600 msgid "votes were casted." 1601 1601 msgstr "" 1602 1602 1603 #: polls.php:12 911603 #: polls.php:1289 1604 1604 msgid "How Is My Site?" 1605 1605 msgstr "" 1606 1606 1607 #: polls.php:1292 1608 msgid "Good" 1609 msgstr "" 1610 1611 #: polls.php:1293 1612 msgid "Excellent" 1613 msgstr "" 1614 1607 1615 #: polls.php:1294 1608 msgid " Good"1616 msgid "Bad" 1609 1617 msgstr "" 1610 1618 1611 1619 #: polls.php:1295 1612 msgid " Excellent"1620 msgid "Can Be Improved" 1613 1621 msgstr "" 1614 1622 1615 1623 #: polls.php:1296 1616 msgid "Bad"1617 msgstr ""1618 1619 #: polls.php:12971620 msgid "Can Be Improved"1621 msgstr ""1622 1623 #: polls.php:12981624 1624 msgid "No Comments" 1625 1625 msgstr "" wp-polls/trunk/readme.html
r20812 r21734 223 223 <div class="SubSubTitle">Plugin Information</div> 224 224 <p> 225 <strong>Author:</strong><br /><strong>»</strong> Lester 'GaMerZ' Chan</p> 226 <p> 227 <strong>EMail:</strong><br /><strong>»</strong> 228 <script type="text/javascript"> 229 /* <![CDATA[*/ 230 document.write(' <a href="mailto:gamerz84@hotmail.com?Subject=WP-Polls%202.22%20Support" title="EMail To gamerz84@hotmail.com">gamerz84@hotmail.com</a>'); 231 /* ]]> */ 232 </script> 225 <strong>Author:</strong><br /> 226 <strong>»</strong> Lester 'GaMerZ' Chan 233 227 </p> 234 228 <p> … … 268 262 </p> 269 263 <p> 270 <strong>Credits:</strong><br />271 <strong>»</strong> Localization By <a href="http://4visions.nl/" title="http://4visions.nl/">Ravan</a><br />272 <strong>»</strong> Uninstaller By Philippe Corbes273 </p>274 <p>275 264 <strong>Updated:</strong><br /> 276 <strong>»</strong> 1st October 2007265 <strong>»</strong> 1st January 2008 277 266 </p> 278 267 <p> … … 300 289 <strong>Version 2.22 (01-01-2008)</strong> 301 290 <ul> 291 <li>NEW: Use date_i18n() For Localizing Date</li> 292 <li>NEW: Use number_format_i18n() Instead</li> 302 293 <li>FIXED: number_format() Not Used In Polls Archive</li> 303 294 </ul>
