Changeset 164608
- Timestamp:
- 10/18/2009 04:07:29 PM (16 years ago)
- Location:
- comment-contest/trunk
- Files:
-
- 2 added
- 7 edited
-
comment-contest.js (added)
-
comment-contest.php (modified) (23 diffs)
-
languages/commentContest-en_US.mo (modified) (previous)
-
languages/commentContest-en_US.po (modified) (2 diffs)
-
languages/commentContest-en_US.pot (modified) (2 diffs)
-
languages/commentContest-fr_FR.mo (modified) (previous)
-
languages/commentContest-fr_FR.po (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
screenshot-5.jpg (added)
Legend:
- Unmodified
- Added
- Removed
-
comment-contest/trunk/comment-contest.php
r154447 r164608 5 5 Description: If you create a contest on your website, you can draw all comments in a specific post 6 6 Author: Thomas "Zhykos" Cicognani 7 Version: 1.3 7 Version: 1.35 8 8 Author URI: http://www.nozzhy.com 9 9 */ … … 33 33 class CommentContest { 34 34 /*private*/var $domain = ''; 35 /*private*/var $version = '1.3 '; // Current version35 /*private*/var $version = '1.35'; // Current version 36 36 /*private*/var $option_ns = ''; 37 37 /*private*/var $options = array (); … … 152 152 * @param $email Email to send (<i>null</i> means no email to send) 153 153 */ 154 function configure($errorCode = null, $previousContestType = null, $numWinners = null, $numParticipation = null, $numPrizes = null, $ranks = null, $email = null) {154 function step1_configure($errorCode = null, $previousContestType = null, $numWinners = null, $numParticipation = null, $numPrizes = null, $ranks = null, $email = null) { 155 155 $configureContest = __("Configure the contest", $this->localizationName); 156 156 $winnersNumber = __("Winners' number", $this->localizationName); … … 278 278 * @param $prizes Prizes' number 279 279 */ 280 /*private */function choosePost($currentPage, $ranks, $numWinners, $numParticipation, $email, $type, $prizes) {280 /*private */function step2_choosePost($currentPage, $ranks, $numWinners, $numParticipation, $email, $type, $prizes) { 281 281 global $wpdb; 282 282 $maxArticles = 20; … … 285 285 $more = __("More...", $this->localizationName); 286 286 $noPost = __("No post found!", $this->localizationName); 287 $comments = __("comment(s)", $this->localizationName); 287 288 288 289 echo "<h1>Comment Contest - $choosePost</h1><form id='postForm' action='plugins.php?page=comment-contest.php' method='post'>"; 289 290 290 $query = "SELECT * FROM $wpdb->posts WHERE (post_status = 'publish' OR post_status = 'private') AND post_type='post' ORDER BY post_date DESC"; 291 // V1.35 - ADD : Only display posts with comments 292 $query = "SELECT * FROM $wpdb->posts WHERE (post_status = 'publish' OR post_status = 'private') AND post_type='post' AND comment_count > 0 ORDER BY post_date DESC"; 293 291 294 $posts = $wpdb->get_results ( $query ); 295 292 296 if ($posts) { 293 297 $url = get_bloginfo ( 'url' ); 294 298 for($i = $currentPage; $i < count ( $posts ) && $i < $maxArticles + $currentPage; $i ++) { 295 299 $post = $posts [$i]; 296 echo "<a href='#' onclick='getElementById(\"postnumber\").value=$post->ID; getElementById(\"postForm\").submit()'>$post->post_title</a> <br />";300 echo "<a href='#' onclick='getElementById(\"postnumber\").value=$post->ID; getElementById(\"postForm\").submit()'>$post->post_title</a> ($post->comment_count $comments)<br />"; 297 301 } 298 302 … … 329 333 * @param $previousComments Comments previously checked 330 334 */ 331 /*private */function chooseComments($idPost, $ranks, $numWinners, $numParticipation, $email, $type, $prizes, $errorMessage = null, $previousComments = null) {335 /*private */function step3_chooseComments($idPost, $ranks, $numWinners, $numParticipation, $email, $type, $prizes, $errorMessage = null, $previousComments = null) { 332 336 global $wpdb; 333 337 … … 348 352 $resultQueryTemp = $wpdb->get_results ( $queryTemp ); 349 353 foreach ( $resultQueryTemp as $resultTemp ) { 350 $filter [] = "comment_author = '$resultTemp->user_login'"; 354 // V1.35 - BUG FIX : Simple and double quotes protected because if a pseudo contains quotes, the query bugs (thanks to Kamel from www.yoocom.fr) 355 $filter [] = "comment_author = '" . addslashes($resultTemp->user_login) . "'"; 351 356 } 352 357 } elseif ($rank == 0) { // Subscriber … … 354 359 $resultQueryTemp = $wpdb->get_results ( $queryTemp ); 355 360 foreach ( $resultQueryTemp as $resultTemp ) { 356 $filter [] = "comment_author = '$resultTemp->meta_value'"; 361 // V1.35 - BUG FIX : Simple and double quotes protected because if a pseudo contains quotes, the query bugs (thanks to Kamel from www.yoocom.fr) 362 $filter [] = "comment_author = '" . addslashes($resultTemp->meta_value) . "'"; 357 363 } 358 364 } else { // User ($rank == -1) … … 360 366 $resultQueryTemp = $wpdb->get_results ( $queryTemp ); 361 367 foreach ( $resultQueryTemp as $resultTemp ) { 362 $filter [] = "comment_author = '$resultTemp->comment_author'"; 363 } 364 } 365 } 366 368 // V1.35 - BUG FIX : Simple and double quotes protected because if a pseudo contains quotes, the query bugs (thanks to Kamel from www.yoocom.fr) 369 $filter [] = "comment_author = '" . addslashes($resultTemp->comment_author) . "'"; 370 } 371 } 372 } 373 374 // V1.35 - BUG FIX : If $filter is null, a PHP error occured ==> filter management now here 375 if($filter == null) { 376 $filter = ""; 377 } else { 378 $filter = " and (" . implode ( " OR ", $filter ) . ")"; 379 } 380 367 381 $query = "SELECT * FROM $wpdb->comments WHERE comment_approved = \"1\" and comment_post_id='$idPost' and comment_author != ( 368 select user_login from $wpdb->users u, $wpdb->posts p where u.ID = post_author and p.ID = $idPost369 ) and (" . implode ( " OR ", $filter ) . ")ORDER BY comment_author";382 select user_login from $wpdb->users u, $wpdb->posts p where u.ID = post_author and p.ID = '$idPost' 383 )$filter ORDER BY comment_author"; 370 384 $comments = $wpdb->get_results ( $query ); 371 385 … … 428 442 * @param $previousTo Prizes' places previously typed 429 443 */ 430 function choosePrizes($comments, $numWinners, $numParticipation, $email, $type, $prizes, $error = 0, $previousNames = null, $previousTo = null) {444 function step4_choosePrizes($comments, $numWinners, $numParticipation, $email, $type, $prizes, $error = 0, $previousNames = null, $previousTo = null) { 431 445 $choosePrizes = __("Prizes' choice", $this->localizationName); 432 446 $launchContest = __("Launch the contest", $this->localizationName); … … 437 451 echo "<h1>Comment Contest - $choosePrizes</h1>"; 438 452 439 if($error == 1) { 440 $errorText = __("Please give all prizes!", $this->localizationName); 441 echo "<div id='message' class='error'><p>$errorText</p></div>"; 442 } elseif($error == 2) { 443 $errorText = __("Please check all places for each prize", $this->localizationName); 453 // V1.35 - ADD : Different names check and code optimization 454 if($error > 0) { 455 if($error == 1) { 456 $errorText = __("Please give all prizes!", $this->localizationName); 457 } elseif($error == 2) { 458 $errorText = __("Please check all places for each prize", $this->localizationName); 459 } elseif($error == 3) { 460 $errorText = __("Please give different name for each prize", $this->localizationName); 461 } 462 444 463 echo "<div id='message' class='error'><p>$errorText</p></div>"; 445 464 } … … 505 524 * @param $places Prizes' order 506 525 */ 507 /*private */function displayWinners($comments, $numWinners, $numParticipation, $email, $type, $prizes, $places) {526 /*private */function step5_displayWinners($comments, $numWinners, $numParticipation, $email, $type, $prizes, $places) { 508 527 global $wpdb; 509 528 … … 576 595 } 577 596 array_unique($tabTemp); 578 sort($tabTemp);597 natcasesort($tabTemp); // V1.35 - UPDATE : Remove case sensitive sort ("natcasesort($array)" replace "sort($array)") 579 598 echo implode(", ", $tabTemp); 580 599 } … … 584 603 * @param $message The error message 585 604 * @param $args The message's parameter. <code>$args[0]</code> must be <i>"post"</i> or <i>"home"</i> 605 * @version 1.35 - UPDATE : Change the message format 586 606 */ 587 607 /*private */function error($message, $args) { … … 590 610 $chooseComment = __("Choose comments", $this->localizationName); 591 611 592 die ( " $message<br /><br />612 die ( "<div id='message' class='error'><p>$message</p></div><br /><br /> 593 613 <form action='plugins.php?page=comment-contest.php' method='post'> 594 614 <input type='hidden' name='postnumber' value='$args[1]' /> … … 601 621 $back = __("Back", $this->localizationName); 602 622 603 die ( " $message<br /><br /><a href='$url/wp-admin/plugins.php?page=comment-contest.php'>$back</a>" );623 die ( "<div id='message' class='error'><p>$message</p></div><br /><br /><a href='$url/wp-admin/plugins.php?page=comment-contest.php'>$back</a>" ); 604 624 } 605 625 } … … 616 636 $test = false; 617 637 for($i = 0; $i < count($names); $i++) { 618 if($names[$i] == "" ) {638 if($names[$i] == "" || $names[$i] == null) { 619 639 $test = true; 620 640 } … … 650 670 651 671 $res = $this->checkPrizes($_POST['prizeName'], $_POST['to'], $_POST['from']); 672 673 // V1.35 - ADD : Check different names 674 if(is_array($_POST['prizeName'])) { 675 $temp = $_POST['prizeName']; 676 $temp = array_unique($temp); 677 if(count($temp) != count($_POST['prizeName'])) { 678 $res = 3; 679 } 680 } 652 681 653 682 if($res == 0) { 654 $this-> displayWinners ( $_POST ['comments'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['prizeName'], $_POST['from'] );655 } else { 656 $this-> choosePrizes($_POST ['comments'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'], $res, implode(",", $_POST['prizeName']), implode(",", $_POST['to']));683 $this->step5_displayWinners ( $_POST ['comments'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['prizeName'], $_POST['from'] ); 684 } else { 685 $this->step4_choosePrizes($_POST ['comments'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'], $res, implode(",", $_POST['prizeName']), implode(",", $_POST['to'])); 657 686 } 658 687 … … 661 690 } 662 691 else if (isset ( $_POST ['postnumber'] ) && $_POST ['postnumber'] != -1) { // Step 3 : Choose comments 663 $this-> chooseComments ( $_POST ['postnumber'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'] );692 $this->step3_chooseComments ( $_POST ['postnumber'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'] ); 664 693 665 694 // --------------------------------------------------------------------------------- … … 670 699 if ($comments == null || count ( $comments ) == 0) { 671 700 $selectOneWinner = __("Please select one winner at least!", $this->localizationName); 672 $this-> chooseComments ( $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'], $selectOneWinner, null );701 $this->step3_chooseComments ( $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'], $selectOneWinner, null ); 673 702 } elseif (count ( $comments ) < $_POST ['numWinners']) { 674 703 $selectMoreWinner = __("Please select more participants than winners!", $this->localizationName); 675 $this-> chooseComments ( $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'], $selectMoreWinner, $comments );676 } else { 677 $this-> choosePrizes(implode(",", $comments), $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes']);704 $this->step3_chooseComments ( $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes'], $selectMoreWinner, $comments ); 705 } else { 706 $this->step4_choosePrizes(implode(",", $comments), $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'], $_POST['contestType'], $_POST['numPrizes']); 678 707 } 679 708 // --------------------------------------------------------------------------------- … … 698 727 if (count ( $_POST ['rank'] ) == 0) { 699 728 $selectOneRank = __("Please select one rank at least!", $this->localizationName); 700 $this-> configure ($selectOneRank, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, null, $email);729 $this->step1_configure ($selectOneRank, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, null, $email); 701 730 } elseif ($numWinners == null || $numWinners <= 0) { 702 731 $winnerFormat = __("Wrong winners format!", $this->localizationName); 703 $this-> configure ($winnerFormat, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email);732 $this->step1_configure ($winnerFormat, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email); 704 733 } elseif ($numParticipation == null || $numParticipation <= 0) { 705 734 $participationsFormat = __("Wrong participations format!", $this->localizationName); 706 $this-> configure ($participationsFormat, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email);735 $this->step1_configure ($participationsFormat, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email); 707 736 } elseif($email == $emailContentTest) { 708 737 $emailContentError = __("Please change the email's content!", $this->localizationName); 709 $this-> configure ($emailContentError, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email);738 $this->step1_configure ($emailContentError, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email); 710 739 } elseif ($numPrizes == null || $numPrizes <= 0 || $numPrizes > $numWinners) { 711 740 $prizesFormat = __("Wrong prizes number format! Or choose more winners than prizes!", $this->localizationName); 712 $this-> configure ($prizesFormat, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email);741 $this->step1_configure ($prizesFormat, $_POST['contestType'], $numWinners, $numParticipation, $numPrizes, $_POST ['rank'], $email); 713 742 } else { 714 743 if(is_array($_POST ['rank'])) { … … 717 746 $tab = $_POST ['rank']; 718 747 } 719 $this-> choosePost ( $page, $tab, $numWinners, $numParticipation, $email, $_POST['contestType'], $numPrizes );748 $this->step2_choosePost ( $page, $tab, $numWinners, $numParticipation, $email, $_POST['contestType'], $numPrizes ); 720 749 } 721 750 … … 723 752 724 753 } else { // Step 1 : Configure the contest 725 $this-> configure ();754 $this->step1_configure (); 726 755 } 727 756 } -
comment-contest/trunk/languages/commentContest-en_US.po
r154447 r164608 3 3 "Project-Id-Version: Comment Contest\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2009- 09-13 20:03+0100\n"5 "POT-Creation-Date: 2009-10-18 17:40+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Zhykos<zhykos@nozzhy.com>\n"7 "Last-Translator: Thomas Cicognani <zhykos@nozzhy.com>\n" 8 8 "Language-Team: Zhykos & Nozgarde <contact@nozzhy.com>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-KeywordsList: __;_e;_c\n" 17 17 "X-Poedit-Basepath: .\n" 18 "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\w p-content\\plugins\\comment-contest\n"19 20 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:9518 "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wordpress\\wp-content\\plugins\\comment-contest\n" 19 20 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:95 21 21 msgid "Comment Contest" 22 22 msgstr "Comment Contest" 23 23 24 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15524 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:155 25 25 msgid "Configure the contest" 26 26 msgstr "Configure the contest" 27 27 28 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15628 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:156 29 29 msgid "Winners' number" 30 30 msgstr "Winners' number" 31 31 32 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15732 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:157 33 33 msgid "Maximum participations' number per person" 34 34 msgstr "Maximum participations' number per person" 35 35 36 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15836 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:158 37 37 msgid "Allowed ranks to participate" 38 38 msgstr "Allowed ranks to participate" 39 39 40 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15940 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:159 41 41 msgid "Administrator" 42 42 msgstr "Administrator" 43 43 44 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16044 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:160 45 45 msgid "Editor" 46 46 msgstr "Editor" 47 47 48 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16148 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:161 49 49 msgid "Author" 50 50 msgstr "Author" 51 51 52 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16252 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:162 53 53 msgid "Contributor" 54 54 msgstr "Contributor" 55 55 56 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16356 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:163 57 57 msgid "Subscriber" 58 58 msgstr "Subscriber" 59 59 60 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16460 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:164 61 61 msgid "Normal user" 62 62 msgstr "Normal user" 63 63 64 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16564 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:165 65 65 msgid "Automaticaly send a mail to winners" 66 66 msgstr "Automaticaly send a mail to winners" 67 67 68 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16669 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:69668 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:166 69 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:722 70 70 msgid "Email's content (HTML possible)" 71 71 msgstr "Email's content (HTML possible)" 72 72 73 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16773 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:167 74 74 msgid "Contest type" 75 75 msgstr "Contest type" 76 76 77 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16878 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:43277 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:168 78 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:339 79 79 msgid "Ok!" 80 80 msgstr "Ok!" 81 81 82 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16982 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:169 83 83 msgid "Normal contest (random winners)" 84 84 msgstr "Normal contest (random winners)" 85 85 86 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:17086 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:170 87 87 msgid "Speed contest (first comments win)" 88 88 msgstr "Speed contest (first comments win)" 89 89 90 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:17190 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:171 91 91 msgid "Number of different prizes" 92 92 msgstr "Number of different prizes" 93 93 94 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:28494 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:284 95 95 msgid "Choose a post" 96 96 msgstr "Choose a post" 97 97 98 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:28598 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:285 99 99 msgid "More..." 100 100 msgstr "More..." 101 101 102 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:286102 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:286 103 103 msgid "No post found!" 104 104 msgstr "No post found!" 105 105 106 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:334 106 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:287 107 msgid "comment(s)" 108 msgstr "comment(s)" 109 110 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:338 107 111 msgid "Choose comments to include in the contest" 108 112 msgstr "Choose comments to include in the contest" 109 113 110 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:335 114 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:340 115 msgid "No comment found!" 116 msgstr "No comment found!" 117 118 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:445 119 msgid "Prizes' choice" 120 msgstr "Prizes' choice" 121 122 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:446 111 123 msgid "Launch the contest" 112 124 msgstr "Launch the contest" 113 125 114 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:336 115 msgid "No comment found!" 116 msgstr "No comment found!" 117 118 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:431 119 msgid "Prizes' choice" 120 msgstr "Prizes' choice" 121 122 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:433 126 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:447 123 127 msgid "Prize name:" 124 128 msgstr "Prize name:" 125 129 126 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:434130 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:448 127 131 msgid "From" 128 132 msgstr "From" 129 133 130 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:435134 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:449 131 135 msgid "to" 132 136 msgstr "to" 133 137 134 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:440138 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:456 135 139 msgid "Please give all prizes!" 136 140 msgstr "Please give all prizes!" 137 141 138 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:443142 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:458 139 143 msgid "Please check all places for each prize" 140 144 msgstr "Please check all places for each prize" 141 145 142 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:510 146 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:460 147 msgid "Please give different name for each prize" 148 msgstr "Please give different name for each prize" 149 150 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:529 143 151 msgid "Winners" 144 152 msgstr "Winners" 145 153 146 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:511154 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:530 147 155 msgid "Comment" 148 156 msgstr "Comment:" 149 157 150 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:512158 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:531 151 159 msgid "says" 152 160 msgstr "says" 153 161 154 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:513162 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:532 155 163 msgid "You win a contest" 156 164 msgstr "You win a contest" 157 165 158 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:537166 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:556 159 167 msgid "Prize won:" 160 168 msgstr "Prize won:" 161 169 162 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:570170 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:589 163 171 msgid "List of all participants:" 164 172 msgstr "List of all participants: " 165 173 166 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:590174 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:610 167 175 msgid "Choose comments" 168 176 msgstr "Choose comments" 169 177 170 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:601178 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:621 171 179 msgid "Back" 172 180 msgstr "Back" 173 181 174 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:671182 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:697 175 183 msgid "Please select one winner at least!" 176 184 msgstr "Please select one winner at least!" 177 185 178 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:674186 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:700 179 187 msgid "Please select more participants than winners!" 180 188 msgstr "Please select more participants than winners!" 181 189 182 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:699190 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:725 183 191 msgid "Please select one rank at least!" 184 192 msgstr "Please select one rank at least!" 185 193 186 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:702194 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:728 187 195 msgid "Wrong winners format!" 188 196 msgstr "Wrong winners format!" 189 197 190 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:705198 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:731 191 199 msgid "Wrong participations format!" 192 200 msgstr "Wrong participations format!" 193 201 194 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:708202 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:734 195 203 msgid "Please change the email's content!" 196 204 msgstr "Please change the email's content!" 197 205 198 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:711206 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:737 199 207 msgid "Wrong prizes number format! Or choose more winners than prizes!" 200 208 msgstr "Wrong prizes number format! Or choose more winners than prizes!" -
comment-contest/trunk/languages/commentContest-en_US.pot
r154447 r164608 3 3 "Project-Id-Version: Comment Contest\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2009- 09-13 20:03+0100\n"5 "POT-Creation-Date: 2009-10-18 17:40+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Zhykos<zhykos@nozzhy.com>\n"7 "Last-Translator: Thomas Cicognani <zhykos@nozzhy.com>\n" 8 8 "Language-Team: Zhykos & Nozgarde <contact@nozzhy.com>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-KeywordsList: __;_e;_c\n" 17 17 "X-Poedit-Basepath: .\n" 18 "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\w p-content\\plugins\\comment-contest\n"19 20 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:9518 "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wordpress\\wp-content\\plugins\\comment-contest\n" 19 20 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:95 21 21 msgid "Comment Contest" 22 22 msgstr "Comment Contest" 23 23 24 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15524 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:155 25 25 msgid "Configure the contest" 26 26 msgstr "Configure the contest" 27 27 28 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15628 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:156 29 29 msgid "Winners' number" 30 30 msgstr "Winners' number" 31 31 32 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15732 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:157 33 33 msgid "Maximum participations' number per person" 34 34 msgstr "Maximum participations' number per person" 35 35 36 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15836 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:158 37 37 msgid "Allowed ranks to participate" 38 38 msgstr "Allowed ranks to participate" 39 39 40 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15940 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:159 41 41 msgid "Administrator" 42 42 msgstr "Administrator" 43 43 44 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16044 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:160 45 45 msgid "Editor" 46 46 msgstr "Editor" 47 47 48 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16148 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:161 49 49 msgid "Author" 50 50 msgstr "Author" 51 51 52 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16252 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:162 53 53 msgid "Contributor" 54 54 msgstr "Contributor" 55 55 56 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16356 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:163 57 57 msgid "Subscriber" 58 58 msgstr "Subscriber" 59 59 60 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16460 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:164 61 61 msgid "Normal user" 62 62 msgstr "Normal user" 63 63 64 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16564 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:165 65 65 msgid "Automaticaly send a mail to winners" 66 66 msgstr "Automaticaly send a mail to winners" 67 67 68 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16669 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:69668 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:166 69 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:722 70 70 msgid "Email's content (HTML possible)" 71 71 msgstr "Email's content (HTML possible)" 72 72 73 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16773 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:167 74 74 msgid "Contest type" 75 75 msgstr "Contest type" 76 76 77 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16878 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:43277 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:168 78 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:339 79 79 msgid "Ok!" 80 80 msgstr "Ok!" 81 81 82 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16982 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:169 83 83 msgid "Normal contest (random winners)" 84 84 msgstr "Normal contest (random winners)" 85 85 86 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:17086 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:170 87 87 msgid "Speed contest (first comments win)" 88 88 msgstr "Speed contest (first comments win)" 89 89 90 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:17190 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:171 91 91 msgid "Number of different prizes" 92 92 msgstr "Number of different prizes" 93 93 94 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:28494 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:284 95 95 msgid "Choose a post" 96 96 msgstr "Choose a post" 97 97 98 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:28598 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:285 99 99 msgid "More..." 100 100 msgstr "More..." 101 101 102 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:286102 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:286 103 103 msgid "No post found!" 104 104 msgstr "No post found!" 105 105 106 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:334 106 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:287 107 msgid "comment(s)" 108 msgstr "comment(s)" 109 110 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:338 107 111 msgid "Choose comments to include in the contest" 108 112 msgstr "Choose comments to include in the contest" 109 113 110 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:335 114 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:340 115 msgid "No comment found!" 116 msgstr "No comment found!" 117 118 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:445 119 msgid "Prizes' choice" 120 msgstr "Prizes' choice" 121 122 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:446 111 123 msgid "Launch the contest" 112 124 msgstr "Launch the contest" 113 125 114 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:336 115 msgid "No comment found!" 116 msgstr "No comment found!" 117 118 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:431 119 msgid "Prizes' choice" 120 msgstr "Prizes' choice" 121 122 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:433 126 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:447 123 127 msgid "Prize name:" 124 128 msgstr "Prize name:" 125 129 126 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:434130 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:448 127 131 msgid "From" 128 132 msgstr "From" 129 133 130 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:435134 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:449 131 135 msgid "to" 132 136 msgstr "to" 133 137 134 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:440138 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:456 135 139 msgid "Please give all prizes!" 136 140 msgstr "Please give all prizes!" 137 141 138 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:443142 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:458 139 143 msgid "Please check all places for each prize" 140 144 msgstr "Please check all places for each prize" 141 145 142 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:510 146 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:460 147 msgid "Please give different name for each prize" 148 msgstr "Please give different name for each prize" 149 150 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:529 143 151 msgid "Winners" 144 152 msgstr "Winners" 145 153 146 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:511154 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:530 147 155 msgid "Comment" 148 156 msgstr "Comment:" 149 157 150 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:512158 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:531 151 159 msgid "says" 152 160 msgstr "says" 153 161 154 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:513162 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:532 155 163 msgid "You win a contest" 156 164 msgstr "You win a contest" 157 165 158 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:537166 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:556 159 167 msgid "Prize won:" 160 168 msgstr "Prize won:" 161 169 162 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:570170 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:589 163 171 msgid "List of all participants:" 164 172 msgstr "List of all participants: " 165 173 166 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:590174 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:610 167 175 msgid "Choose comments" 168 176 msgstr "Choose comments" 169 177 170 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:601178 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:621 171 179 msgid "Back" 172 180 msgstr "Back" 173 181 174 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:671182 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:697 175 183 msgid "Please select one winner at least!" 176 184 msgstr "Please select one winner at least!" 177 185 178 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:674186 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:700 179 187 msgid "Please select more participants than winners!" 180 188 msgstr "Please select more participants than winners!" 181 189 182 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:699190 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:725 183 191 msgid "Please select one rank at least!" 184 192 msgstr "Please select one rank at least!" 185 193 186 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:702194 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:728 187 195 msgid "Wrong winners format!" 188 196 msgstr "Wrong winners format!" 189 197 190 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:705198 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:731 191 199 msgid "Wrong participations format!" 192 200 msgstr "Wrong participations format!" 193 201 194 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:708202 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:734 195 203 msgid "Please change the email's content!" 196 204 msgstr "Please change the email's content!" 197 205 198 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:711206 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:737 199 207 msgid "Wrong prizes number format! Or choose more winners than prizes!" 200 208 msgstr "Wrong prizes number format! Or choose more winners than prizes!" -
comment-contest/trunk/languages/commentContest-fr_FR.po
r154447 r164608 3 3 "Project-Id-Version: Comment Contest\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2009- 09-13 20:04+0100\n"5 "POT-Creation-Date: 2009-10-18 17:39+0100\n" 6 6 "PO-Revision-Date: \n" 7 "Last-Translator: Zhykos<zhykos@nozzhy.com>\n"7 "Last-Translator: Thomas Cicognani <zhykos@nozzhy.com>\n" 8 8 "Language-Team: Zhykos & Nozgarde <contact@nozzhy.com>\n" 9 9 "MIME-Version: 1.0\n" … … 16 16 "X-Poedit-KeywordsList: __;_e;_c\n" 17 17 "X-Poedit-Basepath: .\n" 18 "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\w p-content\\plugins\\comment-contest\n"19 20 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:9518 "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress\\wordpress\\wp-content\\plugins\\comment-contest\n" 19 20 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:95 21 21 msgid "Comment Contest" 22 22 msgstr "Comment Contest" 23 23 24 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15524 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:155 25 25 msgid "Configure the contest" 26 26 msgstr "Configurations du tirage au sort" 27 27 28 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15628 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:156 29 29 msgid "Winners' number" 30 30 msgstr "Nombre de gagnants " 31 31 32 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15732 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:157 33 33 msgid "Maximum participations' number per person" 34 34 msgstr "Nombre maximum de participations par personne " 35 35 36 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15836 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:158 37 37 msgid "Allowed ranks to participate" 38 38 msgstr "Rangs autorisés pour participation " 39 39 40 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:15940 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:159 41 41 msgid "Administrator" 42 42 msgstr "Administrateur" 43 43 44 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16044 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:160 45 45 msgid "Editor" 46 46 msgstr "Éditeur" 47 47 48 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16148 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:161 49 49 msgid "Author" 50 50 msgstr "Auteur" 51 51 52 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16252 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:162 53 53 msgid "Contributor" 54 54 msgstr "Contributeur" 55 55 56 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16356 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:163 57 57 msgid "Subscriber" 58 58 msgstr "Abonné" 59 59 60 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16460 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:164 61 61 msgid "Normal user" 62 62 msgstr "Utilisateur normal" 63 63 64 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16564 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:165 65 65 msgid "Automaticaly send a mail to winners" 66 66 msgstr "Envoyer automatiquement un email aux gagnants" 67 67 68 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16669 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:69668 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:166 69 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:722 70 70 msgid "Email's content (HTML possible)" 71 71 msgstr "Contenu de l'email (HTML possible)" 72 72 73 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16773 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:167 74 74 msgid "Contest type" 75 75 msgstr "Type de concours" 76 76 77 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16878 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:43277 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:168 78 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:339 79 79 msgid "Ok!" 80 80 msgstr "Ok !" 81 81 82 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:16982 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:169 83 83 msgid "Normal contest (random winners)" 84 84 msgstr "Concours normal (gagnants aléatoire)" 85 85 86 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:17086 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:170 87 87 msgid "Speed contest (first comments win)" 88 88 msgstr "Concours rapide (les premiers commentaires gagnent)" 89 89 90 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:17190 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:171 91 91 msgid "Number of different prizes" 92 msgstr "Nombre de lots à gagner"93 94 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:28492 msgstr "Nombre de lots différents à gagner" 93 94 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:284 95 95 msgid "Choose a post" 96 96 msgstr "Choisir un article" 97 97 98 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:28598 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:285 99 99 msgid "More..." 100 100 msgstr "Plus..." 101 101 102 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:286102 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:286 103 103 msgid "No post found!" 104 104 msgstr "Aucun article !" 105 105 106 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:334 106 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:287 107 msgid "comment(s)" 108 msgstr "commentaire(s)" 109 110 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:338 107 111 msgid "Choose comments to include in the contest" 108 112 msgstr "Choisir les commentaires à inclure dans le concours" 109 113 110 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:335 114 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:340 115 msgid "No comment found!" 116 msgstr "Aucun commentaire !" 117 118 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:445 119 msgid "Prizes' choice" 120 msgstr "Choix des lots" 121 122 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:446 111 123 msgid "Launch the contest" 112 124 msgstr "Lancer le tirage au sort" 113 125 114 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:336 115 msgid "No comment found!" 116 msgstr "Aucun commentaire !" 117 118 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:431 119 msgid "Prizes' choice" 120 msgstr "Choix des lots" 121 122 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:433 126 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:447 123 127 msgid "Prize name:" 124 128 msgstr "Nom du lot :" 125 129 126 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:434130 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:448 127 131 msgid "From" 128 132 msgstr "De" 129 133 130 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:435134 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:449 131 135 msgid "to" 132 136 msgstr "à" 133 137 134 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:440138 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:456 135 139 msgid "Please give all prizes!" 136 140 msgstr "Veuillez préciser tous les lots !" 137 141 138 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:443142 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:458 139 143 msgid "Please check all places for each prize" 140 144 msgstr "Veuillez vérifier toutes les places pour chaque lot !" 141 145 142 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:510 146 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:460 147 msgid "Please give different name for each prize" 148 msgstr "Veuillez donner un nom différent pour chaque lot" 149 150 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:529 143 151 msgid "Winners" 144 152 msgstr "Les gagnants" 145 153 146 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:511154 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:530 147 155 msgid "Comment" 148 156 msgstr "Commentaire de" 149 157 150 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:512158 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:531 151 159 msgid "says" 152 160 msgstr "avec" 153 161 154 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:513162 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:532 155 163 msgid "You win a contest" 156 164 msgstr "Vous avez gagné un concours" 157 165 158 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:537166 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:556 159 167 msgid "Prize won:" 160 168 msgstr "Lot gagné :" 161 169 162 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:570170 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:589 163 171 msgid "List of all participants:" 164 172 msgstr "Liste des participants au concours :" 165 173 166 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:590174 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:610 167 175 msgid "Choose comments" 168 176 msgstr "Rechoisir les commentaires" 169 177 170 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:601178 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:621 171 179 msgid "Back" 172 180 msgstr "Retour au début" 173 181 174 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:671182 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:697 175 183 msgid "Please select one winner at least!" 176 184 msgstr "Veuillez sélectionner au moins un gagnant !" 177 185 178 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:674186 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:700 179 187 msgid "Please select more participants than winners!" 180 188 msgstr "Veuillez sélectionner plus de participants que de gagnants !" 181 189 182 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:699190 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:725 183 191 msgid "Please select one rank at least!" 184 192 msgstr "Veuillez sélectionner au moins un rang !" 185 193 186 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:702194 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:728 187 195 msgid "Wrong winners format!" 188 196 msgstr "Veuillez spécifier un nombre correct de gagnants !" 189 197 190 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:705198 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:731 191 199 msgid "Wrong participations format!" 192 200 msgstr "Veuillez spécifier un nombre correct de participations !" 193 201 194 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:708202 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:734 195 203 msgid "Please change the email's content!" 196 204 msgstr "Veuillez changer le contenu de l'email" 197 205 198 #: C:\wamp\www\wordpress\w p-content\plugins\comment-contest/comment-contest.php:711206 #: C:\wamp\www\wordpress\wordpress\wp-content\plugins\comment-contest/comment-contest.php:737 199 207 msgid "Wrong prizes number format! Or choose more winners than prizes!" 200 msgstr "Mauvais format pour le s places!"201 208 msgstr "Mauvais format pour le nombre de prix ! Ou choisissez plus de gagnants que de prix !" 209 -
comment-contest/trunk/readme.txt
r154447 r164608 66 66 * Change error message display (now it's the same message as Wordpress). Old values are put in the fields so the user don't have to type again the values 67 67 * New winners display 68 69 = 1.35 = 70 * Only display posts with comments 71 * BUG FIX : Simple and double quotes protected because if a pseudo contains quotes, some query bug (thanks to Kamel from www.yoocom.fr) 72 * BUG FIX : Change the place of a check value (bug if the value was null) 73 * Different names check for prizes and code optimization 74 * Remove case sensitive sort for displaying all the participants 75 * Change error message format in certain cases 76 * Change localization message in French
Note: See TracChangeset
for help on using the changeset viewer.