Changeset 152584
- Timestamp:
- 09/06/2009 07:57:46 PM (17 years ago)
- Location:
- comment-contest/trunk
- Files:
-
- 11 edited
-
comment-contest.php (modified) (16 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-1.jpg (modified) (previous)
-
screenshot-2.jpg (modified) (previous)
-
screenshot-3.jpg (modified) (previous)
-
screenshot-4.jpg (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
comment-contest/trunk/comment-contest.php
r151978 r152584 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.1. 0.17 Version: 1.1.1b 8 8 Author URI: http://www.nozzhy.com 9 9 */ … … 16 16 class CommentContest { 17 17 var $domain = ''; 18 var $version = '1.1. 0.1'; // Current version18 var $version = '1.1.1b'; // Current version 19 19 var $option_ns = ''; 20 20 var $options = array (); … … 136 136 $subscriber = __("Subscriber", $this->localizationName); 137 137 $user = __("Normal user", $this->localizationName); 138 $sendmail = __("Automaticaly send a mail to winners", $this->localizationName); 139 $mailcontent = __("Email's content", $this->localizationName); 138 140 $ok = __("Ok!", $this->localizationName); 139 141 … … 142 144 $winnersNumber: <input type='text' name='winners' value='2' /><br /> 143 145 $participationsNumber: <input type='text' name='number' value='1' /><br /> 144 <table >146 <table style='margin-left: -2px'> 145 147 <tr style='vertical-align: top'> 146 148 <td>$allowedRanks:</td> … … 155 157 </tr> 156 158 </table> 157 <br /><input type='submit' name='features' value='$ok' /></form>"; 159 <br /> 160 <input type='checkbox' name='sendmail' /> $sendmail<br /> 161 <textarea name='mailcontent' rols='10' cols='40'>$mailcontent</textarea> 162 <br /><br /><input type='submit' name='features' value='$ok' /></form>"; 158 163 } 159 164 … … 166 171 * @param $numParticipation The participation's number for each person 167 172 */ 168 private function choosePost($currentPage, $ranks, $numWinners, $numParticipation ) {173 private function choosePost($currentPage, $ranks, $numWinners, $numParticipation, $email) { 169 174 global $wpdb; 170 175 $maxArticles = 20; … … 187 192 <input type='hidden' name='numWinners' value='$numWinners' /> 188 193 <input type='hidden' name='numParticipation' value='$numParticipation' /> 194 <input type='hidden' name='email' value='$email' /> 189 195 <input type='hidden' name='postnumber' id='postnumber' value='' /></form>"; 190 196 if (count ( $posts ) > $maxArticles) { … … 204 210 * @param $numParticipation The participation's number for each person 205 211 */ 206 private function chooseComments($idPost, $ranks, $numWinners, $numParticipation ) {212 private function chooseComments($idPost, $ranks, $numWinners, $numParticipation, $email) { 207 213 global $wpdb; 208 214 … … 266 272 <input type='hidden' name='numWinners' value='$numWinners' /> 267 273 <input type='hidden' name='numParticipation' value='$numParticipation' /> 274 <input type='hidden' name='email' value='$email' /> 268 275 <input type='submit' value='$launchContest' /></form>"; 269 276 } else { … … 279 286 * @param $numParticipation The participation's number for each person 280 287 */ 281 private function displayWinners($comments, $numWinners, $numParticipation ) {288 private function displayWinners($comments, $numWinners, $numParticipation, $email) { 282 289 global $wpdb; 283 290 … … 285 292 $commentWord = __("Comment", $this->localizationName); 286 293 $say = __("says", $this->localizationName); 294 $winSubject = __("You win a contest", $this->localizationName); 295 296 $blogname = get_option('blogname'); 297 $adminEmail = get_option("admin_email"); 298 $siteUrl = get_option("siteurl"); 299 300 $message_headers = "From: $adminEmail\n" 301 . "Content-Type: text/html; charset=\"" . get_option('blog_charset') . "\"\n" 302 . "Reply-To: $adminEmail\n"; 287 303 288 304 $tab = null; … … 306 322 $author = $from; 307 323 echo "<strong>$commentWord</strong> $from <strong>$say</strong> $c->comment_content <br /><br />"; 324 if($email != null) { 325 @wp_mail($c->comment_author_email, $winSubject, base64_decode($email), $message_headers); 326 } 308 327 } 309 328 … … 330 349 <input type='hidden' name='numWinners' value='$args[3]' /> 331 350 <input type='hidden' name='numParticipation' value='$args[4]' /> 351 <input type='hidden' name='numParticipation' value='$args[5]' /> 332 352 <input type='submit' value='$chooseComment' /></form>" ); 333 353 } elseif ($args [0] == 'home') { … … 343 363 function AdminHelpPage() { 344 364 if (isset ( $_POST ['postnumber'] )) { // Step 3 : Choose comments 345 $this->chooseComments ( $_POST ['postnumber'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'] ); 365 $this->chooseComments ( $_POST ['postnumber'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'] ); 366 367 // --------------------------------------------------------------------------------- 368 346 369 } elseif (isset ( $_POST ['post'] )) { // Step 4 : Display winners 347 370 $comments = $_POST ['comments']; … … 349 372 if ($comments == null || count ( $comments ) == 0) { 350 373 $selectOneWinner = __("Please select one winner at least!", $this->localizationName); 351 $this->error ( $selectOneWinner, array ("post", $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'] ) );374 $this->error ( $selectOneWinner, array ("post", $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'] ) ); 352 375 } elseif (count ( $comments ) <= $_POST ['numWinners']) { 353 376 $selectMoreWinner = __("Please select more participants than winners!", $this->localizationName); 354 $this->error ( $selectMoreWinner, array ("post", $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'] ) );377 $this->error ( $selectMoreWinner, array ("post", $_POST ['post'], $_POST ['rank'], $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'] ) ); 355 378 } else { 356 $this->displayWinners ( $comments, $_POST ['numWinners'], $_POST ['numParticipation'] ); 357 } 379 $this->displayWinners ( $comments, $_POST ['numWinners'], $_POST ['numParticipation'], $_POST ['email'] ); 380 } 381 382 // --------------------------------------------------------------------------------- 383 358 384 } elseif (isset ( $_POST ['features'] ) || isset ( $_GET ['pagepost'] )) { // Step 2 : Choose an article 359 385 // Change the page if needed … … 364 390 $numWinners = intval ( $_POST ['winners'] ); 365 391 $numParticipation = intval ( $_POST ['number'] ); 392 if(isset($_POST['sendmail'])) { 393 $email = base64_encode($_POST['sendmail']); 394 } else { 395 $email = null; 396 } 397 398 $emailContentTest = __("Email's content", $this->localizationName); 399 366 400 if (count ( $_POST ['rank'] ) == 0) { 367 401 $selectOneRank = __("Please select one rank at least!", $this->localizationName); 368 $this->error ( $selectOneRank, array ("home" ) );402 $this->error ( $selectOneRank, array ("home") ); 369 403 } elseif ($numWinners == null || $numWinners <= 0) { 370 404 $winnerFormat = __("Wrong winners format!", $this->localizationName); 371 $this->error ( $winnerFormat, array ("home" ) );405 $this->error ( $winnerFormat, array ("home") ); 372 406 } elseif ($numParticipation == null || $numParticipation <= 0) { 373 407 $participationsFormat = __("Wrong participations format!", $this->localizationName); 374 $this->error ( $participationsFormat, array ("home" ) ); 408 $this->error ( $participationsFormat, array ("home") ); 409 } elseif($email == $emailContentTest) { 410 $emailContentError = __("Please change the email's content!", $this->localizationName); 411 $this->error ( $emailContentError, array ("home") ); 375 412 } else { 376 $this->choosePost ( $page, implode ( ",", $_POST ['rank'] ), $numWinners, $numParticipation ); 377 } 413 $this->choosePost ( $page, implode ( ",", $_POST ['rank'] ), $numWinners, $numParticipation, $email ); 414 } 415 416 // --------------------------------------------------------------------------------- 417 378 418 } else { // Step 1 : Configure the contest 379 419 $this->configure (); -
comment-contest/trunk/languages/commentContest-en_US.po
r151977 r152584 3 3 "Project-Id-Version: Comment Contest\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2009-09-0 4 15:23+0100\n"5 "POT-Creation-Date: 2009-09-06 21:51+0100\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Zhykos <zhykos@nozzhy.com>\n" … … 63 63 64 64 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:138 65 msgid "Automaticaly send a mail to winners" 66 msgstr "Automaticaly send a mail to winners" 67 68 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:139 69 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:398 70 msgid "Email's content" 71 msgstr "Email's content" 72 73 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:140 65 74 msgid "Ok!" 66 75 msgstr "Ok!" 67 76 68 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 277 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:177 69 78 msgid "Choose a post" 70 79 msgstr "Choose a post" 71 80 72 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 381 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:178 73 82 msgid "More..." 74 83 msgstr "More..." 75 84 76 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 485 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:179 77 86 msgid "No post found!" 78 87 msgstr "No post found!" 79 88 80 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 0989 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:215 81 90 msgid "Choose comments to include in the contest" 82 91 msgstr "Choose comments to include in the contest" 83 92 84 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:21 093 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:216 85 94 msgid "Launch the contest" 86 95 msgstr "Launch the contest" 87 96 88 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:21 197 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:217 89 98 msgid "No comment found!" 90 99 msgstr "No comment found!" 91 100 92 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 84101 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:291 93 102 msgid "Winners" 94 103 msgstr "Winners" 95 104 96 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 85105 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:292 97 106 msgid "Comment" 98 107 msgstr "Comment:" 99 108 100 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 86109 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:293 101 110 msgid "says" 102 111 msgstr "says" 103 112 104 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:324 113 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:294 114 msgid "You win a contest" 115 msgstr "You win a contest" 116 117 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:343 105 118 msgid "Choose comments" 106 119 msgstr "Choose comments" 107 120 108 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 34121 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:354 109 122 msgid "Back" 110 123 msgstr "Back" 111 124 112 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 50125 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:373 113 126 msgid "Please select one winner at least!" 114 127 msgstr "Please select one winner at least!" 115 128 116 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 53129 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:376 117 130 msgid "Please select more participants than winners!" 118 131 msgstr "Please select more participants than winners!" 119 132 120 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 367133 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:401 121 134 msgid "Please select one rank at least!" 122 135 msgstr "Please select one rank at least!" 123 136 124 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 370137 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:404 125 138 msgid "Wrong winners format!" 126 139 msgstr "Wrong winners format!" 127 140 128 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 373141 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:407 129 142 msgid "Wrong participations format!" 130 143 msgstr "Wrong participations format!" 131 144 145 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:410 146 msgid "Please change the email's content!" 147 msgstr "Please change the email's content!" 148 -
comment-contest/trunk/languages/commentContest-en_US.pot
r151977 r152584 3 3 "Project-Id-Version: Comment Contest\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2009-09-0 4 15:23+0100\n"5 "POT-Creation-Date: 2009-09-06 21:51+0100\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Zhykos <zhykos@nozzhy.com>\n" … … 63 63 64 64 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:138 65 msgid "Automaticaly send a mail to winners" 66 msgstr "Automaticaly send a mail to winners" 67 68 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:139 69 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:398 70 msgid "Email's content" 71 msgstr "Email's content" 72 73 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:140 65 74 msgid "Ok!" 66 75 msgstr "Ok!" 67 76 68 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 277 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:177 69 78 msgid "Choose a post" 70 79 msgstr "Choose a post" 71 80 72 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 381 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:178 73 82 msgid "More..." 74 83 msgstr "More..." 75 84 76 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 485 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:179 77 86 msgid "No post found!" 78 87 msgstr "No post found!" 79 88 80 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 0989 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:215 81 90 msgid "Choose comments to include in the contest" 82 91 msgstr "Choose comments to include in the contest" 83 92 84 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:21 093 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:216 85 94 msgid "Launch the contest" 86 95 msgstr "Launch the contest" 87 96 88 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:21 197 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:217 89 98 msgid "No comment found!" 90 99 msgstr "No comment found!" 91 100 92 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 84101 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:291 93 102 msgid "Winners" 94 103 msgstr "Winners" 95 104 96 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 85105 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:292 97 106 msgid "Comment" 98 107 msgstr "Comment:" 99 108 100 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 86109 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:293 101 110 msgid "says" 102 111 msgstr "says" 103 112 104 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:324 113 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:294 114 msgid "You win a contest" 115 msgstr "You win a contest" 116 117 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:343 105 118 msgid "Choose comments" 106 119 msgstr "Choose comments" 107 120 108 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 34121 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:354 109 122 msgid "Back" 110 123 msgstr "Back" 111 124 112 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 50125 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:373 113 126 msgid "Please select one winner at least!" 114 127 msgstr "Please select one winner at least!" 115 128 116 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 53129 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:376 117 130 msgid "Please select more participants than winners!" 118 131 msgstr "Please select more participants than winners!" 119 132 120 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 367133 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:401 121 134 msgid "Please select one rank at least!" 122 135 msgstr "Please select one rank at least!" 123 136 124 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 370137 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:404 125 138 msgid "Wrong winners format!" 126 139 msgstr "Wrong winners format!" 127 140 128 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 373141 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:407 129 142 msgid "Wrong participations format!" 130 143 msgstr "Wrong participations format!" 131 144 145 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:410 146 msgid "Please change the email's content!" 147 msgstr "Please change the email's content!" 148 -
comment-contest/trunk/languages/commentContest-fr_FR.po
r151977 r152584 3 3 "Project-Id-Version: Comment Contest\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2009-09-0 4 15:23+0100\n"5 "POT-Creation-Date: 2009-09-06 21:52+0100\n" 6 6 "PO-Revision-Date: \n" 7 7 "Last-Translator: Zhykos <zhykos@nozzhy.com>\n" … … 63 63 64 64 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:138 65 msgid "Automaticaly send a mail to winners" 66 msgstr "Envoyer automatiquement un email aux gagnants" 67 68 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:139 69 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:398 70 msgid "Email's content" 71 msgstr "Contenu de l'email" 72 73 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:140 65 74 msgid "Ok!" 66 75 msgstr "Ok !" 67 76 68 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 277 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:177 69 78 msgid "Choose a post" 70 79 msgstr "Choisir un article" 71 80 72 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 381 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:178 73 82 msgid "More..." 74 83 msgstr "Plus..." 75 84 76 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:17 485 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:179 77 86 msgid "No post found!" 78 87 msgstr "Aucun article !" 79 88 80 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 0989 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:215 81 90 msgid "Choose comments to include in the contest" 82 91 msgstr "Choisir les commentaires à inclure dans le concours" 83 92 84 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:21 093 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:216 85 94 msgid "Launch the contest" 86 95 msgstr "Lancer le tirage au sort" 87 96 88 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:21 197 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:217 89 98 msgid "No comment found!" 90 99 msgstr "Aucun commentaire !" 91 100 92 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 84101 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:291 93 102 msgid "Winners" 94 103 msgstr "Les gagnants" 95 104 96 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 85105 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:292 97 106 msgid "Comment" 98 107 msgstr "Commentaire de" 99 108 100 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:2 86109 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:293 101 110 msgid "says" 102 111 msgstr "avec" 103 112 104 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:324 113 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:294 114 msgid "You win a contest" 115 msgstr "Vous avez gagné un concours" 116 117 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:343 105 118 msgid "Choose comments" 106 119 msgstr "Rechoisir les commentaires" 107 120 108 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 34121 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:354 109 122 msgid "Back" 110 123 msgstr "Retour au début" 111 124 112 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 50125 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:373 113 126 msgid "Please select one winner at least!" 114 127 msgstr "Veuillez sélectionner au moins un gagnant !" 115 128 116 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:3 53129 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:376 117 130 msgid "Please select more participants than winners!" 118 131 msgstr "Veuillez sélectionner plus de participants que de gagnants !" 119 132 120 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 367133 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:401 121 134 msgid "Please select one rank at least!" 122 135 msgstr "Veuillez sélectionner au moins un rang !" 123 136 124 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 370137 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:404 125 138 msgid "Wrong winners format!" 126 139 msgstr "Veuillez spécifier un nombre correct de gagnants !" 127 140 128 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php: 373141 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:407 129 142 msgid "Wrong participations format!" 130 143 msgstr "Veuillez spécifier un nombre correct de participations !" 131 144 145 #: C:\wamp\www\wordpress\wp-content\plugins\comment-contest/comment-contest.php:410 146 msgid "Please change the email's content!" 147 msgstr "Veuillez changer le contenu de l'email" 148 -
comment-contest/trunk/readme.txt
r151978 r152584 44 44 = 1.1.0.1 = 45 45 * Remove "plugin only in french" in a comment 46 47 = 1.1.1b = 48 * Send a mail to the winners at the end. You can choose to do so or not (not tested yet)
Note: See TracChangeset
for help on using the changeset viewer.