YOP Poll - Version 5.7.4

Version Description

  • Fixed security issue. A big thank you to g0blin Research for his help in getting this issue fixed
Download this release

Release Info

Developer yourownprogrammer
Plugin Icon 128x128 YOP Poll
Version 5.7.4
Comparing to
See all releases

Code changes from version 5.7.3 to 5.7.4

inc/admin.php CHANGED
@@ -815,8 +815,8 @@ class Yop_Poll_Admin extends Yop_Poll_Plugin {
815
  }
816
 
817
  public function ajax_set_google_vote() {
818
- $poll_id = yop_poll_base64_decode( $_GET['poll_id'] );
819
- $unique_id = yop_poll_base64_decode( $_GET['unique_id'] );
820
  require_once( YOP_POLL_MODELS . 'poll_model.php' );
821
  $yop_poll_model = new YOP_POLL_Poll_Model( $poll_id );
822
 
@@ -948,8 +948,8 @@ class Yop_Poll_Admin extends Yop_Poll_Plugin {
948
  }
949
 
950
  public function ajax_set_wordpress_vote() {
951
- $poll_id = yop_poll_base64_decode( $_GET['poll_id'] );
952
- $unique_id = yop_poll_base64_decode( $_GET['unique_id'] );
953
  require_once( YOP_POLL_MODELS . 'poll_model.php' );
954
  $yop_poll_model = new YOP_POLL_Poll_Model( $poll_id );
955
 
@@ -974,13 +974,13 @@ class Yop_Poll_Admin extends Yop_Poll_Plugin {
974
  <script type="text/javascript">
975
  function close_window() {
976
  var yop_poll_various_config = new Object();
977
- yop_poll_various_config.poll_id = '<?php echo yop_poll_base64_decode( $_GET['poll_id'] ) ?>';
978
- yop_poll_various_config.unique_id = '<?php echo yop_poll_base64_decode( $_GET['unique_id'] ) ?>';
979
- yop_poll_various_config.poll_location = '<?php echo yop_poll_base64_decode( $_GET['poll_location'] ) ?>';
980
- yop_poll_various_config.is_modal = <?php echo ( yop_poll_base64_decode( $_GET['is_modal'] ) == 'true' ) ? 'true' : 'false' ?>;
981
- yop_poll_various_config.vote_loading_image_target = '<?php echo yop_poll_base64_decode( $_GET['vote_loading_image_target'] ) ?>';
982
- yop_poll_various_config.vote_loading_image_id = '<?php echo yop_poll_base64_decode( $_GET['vote_loading_image_id'] ) ?>';
983
- yop_poll_various_config.vote_type = '<?php echo yop_poll_base64_decode( $_GET['vote_type'] ) ?>';
984
  yop_poll_various_config.facebook_user_details = '<?php echo $facebook_user_details; ?>';
985
  yop_poll_various_config.facebook_error = '<?php echo isset( $_GET['facebook_error'] ) ? $_GET['facebook_error'] : '' ?>';
986
  yop_poll_various_config.public_config = <?php echo json_encode( $public_config ); ?>;
815
  }
816
 
817
  public function ajax_set_google_vote() {
818
+ $poll_id = xss_clean(yop_poll_base64_decode( $_GET['poll_id'] ));
819
+ $unique_id = xss_clean(yop_poll_base64_decode( $_GET['unique_id'] ));
820
  require_once( YOP_POLL_MODELS . 'poll_model.php' );
821
  $yop_poll_model = new YOP_POLL_Poll_Model( $poll_id );
822
 
948
  }
949
 
950
  public function ajax_set_wordpress_vote() {
951
+ $poll_id = yop_poll_base64_decode( xss_clean($_GET['poll_id']) );
952
+ $unique_id = yop_poll_base64_decode( xss_clean($_GET['unique_id'] ));
953
  require_once( YOP_POLL_MODELS . 'poll_model.php' );
954
  $yop_poll_model = new YOP_POLL_Poll_Model( $poll_id );
955
 
974
  <script type="text/javascript">
975
  function close_window() {
976
  var yop_poll_various_config = new Object();
977
+ yop_poll_various_config.poll_id = '<?php echo xss_clean(yop_poll_base64_decode( $_GET['poll_id'] )) ?>';
978
+ yop_poll_various_config.unique_id = '<?php echo xss_clean(yop_poll_base64_decode( $_GET['unique_id'] )) ?>';
979
+ yop_poll_various_config.poll_location = '<?php echo xss_clean(yop_poll_base64_decode( $_GET['poll_location'] )) ?>';
980
+ yop_poll_various_config.is_modal = <?php echo ( xss_clean(yop_poll_base64_decode( $_GET['is_modal'] ) == 'true' )) ? 'true' : 'false' ?>;
981
+ yop_poll_various_config.vote_loading_image_target = '<?php echo xss_clean(yop_poll_base64_decode( $_GET['vote_loading_image_target'] )) ?>';
982
+ yop_poll_various_config.vote_loading_image_id = '<?php echo xss_clean(yop_poll_base64_decode( $_GET['vote_loading_image_id'] )) ?>';
983
+ yop_poll_various_config.vote_type = '<?php echo xss_clean(yop_poll_base64_decode ( $_GET['vote_type'] ) ) ?>';
984
  yop_poll_various_config.facebook_user_details = '<?php echo $facebook_user_details; ?>';
985
  yop_poll_various_config.facebook_error = '<?php echo isset( $_GET['facebook_error'] ) ? $_GET['facebook_error'] : '' ?>';
986
  yop_poll_various_config.public_config = <?php echo json_encode( $public_config ); ?>;
inc/maintenance.php CHANGED
@@ -764,6 +764,10 @@ NOWDOC;
764
  global $wpdb;
765
  update_option( "yop_poll_version", '5.7.3' );
766
  }
 
 
 
 
767
  }
768
  private static function update_poll_template_in_database2( $template ) {
769
  global $wpdb;
764
  global $wpdb;
765
  update_option( "yop_poll_version", '5.7.3' );
766
  }
767
+ if ( version_compare( $installed_version, '5.7.3', '<=' ) ){
768
+ global $wpdb;
769
+ update_option( "yop_poll_version", '5.7.4' );
770
+ }
771
  }
772
  private static function update_poll_template_in_database2( $template ) {
773
  global $wpdb;
languages/yop_poll-fr_FR.mo CHANGED
Binary file
languages/yop_poll-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YOP\n"
4
- "POT-Creation-Date: 2015-04-07 13:41+0200\n"
5
- "PO-Revision-Date: 2015-04-07 13:42+0200\n"
6
  "Last-Translator: Marius <marius_0156@yahoo.com>\n"
7
  "Language-Team: YOP <YOP>\n"
8
  "Language: fr\n"
@@ -63,6 +63,142 @@ msgstr "Fini"
63
  msgid "Please log in to cast your vote"
64
  msgstr "S'il vous plaît vous connecter pour voter"
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  #: inc/bans_admin.php:68
67
  msgid "Poll Bans"
68
  msgstr "Sondage interdit"
@@ -167,6 +303,144 @@ msgstr "Modèles"
167
  msgid "Add New Poll Template"
168
  msgstr "Ajouter un nouveau modèle de sondage"
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  #: yop_poll.php:167
171
  msgid ""
172
  "Php version isn't high enough! Yop Poll will be automatically downgraded!"
@@ -207,8 +481,8 @@ msgstr "Choisir le type d'interdiction"
207
  #: templates/bans_bans.html:93 templates/logs_logs.html:145
208
  #: templates/logs_logs.html:213 templates/polls_pop_up_ban.html:34
209
  #: templates/polls_results_votes.html:213
210
- #: templates/polls_results_votes.html:825
211
- #: templates/polls_results_votes.html:921
212
  msgid "Ip"
213
  msgstr "Ip"
214
 
@@ -268,7 +542,7 @@ msgid "Search Poll Bans"
268
  msgstr "Recherche de sondage interdit"
269
 
270
  #: templates/bans_bans.html:209 templates/imports_imports.html:39
271
- #: templates/logs_logs.html:31 templates/polls_results_votes.html:693
272
  #: templates/polls_view.html:113
273
  msgid "Bulk Actions"
274
  msgstr "Actions globales"
@@ -276,9 +550,9 @@ msgstr "Actions globales"
276
  #: templates/bans_bans.html:211 templates/bans_bans.html:452
277
  #: templates/logs_logs.html:33 templates/logs_logs.html:35
278
  #: templates/logs_logs.html:256 templates/polls_answer_template.html:21
279
- #: templates/polls_results_votes.html:695
280
- #: templates/polls_results_votes.html:1000 templates/polls_view.html:115
281
- #: templates/polls_view.html:294 templates/templates_templates.html:210
282
  msgid "Delete"
283
  msgstr "Effacer"
284
 
@@ -291,7 +565,7 @@ msgid "All Ban Types"
291
  msgstr "Tous les types d'interdictions"
292
 
293
  #: templates/bans_bans.html:257 templates/polls_results_votes.html:425
294
- #: templates/polls_results_votes.html:669
295
  msgid "IP"
296
  msgstr "IP"
297
 
@@ -302,9 +576,9 @@ msgid "Filter"
302
  msgstr "Filtre"
303
 
304
  #: templates/bans_bans.html:275 templates/imports_imports.html:49
305
- #: templates/polls_results_print.html:124
306
- #: templates/polls_results_votes.html:548
307
- #: templates/polls_results_votes.html:743 templates/polls_view.html:151
308
  msgid "Items Per Page"
309
  msgstr "Items par page"
310
 
@@ -337,7 +611,7 @@ msgid "Unit"
337
  msgstr "Unité"
338
 
339
  #: templates/bans_bans.html:472 templates/polls_view.html:277
340
- #: templates/templates_templates.html:203
341
  msgid "Edit"
342
  msgstr "Éditer"
343
 
@@ -389,14 +663,14 @@ msgid "All Logs"
389
  msgstr "Tous les registres"
390
 
391
  #: templates/logs_logs.html:67 templates/logs_logs.html:72
392
- #: templates/polls_results_print.html:141
393
- #: templates/polls_results_votes.html:565
394
- #: templates/polls_results_votes.html:713
395
  msgid "This Page"
396
  msgstr "Cette page"
397
 
398
- #: templates/logs_logs.html:68 templates/polls_results_print.html:142
399
- #: templates/polls_results_votes.html:566
400
  msgid "All Pages"
401
  msgstr "Toutes les pages"
402
 
@@ -405,10 +679,10 @@ msgid "logs"
405
  msgstr "logs"
406
 
407
  #: templates/logs_logs.html:106 templates/logs_logs.html:176
408
- #: templates/polls_results_print.html:161
409
- #: templates/polls_results_votes.html:585
410
- #: templates/polls_results_votes.html:663
411
- #: templates/polls_results_votes.html:785
412
  msgid "Vote ID"
413
  msgstr "Identifiant du vote"
414
 
@@ -417,19 +691,19 @@ msgid "Poll Title"
417
  msgstr "Titre du sondage"
418
 
419
  #: templates/logs_logs.html:124 templates/logs_logs.html:192
420
- #: templates/polls_results_votes.html:665
421
- #: templates/polls_results_votes.html:801
422
- #: templates/polls_results_votes.html:897
423
  msgid "User Type"
424
  msgstr "Type d'utilisateur"
425
 
426
  #: templates/logs_logs.html:155 templates/logs_logs.html:219
427
- #: templates/polls_results_print.html:165
428
  #: templates/polls_results_votes.html:432
429
- #: templates/polls_results_votes.html:589
430
- #: templates/polls_results_votes.html:671
431
- #: templates/polls_results_votes.html:845
432
- #: templates/polls_results_votes.html:943
433
  msgid "Vote Date"
434
  msgstr "Date du vote"
435
 
@@ -449,13 +723,6 @@ msgstr "Utilisateur"
449
  msgid "User Email"
450
  msgstr "Courriel d'utilisateur"
451
 
452
- #: templates/logs_logs.html:208 templates/polls_results_print.html:163
453
- #: templates/polls_results_votes.html:418
454
- #: templates/polls_results_votes.html:587
455
- #: templates/polls_results_votes.html:667
456
- msgid "Tracking ID"
457
- msgstr "Numéro de suivi"
458
-
459
  #: templates/options_general.html:19 templates/polls_add_edit-bk.html:45
460
  #: templates/polls_add_edit.html:32 templates/polls_add_edit_advanced.html:45
461
  #: templates/templates_templates_add_edit.html:122
@@ -468,10 +735,10 @@ msgstr "Enregistrer les modifications"
468
 
469
  #: templates/options_general.html:40 templates/polls_add_edit.html:52
470
  #: templates/polls_add_edit_advanced.html:65
471
- #: templates/polls_results_print.html:466
472
- #: templates/polls_results_print.html:483
473
  #: templates/polls_results_votes.html:376
474
- #: templates/polls_results_votes.html:1064
475
  msgid "Questions"
476
  msgstr "Les Questions"
477
 
@@ -496,108 +763,6 @@ msgstr "Options de questions"
496
  msgid "Allow other answers"
497
  msgstr "Toutes les autres réponses"
498
 
499
- #: templates/options_general.html:81 templates/options_general.html:98
500
- #: templates/options_general.html:105 templates/options_general.html:115
501
- #: templates/options_general.html:122 templates/options_general.html:423
502
- #: templates/options_general.html:442 templates/options_poll_options.html:89
503
- #: templates/options_poll_options.html:102
504
- #: templates/options_poll_options.html:115
505
- #: templates/options_poll_options.html:129
506
- #: templates/options_poll_options.html:158
507
- #: templates/options_poll_options.html:172
508
- #: templates/options_poll_options.html:179
509
- #: templates/options_poll_options.html:195
510
- #: templates/options_poll_options.html:209
511
- #: templates/options_poll_options.html:219
512
- #: templates/options_poll_options.html:236
513
- #: templates/options_poll_options.html:273
514
- #: templates/options_poll_options.html:292
515
- #: templates/options_poll_options.html:312
516
- #: templates/options_poll_options.html:326
517
- #: templates/options_poll_options.html:333
518
- #: templates/options_poll_options.html:340
519
- #: templates/options_poll_options.html:347
520
- #: templates/options_poll_options.html:355 templates/polls_add_edit.html:201
521
- #: templates/polls_add_edit.html:214 templates/polls_add_edit.html:227
522
- #: templates/polls_add_edit.html:241 templates/polls_add_edit.html:284
523
- #: templates/polls_add_edit.html:299 templates/polls_add_edit.html:333
524
- #: templates/polls_add_edit.html:352 templates/polls_add_edit.html:365
525
- #: templates/polls_add_edit.html:378 templates/polls_add_edit.html:385
526
- #: templates/polls_add_edit.html:392 templates/polls_add_edit.html:399
527
- #: templates/polls_add_edit.html:406 templates/polls_add_edit_options.html:83
528
- #: templates/polls_add_edit_options.html:90
529
- #: templates/polls_add_edit_options.html:97
530
- #: templates/polls_add_edit_options.html:104
531
- #: templates/polls_add_edit_options.html:118
532
- #: templates/polls_add_edit_options.html:126
533
- #: templates/polls_add_edit_options.html:134
534
- #: templates/polls_add_edit_options.html:150
535
- #: templates/polls_add_edit_options.html:187
536
- #: templates/polls_add_edit_options.html:202
537
- #: templates/polls_add_edit_options.html:216
538
- #: templates/polls_add_edit_options.html:242
539
- #: templates/polls_add_edit_options.html:250
540
- #: templates/polls_add_edit_options.html:265
541
- #: templates/polls_add_edit_options.html:272
542
- #: templates/polls_add_edit_options.html:294
543
- #: templates/polls_question_template.html:105
544
- #: templates/polls_question_template.html:122
545
- #: templates/polls_question_template.html:129
546
- #: templates/polls_question_template.html:136
547
- msgid "Yes"
548
- msgstr "Oui"
549
-
550
- #: templates/options_general.html:82 templates/options_general.html:99
551
- #: templates/options_general.html:106 templates/options_general.html:116
552
- #: templates/options_general.html:123 templates/options_general.html:424
553
- #: templates/options_general.html:443 templates/options_poll_options.html:90
554
- #: templates/options_poll_options.html:103
555
- #: templates/options_poll_options.html:116
556
- #: templates/options_poll_options.html:130
557
- #: templates/options_poll_options.html:159
558
- #: templates/options_poll_options.html:173
559
- #: templates/options_poll_options.html:180
560
- #: templates/options_poll_options.html:196
561
- #: templates/options_poll_options.html:210
562
- #: templates/options_poll_options.html:220
563
- #: templates/options_poll_options.html:237
564
- #: templates/options_poll_options.html:274
565
- #: templates/options_poll_options.html:293
566
- #: templates/options_poll_options.html:313
567
- #: templates/options_poll_options.html:327
568
- #: templates/options_poll_options.html:334
569
- #: templates/options_poll_options.html:341
570
- #: templates/options_poll_options.html:348
571
- #: templates/options_poll_options.html:356 templates/polls_add_edit.html:202
572
- #: templates/polls_add_edit.html:215 templates/polls_add_edit.html:228
573
- #: templates/polls_add_edit.html:242 templates/polls_add_edit.html:285
574
- #: templates/polls_add_edit.html:300 templates/polls_add_edit.html:334
575
- #: templates/polls_add_edit.html:353 templates/polls_add_edit.html:366
576
- #: templates/polls_add_edit.html:379 templates/polls_add_edit.html:386
577
- #: templates/polls_add_edit.html:393 templates/polls_add_edit.html:400
578
- #: templates/polls_add_edit.html:407 templates/polls_add_edit_options.html:84
579
- #: templates/polls_add_edit_options.html:91
580
- #: templates/polls_add_edit_options.html:98
581
- #: templates/polls_add_edit_options.html:105
582
- #: templates/polls_add_edit_options.html:119
583
- #: templates/polls_add_edit_options.html:127
584
- #: templates/polls_add_edit_options.html:135
585
- #: templates/polls_add_edit_options.html:151
586
- #: templates/polls_add_edit_options.html:188
587
- #: templates/polls_add_edit_options.html:203
588
- #: templates/polls_add_edit_options.html:217
589
- #: templates/polls_add_edit_options.html:243
590
- #: templates/polls_add_edit_options.html:251
591
- #: templates/polls_add_edit_options.html:266
592
- #: templates/polls_add_edit_options.html:273
593
- #: templates/polls_add_edit_options.html:295
594
- #: templates/polls_question_template.html:106
595
- #: templates/polls_question_template.html:123
596
- #: templates/polls_question_template.html:130
597
- #: templates/polls_question_template.html:137
598
- msgid "No"
599
- msgstr "Non"
600
-
601
  #: templates/options_general.html:86
602
  #: templates/polls_question_template.html:110
603
  msgid "Other answer label"
@@ -1278,7 +1443,7 @@ msgid "Page Template"
1278
  msgstr "Modèle de page"
1279
 
1280
  #: templates/polls_add_edit.html:100
1281
- #: templates/polls_add_edit_template.html:203
1282
  msgid "Widget Template"
1283
  msgstr "Modèle de Widget"
1284
 
@@ -1366,11 +1531,11 @@ msgstr "Style de la barre de résultat"
1366
  msgid "Template Width"
1367
  msgstr "Largeur du modèle"
1368
 
1369
- #: templates/polls_add_edit_template.html:198
1370
  msgid "Use the same template for widgets"
1371
  msgstr "Utiliser le même modèle pour le widget"
1372
 
1373
- #: templates/polls_add_edit_template.html:207
1374
  msgid "Widget Template Width"
1375
  msgstr "Largeur du modèle de widget"
1376
 
@@ -1408,27 +1573,24 @@ msgid "Please buy pro version to use this feature!"
1408
  msgstr ""
1409
  "Se il vous plaît acheter la version pro pour utiliser cette fonctionnalité!"
1410
 
1411
- #: templates/polls_base.html:54 templates/polls_results_votes.html:147
1412
- #: templates/pro_pre_upgrade.html:41
1413
  msgid "Upgrade to Pro for only $17"
1414
  msgstr "Upgrade to Pro pour seulement $ 17"
1415
 
1416
- #: templates/polls_base.html:57 templates/pro_pre_upgrade.html:44
1417
  msgid "60 days money back guarantee"
1418
  msgstr "60 jours garantie de remboursement"
1419
 
1420
- #: templates/polls_base.html:61 templates/pro_help.html:16
1421
- #: templates/pro_pre_upgrade.html:50
1422
  msgid "Top class software and support"
1423
  msgstr "Logiciel de classe supérieure et de soutien"
1424
 
1425
- #: templates/polls_base.html:62 templates/pro_help.html:18
1426
- #: templates/pro_pre_upgrade.html:52
1427
  msgid "I love this software and the support service."
1428
  msgstr "Je adore ce logiciel et le service de support."
1429
 
1430
- #: templates/polls_base.html:64 templates/pro_help.html:20
1431
- #: templates/pro_pre_upgrade.html:54
1432
  msgid ""
1433
  "This is definitely the #1 poll plugin for WP. I give this software and its "
1434
  "support service a A++++."
@@ -1436,15 +1598,14 @@ msgstr ""
1436
  "Ce est certainement le # 1 vote plugin pour WP. Je donne ce logiciel et son "
1437
  "service de soutien a A ++++."
1438
 
1439
- #: templates/polls_base.html:66 templates/pro_help.html:22
1440
- #: templates/pro_pre_upgrade.html:56
1441
  msgid ""
1442
  "I'm so glad to be a Pro version user. The US$17 upgrade worth every cent..."
1443
  msgstr ""
1444
  "Je suis si heureux d'être une version utilisateur Pro. La mise à niveau de "
1445
  "17 $ US vaut chaque centime ..."
1446
 
1447
- #: templates/polls_base.html:68
1448
  msgid ""
1449
  "I originally had some difficulties with the tool, and I reported them. (This "
1450
  "is normal for all software.) "
@@ -1452,7 +1613,7 @@ msgstr ""
1452
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
1453
  "signalé. (Ce est normal pour tous les logiciels.)"
1454
 
1455
- #: templates/polls_base.html:69
1456
  msgid ""
1457
  "After I reported my issues, the support got in touch with me very quickly "
1458
  "and have the problem resolved. "
@@ -1460,7 +1621,7 @@ msgstr ""
1460
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
1461
  "rapidement et ont le problème résolu."
1462
 
1463
- #: templates/polls_base.html:70
1464
  msgid ""
1465
  "Also, they listened to my suggestions and worked with me to have things "
1466
  "implemented and resolved. "
@@ -1468,13 +1629,11 @@ msgstr ""
1468
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
1469
  "des choses mises en œuvre et résolus."
1470
 
1471
- #: templates/polls_base.html:71 templates/pro_help.html:27
1472
- #: templates/pro_pre_upgrade.html:61
1473
  msgid "This is definitely a TOP CLASS service."
1474
  msgstr "Ce est vraiment un service de première classe."
1475
 
1476
- #: templates/polls_base.html:73 templates/pro_help.html:30
1477
- #: templates/pro_pre_upgrade.html:64
1478
  msgid "edwintam, wordpress user"
1479
  msgstr "edwintam, les utilisateurs de WordPress"
1480
 
@@ -1516,11 +1675,11 @@ msgstr ""
1516
  "automatiquement ajoutée comme une 'réponse' disponibles"
1517
 
1518
  #: templates/polls_question_template.html:193
1519
- #: templates/polls_results_print.html:118
1520
- #: templates/polls_results_print.html:468
1521
- #: templates/polls_results_print.html:485
1522
- #: templates/polls_results_votes.html:542
1523
- #: templates/polls_results_votes.html:1066
1524
  msgid "Custom Fields"
1525
  msgstr "Champs personnalisés"
1526
 
@@ -1599,13 +1758,13 @@ msgstr "Autre réponse"
1599
  msgid "Poll Other Answers"
1600
  msgstr "Autres réponses de sondage"
1601
 
1602
- #: templates/polls_results_print.html:132
1603
- #: templates/polls_results_votes.html:556 templates/polls_view.html:157
1604
  msgid "items"
1605
  msgstr "items"
1606
 
1607
- #: templates/polls_results_print.html:188
1608
- #: templates/polls_results_votes.html:612
1609
  msgid "No Custom Field Defined"
1610
  msgstr "Aucun champ personnalisé défini"
1611
 
@@ -1723,28 +1882,28 @@ msgstr "Votes ID"
1723
  msgid "User Type"
1724
  msgstr "Type d'utilisateur"
1725
 
1726
- #: templates/polls_results_votes.html:651
1727
  msgid "Search IP"
1728
  msgstr "Recherche IP"
1729
 
1730
- #: templates/polls_results_votes.html:661
1731
  msgid "All Columns"
1732
  msgstr "Toutes les colonnes"
1733
 
1734
- #: templates/polls_results_votes.html:751
1735
- #: templates/polls_results_votes.html:1087
1736
  msgid "results"
1737
  msgstr "Résultats"
1738
 
1739
- #: templates/polls_results_votes.html:881
1740
  msgid "Poll ID"
1741
  msgstr "Identifiant du sondage"
1742
 
1743
- #: templates/polls_results_votes.html:1005
1744
  msgid "Ban"
1745
  msgstr "Interdiction"
1746
 
1747
- #: templates/polls_results_votes.html:1110
1748
  msgid "Your poll doesn`t exist!"
1749
  msgstr "Votre sondage n'existe pas"
1750
 
@@ -1777,7 +1936,7 @@ msgid "Search Polls"
1777
  msgstr "Rechercher un sondage"
1778
 
1779
  #: templates/polls_view.html:117 templates/polls_view.html:285
1780
- #: templates/templates_templates.html:216
1781
  msgid "Clone"
1782
  msgstr "Dupliquer"
1783
 
@@ -1833,7 +1992,19 @@ msgstr ""
1833
  "Félicitations! Vous avez terminé le paiement. Cliquez ici pour procéder à la "
1834
  "mise à niveau plug-in!"
1835
 
1836
- #: templates/pro_help.html:24 templates/pro_pre_upgrade.html:58
 
 
 
 
 
 
 
 
 
 
 
 
1837
  msgid ""
1838
  "I originally had some difficulties with the tool, and I reported them. (This "
1839
  "is normal for all software.)"
@@ -1841,7 +2012,7 @@ msgstr ""
1841
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
1842
  "signalé. (Ce est normal pour tous les logiciels.)"
1843
 
1844
- #: templates/pro_help.html:25 templates/pro_pre_upgrade.html:59
1845
  msgid ""
1846
  "After I reported my issues, the support got in touch with me very quickly "
1847
  "and have the problem resolved."
@@ -1849,7 +2020,7 @@ msgstr ""
1849
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
1850
  "rapidement et ont le problème résolu."
1851
 
1852
- #: templates/pro_help.html:26 templates/pro_pre_upgrade.html:60
1853
  msgid ""
1854
  "Also, they listened to my suggestions and worked with me to have things "
1855
  "implemented and resolved."
@@ -1857,11 +2028,11 @@ msgstr ""
1857
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
1858
  "des choses mises en œuvre et résolus."
1859
 
1860
- #: templates/pro_help.html:35 templates/pro_pre_upgrade.html:69
1861
  msgid "Great support for a very useful product"
1862
  msgstr "Grand soutien pour un produit très utile"
1863
 
1864
- #: templates/pro_help.html:38 templates/pro_pre_upgrade.html:72
1865
  msgid ""
1866
  "I used yop poll standard and tried upgrading. I ran into an issue and send "
1867
  "support an email. I got the best suppor timaginable. They immediately "
@@ -1874,22 +2045,14 @@ msgstr ""
1874
  "travailler sur la question, résolus et résolu un tas d'autres choses dans la "
1875
  "course."
1876
 
1877
- #: templates/pro_help.html:40 templates/pro_pre_upgrade.html:74
1878
  msgid "Superb Support, absolutely worth paying for!"
1879
  msgstr "Superbe soutien, absolument la peine de payer pour!"
1880
 
1881
- #: templates/pro_help.html:43 templates/pro_pre_upgrade.html:77
1882
  msgid "fredverhoeven, wordpress user"
1883
  msgstr "fredverhoeven, les utilisateurs de WordPress"
1884
 
1885
- #: templates/pro_pre_upgrade.html:5
1886
- msgid ""
1887
- "If you already have a license, please enter it below to activate YOP Poll "
1888
- "Pro:"
1889
- msgstr ""
1890
- "Si vous avez déjà une licence, se il vous plaît saisir ci-dessous pour "
1891
- "activer YOP Sondage Pro:"
1892
-
1893
  #: templates/templates_templates_add_edit.html:23
1894
  msgid "Template Name"
1895
  msgstr "Nom du modèle"
@@ -2054,9 +2217,6 @@ msgstr "Réinitialiser le gabarit de sondage"
2054
  #~ msgid "Error: Wordpress Version Problem"
2055
  #~ msgstr "Erreur : Problème de version de Wordpress."
2056
 
2057
- #~ msgid "Bad Request!"
2058
- #~ msgstr "Mauvaise requête"
2059
-
2060
  #~ msgid "Changes Saved!"
2061
  #~ msgstr "Modifications enregistrées!"
2062
 
@@ -2260,21 +2420,12 @@ msgstr "Réinitialiser le gabarit de sondage"
2260
  #~ msgid "Google user not found"
2261
  #~ msgstr "Utilisateur Google introuvable"
2262
 
2263
- #~ msgid "This poll is closed!"
2264
- #~ msgstr "Ce sondage est fermé."
2265
-
2266
- #~ msgid "Poll Closed"
2267
- #~ msgstr "Sondage fermé."
2268
-
2269
  #~ msgid "Other answer for question"
2270
  #~ msgstr "Autre réponse à la question"
2271
 
2272
  #~ msgid "could not be inserted!"
2273
  #~ msgstr "ne pouvait pas être inséré!"
2274
 
2275
- #~ msgid " could not be inserted"
2276
- #~ msgstr " ne pouvait pas être inséré"
2277
-
2278
  #~ msgid "Other answer from question"
2279
  #~ msgstr "Autre réponse de la question"
2280
 
@@ -2299,75 +2450,21 @@ msgstr "Réinitialiser le gabarit de sondage"
2299
  #~ msgid "could not be inserted"
2300
  #~ msgstr "ne pouvait pas être inséré"
2301
 
2302
- #~ msgid "Other answer from question "
2303
- #~ msgstr "Autre réponse de la question"
2304
-
2305
  #~ msgid "empty"
2306
  #~ msgstr "vide"
2307
 
2308
  #~ msgid "from question"
2309
  #~ msgstr "de la question"
2310
 
2311
- #~ msgid "is required"
2312
- #~ msgstr "est requis"
2313
-
2314
- #~ msgid "required"
2315
- #~ msgstr "requis"
2316
-
2317
  #~ msgid "is missing"
2318
  #~ msgstr "est manquant"
2319
 
2320
- #~ msgid "missing"
2321
- #~ msgstr "manquant"
2322
-
2323
  #~ msgid "Custom fields from question"
2324
  #~ msgstr "Champ personnalisé de la question"
2325
 
2326
- #~ msgid "are missing"
2327
- #~ msgstr "sont manquantes"
2328
-
2329
- #~ msgid "Incorrect security code entered!"
2330
- #~ msgstr "Code de sécurité incorrect !"
2331
-
2332
- #~ msgid "Incorrect security code entered"
2333
- #~ msgstr "Code de sécurité incorrect !"
2334
-
2335
- #~ msgid "No vote registered!"
2336
- #~ msgstr "Aucun vote enregistré!"
2337
-
2338
- #~ msgid "No vote registered"
2339
- #~ msgstr "Aucun vote enregistré!"
2340
-
2341
  #~ msgid "No answer selected for question"
2342
  #~ msgstr "Aucune réponse sélectionnée pour la question"
2343
 
2344
- #~ msgid "You have run out of votes!"
2345
- #~ msgstr "Vous n'avez plus de votes!"
2346
-
2347
- #~ msgid "Run out of votes"
2348
- #~ msgstr "À court de vote"
2349
-
2350
- #~ msgid "You Already voted!"
2351
- #~ msgstr "Vous avez déjà voté!"
2352
-
2353
- #~ msgid "Already Voted"
2354
- #~ msgstr "Déjà voté"
2355
-
2356
- #~ msgid "You can vote once the poll starts!"
2357
- #~ msgstr "Vous pouvez voter après le commencement du sondage!"
2358
-
2359
- #~ msgid "Poll not started"
2360
- #~ msgstr "Sondage pas démarré"
2361
-
2362
- #~ msgid "You are not allowed to vote!"
2363
- #~ msgstr "Vous n'êtes pas autorisé à voter!"
2364
-
2365
- #~ msgid "Not allowed to vote"
2366
- #~ msgstr "Non autorisé à voter"
2367
-
2368
- #~ msgid "Bad request"
2369
- #~ msgstr "Mauvaise requête"
2370
-
2371
  #~ msgid "Success"
2372
  #~ msgstr "Succès"
2373
 
@@ -2532,29 +2629,11 @@ msgstr "Réinitialiser le gabarit de sondage"
2532
  #~ msgid "Options"
2533
  #~ msgstr "Options"
2534
 
2535
- #~ msgid "Insert Poll"
2536
- #~ msgstr "Insérer un sondage"
2537
-
2538
  #~ msgid "Error: Invalid Yop Poll!\\n\\nPlease choose the poll again:\\n\\n"
2539
  #~ msgstr ""
2540
  #~ "Erreur : Sondage Yop invalide!\\n\\n S'il vous plaît choisir à nouveau le "
2541
  #~ "sondage."
2542
 
2543
- #~ msgid "Poll to Display"
2544
- #~ msgstr "Sondage à afficher"
2545
-
2546
- #~ msgid "Display Random Poll"
2547
- #~ msgstr "Affichage aléatoire des sondage"
2548
-
2549
- #~ msgid "Display Latest Poll"
2550
- #~ msgstr "Afficher le plus récent sondage"
2551
-
2552
- #~ msgid "Display Current Active Poll"
2553
- #~ msgstr "Afficher le sondage présentement actif"
2554
-
2555
- #~ msgid "Display results only"
2556
- #~ msgstr "Afficher les résultats seulement"
2557
-
2558
  #~ msgid "Close"
2559
  #~ msgstr "Fermer"
2560
 
@@ -2894,38 +2973,5 @@ msgstr "Réinitialiser le gabarit de sondage"
2894
  #~ msgid "Reload"
2895
  #~ msgstr "Recharger"
2896
 
2897
- #~ msgid "Other answer for question "
2898
- #~ msgstr "Autre réponse à la question"
2899
-
2900
- #~ msgid " could not be inserted!"
2901
- #~ msgstr " ne pouvait pas être inséré!"
2902
-
2903
  #~ msgid " is empty"
2904
  #~ msgstr "est vide"
2905
-
2906
- #~ msgid "Too few answers selected for question "
2907
- #~ msgstr "Trop peu de réponses sélectionnés pour la question"
2908
-
2909
- #~ msgid "! Only more than "
2910
- #~ msgstr "! Seulement plus"
2911
-
2912
- #~ msgid " answers allowed!"
2913
- #~ msgstr "réponses permises!"
2914
-
2915
- #~ msgid "Too many answers selected for question "
2916
- #~ msgstr "Trop de réponses sélectionnés pour la question"
2917
-
2918
- #~ msgid "! Only "
2919
- #~ msgstr "! Seulement"
2920
-
2921
- #~ msgid "Custom field "
2922
- #~ msgstr "Champ personnalisé"
2923
-
2924
- #~ msgid " from question "
2925
- #~ msgstr " de la question"
2926
-
2927
- #~ msgid "Custom fields from question "
2928
- #~ msgstr "Les champs personnalisés de question"
2929
-
2930
- #~ msgid "No answer selected for question "
2931
- #~ msgstr "Aucune réponse sélectionnée pour la question"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YOP\n"
4
+ "POT-Creation-Date: 2015-06-29 20:58+0200\n"
5
+ "PO-Revision-Date: 2015-06-29 20:58+0200\n"
6
  "Last-Translator: Marius <marius_0156@yahoo.com>\n"
7
  "Language-Team: YOP <YOP>\n"
8
  "Language: fr\n"
63
  msgid "Please log in to cast your vote"
64
  msgstr "S'il vous plaît vous connecter pour voter"
65
 
66
+ #: inc/admin.php:1047
67
+ msgid "Insert Poll"
68
+ msgstr "Insérer un sondage"
69
+
70
+ #: inc/admin.php:1083
71
+ msgid "Poll to Display"
72
+ msgstr "Sondage à afficher"
73
+
74
+ #: inc/admin.php:1086
75
+ msgid "Display Random Poll"
76
+ msgstr "Affichage aléatoire des sondage"
77
+
78
+ #: inc/admin.php:1087
79
+ msgid "Display Latest Poll"
80
+ msgstr "Afficher le plus récent sondage"
81
+
82
+ #: inc/admin.php:1088
83
+ msgid "Display Current Active Poll"
84
+ msgstr "Afficher le sondage présentement actif"
85
+
86
+ #: inc/admin.php:1102 templates/logs_logs.html:208
87
+ #: templates/polls_results_print.html:164
88
+ #: templates/polls_results_votes.html:418
89
+ #: templates/polls_results_votes.html:588
90
+ #: templates/polls_results_votes.html:668
91
+ msgid "Tracking ID"
92
+ msgstr "Numéro de suivi"
93
+
94
+ #: inc/admin.php:1108
95
+ msgid "Display results only"
96
+ msgstr "Afficher les résultats seulement"
97
+
98
+ #: inc/admin.php:1114 templates/options_general.html:82
99
+ #: templates/options_general.html:99 templates/options_general.html:106
100
+ #: templates/options_general.html:116 templates/options_general.html:123
101
+ #: templates/options_general.html:424 templates/options_general.html:443
102
+ #: templates/options_poll_options.html:90
103
+ #: templates/options_poll_options.html:103
104
+ #: templates/options_poll_options.html:116
105
+ #: templates/options_poll_options.html:130
106
+ #: templates/options_poll_options.html:159
107
+ #: templates/options_poll_options.html:173
108
+ #: templates/options_poll_options.html:180
109
+ #: templates/options_poll_options.html:196
110
+ #: templates/options_poll_options.html:210
111
+ #: templates/options_poll_options.html:220
112
+ #: templates/options_poll_options.html:237
113
+ #: templates/options_poll_options.html:274
114
+ #: templates/options_poll_options.html:293
115
+ #: templates/options_poll_options.html:313
116
+ #: templates/options_poll_options.html:327
117
+ #: templates/options_poll_options.html:334
118
+ #: templates/options_poll_options.html:341
119
+ #: templates/options_poll_options.html:348
120
+ #: templates/options_poll_options.html:356 templates/polls_add_edit.html:202
121
+ #: templates/polls_add_edit.html:215 templates/polls_add_edit.html:228
122
+ #: templates/polls_add_edit.html:242 templates/polls_add_edit.html:285
123
+ #: templates/polls_add_edit.html:300 templates/polls_add_edit.html:334
124
+ #: templates/polls_add_edit.html:353 templates/polls_add_edit.html:366
125
+ #: templates/polls_add_edit.html:379 templates/polls_add_edit.html:386
126
+ #: templates/polls_add_edit.html:393 templates/polls_add_edit.html:400
127
+ #: templates/polls_add_edit.html:407 templates/polls_add_edit_options.html:84
128
+ #: templates/polls_add_edit_options.html:91
129
+ #: templates/polls_add_edit_options.html:98
130
+ #: templates/polls_add_edit_options.html:105
131
+ #: templates/polls_add_edit_options.html:119
132
+ #: templates/polls_add_edit_options.html:127
133
+ #: templates/polls_add_edit_options.html:135
134
+ #: templates/polls_add_edit_options.html:151
135
+ #: templates/polls_add_edit_options.html:188
136
+ #: templates/polls_add_edit_options.html:203
137
+ #: templates/polls_add_edit_options.html:217
138
+ #: templates/polls_add_edit_options.html:243
139
+ #: templates/polls_add_edit_options.html:251
140
+ #: templates/polls_add_edit_options.html:266
141
+ #: templates/polls_add_edit_options.html:273
142
+ #: templates/polls_add_edit_options.html:295
143
+ #: templates/polls_question_template.html:106
144
+ #: templates/polls_question_template.html:123
145
+ #: templates/polls_question_template.html:130
146
+ #: templates/polls_question_template.html:137
147
+ msgid "No"
148
+ msgstr "Non"
149
+
150
+ #: inc/admin.php:1115 templates/options_general.html:81
151
+ #: templates/options_general.html:98 templates/options_general.html:105
152
+ #: templates/options_general.html:115 templates/options_general.html:122
153
+ #: templates/options_general.html:423 templates/options_general.html:442
154
+ #: templates/options_poll_options.html:89
155
+ #: templates/options_poll_options.html:102
156
+ #: templates/options_poll_options.html:115
157
+ #: templates/options_poll_options.html:129
158
+ #: templates/options_poll_options.html:158
159
+ #: templates/options_poll_options.html:172
160
+ #: templates/options_poll_options.html:179
161
+ #: templates/options_poll_options.html:195
162
+ #: templates/options_poll_options.html:209
163
+ #: templates/options_poll_options.html:219
164
+ #: templates/options_poll_options.html:236
165
+ #: templates/options_poll_options.html:273
166
+ #: templates/options_poll_options.html:292
167
+ #: templates/options_poll_options.html:312
168
+ #: templates/options_poll_options.html:326
169
+ #: templates/options_poll_options.html:333
170
+ #: templates/options_poll_options.html:340
171
+ #: templates/options_poll_options.html:347
172
+ #: templates/options_poll_options.html:355 templates/polls_add_edit.html:201
173
+ #: templates/polls_add_edit.html:214 templates/polls_add_edit.html:227
174
+ #: templates/polls_add_edit.html:241 templates/polls_add_edit.html:284
175
+ #: templates/polls_add_edit.html:299 templates/polls_add_edit.html:333
176
+ #: templates/polls_add_edit.html:352 templates/polls_add_edit.html:365
177
+ #: templates/polls_add_edit.html:378 templates/polls_add_edit.html:385
178
+ #: templates/polls_add_edit.html:392 templates/polls_add_edit.html:399
179
+ #: templates/polls_add_edit.html:406 templates/polls_add_edit_options.html:83
180
+ #: templates/polls_add_edit_options.html:90
181
+ #: templates/polls_add_edit_options.html:97
182
+ #: templates/polls_add_edit_options.html:104
183
+ #: templates/polls_add_edit_options.html:118
184
+ #: templates/polls_add_edit_options.html:126
185
+ #: templates/polls_add_edit_options.html:134
186
+ #: templates/polls_add_edit_options.html:150
187
+ #: templates/polls_add_edit_options.html:187
188
+ #: templates/polls_add_edit_options.html:202
189
+ #: templates/polls_add_edit_options.html:216
190
+ #: templates/polls_add_edit_options.html:242
191
+ #: templates/polls_add_edit_options.html:250
192
+ #: templates/polls_add_edit_options.html:265
193
+ #: templates/polls_add_edit_options.html:272
194
+ #: templates/polls_add_edit_options.html:294
195
+ #: templates/polls_question_template.html:105
196
+ #: templates/polls_question_template.html:122
197
+ #: templates/polls_question_template.html:129
198
+ #: templates/polls_question_template.html:136
199
+ msgid "Yes"
200
+ msgstr "Oui"
201
+
202
  #: inc/bans_admin.php:68
203
  msgid "Poll Bans"
204
  msgstr "Sondage interdit"
303
  msgid "Add New Poll Template"
304
  msgstr "Ajouter un nouveau modèle de sondage"
305
 
306
+ #: models/poll_model.php:868 models/poll_model.php:869
307
+ msgid "Too few answers selected for question "
308
+ msgstr "Trop peu de réponses sélectionnés pour la question"
309
+
310
+ #: models/poll_model.php:868
311
+ msgid "! Only more than "
312
+ msgstr "! Seulement plus"
313
+
314
+ #: models/poll_model.php:868 models/poll_model.php:875
315
+ msgid " answers allowed!"
316
+ msgstr "réponses permises!"
317
+
318
+ #: models/poll_model.php:875 models/poll_model.php:876
319
+ msgid "Too many answers selected for question "
320
+ msgstr "Trop de réponses sélectionnés pour la question"
321
+
322
+ #: models/poll_model.php:875
323
+ msgid "! Only "
324
+ msgstr "! Seulement"
325
+
326
+ #: models/poll_model.php:899 models/poll_model.php:900
327
+ msgid "Other answer for question "
328
+ msgstr "Autre réponse à la question"
329
+
330
+ #: models/poll_model.php:899
331
+ msgid " could not be inserted!"
332
+ msgstr " ne pouvait pas être inséré!"
333
+
334
+ #: models/poll_model.php:900
335
+ msgid " could not be inserted"
336
+ msgstr " ne pouvait pas être inséré"
337
+
338
+ #: models/poll_model.php:906 models/poll_model.php:907
339
+ msgid "Other answer from question "
340
+ msgstr "Autre réponse de la question"
341
+
342
+ #: models/poll_model.php:946 models/poll_model.php:947
343
+ #: models/poll_model.php:973 models/poll_model.php:975
344
+ msgid "Custom field "
345
+ msgstr "Champ personnalisé"
346
+
347
+ #: models/poll_model.php:946 models/poll_model.php:947
348
+ #: models/poll_model.php:973 models/poll_model.php:975
349
+ msgid " from question "
350
+ msgstr " de la question"
351
+
352
+ #: models/poll_model.php:946
353
+ msgid "is required"
354
+ msgstr "est requis"
355
+
356
+ #: models/poll_model.php:947
357
+ msgid "required"
358
+ msgstr "requis"
359
+
360
+ #: models/poll_model.php:973
361
+ msgid "is missing "
362
+ msgstr "est manquant"
363
+
364
+ #: models/poll_model.php:975 models/poll_model.php:983
365
+ msgid "missing"
366
+ msgstr "manquant"
367
+
368
+ #: models/poll_model.php:982 models/poll_model.php:983
369
+ msgid "Custom fields from question "
370
+ msgstr "Les champs personnalisés de question"
371
+
372
+ #: models/poll_model.php:982
373
+ msgid "are missing"
374
+ msgstr "sont manquantes"
375
+
376
+ #: models/poll_model.php:1026
377
+ msgid "Incorrect security code entered!"
378
+ msgstr "Code de sécurité incorrect !"
379
+
380
+ #: models/poll_model.php:1027
381
+ msgid "Incorrect security code entered"
382
+ msgstr "Code de sécurité incorrect !"
383
+
384
+ #: models/poll_model.php:1074
385
+ msgid "No vote registered!"
386
+ msgstr "Aucun vote enregistré!"
387
+
388
+ #: models/poll_model.php:1075
389
+ msgid "No vote registered"
390
+ msgstr "Aucun vote enregistré!"
391
+
392
+ #: models/poll_model.php:1081 models/poll_model.php:1082
393
+ msgid "No answer selected for question "
394
+ msgstr "Aucune réponse sélectionnée pour la question"
395
+
396
+ #: models/poll_model.php:1090
397
+ msgid "You have run out of votes!"
398
+ msgstr "Vous n'avez plus de votes!"
399
+
400
+ #: models/poll_model.php:1091
401
+ msgid "Run out of votes"
402
+ msgstr "À court de vote"
403
+
404
+ #: models/poll_model.php:1097
405
+ msgid "You Already voted!"
406
+ msgstr "Vous avez déjà voté!"
407
+
408
+ #: models/poll_model.php:1098
409
+ msgid "Already Voted"
410
+ msgstr "Déjà voté"
411
+
412
+ #: models/poll_model.php:1105
413
+ msgid "This poll is closed!"
414
+ msgstr "Ce sondage est fermé."
415
+
416
+ #: models/poll_model.php:1106
417
+ msgid "Poll Closed"
418
+ msgstr "Sondage fermé."
419
+
420
+ #: models/poll_model.php:1112
421
+ msgid "You can vote once the poll starts!"
422
+ msgstr "Vous pouvez voter après le commencement du sondage!"
423
+
424
+ #: models/poll_model.php:1113
425
+ msgid "Poll not started"
426
+ msgstr "Sondage pas démarré"
427
+
428
+ #: models/poll_model.php:1119 models/poll_model.php:1126
429
+ msgid "You are not allowed to vote!"
430
+ msgstr "Vous n'êtes pas autorisé à voter!"
431
+
432
+ #: models/poll_model.php:1120
433
+ msgid "Not allowed to vote"
434
+ msgstr "Non autorisé à voter"
435
+
436
+ #: models/poll_model.php:1132
437
+ msgid "Bad Request!"
438
+ msgstr "Mauvaise requête"
439
+
440
+ #: models/poll_model.php:1133
441
+ msgid "Bad request"
442
+ msgstr "Mauvaise requête"
443
+
444
  #: yop_poll.php:167
445
  msgid ""
446
  "Php version isn't high enough! Yop Poll will be automatically downgraded!"
481
  #: templates/bans_bans.html:93 templates/logs_logs.html:145
482
  #: templates/logs_logs.html:213 templates/polls_pop_up_ban.html:34
483
  #: templates/polls_results_votes.html:213
484
+ #: templates/polls_results_votes.html:826
485
+ #: templates/polls_results_votes.html:922
486
  msgid "Ip"
487
  msgstr "Ip"
488
 
542
  msgstr "Recherche de sondage interdit"
543
 
544
  #: templates/bans_bans.html:209 templates/imports_imports.html:39
545
+ #: templates/logs_logs.html:31 templates/polls_results_votes.html:694
546
  #: templates/polls_view.html:113
547
  msgid "Bulk Actions"
548
  msgstr "Actions globales"
550
  #: templates/bans_bans.html:211 templates/bans_bans.html:452
551
  #: templates/logs_logs.html:33 templates/logs_logs.html:35
552
  #: templates/logs_logs.html:256 templates/polls_answer_template.html:21
553
+ #: templates/polls_results_votes.html:696
554
+ #: templates/polls_results_votes.html:1001 templates/polls_view.html:115
555
+ #: templates/polls_view.html:294 templates/templates_templates.html:105
556
  msgid "Delete"
557
  msgstr "Effacer"
558
 
565
  msgstr "Tous les types d'interdictions"
566
 
567
  #: templates/bans_bans.html:257 templates/polls_results_votes.html:425
568
+ #: templates/polls_results_votes.html:670
569
  msgid "IP"
570
  msgstr "IP"
571
 
576
  msgstr "Filtre"
577
 
578
  #: templates/bans_bans.html:275 templates/imports_imports.html:49
579
+ #: templates/polls_results_print.html:125
580
+ #: templates/polls_results_votes.html:549
581
+ #: templates/polls_results_votes.html:744 templates/polls_view.html:151
582
  msgid "Items Per Page"
583
  msgstr "Items par page"
584
 
611
  msgstr "Unité"
612
 
613
  #: templates/bans_bans.html:472 templates/polls_view.html:277
614
+ #: templates/templates_templates.html:98
615
  msgid "Edit"
616
  msgstr "Éditer"
617
 
663
  msgstr "Tous les registres"
664
 
665
  #: templates/logs_logs.html:67 templates/logs_logs.html:72
666
+ #: templates/polls_results_print.html:142
667
+ #: templates/polls_results_votes.html:566
668
+ #: templates/polls_results_votes.html:714
669
  msgid "This Page"
670
  msgstr "Cette page"
671
 
672
+ #: templates/logs_logs.html:68 templates/polls_results_print.html:143
673
+ #: templates/polls_results_votes.html:567
674
  msgid "All Pages"
675
  msgstr "Toutes les pages"
676
 
679
  msgstr "logs"
680
 
681
  #: templates/logs_logs.html:106 templates/logs_logs.html:176
682
+ #: templates/polls_results_print.html:162
683
+ #: templates/polls_results_votes.html:586
684
+ #: templates/polls_results_votes.html:664
685
+ #: templates/polls_results_votes.html:786
686
  msgid "Vote ID"
687
  msgstr "Identifiant du vote"
688
 
691
  msgstr "Titre du sondage"
692
 
693
  #: templates/logs_logs.html:124 templates/logs_logs.html:192
694
+ #: templates/polls_results_votes.html:666
695
+ #: templates/polls_results_votes.html:802
696
+ #: templates/polls_results_votes.html:898
697
  msgid "User Type"
698
  msgstr "Type d'utilisateur"
699
 
700
  #: templates/logs_logs.html:155 templates/logs_logs.html:219
701
+ #: templates/polls_results_print.html:166
702
  #: templates/polls_results_votes.html:432
703
+ #: templates/polls_results_votes.html:590
704
+ #: templates/polls_results_votes.html:672
705
+ #: templates/polls_results_votes.html:846
706
+ #: templates/polls_results_votes.html:944
707
  msgid "Vote Date"
708
  msgstr "Date du vote"
709
 
723
  msgid "User Email"
724
  msgstr "Courriel d'utilisateur"
725
 
 
 
 
 
 
 
 
726
  #: templates/options_general.html:19 templates/polls_add_edit-bk.html:45
727
  #: templates/polls_add_edit.html:32 templates/polls_add_edit_advanced.html:45
728
  #: templates/templates_templates_add_edit.html:122
735
 
736
  #: templates/options_general.html:40 templates/polls_add_edit.html:52
737
  #: templates/polls_add_edit_advanced.html:65
738
+ #: templates/polls_results_print.html:467
739
+ #: templates/polls_results_print.html:484
740
  #: templates/polls_results_votes.html:376
741
+ #: templates/polls_results_votes.html:1065
742
  msgid "Questions"
743
  msgstr "Les Questions"
744
 
763
  msgid "Allow other answers"
764
  msgstr "Toutes les autres réponses"
765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  #: templates/options_general.html:86
767
  #: templates/polls_question_template.html:110
768
  msgid "Other answer label"
1443
  msgstr "Modèle de page"
1444
 
1445
  #: templates/polls_add_edit.html:100
1446
+ #: templates/polls_add_edit_template.html:204
1447
  msgid "Widget Template"
1448
  msgstr "Modèle de Widget"
1449
 
1531
  msgid "Template Width"
1532
  msgstr "Largeur du modèle"
1533
 
1534
+ #: templates/polls_add_edit_template.html:199
1535
  msgid "Use the same template for widgets"
1536
  msgstr "Utiliser le même modèle pour le widget"
1537
 
1538
+ #: templates/polls_add_edit_template.html:208
1539
  msgid "Widget Template Width"
1540
  msgstr "Largeur du modèle de widget"
1541
 
1573
  msgstr ""
1574
  "Se il vous plaît acheter la version pro pour utiliser cette fonctionnalité!"
1575
 
1576
+ #: templates/polls_base.html:58 templates/polls_results_votes.html:147
1577
+ #: templates/pro_pre_upgrade.html:42
1578
  msgid "Upgrade to Pro for only $17"
1579
  msgstr "Upgrade to Pro pour seulement $ 17"
1580
 
1581
+ #: templates/polls_base.html:61 templates/pro_pre_upgrade.html:45
1582
  msgid "60 days money back guarantee"
1583
  msgstr "60 jours garantie de remboursement"
1584
 
1585
+ #: templates/polls_base.html:65 templates/pro_pre_upgrade.html:51
 
1586
  msgid "Top class software and support"
1587
  msgstr "Logiciel de classe supérieure et de soutien"
1588
 
1589
+ #: templates/polls_base.html:66 templates/pro_pre_upgrade.html:53
 
1590
  msgid "I love this software and the support service."
1591
  msgstr "Je adore ce logiciel et le service de support."
1592
 
1593
+ #: templates/polls_base.html:68 templates/pro_pre_upgrade.html:55
 
1594
  msgid ""
1595
  "This is definitely the #1 poll plugin for WP. I give this software and its "
1596
  "support service a A++++."
1598
  "Ce est certainement le # 1 vote plugin pour WP. Je donne ce logiciel et son "
1599
  "service de soutien a A ++++."
1600
 
1601
+ #: templates/polls_base.html:70 templates/pro_pre_upgrade.html:57
 
1602
  msgid ""
1603
  "I'm so glad to be a Pro version user. The US$17 upgrade worth every cent..."
1604
  msgstr ""
1605
  "Je suis si heureux d'être une version utilisateur Pro. La mise à niveau de "
1606
  "17 $ US vaut chaque centime ..."
1607
 
1608
+ #: templates/polls_base.html:72
1609
  msgid ""
1610
  "I originally had some difficulties with the tool, and I reported them. (This "
1611
  "is normal for all software.) "
1613
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
1614
  "signalé. (Ce est normal pour tous les logiciels.)"
1615
 
1616
+ #: templates/polls_base.html:73
1617
  msgid ""
1618
  "After I reported my issues, the support got in touch with me very quickly "
1619
  "and have the problem resolved. "
1621
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
1622
  "rapidement et ont le problème résolu."
1623
 
1624
+ #: templates/polls_base.html:74
1625
  msgid ""
1626
  "Also, they listened to my suggestions and worked with me to have things "
1627
  "implemented and resolved. "
1629
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
1630
  "des choses mises en œuvre et résolus."
1631
 
1632
+ #: templates/polls_base.html:75 templates/pro_pre_upgrade.html:62
 
1633
  msgid "This is definitely a TOP CLASS service."
1634
  msgstr "Ce est vraiment un service de première classe."
1635
 
1636
+ #: templates/polls_base.html:77 templates/pro_pre_upgrade.html:65
 
1637
  msgid "edwintam, wordpress user"
1638
  msgstr "edwintam, les utilisateurs de WordPress"
1639
 
1675
  "automatiquement ajoutée comme une 'réponse' disponibles"
1676
 
1677
  #: templates/polls_question_template.html:193
1678
+ #: templates/polls_results_print.html:119
1679
+ #: templates/polls_results_print.html:469
1680
+ #: templates/polls_results_print.html:486
1681
+ #: templates/polls_results_votes.html:543
1682
+ #: templates/polls_results_votes.html:1067
1683
  msgid "Custom Fields"
1684
  msgstr "Champs personnalisés"
1685
 
1758
  msgid "Poll Other Answers"
1759
  msgstr "Autres réponses de sondage"
1760
 
1761
+ #: templates/polls_results_print.html:133
1762
+ #: templates/polls_results_votes.html:557 templates/polls_view.html:157
1763
  msgid "items"
1764
  msgstr "items"
1765
 
1766
+ #: templates/polls_results_print.html:189
1767
+ #: templates/polls_results_votes.html:613
1768
  msgid "No Custom Field Defined"
1769
  msgstr "Aucun champ personnalisé défini"
1770
 
1882
  msgid "User Type"
1883
  msgstr "Type d'utilisateur"
1884
 
1885
+ #: templates/polls_results_votes.html:652
1886
  msgid "Search IP"
1887
  msgstr "Recherche IP"
1888
 
1889
+ #: templates/polls_results_votes.html:662
1890
  msgid "All Columns"
1891
  msgstr "Toutes les colonnes"
1892
 
1893
+ #: templates/polls_results_votes.html:752
1894
+ #: templates/polls_results_votes.html:1088
1895
  msgid "results"
1896
  msgstr "Résultats"
1897
 
1898
+ #: templates/polls_results_votes.html:882
1899
  msgid "Poll ID"
1900
  msgstr "Identifiant du sondage"
1901
 
1902
+ #: templates/polls_results_votes.html:1006
1903
  msgid "Ban"
1904
  msgstr "Interdiction"
1905
 
1906
+ #: templates/polls_results_votes.html:1111
1907
  msgid "Your poll doesn`t exist!"
1908
  msgstr "Votre sondage n'existe pas"
1909
 
1936
  msgstr "Rechercher un sondage"
1937
 
1938
  #: templates/polls_view.html:117 templates/polls_view.html:285
1939
+ #: templates/templates_templates.html:111
1940
  msgid "Clone"
1941
  msgstr "Dupliquer"
1942
 
1992
  "Félicitations! Vous avez terminé le paiement. Cliquez ici pour procéder à la "
1993
  "mise à niveau plug-in!"
1994
 
1995
+ #: templates/pro_help.html:8
1996
+ msgid "For any questions/issues, you can contact us at "
1997
+ msgstr "Pour toutes questions / questions, vous pouvez nous contacter au"
1998
+
1999
+ #: templates/pro_pre_upgrade.html:5
2000
+ msgid ""
2001
+ "If you already have a license, please enter it below to activate YOP Poll "
2002
+ "Pro:"
2003
+ msgstr ""
2004
+ "Si vous avez déjà une licence, se il vous plaît saisir ci-dessous pour "
2005
+ "activer YOP Sondage Pro:"
2006
+
2007
+ #: templates/pro_pre_upgrade.html:59
2008
  msgid ""
2009
  "I originally had some difficulties with the tool, and I reported them. (This "
2010
  "is normal for all software.)"
2012
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
2013
  "signalé. (Ce est normal pour tous les logiciels.)"
2014
 
2015
+ #: templates/pro_pre_upgrade.html:60
2016
  msgid ""
2017
  "After I reported my issues, the support got in touch with me very quickly "
2018
  "and have the problem resolved."
2020
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
2021
  "rapidement et ont le problème résolu."
2022
 
2023
+ #: templates/pro_pre_upgrade.html:61
2024
  msgid ""
2025
  "Also, they listened to my suggestions and worked with me to have things "
2026
  "implemented and resolved."
2028
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
2029
  "des choses mises en œuvre et résolus."
2030
 
2031
+ #: templates/pro_pre_upgrade.html:70
2032
  msgid "Great support for a very useful product"
2033
  msgstr "Grand soutien pour un produit très utile"
2034
 
2035
+ #: templates/pro_pre_upgrade.html:73
2036
  msgid ""
2037
  "I used yop poll standard and tried upgrading. I ran into an issue and send "
2038
  "support an email. I got the best suppor timaginable. They immediately "
2045
  "travailler sur la question, résolus et résolu un tas d'autres choses dans la "
2046
  "course."
2047
 
2048
+ #: templates/pro_pre_upgrade.html:75
2049
  msgid "Superb Support, absolutely worth paying for!"
2050
  msgstr "Superbe soutien, absolument la peine de payer pour!"
2051
 
2052
+ #: templates/pro_pre_upgrade.html:78
2053
  msgid "fredverhoeven, wordpress user"
2054
  msgstr "fredverhoeven, les utilisateurs de WordPress"
2055
 
 
 
 
 
 
 
 
 
2056
  #: templates/templates_templates_add_edit.html:23
2057
  msgid "Template Name"
2058
  msgstr "Nom du modèle"
2217
  #~ msgid "Error: Wordpress Version Problem"
2218
  #~ msgstr "Erreur : Problème de version de Wordpress."
2219
 
 
 
 
2220
  #~ msgid "Changes Saved!"
2221
  #~ msgstr "Modifications enregistrées!"
2222
 
2420
  #~ msgid "Google user not found"
2421
  #~ msgstr "Utilisateur Google introuvable"
2422
 
 
 
 
 
 
 
2423
  #~ msgid "Other answer for question"
2424
  #~ msgstr "Autre réponse à la question"
2425
 
2426
  #~ msgid "could not be inserted!"
2427
  #~ msgstr "ne pouvait pas être inséré!"
2428
 
 
 
 
2429
  #~ msgid "Other answer from question"
2430
  #~ msgstr "Autre réponse de la question"
2431
 
2450
  #~ msgid "could not be inserted"
2451
  #~ msgstr "ne pouvait pas être inséré"
2452
 
 
 
 
2453
  #~ msgid "empty"
2454
  #~ msgstr "vide"
2455
 
2456
  #~ msgid "from question"
2457
  #~ msgstr "de la question"
2458
 
 
 
 
 
 
 
2459
  #~ msgid "is missing"
2460
  #~ msgstr "est manquant"
2461
 
 
 
 
2462
  #~ msgid "Custom fields from question"
2463
  #~ msgstr "Champ personnalisé de la question"
2464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2465
  #~ msgid "No answer selected for question"
2466
  #~ msgstr "Aucune réponse sélectionnée pour la question"
2467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2468
  #~ msgid "Success"
2469
  #~ msgstr "Succès"
2470
 
2629
  #~ msgid "Options"
2630
  #~ msgstr "Options"
2631
 
 
 
 
2632
  #~ msgid "Error: Invalid Yop Poll!\\n\\nPlease choose the poll again:\\n\\n"
2633
  #~ msgstr ""
2634
  #~ "Erreur : Sondage Yop invalide!\\n\\n S'il vous plaît choisir à nouveau le "
2635
  #~ "sondage."
2636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2637
  #~ msgid "Close"
2638
  #~ msgstr "Fermer"
2639
 
2973
  #~ msgid "Reload"
2974
  #~ msgstr "Recharger"
2975
 
 
 
 
 
 
 
2976
  #~ msgid " is empty"
2977
  #~ msgstr "est vide"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/yop_poll-fr_FR.pot CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YOP\n"
4
- "POT-Creation-Date: 2015-04-07 13:41+0200\n"
5
- "PO-Revision-Date: 2015-04-07 13:42+0200\n"
6
  "Last-Translator: Marius <marius_0156@yahoo.com>\n"
7
  "Language-Team: YOP <YOP>\n"
8
  "Language: fr\n"
@@ -63,6 +63,142 @@ msgstr "Fini"
63
  msgid "Please log in to cast your vote"
64
  msgstr "S'il vous plaît vous connecter pour voter"
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  #: inc/bans_admin.php:68
67
  msgid "Poll Bans"
68
  msgstr "Sondage interdit"
@@ -167,6 +303,144 @@ msgstr "Modèles"
167
  msgid "Add New Poll Template"
168
  msgstr "Ajouter un nouveau modèle de sondage"
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  #: yop_poll.php:167
171
  msgid ""
172
  "Php version isn't high enough! Yop Poll will be automatically downgraded!"
@@ -207,8 +481,8 @@ msgstr "Choisir le type d'interdiction"
207
  #: templates/bans_bans.html:93 templates/logs_logs.html:145
208
  #: templates/logs_logs.html:213 templates/polls_pop_up_ban.html:34
209
  #: templates/polls_results_votes.html:213
210
- #: templates/polls_results_votes.html:825
211
- #: templates/polls_results_votes.html:921
212
  msgid "Ip"
213
  msgstr "Ip"
214
 
@@ -268,7 +542,7 @@ msgid "Search Poll Bans"
268
  msgstr "Recherche de sondage interdit"
269
 
270
  #: templates/bans_bans.html:209 templates/imports_imports.html:39
271
- #: templates/logs_logs.html:31 templates/polls_results_votes.html:693
272
  #: templates/polls_view.html:113
273
  msgid "Bulk Actions"
274
  msgstr "Actions globales"
@@ -276,9 +550,9 @@ msgstr "Actions globales"
276
  #: templates/bans_bans.html:211 templates/bans_bans.html:452
277
  #: templates/logs_logs.html:33 templates/logs_logs.html:35
278
  #: templates/logs_logs.html:256 templates/polls_answer_template.html:21
279
- #: templates/polls_results_votes.html:695
280
- #: templates/polls_results_votes.html:1000 templates/polls_view.html:115
281
- #: templates/polls_view.html:294 templates/templates_templates.html:210
282
  msgid "Delete"
283
  msgstr "Effacer"
284
 
@@ -291,7 +565,7 @@ msgid "All Ban Types"
291
  msgstr "Tous les types d'interdictions"
292
 
293
  #: templates/bans_bans.html:257 templates/polls_results_votes.html:425
294
- #: templates/polls_results_votes.html:669
295
  msgid "IP"
296
  msgstr "IP"
297
 
@@ -302,9 +576,9 @@ msgid "Filter"
302
  msgstr "Filtre"
303
 
304
  #: templates/bans_bans.html:275 templates/imports_imports.html:49
305
- #: templates/polls_results_print.html:124
306
- #: templates/polls_results_votes.html:548
307
- #: templates/polls_results_votes.html:743 templates/polls_view.html:151
308
  msgid "Items Per Page"
309
  msgstr "Items par page"
310
 
@@ -337,7 +611,7 @@ msgid "Unit"
337
  msgstr "Unité"
338
 
339
  #: templates/bans_bans.html:472 templates/polls_view.html:277
340
- #: templates/templates_templates.html:203
341
  msgid "Edit"
342
  msgstr "Éditer"
343
 
@@ -389,14 +663,14 @@ msgid "All Logs"
389
  msgstr "Tous les registres"
390
 
391
  #: templates/logs_logs.html:67 templates/logs_logs.html:72
392
- #: templates/polls_results_print.html:141
393
- #: templates/polls_results_votes.html:565
394
- #: templates/polls_results_votes.html:713
395
  msgid "This Page"
396
  msgstr "Cette page"
397
 
398
- #: templates/logs_logs.html:68 templates/polls_results_print.html:142
399
- #: templates/polls_results_votes.html:566
400
  msgid "All Pages"
401
  msgstr "Toutes les pages"
402
 
@@ -405,10 +679,10 @@ msgid "logs"
405
  msgstr "logs"
406
 
407
  #: templates/logs_logs.html:106 templates/logs_logs.html:176
408
- #: templates/polls_results_print.html:161
409
- #: templates/polls_results_votes.html:585
410
- #: templates/polls_results_votes.html:663
411
- #: templates/polls_results_votes.html:785
412
  msgid "Vote ID"
413
  msgstr "Identifiant du vote"
414
 
@@ -417,19 +691,19 @@ msgid "Poll Title"
417
  msgstr "Titre du sondage"
418
 
419
  #: templates/logs_logs.html:124 templates/logs_logs.html:192
420
- #: templates/polls_results_votes.html:665
421
- #: templates/polls_results_votes.html:801
422
- #: templates/polls_results_votes.html:897
423
  msgid "User Type"
424
  msgstr "Type d'utilisateur"
425
 
426
  #: templates/logs_logs.html:155 templates/logs_logs.html:219
427
- #: templates/polls_results_print.html:165
428
  #: templates/polls_results_votes.html:432
429
- #: templates/polls_results_votes.html:589
430
- #: templates/polls_results_votes.html:671
431
- #: templates/polls_results_votes.html:845
432
- #: templates/polls_results_votes.html:943
433
  msgid "Vote Date"
434
  msgstr "Date du vote"
435
 
@@ -449,13 +723,6 @@ msgstr "Utilisateur"
449
  msgid "User Email"
450
  msgstr "Courriel d'utilisateur"
451
 
452
- #: templates/logs_logs.html:208 templates/polls_results_print.html:163
453
- #: templates/polls_results_votes.html:418
454
- #: templates/polls_results_votes.html:587
455
- #: templates/polls_results_votes.html:667
456
- msgid "Tracking ID"
457
- msgstr "Numéro de suivi"
458
-
459
  #: templates/options_general.html:19 templates/polls_add_edit-bk.html:45
460
  #: templates/polls_add_edit.html:32 templates/polls_add_edit_advanced.html:45
461
  #: templates/templates_templates_add_edit.html:122
@@ -468,10 +735,10 @@ msgstr "Enregistrer les modifications"
468
 
469
  #: templates/options_general.html:40 templates/polls_add_edit.html:52
470
  #: templates/polls_add_edit_advanced.html:65
471
- #: templates/polls_results_print.html:466
472
- #: templates/polls_results_print.html:483
473
  #: templates/polls_results_votes.html:376
474
- #: templates/polls_results_votes.html:1064
475
  msgid "Questions"
476
  msgstr "Les Questions"
477
 
@@ -496,108 +763,6 @@ msgstr "Options de questions"
496
  msgid "Allow other answers"
497
  msgstr "Toutes les autres réponses"
498
 
499
- #: templates/options_general.html:81 templates/options_general.html:98
500
- #: templates/options_general.html:105 templates/options_general.html:115
501
- #: templates/options_general.html:122 templates/options_general.html:423
502
- #: templates/options_general.html:442 templates/options_poll_options.html:89
503
- #: templates/options_poll_options.html:102
504
- #: templates/options_poll_options.html:115
505
- #: templates/options_poll_options.html:129
506
- #: templates/options_poll_options.html:158
507
- #: templates/options_poll_options.html:172
508
- #: templates/options_poll_options.html:179
509
- #: templates/options_poll_options.html:195
510
- #: templates/options_poll_options.html:209
511
- #: templates/options_poll_options.html:219
512
- #: templates/options_poll_options.html:236
513
- #: templates/options_poll_options.html:273
514
- #: templates/options_poll_options.html:292
515
- #: templates/options_poll_options.html:312
516
- #: templates/options_poll_options.html:326
517
- #: templates/options_poll_options.html:333
518
- #: templates/options_poll_options.html:340
519
- #: templates/options_poll_options.html:347
520
- #: templates/options_poll_options.html:355 templates/polls_add_edit.html:201
521
- #: templates/polls_add_edit.html:214 templates/polls_add_edit.html:227
522
- #: templates/polls_add_edit.html:241 templates/polls_add_edit.html:284
523
- #: templates/polls_add_edit.html:299 templates/polls_add_edit.html:333
524
- #: templates/polls_add_edit.html:352 templates/polls_add_edit.html:365
525
- #: templates/polls_add_edit.html:378 templates/polls_add_edit.html:385
526
- #: templates/polls_add_edit.html:392 templates/polls_add_edit.html:399
527
- #: templates/polls_add_edit.html:406 templates/polls_add_edit_options.html:83
528
- #: templates/polls_add_edit_options.html:90
529
- #: templates/polls_add_edit_options.html:97
530
- #: templates/polls_add_edit_options.html:104
531
- #: templates/polls_add_edit_options.html:118
532
- #: templates/polls_add_edit_options.html:126
533
- #: templates/polls_add_edit_options.html:134
534
- #: templates/polls_add_edit_options.html:150
535
- #: templates/polls_add_edit_options.html:187
536
- #: templates/polls_add_edit_options.html:202
537
- #: templates/polls_add_edit_options.html:216
538
- #: templates/polls_add_edit_options.html:242
539
- #: templates/polls_add_edit_options.html:250
540
- #: templates/polls_add_edit_options.html:265
541
- #: templates/polls_add_edit_options.html:272
542
- #: templates/polls_add_edit_options.html:294
543
- #: templates/polls_question_template.html:105
544
- #: templates/polls_question_template.html:122
545
- #: templates/polls_question_template.html:129
546
- #: templates/polls_question_template.html:136
547
- msgid "Yes"
548
- msgstr "Oui"
549
-
550
- #: templates/options_general.html:82 templates/options_general.html:99
551
- #: templates/options_general.html:106 templates/options_general.html:116
552
- #: templates/options_general.html:123 templates/options_general.html:424
553
- #: templates/options_general.html:443 templates/options_poll_options.html:90
554
- #: templates/options_poll_options.html:103
555
- #: templates/options_poll_options.html:116
556
- #: templates/options_poll_options.html:130
557
- #: templates/options_poll_options.html:159
558
- #: templates/options_poll_options.html:173
559
- #: templates/options_poll_options.html:180
560
- #: templates/options_poll_options.html:196
561
- #: templates/options_poll_options.html:210
562
- #: templates/options_poll_options.html:220
563
- #: templates/options_poll_options.html:237
564
- #: templates/options_poll_options.html:274
565
- #: templates/options_poll_options.html:293
566
- #: templates/options_poll_options.html:313
567
- #: templates/options_poll_options.html:327
568
- #: templates/options_poll_options.html:334
569
- #: templates/options_poll_options.html:341
570
- #: templates/options_poll_options.html:348
571
- #: templates/options_poll_options.html:356 templates/polls_add_edit.html:202
572
- #: templates/polls_add_edit.html:215 templates/polls_add_edit.html:228
573
- #: templates/polls_add_edit.html:242 templates/polls_add_edit.html:285
574
- #: templates/polls_add_edit.html:300 templates/polls_add_edit.html:334
575
- #: templates/polls_add_edit.html:353 templates/polls_add_edit.html:366
576
- #: templates/polls_add_edit.html:379 templates/polls_add_edit.html:386
577
- #: templates/polls_add_edit.html:393 templates/polls_add_edit.html:400
578
- #: templates/polls_add_edit.html:407 templates/polls_add_edit_options.html:84
579
- #: templates/polls_add_edit_options.html:91
580
- #: templates/polls_add_edit_options.html:98
581
- #: templates/polls_add_edit_options.html:105
582
- #: templates/polls_add_edit_options.html:119
583
- #: templates/polls_add_edit_options.html:127
584
- #: templates/polls_add_edit_options.html:135
585
- #: templates/polls_add_edit_options.html:151
586
- #: templates/polls_add_edit_options.html:188
587
- #: templates/polls_add_edit_options.html:203
588
- #: templates/polls_add_edit_options.html:217
589
- #: templates/polls_add_edit_options.html:243
590
- #: templates/polls_add_edit_options.html:251
591
- #: templates/polls_add_edit_options.html:266
592
- #: templates/polls_add_edit_options.html:273
593
- #: templates/polls_add_edit_options.html:295
594
- #: templates/polls_question_template.html:106
595
- #: templates/polls_question_template.html:123
596
- #: templates/polls_question_template.html:130
597
- #: templates/polls_question_template.html:137
598
- msgid "No"
599
- msgstr "Non"
600
-
601
  #: templates/options_general.html:86
602
  #: templates/polls_question_template.html:110
603
  msgid "Other answer label"
@@ -1278,7 +1443,7 @@ msgid "Page Template"
1278
  msgstr "Modèle de page"
1279
 
1280
  #: templates/polls_add_edit.html:100
1281
- #: templates/polls_add_edit_template.html:203
1282
  msgid "Widget Template"
1283
  msgstr "Modèle de Widget"
1284
 
@@ -1366,11 +1531,11 @@ msgstr "Style de la barre de résultat"
1366
  msgid "Template Width"
1367
  msgstr "Largeur du modèle"
1368
 
1369
- #: templates/polls_add_edit_template.html:198
1370
  msgid "Use the same template for widgets"
1371
  msgstr "Utiliser le même modèle pour le widget"
1372
 
1373
- #: templates/polls_add_edit_template.html:207
1374
  msgid "Widget Template Width"
1375
  msgstr "Largeur du modèle de widget"
1376
 
@@ -1408,27 +1573,24 @@ msgid "Please buy pro version to use this feature!"
1408
  msgstr ""
1409
  "Se il vous plaît acheter la version pro pour utiliser cette fonctionnalité!"
1410
 
1411
- #: templates/polls_base.html:54 templates/polls_results_votes.html:147
1412
- #: templates/pro_pre_upgrade.html:41
1413
  msgid "Upgrade to Pro for only $17"
1414
  msgstr "Upgrade to Pro pour seulement $ 17"
1415
 
1416
- #: templates/polls_base.html:57 templates/pro_pre_upgrade.html:44
1417
  msgid "60 days money back guarantee"
1418
  msgstr "60 jours garantie de remboursement"
1419
 
1420
- #: templates/polls_base.html:61 templates/pro_help.html:16
1421
- #: templates/pro_pre_upgrade.html:50
1422
  msgid "Top class software and support"
1423
  msgstr "Logiciel de classe supérieure et de soutien"
1424
 
1425
- #: templates/polls_base.html:62 templates/pro_help.html:18
1426
- #: templates/pro_pre_upgrade.html:52
1427
  msgid "I love this software and the support service."
1428
  msgstr "Je adore ce logiciel et le service de support."
1429
 
1430
- #: templates/polls_base.html:64 templates/pro_help.html:20
1431
- #: templates/pro_pre_upgrade.html:54
1432
  msgid ""
1433
  "This is definitely the #1 poll plugin for WP. I give this software and its "
1434
  "support service a A++++."
@@ -1436,15 +1598,14 @@ msgstr ""
1436
  "Ce est certainement le # 1 vote plugin pour WP. Je donne ce logiciel et son "
1437
  "service de soutien a A ++++."
1438
 
1439
- #: templates/polls_base.html:66 templates/pro_help.html:22
1440
- #: templates/pro_pre_upgrade.html:56
1441
  msgid ""
1442
  "I'm so glad to be a Pro version user. The US$17 upgrade worth every cent..."
1443
  msgstr ""
1444
  "Je suis si heureux d'être une version utilisateur Pro. La mise à niveau de "
1445
  "17 $ US vaut chaque centime ..."
1446
 
1447
- #: templates/polls_base.html:68
1448
  msgid ""
1449
  "I originally had some difficulties with the tool, and I reported them. (This "
1450
  "is normal for all software.) "
@@ -1452,7 +1613,7 @@ msgstr ""
1452
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
1453
  "signalé. (Ce est normal pour tous les logiciels.)"
1454
 
1455
- #: templates/polls_base.html:69
1456
  msgid ""
1457
  "After I reported my issues, the support got in touch with me very quickly "
1458
  "and have the problem resolved. "
@@ -1460,7 +1621,7 @@ msgstr ""
1460
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
1461
  "rapidement et ont le problème résolu."
1462
 
1463
- #: templates/polls_base.html:70
1464
  msgid ""
1465
  "Also, they listened to my suggestions and worked with me to have things "
1466
  "implemented and resolved. "
@@ -1468,13 +1629,11 @@ msgstr ""
1468
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
1469
  "des choses mises en œuvre et résolus."
1470
 
1471
- #: templates/polls_base.html:71 templates/pro_help.html:27
1472
- #: templates/pro_pre_upgrade.html:61
1473
  msgid "This is definitely a TOP CLASS service."
1474
  msgstr "Ce est vraiment un service de première classe."
1475
 
1476
- #: templates/polls_base.html:73 templates/pro_help.html:30
1477
- #: templates/pro_pre_upgrade.html:64
1478
  msgid "edwintam, wordpress user"
1479
  msgstr "edwintam, les utilisateurs de WordPress"
1480
 
@@ -1516,11 +1675,11 @@ msgstr ""
1516
  "automatiquement ajoutée comme une 'réponse' disponibles"
1517
 
1518
  #: templates/polls_question_template.html:193
1519
- #: templates/polls_results_print.html:118
1520
- #: templates/polls_results_print.html:468
1521
- #: templates/polls_results_print.html:485
1522
- #: templates/polls_results_votes.html:542
1523
- #: templates/polls_results_votes.html:1066
1524
  msgid "Custom Fields"
1525
  msgstr "Champs personnalisés"
1526
 
@@ -1599,13 +1758,13 @@ msgstr "Autre réponse"
1599
  msgid "Poll Other Answers"
1600
  msgstr "Autres réponses de sondage"
1601
 
1602
- #: templates/polls_results_print.html:132
1603
- #: templates/polls_results_votes.html:556 templates/polls_view.html:157
1604
  msgid "items"
1605
  msgstr "items"
1606
 
1607
- #: templates/polls_results_print.html:188
1608
- #: templates/polls_results_votes.html:612
1609
  msgid "No Custom Field Defined"
1610
  msgstr "Aucun champ personnalisé défini"
1611
 
@@ -1723,28 +1882,28 @@ msgstr "Votes ID"
1723
  msgid "User Type"
1724
  msgstr "Type d'utilisateur"
1725
 
1726
- #: templates/polls_results_votes.html:651
1727
  msgid "Search IP"
1728
  msgstr "Recherche IP"
1729
 
1730
- #: templates/polls_results_votes.html:661
1731
  msgid "All Columns"
1732
  msgstr "Toutes les colonnes"
1733
 
1734
- #: templates/polls_results_votes.html:751
1735
- #: templates/polls_results_votes.html:1087
1736
  msgid "results"
1737
  msgstr "Résultats"
1738
 
1739
- #: templates/polls_results_votes.html:881
1740
  msgid "Poll ID"
1741
  msgstr "Identifiant du sondage"
1742
 
1743
- #: templates/polls_results_votes.html:1005
1744
  msgid "Ban"
1745
  msgstr "Interdiction"
1746
 
1747
- #: templates/polls_results_votes.html:1110
1748
  msgid "Your poll doesn`t exist!"
1749
  msgstr "Votre sondage n'existe pas"
1750
 
@@ -1777,7 +1936,7 @@ msgid "Search Polls"
1777
  msgstr "Rechercher un sondage"
1778
 
1779
  #: templates/polls_view.html:117 templates/polls_view.html:285
1780
- #: templates/templates_templates.html:216
1781
  msgid "Clone"
1782
  msgstr "Dupliquer"
1783
 
@@ -1833,7 +1992,19 @@ msgstr ""
1833
  "Félicitations! Vous avez terminé le paiement. Cliquez ici pour procéder à la "
1834
  "mise à niveau plug-in!"
1835
 
1836
- #: templates/pro_help.html:24 templates/pro_pre_upgrade.html:58
 
 
 
 
 
 
 
 
 
 
 
 
1837
  msgid ""
1838
  "I originally had some difficulties with the tool, and I reported them. (This "
1839
  "is normal for all software.)"
@@ -1841,7 +2012,7 @@ msgstr ""
1841
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
1842
  "signalé. (Ce est normal pour tous les logiciels.)"
1843
 
1844
- #: templates/pro_help.html:25 templates/pro_pre_upgrade.html:59
1845
  msgid ""
1846
  "After I reported my issues, the support got in touch with me very quickly "
1847
  "and have the problem resolved."
@@ -1849,7 +2020,7 @@ msgstr ""
1849
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
1850
  "rapidement et ont le problème résolu."
1851
 
1852
- #: templates/pro_help.html:26 templates/pro_pre_upgrade.html:60
1853
  msgid ""
1854
  "Also, they listened to my suggestions and worked with me to have things "
1855
  "implemented and resolved."
@@ -1857,11 +2028,11 @@ msgstr ""
1857
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
1858
  "des choses mises en œuvre et résolus."
1859
 
1860
- #: templates/pro_help.html:35 templates/pro_pre_upgrade.html:69
1861
  msgid "Great support for a very useful product"
1862
  msgstr "Grand soutien pour un produit très utile"
1863
 
1864
- #: templates/pro_help.html:38 templates/pro_pre_upgrade.html:72
1865
  msgid ""
1866
  "I used yop poll standard and tried upgrading. I ran into an issue and send "
1867
  "support an email. I got the best suppor timaginable. They immediately "
@@ -1874,22 +2045,14 @@ msgstr ""
1874
  "travailler sur la question, résolus et résolu un tas d'autres choses dans la "
1875
  "course."
1876
 
1877
- #: templates/pro_help.html:40 templates/pro_pre_upgrade.html:74
1878
  msgid "Superb Support, absolutely worth paying for!"
1879
  msgstr "Superbe soutien, absolument la peine de payer pour!"
1880
 
1881
- #: templates/pro_help.html:43 templates/pro_pre_upgrade.html:77
1882
  msgid "fredverhoeven, wordpress user"
1883
  msgstr "fredverhoeven, les utilisateurs de WordPress"
1884
 
1885
- #: templates/pro_pre_upgrade.html:5
1886
- msgid ""
1887
- "If you already have a license, please enter it below to activate YOP Poll "
1888
- "Pro:"
1889
- msgstr ""
1890
- "Si vous avez déjà une licence, se il vous plaît saisir ci-dessous pour "
1891
- "activer YOP Sondage Pro:"
1892
-
1893
  #: templates/templates_templates_add_edit.html:23
1894
  msgid "Template Name"
1895
  msgstr "Nom du modèle"
@@ -2054,9 +2217,6 @@ msgstr "Réinitialiser le gabarit de sondage"
2054
  #~ msgid "Error: Wordpress Version Problem"
2055
  #~ msgstr "Erreur : Problème de version de Wordpress."
2056
 
2057
- #~ msgid "Bad Request!"
2058
- #~ msgstr "Mauvaise requête"
2059
-
2060
  #~ msgid "Changes Saved!"
2061
  #~ msgstr "Modifications enregistrées!"
2062
 
@@ -2260,21 +2420,12 @@ msgstr "Réinitialiser le gabarit de sondage"
2260
  #~ msgid "Google user not found"
2261
  #~ msgstr "Utilisateur Google introuvable"
2262
 
2263
- #~ msgid "This poll is closed!"
2264
- #~ msgstr "Ce sondage est fermé."
2265
-
2266
- #~ msgid "Poll Closed"
2267
- #~ msgstr "Sondage fermé."
2268
-
2269
  #~ msgid "Other answer for question"
2270
  #~ msgstr "Autre réponse à la question"
2271
 
2272
  #~ msgid "could not be inserted!"
2273
  #~ msgstr "ne pouvait pas être inséré!"
2274
 
2275
- #~ msgid " could not be inserted"
2276
- #~ msgstr " ne pouvait pas être inséré"
2277
-
2278
  #~ msgid "Other answer from question"
2279
  #~ msgstr "Autre réponse de la question"
2280
 
@@ -2299,75 +2450,21 @@ msgstr "Réinitialiser le gabarit de sondage"
2299
  #~ msgid "could not be inserted"
2300
  #~ msgstr "ne pouvait pas être inséré"
2301
 
2302
- #~ msgid "Other answer from question "
2303
- #~ msgstr "Autre réponse de la question"
2304
-
2305
  #~ msgid "empty"
2306
  #~ msgstr "vide"
2307
 
2308
  #~ msgid "from question"
2309
  #~ msgstr "de la question"
2310
 
2311
- #~ msgid "is required"
2312
- #~ msgstr "est requis"
2313
-
2314
- #~ msgid "required"
2315
- #~ msgstr "requis"
2316
-
2317
  #~ msgid "is missing"
2318
  #~ msgstr "est manquant"
2319
 
2320
- #~ msgid "missing"
2321
- #~ msgstr "manquant"
2322
-
2323
  #~ msgid "Custom fields from question"
2324
  #~ msgstr "Champ personnalisé de la question"
2325
 
2326
- #~ msgid "are missing"
2327
- #~ msgstr "sont manquantes"
2328
-
2329
- #~ msgid "Incorrect security code entered!"
2330
- #~ msgstr "Code de sécurité incorrect !"
2331
-
2332
- #~ msgid "Incorrect security code entered"
2333
- #~ msgstr "Code de sécurité incorrect !"
2334
-
2335
- #~ msgid "No vote registered!"
2336
- #~ msgstr "Aucun vote enregistré!"
2337
-
2338
- #~ msgid "No vote registered"
2339
- #~ msgstr "Aucun vote enregistré!"
2340
-
2341
  #~ msgid "No answer selected for question"
2342
  #~ msgstr "Aucune réponse sélectionnée pour la question"
2343
 
2344
- #~ msgid "You have run out of votes!"
2345
- #~ msgstr "Vous n'avez plus de votes!"
2346
-
2347
- #~ msgid "Run out of votes"
2348
- #~ msgstr "À court de vote"
2349
-
2350
- #~ msgid "You Already voted!"
2351
- #~ msgstr "Vous avez déjà voté!"
2352
-
2353
- #~ msgid "Already Voted"
2354
- #~ msgstr "Déjà voté"
2355
-
2356
- #~ msgid "You can vote once the poll starts!"
2357
- #~ msgstr "Vous pouvez voter après le commencement du sondage!"
2358
-
2359
- #~ msgid "Poll not started"
2360
- #~ msgstr "Sondage pas démarré"
2361
-
2362
- #~ msgid "You are not allowed to vote!"
2363
- #~ msgstr "Vous n'êtes pas autorisé à voter!"
2364
-
2365
- #~ msgid "Not allowed to vote"
2366
- #~ msgstr "Non autorisé à voter"
2367
-
2368
- #~ msgid "Bad request"
2369
- #~ msgstr "Mauvaise requête"
2370
-
2371
  #~ msgid "Success"
2372
  #~ msgstr "Succès"
2373
 
@@ -2532,29 +2629,11 @@ msgstr "Réinitialiser le gabarit de sondage"
2532
  #~ msgid "Options"
2533
  #~ msgstr "Options"
2534
 
2535
- #~ msgid "Insert Poll"
2536
- #~ msgstr "Insérer un sondage"
2537
-
2538
  #~ msgid "Error: Invalid Yop Poll!\\n\\nPlease choose the poll again:\\n\\n"
2539
  #~ msgstr ""
2540
  #~ "Erreur : Sondage Yop invalide!\\n\\n S'il vous plaît choisir à nouveau le "
2541
  #~ "sondage."
2542
 
2543
- #~ msgid "Poll to Display"
2544
- #~ msgstr "Sondage à afficher"
2545
-
2546
- #~ msgid "Display Random Poll"
2547
- #~ msgstr "Affichage aléatoire des sondage"
2548
-
2549
- #~ msgid "Display Latest Poll"
2550
- #~ msgstr "Afficher le plus récent sondage"
2551
-
2552
- #~ msgid "Display Current Active Poll"
2553
- #~ msgstr "Afficher le sondage présentement actif"
2554
-
2555
- #~ msgid "Display results only"
2556
- #~ msgstr "Afficher les résultats seulement"
2557
-
2558
  #~ msgid "Close"
2559
  #~ msgstr "Fermer"
2560
 
@@ -2894,38 +2973,5 @@ msgstr "Réinitialiser le gabarit de sondage"
2894
  #~ msgid "Reload"
2895
  #~ msgstr "Recharger"
2896
 
2897
- #~ msgid "Other answer for question "
2898
- #~ msgstr "Autre réponse à la question"
2899
-
2900
- #~ msgid " could not be inserted!"
2901
- #~ msgstr " ne pouvait pas être inséré!"
2902
-
2903
  #~ msgid " is empty"
2904
  #~ msgstr "est vide"
2905
-
2906
- #~ msgid "Too few answers selected for question "
2907
- #~ msgstr "Trop peu de réponses sélectionnés pour la question"
2908
-
2909
- #~ msgid "! Only more than "
2910
- #~ msgstr "! Seulement plus"
2911
-
2912
- #~ msgid " answers allowed!"
2913
- #~ msgstr "réponses permises!"
2914
-
2915
- #~ msgid "Too many answers selected for question "
2916
- #~ msgstr "Trop de réponses sélectionnés pour la question"
2917
-
2918
- #~ msgid "! Only "
2919
- #~ msgstr "! Seulement"
2920
-
2921
- #~ msgid "Custom field "
2922
- #~ msgstr "Champ personnalisé"
2923
-
2924
- #~ msgid " from question "
2925
- #~ msgstr " de la question"
2926
-
2927
- #~ msgid "Custom fields from question "
2928
- #~ msgstr "Les champs personnalisés de question"
2929
-
2930
- #~ msgid "No answer selected for question "
2931
- #~ msgstr "Aucune réponse sélectionnée pour la question"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: YOP\n"
4
+ "POT-Creation-Date: 2015-06-29 20:58+0200\n"
5
+ "PO-Revision-Date: 2015-06-29 20:58+0200\n"
6
  "Last-Translator: Marius <marius_0156@yahoo.com>\n"
7
  "Language-Team: YOP <YOP>\n"
8
  "Language: fr\n"
63
  msgid "Please log in to cast your vote"
64
  msgstr "S'il vous plaît vous connecter pour voter"
65
 
66
+ #: inc/admin.php:1047
67
+ msgid "Insert Poll"
68
+ msgstr "Insérer un sondage"
69
+
70
+ #: inc/admin.php:1083
71
+ msgid "Poll to Display"
72
+ msgstr "Sondage à afficher"
73
+
74
+ #: inc/admin.php:1086
75
+ msgid "Display Random Poll"
76
+ msgstr "Affichage aléatoire des sondage"
77
+
78
+ #: inc/admin.php:1087
79
+ msgid "Display Latest Poll"
80
+ msgstr "Afficher le plus récent sondage"
81
+
82
+ #: inc/admin.php:1088
83
+ msgid "Display Current Active Poll"
84
+ msgstr "Afficher le sondage présentement actif"
85
+
86
+ #: inc/admin.php:1102 templates/logs_logs.html:208
87
+ #: templates/polls_results_print.html:164
88
+ #: templates/polls_results_votes.html:418
89
+ #: templates/polls_results_votes.html:588
90
+ #: templates/polls_results_votes.html:668
91
+ msgid "Tracking ID"
92
+ msgstr "Numéro de suivi"
93
+
94
+ #: inc/admin.php:1108
95
+ msgid "Display results only"
96
+ msgstr "Afficher les résultats seulement"
97
+
98
+ #: inc/admin.php:1114 templates/options_general.html:82
99
+ #: templates/options_general.html:99 templates/options_general.html:106
100
+ #: templates/options_general.html:116 templates/options_general.html:123
101
+ #: templates/options_general.html:424 templates/options_general.html:443
102
+ #: templates/options_poll_options.html:90
103
+ #: templates/options_poll_options.html:103
104
+ #: templates/options_poll_options.html:116
105
+ #: templates/options_poll_options.html:130
106
+ #: templates/options_poll_options.html:159
107
+ #: templates/options_poll_options.html:173
108
+ #: templates/options_poll_options.html:180
109
+ #: templates/options_poll_options.html:196
110
+ #: templates/options_poll_options.html:210
111
+ #: templates/options_poll_options.html:220
112
+ #: templates/options_poll_options.html:237
113
+ #: templates/options_poll_options.html:274
114
+ #: templates/options_poll_options.html:293
115
+ #: templates/options_poll_options.html:313
116
+ #: templates/options_poll_options.html:327
117
+ #: templates/options_poll_options.html:334
118
+ #: templates/options_poll_options.html:341
119
+ #: templates/options_poll_options.html:348
120
+ #: templates/options_poll_options.html:356 templates/polls_add_edit.html:202
121
+ #: templates/polls_add_edit.html:215 templates/polls_add_edit.html:228
122
+ #: templates/polls_add_edit.html:242 templates/polls_add_edit.html:285
123
+ #: templates/polls_add_edit.html:300 templates/polls_add_edit.html:334
124
+ #: templates/polls_add_edit.html:353 templates/polls_add_edit.html:366
125
+ #: templates/polls_add_edit.html:379 templates/polls_add_edit.html:386
126
+ #: templates/polls_add_edit.html:393 templates/polls_add_edit.html:400
127
+ #: templates/polls_add_edit.html:407 templates/polls_add_edit_options.html:84
128
+ #: templates/polls_add_edit_options.html:91
129
+ #: templates/polls_add_edit_options.html:98
130
+ #: templates/polls_add_edit_options.html:105
131
+ #: templates/polls_add_edit_options.html:119
132
+ #: templates/polls_add_edit_options.html:127
133
+ #: templates/polls_add_edit_options.html:135
134
+ #: templates/polls_add_edit_options.html:151
135
+ #: templates/polls_add_edit_options.html:188
136
+ #: templates/polls_add_edit_options.html:203
137
+ #: templates/polls_add_edit_options.html:217
138
+ #: templates/polls_add_edit_options.html:243
139
+ #: templates/polls_add_edit_options.html:251
140
+ #: templates/polls_add_edit_options.html:266
141
+ #: templates/polls_add_edit_options.html:273
142
+ #: templates/polls_add_edit_options.html:295
143
+ #: templates/polls_question_template.html:106
144
+ #: templates/polls_question_template.html:123
145
+ #: templates/polls_question_template.html:130
146
+ #: templates/polls_question_template.html:137
147
+ msgid "No"
148
+ msgstr "Non"
149
+
150
+ #: inc/admin.php:1115 templates/options_general.html:81
151
+ #: templates/options_general.html:98 templates/options_general.html:105
152
+ #: templates/options_general.html:115 templates/options_general.html:122
153
+ #: templates/options_general.html:423 templates/options_general.html:442
154
+ #: templates/options_poll_options.html:89
155
+ #: templates/options_poll_options.html:102
156
+ #: templates/options_poll_options.html:115
157
+ #: templates/options_poll_options.html:129
158
+ #: templates/options_poll_options.html:158
159
+ #: templates/options_poll_options.html:172
160
+ #: templates/options_poll_options.html:179
161
+ #: templates/options_poll_options.html:195
162
+ #: templates/options_poll_options.html:209
163
+ #: templates/options_poll_options.html:219
164
+ #: templates/options_poll_options.html:236
165
+ #: templates/options_poll_options.html:273
166
+ #: templates/options_poll_options.html:292
167
+ #: templates/options_poll_options.html:312
168
+ #: templates/options_poll_options.html:326
169
+ #: templates/options_poll_options.html:333
170
+ #: templates/options_poll_options.html:340
171
+ #: templates/options_poll_options.html:347
172
+ #: templates/options_poll_options.html:355 templates/polls_add_edit.html:201
173
+ #: templates/polls_add_edit.html:214 templates/polls_add_edit.html:227
174
+ #: templates/polls_add_edit.html:241 templates/polls_add_edit.html:284
175
+ #: templates/polls_add_edit.html:299 templates/polls_add_edit.html:333
176
+ #: templates/polls_add_edit.html:352 templates/polls_add_edit.html:365
177
+ #: templates/polls_add_edit.html:378 templates/polls_add_edit.html:385
178
+ #: templates/polls_add_edit.html:392 templates/polls_add_edit.html:399
179
+ #: templates/polls_add_edit.html:406 templates/polls_add_edit_options.html:83
180
+ #: templates/polls_add_edit_options.html:90
181
+ #: templates/polls_add_edit_options.html:97
182
+ #: templates/polls_add_edit_options.html:104
183
+ #: templates/polls_add_edit_options.html:118
184
+ #: templates/polls_add_edit_options.html:126
185
+ #: templates/polls_add_edit_options.html:134
186
+ #: templates/polls_add_edit_options.html:150
187
+ #: templates/polls_add_edit_options.html:187
188
+ #: templates/polls_add_edit_options.html:202
189
+ #: templates/polls_add_edit_options.html:216
190
+ #: templates/polls_add_edit_options.html:242
191
+ #: templates/polls_add_edit_options.html:250
192
+ #: templates/polls_add_edit_options.html:265
193
+ #: templates/polls_add_edit_options.html:272
194
+ #: templates/polls_add_edit_options.html:294
195
+ #: templates/polls_question_template.html:105
196
+ #: templates/polls_question_template.html:122
197
+ #: templates/polls_question_template.html:129
198
+ #: templates/polls_question_template.html:136
199
+ msgid "Yes"
200
+ msgstr "Oui"
201
+
202
  #: inc/bans_admin.php:68
203
  msgid "Poll Bans"
204
  msgstr "Sondage interdit"
303
  msgid "Add New Poll Template"
304
  msgstr "Ajouter un nouveau modèle de sondage"
305
 
306
+ #: models/poll_model.php:868 models/poll_model.php:869
307
+ msgid "Too few answers selected for question "
308
+ msgstr "Trop peu de réponses sélectionnés pour la question"
309
+
310
+ #: models/poll_model.php:868
311
+ msgid "! Only more than "
312
+ msgstr "! Seulement plus"
313
+
314
+ #: models/poll_model.php:868 models/poll_model.php:875
315
+ msgid " answers allowed!"
316
+ msgstr "réponses permises!"
317
+
318
+ #: models/poll_model.php:875 models/poll_model.php:876
319
+ msgid "Too many answers selected for question "
320
+ msgstr "Trop de réponses sélectionnés pour la question"
321
+
322
+ #: models/poll_model.php:875
323
+ msgid "! Only "
324
+ msgstr "! Seulement"
325
+
326
+ #: models/poll_model.php:899 models/poll_model.php:900
327
+ msgid "Other answer for question "
328
+ msgstr "Autre réponse à la question"
329
+
330
+ #: models/poll_model.php:899
331
+ msgid " could not be inserted!"
332
+ msgstr " ne pouvait pas être inséré!"
333
+
334
+ #: models/poll_model.php:900
335
+ msgid " could not be inserted"
336
+ msgstr " ne pouvait pas être inséré"
337
+
338
+ #: models/poll_model.php:906 models/poll_model.php:907
339
+ msgid "Other answer from question "
340
+ msgstr "Autre réponse de la question"
341
+
342
+ #: models/poll_model.php:946 models/poll_model.php:947
343
+ #: models/poll_model.php:973 models/poll_model.php:975
344
+ msgid "Custom field "
345
+ msgstr "Champ personnalisé"
346
+
347
+ #: models/poll_model.php:946 models/poll_model.php:947
348
+ #: models/poll_model.php:973 models/poll_model.php:975
349
+ msgid " from question "
350
+ msgstr " de la question"
351
+
352
+ #: models/poll_model.php:946
353
+ msgid "is required"
354
+ msgstr "est requis"
355
+
356
+ #: models/poll_model.php:947
357
+ msgid "required"
358
+ msgstr "requis"
359
+
360
+ #: models/poll_model.php:973
361
+ msgid "is missing "
362
+ msgstr "est manquant"
363
+
364
+ #: models/poll_model.php:975 models/poll_model.php:983
365
+ msgid "missing"
366
+ msgstr "manquant"
367
+
368
+ #: models/poll_model.php:982 models/poll_model.php:983
369
+ msgid "Custom fields from question "
370
+ msgstr "Les champs personnalisés de question"
371
+
372
+ #: models/poll_model.php:982
373
+ msgid "are missing"
374
+ msgstr "sont manquantes"
375
+
376
+ #: models/poll_model.php:1026
377
+ msgid "Incorrect security code entered!"
378
+ msgstr "Code de sécurité incorrect !"
379
+
380
+ #: models/poll_model.php:1027
381
+ msgid "Incorrect security code entered"
382
+ msgstr "Code de sécurité incorrect !"
383
+
384
+ #: models/poll_model.php:1074
385
+ msgid "No vote registered!"
386
+ msgstr "Aucun vote enregistré!"
387
+
388
+ #: models/poll_model.php:1075
389
+ msgid "No vote registered"
390
+ msgstr "Aucun vote enregistré!"
391
+
392
+ #: models/poll_model.php:1081 models/poll_model.php:1082
393
+ msgid "No answer selected for question "
394
+ msgstr "Aucune réponse sélectionnée pour la question"
395
+
396
+ #: models/poll_model.php:1090
397
+ msgid "You have run out of votes!"
398
+ msgstr "Vous n'avez plus de votes!"
399
+
400
+ #: models/poll_model.php:1091
401
+ msgid "Run out of votes"
402
+ msgstr "À court de vote"
403
+
404
+ #: models/poll_model.php:1097
405
+ msgid "You Already voted!"
406
+ msgstr "Vous avez déjà voté!"
407
+
408
+ #: models/poll_model.php:1098
409
+ msgid "Already Voted"
410
+ msgstr "Déjà voté"
411
+
412
+ #: models/poll_model.php:1105
413
+ msgid "This poll is closed!"
414
+ msgstr "Ce sondage est fermé."
415
+
416
+ #: models/poll_model.php:1106
417
+ msgid "Poll Closed"
418
+ msgstr "Sondage fermé."
419
+
420
+ #: models/poll_model.php:1112
421
+ msgid "You can vote once the poll starts!"
422
+ msgstr "Vous pouvez voter après le commencement du sondage!"
423
+
424
+ #: models/poll_model.php:1113
425
+ msgid "Poll not started"
426
+ msgstr "Sondage pas démarré"
427
+
428
+ #: models/poll_model.php:1119 models/poll_model.php:1126
429
+ msgid "You are not allowed to vote!"
430
+ msgstr "Vous n'êtes pas autorisé à voter!"
431
+
432
+ #: models/poll_model.php:1120
433
+ msgid "Not allowed to vote"
434
+ msgstr "Non autorisé à voter"
435
+
436
+ #: models/poll_model.php:1132
437
+ msgid "Bad Request!"
438
+ msgstr "Mauvaise requête"
439
+
440
+ #: models/poll_model.php:1133
441
+ msgid "Bad request"
442
+ msgstr "Mauvaise requête"
443
+
444
  #: yop_poll.php:167
445
  msgid ""
446
  "Php version isn't high enough! Yop Poll will be automatically downgraded!"
481
  #: templates/bans_bans.html:93 templates/logs_logs.html:145
482
  #: templates/logs_logs.html:213 templates/polls_pop_up_ban.html:34
483
  #: templates/polls_results_votes.html:213
484
+ #: templates/polls_results_votes.html:826
485
+ #: templates/polls_results_votes.html:922
486
  msgid "Ip"
487
  msgstr "Ip"
488
 
542
  msgstr "Recherche de sondage interdit"
543
 
544
  #: templates/bans_bans.html:209 templates/imports_imports.html:39
545
+ #: templates/logs_logs.html:31 templates/polls_results_votes.html:694
546
  #: templates/polls_view.html:113
547
  msgid "Bulk Actions"
548
  msgstr "Actions globales"
550
  #: templates/bans_bans.html:211 templates/bans_bans.html:452
551
  #: templates/logs_logs.html:33 templates/logs_logs.html:35
552
  #: templates/logs_logs.html:256 templates/polls_answer_template.html:21
553
+ #: templates/polls_results_votes.html:696
554
+ #: templates/polls_results_votes.html:1001 templates/polls_view.html:115
555
+ #: templates/polls_view.html:294 templates/templates_templates.html:105
556
  msgid "Delete"
557
  msgstr "Effacer"
558
 
565
  msgstr "Tous les types d'interdictions"
566
 
567
  #: templates/bans_bans.html:257 templates/polls_results_votes.html:425
568
+ #: templates/polls_results_votes.html:670
569
  msgid "IP"
570
  msgstr "IP"
571
 
576
  msgstr "Filtre"
577
 
578
  #: templates/bans_bans.html:275 templates/imports_imports.html:49
579
+ #: templates/polls_results_print.html:125
580
+ #: templates/polls_results_votes.html:549
581
+ #: templates/polls_results_votes.html:744 templates/polls_view.html:151
582
  msgid "Items Per Page"
583
  msgstr "Items par page"
584
 
611
  msgstr "Unité"
612
 
613
  #: templates/bans_bans.html:472 templates/polls_view.html:277
614
+ #: templates/templates_templates.html:98
615
  msgid "Edit"
616
  msgstr "Éditer"
617
 
663
  msgstr "Tous les registres"
664
 
665
  #: templates/logs_logs.html:67 templates/logs_logs.html:72
666
+ #: templates/polls_results_print.html:142
667
+ #: templates/polls_results_votes.html:566
668
+ #: templates/polls_results_votes.html:714
669
  msgid "This Page"
670
  msgstr "Cette page"
671
 
672
+ #: templates/logs_logs.html:68 templates/polls_results_print.html:143
673
+ #: templates/polls_results_votes.html:567
674
  msgid "All Pages"
675
  msgstr "Toutes les pages"
676
 
679
  msgstr "logs"
680
 
681
  #: templates/logs_logs.html:106 templates/logs_logs.html:176
682
+ #: templates/polls_results_print.html:162
683
+ #: templates/polls_results_votes.html:586
684
+ #: templates/polls_results_votes.html:664
685
+ #: templates/polls_results_votes.html:786
686
  msgid "Vote ID"
687
  msgstr "Identifiant du vote"
688
 
691
  msgstr "Titre du sondage"
692
 
693
  #: templates/logs_logs.html:124 templates/logs_logs.html:192
694
+ #: templates/polls_results_votes.html:666
695
+ #: templates/polls_results_votes.html:802
696
+ #: templates/polls_results_votes.html:898
697
  msgid "User Type"
698
  msgstr "Type d'utilisateur"
699
 
700
  #: templates/logs_logs.html:155 templates/logs_logs.html:219
701
+ #: templates/polls_results_print.html:166
702
  #: templates/polls_results_votes.html:432
703
+ #: templates/polls_results_votes.html:590
704
+ #: templates/polls_results_votes.html:672
705
+ #: templates/polls_results_votes.html:846
706
+ #: templates/polls_results_votes.html:944
707
  msgid "Vote Date"
708
  msgstr "Date du vote"
709
 
723
  msgid "User Email"
724
  msgstr "Courriel d'utilisateur"
725
 
 
 
 
 
 
 
 
726
  #: templates/options_general.html:19 templates/polls_add_edit-bk.html:45
727
  #: templates/polls_add_edit.html:32 templates/polls_add_edit_advanced.html:45
728
  #: templates/templates_templates_add_edit.html:122
735
 
736
  #: templates/options_general.html:40 templates/polls_add_edit.html:52
737
  #: templates/polls_add_edit_advanced.html:65
738
+ #: templates/polls_results_print.html:467
739
+ #: templates/polls_results_print.html:484
740
  #: templates/polls_results_votes.html:376
741
+ #: templates/polls_results_votes.html:1065
742
  msgid "Questions"
743
  msgstr "Les Questions"
744
 
763
  msgid "Allow other answers"
764
  msgstr "Toutes les autres réponses"
765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  #: templates/options_general.html:86
767
  #: templates/polls_question_template.html:110
768
  msgid "Other answer label"
1443
  msgstr "Modèle de page"
1444
 
1445
  #: templates/polls_add_edit.html:100
1446
+ #: templates/polls_add_edit_template.html:204
1447
  msgid "Widget Template"
1448
  msgstr "Modèle de Widget"
1449
 
1531
  msgid "Template Width"
1532
  msgstr "Largeur du modèle"
1533
 
1534
+ #: templates/polls_add_edit_template.html:199
1535
  msgid "Use the same template for widgets"
1536
  msgstr "Utiliser le même modèle pour le widget"
1537
 
1538
+ #: templates/polls_add_edit_template.html:208
1539
  msgid "Widget Template Width"
1540
  msgstr "Largeur du modèle de widget"
1541
 
1573
  msgstr ""
1574
  "Se il vous plaît acheter la version pro pour utiliser cette fonctionnalité!"
1575
 
1576
+ #: templates/polls_base.html:58 templates/polls_results_votes.html:147
1577
+ #: templates/pro_pre_upgrade.html:42
1578
  msgid "Upgrade to Pro for only $17"
1579
  msgstr "Upgrade to Pro pour seulement $ 17"
1580
 
1581
+ #: templates/polls_base.html:61 templates/pro_pre_upgrade.html:45
1582
  msgid "60 days money back guarantee"
1583
  msgstr "60 jours garantie de remboursement"
1584
 
1585
+ #: templates/polls_base.html:65 templates/pro_pre_upgrade.html:51
 
1586
  msgid "Top class software and support"
1587
  msgstr "Logiciel de classe supérieure et de soutien"
1588
 
1589
+ #: templates/polls_base.html:66 templates/pro_pre_upgrade.html:53
 
1590
  msgid "I love this software and the support service."
1591
  msgstr "Je adore ce logiciel et le service de support."
1592
 
1593
+ #: templates/polls_base.html:68 templates/pro_pre_upgrade.html:55
 
1594
  msgid ""
1595
  "This is definitely the #1 poll plugin for WP. I give this software and its "
1596
  "support service a A++++."
1598
  "Ce est certainement le # 1 vote plugin pour WP. Je donne ce logiciel et son "
1599
  "service de soutien a A ++++."
1600
 
1601
+ #: templates/polls_base.html:70 templates/pro_pre_upgrade.html:57
 
1602
  msgid ""
1603
  "I'm so glad to be a Pro version user. The US$17 upgrade worth every cent..."
1604
  msgstr ""
1605
  "Je suis si heureux d'être une version utilisateur Pro. La mise à niveau de "
1606
  "17 $ US vaut chaque centime ..."
1607
 
1608
+ #: templates/polls_base.html:72
1609
  msgid ""
1610
  "I originally had some difficulties with the tool, and I reported them. (This "
1611
  "is normal for all software.) "
1613
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
1614
  "signalé. (Ce est normal pour tous les logiciels.)"
1615
 
1616
+ #: templates/polls_base.html:73
1617
  msgid ""
1618
  "After I reported my issues, the support got in touch with me very quickly "
1619
  "and have the problem resolved. "
1621
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
1622
  "rapidement et ont le problème résolu."
1623
 
1624
+ #: templates/polls_base.html:74
1625
  msgid ""
1626
  "Also, they listened to my suggestions and worked with me to have things "
1627
  "implemented and resolved. "
1629
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
1630
  "des choses mises en œuvre et résolus."
1631
 
1632
+ #: templates/polls_base.html:75 templates/pro_pre_upgrade.html:62
 
1633
  msgid "This is definitely a TOP CLASS service."
1634
  msgstr "Ce est vraiment un service de première classe."
1635
 
1636
+ #: templates/polls_base.html:77 templates/pro_pre_upgrade.html:65
 
1637
  msgid "edwintam, wordpress user"
1638
  msgstr "edwintam, les utilisateurs de WordPress"
1639
 
1675
  "automatiquement ajoutée comme une 'réponse' disponibles"
1676
 
1677
  #: templates/polls_question_template.html:193
1678
+ #: templates/polls_results_print.html:119
1679
+ #: templates/polls_results_print.html:469
1680
+ #: templates/polls_results_print.html:486
1681
+ #: templates/polls_results_votes.html:543
1682
+ #: templates/polls_results_votes.html:1067
1683
  msgid "Custom Fields"
1684
  msgstr "Champs personnalisés"
1685
 
1758
  msgid "Poll Other Answers"
1759
  msgstr "Autres réponses de sondage"
1760
 
1761
+ #: templates/polls_results_print.html:133
1762
+ #: templates/polls_results_votes.html:557 templates/polls_view.html:157
1763
  msgid "items"
1764
  msgstr "items"
1765
 
1766
+ #: templates/polls_results_print.html:189
1767
+ #: templates/polls_results_votes.html:613
1768
  msgid "No Custom Field Defined"
1769
  msgstr "Aucun champ personnalisé défini"
1770
 
1882
  msgid "User Type"
1883
  msgstr "Type d'utilisateur"
1884
 
1885
+ #: templates/polls_results_votes.html:652
1886
  msgid "Search IP"
1887
  msgstr "Recherche IP"
1888
 
1889
+ #: templates/polls_results_votes.html:662
1890
  msgid "All Columns"
1891
  msgstr "Toutes les colonnes"
1892
 
1893
+ #: templates/polls_results_votes.html:752
1894
+ #: templates/polls_results_votes.html:1088
1895
  msgid "results"
1896
  msgstr "Résultats"
1897
 
1898
+ #: templates/polls_results_votes.html:882
1899
  msgid "Poll ID"
1900
  msgstr "Identifiant du sondage"
1901
 
1902
+ #: templates/polls_results_votes.html:1006
1903
  msgid "Ban"
1904
  msgstr "Interdiction"
1905
 
1906
+ #: templates/polls_results_votes.html:1111
1907
  msgid "Your poll doesn`t exist!"
1908
  msgstr "Votre sondage n'existe pas"
1909
 
1936
  msgstr "Rechercher un sondage"
1937
 
1938
  #: templates/polls_view.html:117 templates/polls_view.html:285
1939
+ #: templates/templates_templates.html:111
1940
  msgid "Clone"
1941
  msgstr "Dupliquer"
1942
 
1992
  "Félicitations! Vous avez terminé le paiement. Cliquez ici pour procéder à la "
1993
  "mise à niveau plug-in!"
1994
 
1995
+ #: templates/pro_help.html:8
1996
+ msgid "For any questions/issues, you can contact us at "
1997
+ msgstr "Pour toutes questions / questions, vous pouvez nous contacter au"
1998
+
1999
+ #: templates/pro_pre_upgrade.html:5
2000
+ msgid ""
2001
+ "If you already have a license, please enter it below to activate YOP Poll "
2002
+ "Pro:"
2003
+ msgstr ""
2004
+ "Si vous avez déjà une licence, se il vous plaît saisir ci-dessous pour "
2005
+ "activer YOP Sondage Pro:"
2006
+
2007
+ #: templates/pro_pre_upgrade.html:59
2008
  msgid ""
2009
  "I originally had some difficulties with the tool, and I reported them. (This "
2010
  "is normal for all software.)"
2012
  "Je ai eu quelques difficultés à l'origine avec l'outil, et je leur ai "
2013
  "signalé. (Ce est normal pour tous les logiciels.)"
2014
 
2015
+ #: templates/pro_pre_upgrade.html:60
2016
  msgid ""
2017
  "After I reported my issues, the support got in touch with me very quickly "
2018
  "and have the problem resolved."
2020
  "Après je ai rapporté mes questions, le soutien a pris contact avec moi très "
2021
  "rapidement et ont le problème résolu."
2022
 
2023
+ #: templates/pro_pre_upgrade.html:61
2024
  msgid ""
2025
  "Also, they listened to my suggestions and worked with me to have things "
2026
  "implemented and resolved."
2028
  "En outre, ils ont écouté mes suggestions et a travaillé avec moi pour avoir "
2029
  "des choses mises en œuvre et résolus."
2030
 
2031
+ #: templates/pro_pre_upgrade.html:70
2032
  msgid "Great support for a very useful product"
2033
  msgstr "Grand soutien pour un produit très utile"
2034
 
2035
+ #: templates/pro_pre_upgrade.html:73
2036
  msgid ""
2037
  "I used yop poll standard and tried upgrading. I ran into an issue and send "
2038
  "support an email. I got the best suppor timaginable. They immediately "
2045
  "travailler sur la question, résolus et résolu un tas d'autres choses dans la "
2046
  "course."
2047
 
2048
+ #: templates/pro_pre_upgrade.html:75
2049
  msgid "Superb Support, absolutely worth paying for!"
2050
  msgstr "Superbe soutien, absolument la peine de payer pour!"
2051
 
2052
+ #: templates/pro_pre_upgrade.html:78
2053
  msgid "fredverhoeven, wordpress user"
2054
  msgstr "fredverhoeven, les utilisateurs de WordPress"
2055
 
 
 
 
 
 
 
 
 
2056
  #: templates/templates_templates_add_edit.html:23
2057
  msgid "Template Name"
2058
  msgstr "Nom du modèle"
2217
  #~ msgid "Error: Wordpress Version Problem"
2218
  #~ msgstr "Erreur : Problème de version de Wordpress."
2219
 
 
 
 
2220
  #~ msgid "Changes Saved!"
2221
  #~ msgstr "Modifications enregistrées!"
2222
 
2420
  #~ msgid "Google user not found"
2421
  #~ msgstr "Utilisateur Google introuvable"
2422
 
 
 
 
 
 
 
2423
  #~ msgid "Other answer for question"
2424
  #~ msgstr "Autre réponse à la question"
2425
 
2426
  #~ msgid "could not be inserted!"
2427
  #~ msgstr "ne pouvait pas être inséré!"
2428
 
 
 
 
2429
  #~ msgid "Other answer from question"
2430
  #~ msgstr "Autre réponse de la question"
2431
 
2450
  #~ msgid "could not be inserted"
2451
  #~ msgstr "ne pouvait pas être inséré"
2452
 
 
 
 
2453
  #~ msgid "empty"
2454
  #~ msgstr "vide"
2455
 
2456
  #~ msgid "from question"
2457
  #~ msgstr "de la question"
2458
 
 
 
 
 
 
 
2459
  #~ msgid "is missing"
2460
  #~ msgstr "est manquant"
2461
 
 
 
 
2462
  #~ msgid "Custom fields from question"
2463
  #~ msgstr "Champ personnalisé de la question"
2464
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2465
  #~ msgid "No answer selected for question"
2466
  #~ msgstr "Aucune réponse sélectionnée pour la question"
2467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2468
  #~ msgid "Success"
2469
  #~ msgstr "Succès"
2470
 
2629
  #~ msgid "Options"
2630
  #~ msgstr "Options"
2631
 
 
 
 
2632
  #~ msgid "Error: Invalid Yop Poll!\\n\\nPlease choose the poll again:\\n\\n"
2633
  #~ msgstr ""
2634
  #~ "Erreur : Sondage Yop invalide!\\n\\n S'il vous plaît choisir à nouveau le "
2635
  #~ "sondage."
2636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2637
  #~ msgid "Close"
2638
  #~ msgstr "Fermer"
2639
 
2973
  #~ msgid "Reload"
2974
  #~ msgstr "Recharger"
2975
 
 
 
 
 
 
 
2976
  #~ msgid " is empty"
2977
  #~ msgstr "est vide"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
models/poll_model.php CHANGED
@@ -367,10 +367,6 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
367
  $model = "";
368
 
369
  /** Get question total votes( default + other ) */
370
- $total_votes=1;
371
-
372
- if($this->view_total_votes!="no")
373
- $total_votes = $this->get_question_votes( $question );
374
 
375
  /**Is allowed to display other answers?*/
376
  $display_other_answers = false;
@@ -869,15 +865,15 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
869
  }
870
  }
871
  else {
872
- $this->error = __yop_poll( 'Too few answers selected for question ' ) . $i . __yop_poll( '! Only more than ' ) . $question->allow_multiple_answers_min_number . __yop_poll( ' answers allowed!' );
873
- $log_to_add ['message'] = __yop_poll( 'Too few answers selected for question ' ) . $i;
874
  insert_log_in_db( $log_to_add );
875
  return false;
876
  }
877
  }
878
  else {
879
- $this->error = __yop_poll( 'Too many answers selected for question ' ) . $i . __yop_poll( '! Only ' ) . $question->allow_multiple_answers_number . __yop_poll( ' answers allowed!' );
880
- $log_to_add ['message'] = __yop_poll( 'Too many answers selected for question ' ) . $i;
881
  insert_log_in_db( $log_to_add );
882
  return false;
883
  }
@@ -900,15 +896,15 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
900
  $a->save();
901
 
902
  if( ! $a->id ) {
903
- $this->error = __yop_poll( 'Other answer for question ' ) . $i . __yop_poll( ' could not be inserted!' );
904
- $log_to_add ['message'] = __yop_poll( 'Other answer for question ' ) . $i . __yop_poll( ' could not be inserted' );
905
  insert_log_in_db( $log_to_add );
906
  return false;
907
  }
908
  }
909
  else {
910
- $this->error = __yop_poll( 'Other answer from question ' ) . $i . ' ' . __yop_poll( 'is empty' );
911
- $log_to_add ['message'] = __yop_poll( 'Other answer from question ' ) . $i . ' ' . __yop_poll( 'empty' );
912
  insert_log_in_db( $log_to_add );
913
  return false;
914
  }
@@ -947,8 +943,8 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
947
  if( isset( $request['yop_poll_customfield'][$question->ID][$custom_field->ID] ) ) {
948
 
949
  if( '' == trim( strip_tags( $request['yop_poll_customfield'][$question->ID][$custom_field->ID] ) ) && 'yes' == $custom_field->required ) {
950
- $this->error = __yop_poll( 'Custom field ' ) . $custom_field->custom_field . __yop_poll( ' from question ' ) . $i . ' ' . __yop_poll( 'is required' ) . '!';
951
- $log_to_add ['message'] = __yop_poll( 'Custom field ' ) . $custom_field->custom_field . __yop_poll( ' from question ' ) . $i . ' ' . __yop_poll( 'required' );
952
  insert_log_in_db( $log_to_add );
953
  return false;
954
  }
@@ -974,16 +970,17 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
974
  }
975
  }
976
  else {
977
- $this->error = __yop_poll( 'Custom field ' ) . '"' . $custom_field->custom_field . '"' . __yop_poll( ' from question ' ) . $i . ' ' . __yop_poll( 'is missing' ) . '!';
978
- $log_to_add ['message'] = __yop_poll( 'Custom field ' ) . '"' . $custom_field->custom_field . '"' . __yop_poll( ' from question ' ) . $i . ' ' . __yop_poll( 'missing' );
 
979
  insert_log_in_db( $log_to_add );
980
  return false;
981
  }
982
  }
983
  }
984
  else {
985
- $this->error = __yop_poll( 'Custom fields from question ' ) . $i . ' ' . __yop_poll( 'are missing' ) . '!';
986
- $log_to_add ['message'] = __yop_poll( 'Custom fields from question ' ) . $i . ' ' . __yop_poll( 'missing' ) . '!';
987
  insert_log_in_db( $log_to_add );
988
  return false;
989
  }
@@ -1026,8 +1023,8 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
1026
  }
1027
  }
1028
  else {
1029
- $this->error = __yop_poll( 'Incorrect security code entered!' );
1030
- $log_to_add ['message'] = __yop_poll( 'Incorrect security code entered' );
1031
  insert_log_in_db( $log_to_add );
1032
  return false;
1033
  }
@@ -1074,15 +1071,15 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
1074
  }
1075
  }
1076
  else {
1077
- $this->error = __yop_poll( 'No vote registered!' );
1078
- $log_to_add ['message'] = __yop_poll( 'No vote registered' );
1079
  insert_log_in_db( $log_to_add );
1080
  return false;
1081
  }
1082
  }
1083
  else {
1084
- $this->error = __yop_poll( 'No answer selected for question ' ) . $i;
1085
- $log_to_add ['message'] = __yop_poll( 'No answer selected for question ' ) . $i;
1086
  insert_log_in_db( $log_to_add );
1087
  return false;
1088
  }
@@ -1090,50 +1087,50 @@ Class YOP_POLL_Poll_Model extends YOP_POLL_Abstract_Model {
1090
  }
1091
  }
1092
  else {
1093
- $this->error = __yop_poll( 'You have run out of votes!' );
1094
- $log_to_add ['message'] = __yop_poll( 'Run out of votes' );
1095
  insert_log_in_db( $log_to_add );
1096
  return false;
1097
  }
1098
  }
1099
  else {
1100
- $this->error = __yop_poll( 'You Already voted!' );
1101
- $log_to_add ['message'] = __yop_poll( 'Already Voted' );
1102
  insert_log_in_db( $log_to_add );
1103
  return false;
1104
  }
1105
  }
1106
  }
1107
  else {
1108
- $this->error = __yop_poll( 'This poll is closed!' );
1109
- $log_to_add ['message'] = __yop_poll( 'Poll Closed' );
1110
  insert_log_in_db( $log_to_add );
1111
  return false;
1112
  }
1113
  }
1114
  else {
1115
- $this->error = __yop_poll( 'You can vote once the poll starts!' );
1116
- $log_to_add ['message'] = __yop_poll( 'Poll not started' );
1117
  insert_log_in_db( $log_to_add );
1118
  return false;
1119
  }
1120
  }
1121
  else {
1122
- $this->error = __yop_poll( 'You are not allowed to vote!' );
1123
- $log_to_add ['message'] = __yop_poll( 'Not allowed to vote' );
1124
  insert_log_in_db( $log_to_add );
1125
  return false;
1126
  }
1127
  }
1128
  else {
1129
- $this->error = __yop_poll( 'You are not allowed to vote!' );
1130
  return false;
1131
  }
1132
 
1133
  }
1134
  else {
1135
- $this->error = __yop_poll( 'Bad Request!' );
1136
- $log_to_add ['message'] = __yop_poll( 'Bad request' );
1137
  insert_log_in_db( $log_to_add );
1138
  return false;
1139
  }
367
  $model = "";
368
 
369
  /** Get question total votes( default + other ) */
 
 
 
 
370
 
371
  /**Is allowed to display other answers?*/
372
  $display_other_answers = false;
865
  }
866
  }
867
  else {
868
+ $this->error = __yop_poll( "Too few answers selected for question " ) . $i . __yop_poll( "! Only more than " ) . $question->allow_multiple_answers_min_number . __yop_poll( " answers allowed!" );
869
+ $log_to_add ['message'] = __yop_poll( "Too few answers selected for question ") . $i;
870
  insert_log_in_db( $log_to_add );
871
  return false;
872
  }
873
  }
874
  else {
875
+ $this->error = __yop_poll( "Too many answers selected for question " ) . $i . __yop_poll( "! Only " ) . $question->allow_multiple_answers_number . __yop_poll( " answers allowed!" );
876
+ $log_to_add ['message'] = __yop_poll( "Too many answers selected for question " ) . $i;
877
  insert_log_in_db( $log_to_add );
878
  return false;
879
  }
896
  $a->save();
897
 
898
  if( ! $a->id ) {
899
+ $this->error = __yop_poll( "Other answer for question " ) . $i . __yop_poll( " could not be inserted!" );
900
+ $log_to_add ['message'] = __yop_poll( "Other answer for question " ) . $i . __yop_poll( " could not be inserted");
901
  insert_log_in_db( $log_to_add );
902
  return false;
903
  }
904
  }
905
  else {
906
+ $this->error = __yop_poll( "Other answer from question " ) . $i . ' ' . __yop_poll( 'is empty' );
907
+ $log_to_add ['message'] = __yop_poll( "Other answer from question " ) . $i . ' ' . __yop_poll( 'empty' );
908
  insert_log_in_db( $log_to_add );
909
  return false;
910
  }
943
  if( isset( $request['yop_poll_customfield'][$question->ID][$custom_field->ID] ) ) {
944
 
945
  if( '' == trim( strip_tags( $request['yop_poll_customfield'][$question->ID][$custom_field->ID] ) ) && 'yes' == $custom_field->required ) {
946
+ $this->error = __yop_poll( "Custom field " ) . $custom_field->custom_field . __yop_poll( " from question " ) . $i . ' ' . __yop_poll( "is required" ) . "!";
947
+ $log_to_add ['message'] = __yop_poll( "Custom field " ) . $custom_field->custom_field . __yop_poll( " from question " ) . $i . ' ' . __yop_poll( "required");
948
  insert_log_in_db( $log_to_add );
949
  return false;
950
  }
970
  }
971
  }
972
  else {
973
+ $this->error = __yop_poll( "Custom field " ) . '"' . $custom_field->custom_field . '"' . __yop_poll( " from question " ) . $i . ' ' . __yop_poll( "is missing ") . '!';
974
+
975
+ $log_to_add ['message'] = __yop_poll( "Custom field " ) . '"' . $custom_field->custom_field . '"' . __yop_poll( " from question " ) . $i . ' ' . __yop_poll( "missing" );
976
  insert_log_in_db( $log_to_add );
977
  return false;
978
  }
979
  }
980
  }
981
  else {
982
+ $this->error = __yop_poll( "Custom fields from question " ) . $i . ' ' . __yop_poll( "are missing" ) . '!';
983
+ $log_to_add ['message'] = __yop_poll( "Custom fields from question " ) . $i . ' ' . __yop_poll( "missing" ) . '!';
984
  insert_log_in_db( $log_to_add );
985
  return false;
986
  }
1023
  }
1024
  }
1025
  else {
1026
+ $this->error = __yop_poll( "Incorrect security code entered!" );
1027
+ $log_to_add ['message'] = __yop_poll( "Incorrect security code entered" );
1028
  insert_log_in_db( $log_to_add );
1029
  return false;
1030
  }
1071
  }
1072
  }
1073
  else {
1074
+ $this->error = __yop_poll( "No vote registered!" );
1075
+ $log_to_add ['message'] = __yop_poll( "No vote registered" );
1076
  insert_log_in_db( $log_to_add );
1077
  return false;
1078
  }
1079
  }
1080
  else {
1081
+ $this->error = __yop_poll( "No answer selected for question " ) . $i;
1082
+ $log_to_add ['message'] = __yop_poll( "No answer selected for question " ) . $i;
1083
  insert_log_in_db( $log_to_add );
1084
  return false;
1085
  }
1087
  }
1088
  }
1089
  else {
1090
+ $this->error = __yop_poll( "You have run out of votes!");
1091
+ $log_to_add ['message'] = __yop_poll( "Run out of votes" );
1092
  insert_log_in_db( $log_to_add );
1093
  return false;
1094
  }
1095
  }
1096
  else {
1097
+ $this->error = __yop_poll( "You Already voted!" );
1098
+ $log_to_add ['message'] = __yop_poll( "Already Voted" );
1099
  insert_log_in_db( $log_to_add );
1100
  return false;
1101
  }
1102
  }
1103
  }
1104
  else {
1105
+ $this->error = __yop_poll( "This poll is closed!" );
1106
+ $log_to_add ['message'] = __yop_poll( "Poll Closed" );
1107
  insert_log_in_db( $log_to_add );
1108
  return false;
1109
  }
1110
  }
1111
  else {
1112
+ $this->error = __yop_poll( "You can vote once the poll starts!" );
1113
+ $log_to_add ['message'] = __yop_poll( "Poll not started" );
1114
  insert_log_in_db( $log_to_add );
1115
  return false;
1116
  }
1117
  }
1118
  else {
1119
+ $this->error = __yop_poll( "You are not allowed to vote!" );
1120
+ $log_to_add ['message'] = __yop_poll( "Not allowed to vote" );
1121
  insert_log_in_db( $log_to_add );
1122
  return false;
1123
  }
1124
  }
1125
  else {
1126
+ $this->error = __yop_poll( "You are not allowed to vote!" );
1127
  return false;
1128
  }
1129
 
1130
  }
1131
  else {
1132
+ $this->error = __yop_poll( "Bad Request!" );
1133
+ $log_to_add ['message'] = __yop_poll( "Bad request" );
1134
  insert_log_in_db( $log_to_add );
1135
  return false;
1136
  }
readme.txt CHANGED
@@ -142,6 +142,9 @@ You can have only one question per poll. If you want to ask more than one questi
142
 
143
  == Changelog ==
144
 
 
 
 
145
  = 5.7.3 =
146
  * Fixed display poll issue
147
 
142
 
143
  == Changelog ==
144
 
145
+ = 5.7.4 =
146
+ * Fixed security issue. A big thank you to [g0blin Research](https://twitter.com/g0blinResearch) for his help in getting this issue fixed
147
+
148
  = 5.7.3 =
149
  * Fixed display poll issue
150
 
yop_poll.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: YOP Poll
5
  * Plugin URI: http://www.yop-poll.com
6
  * Description: Use a full option polling functionality to get the answers you need. YOP Poll is the perfect, easy to use poll plugin for your WordPress website.
7
- * Version: 5.7.3
8
  * Author: yourownprogrammer
9
  * Author URI: http://www.yop-poll.com
10
  * License: GPLv2 or later
@@ -14,7 +14,7 @@ if (!(version_compare(phpversion(), '5.3', '<'))) {
14
 
15
  define ( 'YOP_POLL_DOMAIN', 'yop_poll' );
16
  define ( 'YOP_POLL_WP_VERSION', '3.3' );
17
- define ( 'YOP_POLL_VERSION', '5.7.3' );
18
  define ( 'YOP_POLL_PATH', plugin_dir_path( __FILE__ ) ); ///home/..../wp-content/plugins/yop-poll-2.0/
19
  define ( 'YOP_POLL_URL', plugin_dir_url( __FILE__ ) ); //http://your-domain/wp-content/plugins/yop-poll-2.0/
20
  define ( 'YOP_POLL_PLUGIN_FILE', __FILE__ ); ///home/..../wp-content/plugins/yop-poll-2.0/yop-poll-2.0.php
4
  * Plugin Name: YOP Poll
5
  * Plugin URI: http://www.yop-poll.com
6
  * Description: Use a full option polling functionality to get the answers you need. YOP Poll is the perfect, easy to use poll plugin for your WordPress website.
7
+ * Version: 5.7.4
8
  * Author: yourownprogrammer
9
  * Author URI: http://www.yop-poll.com
10
  * License: GPLv2 or later
14
 
15
  define ( 'YOP_POLL_DOMAIN', 'yop_poll' );
16
  define ( 'YOP_POLL_WP_VERSION', '3.3' );
17
+ define ( 'YOP_POLL_VERSION', '5.7.4' );
18
  define ( 'YOP_POLL_PATH', plugin_dir_path( __FILE__ ) ); ///home/..../wp-content/plugins/yop-poll-2.0/
19
  define ( 'YOP_POLL_URL', plugin_dir_url( __FILE__ ) ); //http://your-domain/wp-content/plugins/yop-poll-2.0/
20
  define ( 'YOP_POLL_PLUGIN_FILE', __FILE__ ); ///home/..../wp-content/plugins/yop-poll-2.0/yop-poll-2.0.php