Dotclear

Changeset 2338 for plugins/pollsFactory


Ignore:
Timestamp:
06/09/10 03:12:52 (13 years ago)
Author:
JcDenis
Message:

pollsFactory 1.3

  • Switched to DC 2.2
  • Fixed minor bugs
Location:
plugins/pollsFactory
Files:
14 edited

Legend:

Unmodified
Added
Removed
  • plugins/pollsFactory/_admin.php

    r2240 r2338  
    2323 
    2424# Posts actions 
    25 if ($core->blog->settings->pollsFactory_active  
    26  && $core->auth->check('admin',$core->blog->id)) { 
     25if ($core->blog->settings->pollsFactory->pollsFactory_active  
     26 && $core->auth->check('admin',$core->blog->id)) 
     27{ 
    2728     $core->addBehavior('adminPostFormSidebar',array('adminPollsFactory','adminPostFormSidebar')); 
    2829     $core->addBehavior('adminPageFormSidebar',array('adminPollsFactory','adminPostFormSidebar')); 
     
    215216          if ($core->auth->check('publish,contentadmin',$core->blog->id)) 
    216217          { 
    217                $args[0][__('Polls manager')][__('add polls')] = 'addpolls'; 
    218                $args[0][__('Polls manager')][__('remove polls')] = 'removepolls'; 
    219                $args[0][__('Polls manager')][__('open voting')] = 'openpolls'; 
    220                $args[0][__('Polls manager')][__('close voting')] = 'closepolls'; 
    221                $args[0][__('Polls manager')][__('publish')] = 'publishpolls'; 
    222                $args[0][__('Polls manager')][__('unpublish')] = 'unpublishpolls'; 
    223                $args[0][__('Polls manager')][__('mark as pending')] = 'pendingpolls'; 
    224           } 
    225           $args[0][__('Polls manager')][__('mark as selected')] = 'selectedpolls'; 
    226           $args[0][__('Polls manager')][__('mark as unselected')] = 'unselectedpolls'; 
     218               $args[0][__('Polls manager')][__('Add polls')] = 'addpolls'; 
     219               $args[0][__('Polls manager')][__('Remove polls')] = 'removepolls'; 
     220               $args[0][__('Polls manager')][__('Open voting')] = 'openpolls'; 
     221               $args[0][__('Polls manager')][__('Close voting')] = 'closepolls'; 
     222               $args[0][__('Polls manager')][__('Publish')] = 'publishpolls'; 
     223               $args[0][__('Polls manager')][__('Unpublish')] = 'unpublishpolls'; 
     224               $args[0][__('Polls manager')][__('Mark as pending')] = 'pendingpolls'; 
     225          } 
     226          $args[0][__('Polls manager')][__('Mark as selected')] = 'selectedpolls'; 
     227          $args[0][__('Polls manager')][__('Mark as unselected')] = 'unselectedpolls'; 
    227228          if ($core->auth->check('delete,contentadmin',$core->blog->id)) 
    228229          { 
    229                $args[0][__('Polls manager')][__('delete')] = 'deletepolls'; 
     230               $args[0][__('Polls manager')][__('Delete')] = 'deletepolls'; 
    230231          } 
    231232     } 
  • plugins/pollsFactory/_define.php

    r2240 r2338  
    1717     /* Description*/         "Add polls to entries", 
    1818     /* Author */             "JC Denis", 
    19      /* Version */            '1.2', 
     19     /* Version */            '1.3', 
    2020     /* Permissions */        'usage,contentadmin' 
    2121); 
    22      /* date */          #20100513 
     22     /* date */          #20100608 
    2323?> 
  • plugins/pollsFactory/_install.php

    r2139 r2338  
    1818if (version_compare($old_version,$new_version,'>=')) return; 
    1919 
    20 try { 
     20try 
     21{ 
     22     # Check DC version 
     23     if (version_compare(DC_VERSION,'2.2-alpha','<')) 
     24     { 
     25          throw new Exception('pollsFactory requires Dotclear 2.2 or higher.'); 
     26     } 
    2127     # Tables 
    2228     $s = new dbStruct($core->con,$core->prefix); 
    23  
    24      # Option of poll 
    2529     $s->post_option 
    2630          ->option_id ('bigint',0,false) 
     
    3741          ->option_selected ('smallint',0,false,0) 
    3842          ->option_position ('integer',0,false,0) 
    39  
     43           
    4044          ->index('idx_post_option_option','btree','option_id') 
    4145          ->index('idx_post_option_post','btree','post_id') 
    4246          ->index('idx_post_option_meta','btree','option_meta') 
    4347          ->index('idx_post_option_type','btree','option_type'); 
    44  
     48      
    4549     $si = new dbStruct($core->con,$core->prefix); 
    4650     $changes = $si->synchronize($s); 
    47  
     51      
    4852     # Settings 
    49      $s =& $core->blog->settings; 
    50  
    51      $s->setNameSpace('pollsFactory'); 
     53     $core->blog->settings->addNamespace('pollsFactory'); 
     54     $s = $core->blog->settings->pollsFactory; 
    5255     $s->put('pollsFactory_active',false,'boolean','Enable extension',false,true); 
    5356     $s->put('pollsFactory_user_ident',0,'integer','User identification',false,true); 
     
    6063     $s->put('pollsFactory_graph_options',serialize(pollsFactoryChart::defaultOptions()),'string','graphic options',false,true); 
    6164     $s->put('pollsFactory_public_tpltypes',serialize(array('post')),'string','List of templates types for full description of polls',false,true); 
    62      $s->setNameSpace('system'); 
    63  
     65      
    6466     # Version 
    6567     $core->setVersion('pollsFactory',$new_version); 
    66  
     68      
    6769     return true; 
    6870} 
    69 catch (Exception $e) { 
     71catch (Exception $e) 
     72{ 
    7073     $core->error->add($e->getMessage()); 
    7174} 
  • plugins/pollsFactory/_prepend.php

    r2139 r2338  
    1212 
    1313if (!defined('DC_RC_PATH')){return;} 
     14 
     15global $core, $_autoload; 
     16$core->blog->settings->addNamespace('pollsFactory'); 
    1417 
    1518# Shortcuts for advanced actions 
     
    2831$core->setPostType('pollsfactory','plugin.php?p=pollsFactory&tab=poll&id=%s',$core->url->getBase('pollsFactoryPage').'/%s'); 
    2932# Add pollsFactory reports on plugin activityReport 
    30 if (defined('ACTIVITY_REPORT')) { 
     33if (defined('ACTIVITY_REPORT')) 
     34{ 
    3135     require_once dirname(__FILE__).'/inc/lib.pollsfactory.activityreport.php'; 
    3236} 
  • plugins/pollsFactory/_public.php

    r2146 r2338  
    3737 
    3838          # Plugin not active 
    39           if (!$core->blog->settings->pollsFactory_active) { 
     39          if (!$core->blog->settings->pollsFactory->pollsFactory_active) { 
    4040               self::p404(); 
    4141               return; 
     
    210210 
    211211          # Plugin not active 
    212           if (!$core->blog->settings->pollsFactory_active) { 
     212          if (!$core->blog->settings->pollsFactory->pollsFactory_active) { 
    213213               self::p404(); 
    214214               return; 
     
    250250          return  
    251251          "<?php \n". 
    252           "echo publicPollsFactoryForm(\$core,\$_ctx->posts->post_id,false,false,\$core->blog->settings->pollsFactory_public_graph); \n". 
     252          "echo publicPollsFactoryForm(\$core,\$_ctx->posts->post_id,false,false,\$core->blog->settings->pollsFactory->pollsFactory_public_graph); \n". 
    253253          "?> \n"; 
    254254     } 
     
    260260     public static function publicEntryBeforeContent($core,$_ctx) 
    261261     { 
    262           if ($core->blog->settings->pollsFactory_public_pos) return; 
     262          if ($core->blog->settings->pollsFactory->pollsFactory_public_pos) return; 
    263263          return self::publicEntryContent($core,$_ctx); 
    264264     } 
     
    266266     public static function publicEntryAfterContent($core,$_ctx) 
    267267     { 
    268           if (!$core->blog->settings->pollsFactory_public_pos) return; 
     268          if (!$core->blog->settings->pollsFactory->pollsFactory_public_pos) return; 
    269269          return self::publicEntryContent($core,$_ctx); 
    270270     } 
     
    273273     { 
    274274          # Plugin not active or not on post 
    275           if (!$core->blog->settings->pollsFactory_active  
     275          if (!$core->blog->settings->pollsFactory->pollsFactory_active  
    276276           || !$_ctx->exists('posts')) 
    277277          { 
     
    279279          } 
    280280          # Not show poll on some pages 
    281           $types = @unserialize($core->blog->settings->pollsFactory_public_tpltypes); 
     281          $types = @unserialize($core->blog->settings->pollsFactory->pollsFactory_public_tpltypes); 
    282282          if (!is_array($types) || !in_array($core->url->type,$types)) 
    283283          { 
     
    298298          } 
    299299 
    300           if ($core->blog->settings->pollsFactory_public_full) { 
     300          if ($core->blog->settings->pollsFactory->pollsFactory_public_full) { 
    301301               while ($posts->fetch()) 
    302302               { 
    303303                    # Use common form for tpl and widget 
    304                     echo publicPollsFactoryForm($core,$posts->option_meta,true,true,$core->blog->settings->pollsFactory_public_graph); 
     304                    echo publicPollsFactoryForm($core,$posts->option_meta,true,true,$core->blog->settings->pollsFactory->pollsFactory_public_graph); 
    305305               } 
    306306          } 
     
    458458     } 
    459459     # If people has voted and settings say to show reponses or poll is finished 
    460      elseif ($core->blog->settings->pollsFactory_public_show || $finished) 
     460     elseif ($core->blog->settings->pollsFactory->pollsFactory_public_show || $finished) 
    461461     { 
    462462          $res = ''; 
     
    509509                                             case 'radio': 
    510510                                             case 'combo': 
     511                                             if (!isset($rs[$responses->option_content])) { 
     512                                                  $rs[$responses->option_content] = 0; 
     513                                             } 
    511514                                             $rs[$responses->option_content] += 1; 
    512515                                             break; 
  • plugins/pollsFactory/_widgets.php

    r2139 r2338  
    111111          global $core;  
    112112 
    113           if (!$core->blog->settings->pollsFactory_active  
     113          if (!$core->blog->settings->pollsFactory->pollsFactory_active  
    114114           || $w->homeonly && $core->url->type != 'default') return; 
    115115 
     
    153153          global $core, $_ctx;  
    154154 
    155           if (!$core->blog->settings->pollsFactory_active  
     155          if (!$core->blog->settings->pollsFactory->pollsFactory_active  
    156156           || !$_ctx->exists('posts')) return; 
    157157 
     
    181181          global $core;  
    182182 
    183           if (!$core->blog->settings->pollsFactory_active  
     183          if (!$core->blog->settings->pollsFactory->pollsFactory_active  
    184184           || $w->homeonly && $core->url->type != 'default') return; 
    185185 
  • plugins/pollsFactory/inc/class.pollsfactory.chart.php

    r2240 r2338  
    3030          # Cache directory 
    3131          $this->cache_dir = path::real(DC_TPL_CACHE); 
    32           $use_cache = (boolean) $core->blog->settings->pollsFactory_graph_cache; 
     32          $use_cache = (boolean) $core->blog->settings->pollsFactory->pollsFactory_graph_cache; 
    3333          if (!$use_cache || !is_dir($this->cache_dir) || !is_writable($this->cache_dir)) { 
    3434               $this->cache_dir = null; 
    3535          } 
    3636          # Image properties 
    37           $this->prop = @unserialize($core->blog->settings->pollsFactory_graph_options); 
     37          $this->prop = @unserialize($core->blog->settings->pollsFactory->pollsFactory_graph_options); 
    3838          if (!is_array($this->prop) || empty($this->prop)){ 
    3939               $this->prop = self::defaultOptions(); 
     
    4242          } 
    4343          # Last update 
    44           $this->trigger = (integer) $core->blog->settings->pollsFactory_graph_trigger; 
     44          $this->trigger = (integer) $core->blog->settings->pollsFactory->pollsFactory_graph_trigger; 
    4545     } 
    4646 
  • plugins/pollsFactory/inc/class.pollsfactory.php

    r2146 r2338  
    3434          $chk = false; 
    3535          $poll_id = (integer) $poll_id; 
    36           $ident = (integer) $this->core->blog->settings->pollsFactory_people_ident; 
     36          $ident = (integer) $this->core->blog->settings->pollsFactory->pollsFactory_people_ident; 
    3737 
    3838          # Cookie 
     
    104104 
    105105          # Cookie 
    106           if($this->core->blog->settings->pollsFactory_people_ident < 2) 
     106          if($this->core->blog->settings->pollsFactory->pollsFactory_people_ident < 2) 
    107107          { 
    108108               $list = isset($_COOKIE['pollsFactoryVotes']) ? 
     
    113113          } 
    114114          # Ident 
    115           $ip = $this->core->blog->settings->pollsFactory_people_ident > 0 ? 
     115          $ip = $this->core->blog->settings->pollsFactory->pollsFactory_people_ident > 0 ? 
    116116               $this->con->escape(http::realIP()) : 
    117117               substr(http::browserUID(DC_MASTER_KEY),0,24); 
  • plugins/pollsFactory/inc/index.polls.php

    r2146 r2338  
    288288if ($core->auth->check('publish,contentadmin',$core->blog->id)) 
    289289{ 
    290      $combo_action[__('publish')] = 'publish'; 
    291      $combo_action[__('unpublish')] = 'unpublish'; 
    292      $combo_action[__('schedule')] = 'schedule'; 
    293      $combo_action[__('mark as pending')] = 'pending'; 
    294      $combo_action[__('open voting')] = 'open'; 
    295      $combo_action[__('close voting')] = 'close'; 
    296 } 
    297 $combo_action[__('mark as selected')] = 'selected'; 
    298 $combo_action[__('mark as unselected')] = 'unselected'; 
     290     $combo_action[__('Status')][__('Publish')] = 'publish'; 
     291     $combo_action[__('Status')][__('Unpublish')] = 'unpublish'; 
     292     $combo_action[__('Status')][__('Schedule')] = 'schedule'; 
     293     $combo_action[__('Status')][__('Mark as pending')] = 'pending'; 
     294     $combo_action[__('Votes')][__('Open voting')] = 'open'; 
     295     $combo_action[__('Votes')][__('Close voting')] = 'close'; 
     296} 
     297$combo_action[__('Mark')][__('Mark as selected')] = 'selected'; 
     298$combo_action[__('Mark')][__('Mark as unselected')] = 'unselected'; 
    299299if ($core->auth->check('delete,contentadmin',$core->blog->id)) 
    300300{ 
    301      $combo_action[__('delete')] = 'delete'; 
     301     $combo_action[__('Delete')][__('Delete')] = 'delete'; 
    302302} 
    303303 
  • plugins/pollsFactory/inc/index.setting.php

    r2240 r2338  
    3232if ($default_tab == 'setting' && $action == 'savesetting') 
    3333{ 
    34      try { 
    35           $s->setNameSpace('pollsFactory'); 
     34     try 
     35     { 
    3636          $s->put('pollsFactory_active',!empty($_POST['active'])); 
    3737          $s->put('pollsFactory_people_ident', (integer) $_POST['people_ident']); 
     
    5353          } 
    5454 
    55           $s->setNameSpace('system'); 
    5655          $core->blog->triggerBlog(); 
    5756 
    5857          http::redirect($p_url.'&tab=setting&msg='.$action.'&section='.$section); 
    5958     } 
    60      catch (Exception $e) { 
     59     catch (Exception $e) 
     60     { 
    6161          $core->error->add($e->getMessage()); 
    6262     } 
  • plugins/pollsFactory/index.php

    r2146 r2338  
    1717 
    1818# Objects 
    19 $s = $core->blog->settings; 
     19$s = $core->blog->settings->pollsFactory; 
    2020$factory = new pollsFactory($core); 
    2121 
  • plugins/pollsFactory/locales/fr/main.lang.php

    r2139 r2338  
    11<?php 
    2 // Language: français  
    3 // Module: pollsFactory - 1.0 
    4 // Date: 2010-03-28 14:54:11  
    5 // Translated with dcTranslater - 1.3  
     2// Language: Français  
     3// Module: pollsFactory - 1.3 
     4// Date: 2010-06-09 01:05:23  
     5// Translated with dcTranslater - 1.4  
    66 
    77#_admin.php:18 
    8 #_admin.php:117 
    9 #_admin.php:153 
    10 #_admin.php:199 
    11 #_admin.php:200 
    12 #_admin.php:201 
    13 #_admin.php:202 
    14 #_admin.php:203 
    15 #_admin.php:204 
    16 #_admin.php:205 
    17 #_admin.php:207 
    18 #_admin.php:208 
    19 #_admin.php:211 
     8#_admin.php:118 
     9#_admin.php:154 
     10#_admin.php:218 
     11#_admin.php:219 
     12#_admin.php:220 
     13#_admin.php:221 
     14#_admin.php:222 
     15#_admin.php:223 
     16#_admin.php:224 
     17#_admin.php:226 
     18#_admin.php:227 
     19#_admin.php:230 
    2020#inc/index.content.php:326 
    21 #inc/index.poll.php:264 
     21#inc/index.poll.php:267 
    2222#inc/index.polls.php:382 
    2323#inc/index.post.php:71 
    2424#inc/index.result.php:95 
    2525#inc/index.result.php:159 
    26 #inc/index.result.php:294 
     26#inc/index.result.php:295 
    2727#inc/index.setting.php:77 
    2828#index.php:37 
    2929$GLOBALS['__l10n']['Polls manager'] = 'Gestion de sondages'; 
    3030 
    31 #_admin.php:140 
    32 #_admin.php:142 
    33 #_admin.php:199 
     31#_admin.php:141 
     32#_admin.php:143 
    3433$GLOBALS['__l10n']['add polls'] = 'ajouter des sondages'; 
    3534 
    36 #_admin.php:154 
     35#_admin.php:155 
    3736$GLOBALS['__l10n']['Are you sure you want to remove this poll?'] = 'Étes-vous sur de vouloir retirer ce sondage ?'; 
    3837 
    39 #_admin.php:156 
     38#_admin.php:157 
    4039$GLOBALS['__l10n']['edit poll'] = 'modifier le sondage'; 
    4140 
    42 #_admin.php:157 
     41#_admin.php:158 
    4342$GLOBALS['__l10n']['add poll'] = 'ajouter le sondage'; 
    4443 
    45 #_admin.php:158 
     44#_admin.php:159 
    4645$GLOBALS['__l10n']['remove poll'] = 'retirer le sondage'; 
    4746 
    48 #_admin.php:159 
     47#_admin.php:160 
    4948$GLOBALS['__l10n']['No more poll'] = 'Pas plus de sondage'; 
    5049 
    51 #_admin.php:200 
    52 $GLOBALS['__l10n']['remove polls'] = 'retirer des sondages'; 
    53  
    54 #_admin.php:201 
     50#_admin.php:218 
     51$GLOBALS['__l10n']['Add polls'] = 'Ajouter des sondages'; 
     52 
     53#_admin.php:219 
     54$GLOBALS['__l10n']['Remove polls'] = 'Retirer des sondages'; 
     55 
     56#_admin.php:220 
    5557#inc/index.polls.php:294 
    56 $GLOBALS['__l10n']['open voting'] = 'ouvrir les votes'; 
    57  
    58 #_admin.php:202 
     58$GLOBALS['__l10n']['Open voting'] = 'Ouvrir les votes'; 
     59 
     60#_admin.php:221 
    5961#inc/index.polls.php:295 
    60 $GLOBALS['__l10n']['close voting'] = 'fermer les votes'; 
    61  
    62 #_admin.php:235 
     62$GLOBALS['__l10n']['Close voting'] = 'Fermer les votes'; 
     63 
     64#_admin.php:254 
    6365#inc/index.post.php:77 
    6466$GLOBALS['__l10n']['There is no polls'] = 'Il n\'y a pas de sondage'; 
    6567 
    66 #_admin.php:238 
     68#_admin.php:257 
    6769$GLOBALS['__l10n']['add polls to selected entries'] = 'ajouter des sondages aux billets selectionnés'; 
    6870 
    69 #_admin.php:268 
     71#_admin.php:287 
    7072$GLOBALS['__l10n']['There is no poll for selected entries'] = 'Il n\'y a pas de sondage pour les billets selectionnés'; 
    7173 
    72 #_admin.php:271 
     74#_admin.php:290 
    7375$GLOBALS['__l10n']['select polls to remove'] = 'selectionner les sondages à retirer'; 
    7476 
    75 #_admin.php:298 
     77#_admin.php:318 
    7678$GLOBALS['__l10n']['There is no poll that can be published for selected entries'] = 'Il n\'y a pas de sondage pouvant être publié pour les billets selectionnés'; 
    7779 
    78 #_admin.php:301 
     80#_admin.php:321 
    7981$GLOBALS['__l10n']['select polls to publish'] = 'selectionner les sondages à publier'; 
    8082 
    81 #_admin.php:328 
     83#_admin.php:349 
    8284$GLOBALS['__l10n']['There is no poll that can be unpublished for selected entries'] = 'Il n\'y a pas de sondage pouvant être mis hors ligne pour les billets selectionnés'; 
    8385 
    84 #_admin.php:331 
     86#_admin.php:352 
    8587$GLOBALS['__l10n']['select polls to unpublish'] = 'selectionner les sondages à mettre hors ligne'; 
    8688 
    87 #_admin.php:358 
     89#_admin.php:380 
    8890$GLOBALS['__l10n']['There is no poll that can be marked as pending for selected entries'] = 'Il n\'y a pas de sondage pouvant être marqué en attente pour les billets selectionnés'; 
    8991 
    90 #_admin.php:361 
     92#_admin.php:383 
    9193$GLOBALS['__l10n']['select polls to mark as pending'] = 'selectionner les sondages à marquer en attente'; 
    9294 
    93 #_admin.php:388 
     95#_admin.php:411 
    9496$GLOBALS['__l10n']['There is no poll that can be opened for selected entries'] = 'Il n\'y a pas de sondage puvant être ouvert aux votes'; 
    9597 
    96 #_admin.php:391 
     98#_admin.php:414 
    9799$GLOBALS['__l10n']['select polls to open'] = 'selctionner les sondages à ouvrir aux votes'; 
    98100 
    99 #_admin.php:418 
     101#_admin.php:442 
    100102$GLOBALS['__l10n']['There is no poll that can be closed for selected entries'] = 'Il n\'y a pas de sondage pouvant être fermer aux votes pour les billets selectionnés'; 
    101103 
    102 #_admin.php:421 
     104#_admin.php:445 
    103105$GLOBALS['__l10n']['select polls to close'] = 'selectionner les sondages à fermer aux votes'; 
    104106 
    105 #_admin.php:447 
     107#_admin.php:472 
    106108$GLOBALS['__l10n']['There is no poll on selected entries'] = 'Il n\'y a pas de sondage sur les billets selectionnés'; 
    107109 
    108 #_admin.php:450 
     110#_admin.php:475 
    109111$GLOBALS['__l10n']['select polls to delete'] = 'selectionner les sondages à effacer'; 
    110112 
     
    114116#default-templates/pollsfactory.html:17 
    115117#inc/index.content.php:339 
    116 #inc/index.poll.php:284 
     118#inc/index.poll.php:287 
    117119#inc/index.polls.php:385 
    118120#inc/index.post.php:86 
    119121#inc/index.result.php:98 
    120122#inc/index.result.php:162 
    121 #inc/index.result.php:297 
     123#inc/index.result.php:298 
    122124#inc/index.setting.php:86 
    123125$GLOBALS['__l10n']['Polls'] = 'Sondages'; 
    124126 
    125 #_public.php:452 
     127#_public.php:454 
    126128$GLOBALS['__l10n']['Validate'] = 'Valider'; 
    127129 
    128 #_public.php:533 
     130#_public.php:539 
    129131$GLOBALS['__l10n']['no vote'] = 'aucun vote'; 
    130132 
    131 #_public.php:536 
     133#_public.php:542 
    132134$GLOBALS['__l10n']['one vote'] = 'un vote'; 
    133135 
    134 #_public.php:539 
    135 #inc/index.result.php:416 
     136#_public.php:545 
     137#inc/index.result.php:418 
    136138$GLOBALS['__l10n']['%s votes'] = '%s votes'; 
    137139 
    138 #_public.php:568 
     140#_public.php:574 
    139141$GLOBALS['__l10n']['Some selected responses:'] = 'Quelques réponses selectionnées :'; 
    140142 
    141 #_public.php:584 
     143#_public.php:590 
    142144$GLOBALS['__l10n']['Nobody has participated.'] = 'Personne n\'a participé.'; 
    143145 
    144 #_public.php:587 
     146#_public.php:593 
    145147$GLOBALS['__l10n']['One people has participated.'] = 'Une personne a participé.'; 
    146148 
    147 #_public.php:590 
     149#_public.php:596 
    148150$GLOBALS['__l10n']['%s people participated.'] = '%s personnes ont participé.'; 
    149151 
    150 #_public.php:593 
     152#_public.php:599 
    151153$GLOBALS['__l10n']['This poll is closed.'] = 'Ce sondage est fermé.'; 
    152154 
    153 #_public.php:608 
     155#_public.php:614 
    154156$GLOBALS['__l10n']['You have already participated to this poll.'] = 'Vous avez déjà participez à ce sondage.'; 
    155157 
    156 #_public.php:609 
     158#_public.php:615 
    157159$GLOBALS['__l10n']['Please wait the end of this poll to see results.'] = 'Merci de patienter la fin du sondage pour voir les résultats.'; 
    158160 
     
    196198$GLOBALS['__l10n']['Selected polls'] = 'Sondages selectionnés'; 
    197199 
    198 #inc/class.pollsfactory.php:121 
     200#inc/class.pollsfactory.php:126 
    199201$GLOBALS['__l10n']['You are not allowed to update polls'] = 'Vous n\'êtes pas autorisé à modifier les sondages'; 
    200202 
    201 #inc/class.pollsfactory.php:141 
     203#inc/class.pollsfactory.php:146 
    202204$GLOBALS['__l10n']['You are not allowed to edit this poll'] = 'Vous n\'êtes pas autorisé à modifier ce sondage'; 
    203205 
    204 #inc/class.pollsfactory.php:159 
     206#inc/class.pollsfactory.php:164 
    205207$GLOBALS['__l10n']['home page'] = 'la page d\'accueil'; 
    206208 
    207 #inc/class.pollsfactory.php:160 
     209#inc/class.pollsfactory.php:165 
    208210$GLOBALS['__l10n']['post pages'] = 'la page d\'un billet'; 
    209211 
    210 #inc/class.pollsfactory.php:161 
     212#inc/class.pollsfactory.php:166 
    211213$GLOBALS['__l10n']['static pages'] = 'les pages statiques'; 
    212214 
    213 #inc/class.pollsfactory.php:162 
     215#inc/class.pollsfactory.php:167 
    214216$GLOBALS['__l10n']['tags pages'] = 'les pages d\'un tag'; 
    215217 
    216 #inc/class.pollsfactory.php:163 
     218#inc/class.pollsfactory.php:168 
    217219$GLOBALS['__l10n']['archives pages'] = 'les pages des archives'; 
    218220 
    219 #inc/class.pollsfactory.php:164 
     221#inc/class.pollsfactory.php:169 
    220222$GLOBALS['__l10n']['category pages'] = 'les pages de catégorie'; 
    221223 
    222 #inc/class.pollsfactory.php:165 
     224#inc/class.pollsfactory.php:170 
    223225$GLOBALS['__l10n']['entries feed'] = 'le flux des billets'; 
    224226 
    225 #inc/class.pollsfactory.php:174 
     227#inc/class.pollsfactory.php:179 
    226228$GLOBALS['__l10n']['multiple choice list'] = 'liste à choix multiples'; 
    227229 
    228 #inc/class.pollsfactory.php:175 
     230#inc/class.pollsfactory.php:180 
    229231$GLOBALS['__l10n']['single choice list'] = 'liste à choix unique'; 
    230232 
    231 #inc/class.pollsfactory.php:176 
     233#inc/class.pollsfactory.php:181 
    232234$GLOBALS['__l10n']['options box'] = 'liste déroulante'; 
    233235 
    234 #inc/class.pollsfactory.php:177 
     236#inc/class.pollsfactory.php:182 
    235237$GLOBALS['__l10n']['text field'] = 'champs de texte'; 
    236238 
    237 #inc/class.pollsfactory.php:178 
     239#inc/class.pollsfactory.php:183 
    238240$GLOBALS['__l10n']['text area'] = 'zone de texte'; 
    239241 
     
    257259 
    258260#inc/index.content.php:348 
    259 #inc/index.poll.php:289 
     261#inc/index.poll.php:292 
    260262$GLOBALS['__l10n']['Preview poll'] = 'Prévisualiser le sondage'; 
    261263 
    262264#inc/index.content.php:352 
    263265#inc/index.poll.php:33 
    264 #inc/index.poll.php:290 
    265266#inc/index.poll.php:293 
     267#inc/index.poll.php:296 
    266268#inc/index.polls.php:386 
    267269#inc/index.result.php:100 
    268270#inc/index.result.php:164 
    269 #inc/index.result.php:299 
     271#inc/index.result.php:300 
    270272#inc/index.setting.php:88 
    271273$GLOBALS['__l10n']['New poll'] = 'Nouveau sondage'; 
     
    282284 
    283285#inc/index.content.php:392 
    284 #inc/index.result.php:322 
     286#inc/index.result.php:324 
    285287$GLOBALS['__l10n']['Queries'] = 'Questions'; 
    286288 
     
    338340$GLOBALS['__l10n']['previous poll'] = 'sondage précèdant'; 
    339341 
    340 #inc/index.poll.php:273 
    341 #inc/index.poll.php:388 
     342#inc/index.poll.php:276 
     343#inc/index.poll.php:391 
    342344#inc/index.polls.php:40 
    343345$GLOBALS['__l10n']['Related posts'] = 'Billets liés'; 
    344346 
    345 #inc/index.poll.php:274 
     347#inc/index.poll.php:277 
    346348$GLOBALS['__l10n']['Are you sure you want to remove this post?'] = 'ëtes vous sur de vouloir retirer ce billet ?'; 
    347349 
    348 #inc/index.poll.php:288 
     350#inc/index.poll.php:291 
    349351#inc/index.polls.php:109 
    350352$GLOBALS['__l10n']['Edit poll'] = 'Modifier le sondage'; 
    351353 
    352 #inc/index.poll.php:304 
     354#inc/index.poll.php:307 
    353355$GLOBALS['__l10n']['Don\'t forget to validate your XHTML conversion by saving your poll.'] = 'N\'oubliez pas de valider votre conversion XHTML en sauvant le sondage.'; 
    354356 
    355 #inc/index.poll.php:332 
     357#inc/index.poll.php:335 
    356358$GLOBALS['__l10n']['Poll'] = 'Sondage'; 
    357359 
    358 #inc/index.poll.php:337 
     360#inc/index.poll.php:340 
    359361$GLOBALS['__l10n']['Poll status:'] = 'Status :'; 
    360362 
    361 #inc/index.poll.php:351 
     363#inc/index.poll.php:354 
    362364$GLOBALS['__l10n']['Selected poll'] = 'Sondage selectionné'; 
    363365 
    364 #inc/index.poll.php:354 
     366#inc/index.poll.php:357 
    365367$GLOBALS['__l10n']['Opened poll'] = 'Sondage ouvert'; 
    366368 
    367 #inc/index.poll.php:356 
     369#inc/index.poll.php:359 
    368370$GLOBALS['__l10n']['Poll lang:'] = 'Langue du sondage'; 
    369371 
    370 #inc/index.poll.php:365 
     372#inc/index.poll.php:368 
    371373$GLOBALS['__l10n']['Warning: If you set the URL manually, it may conflict with another poll.'] = 'Attention: Si vous modifer manuellement l\'URL, il peut être en conflit avec un autre sondage.'; 
    372374 
    373 #inc/index.poll.php:382 
     375#inc/index.poll.php:385 
    374376$GLOBALS['__l10n']['edit entry'] = 'modifier le billet'; 
    375377 
    376 #inc/index.poll.php:389 
     378#inc/index.poll.php:392 
    377379$GLOBALS['__l10n']['Uncheck post to remove'] = 'Décocher les billets à retirer'; 
    378380 
    379 #inc/index.poll.php:428 
     381#inc/index.poll.php:431 
    380382$GLOBALS['__l10n']['Edit queries'] = 'Modifier les questions'; 
    381383 
    382 #inc/index.poll.php:428 
     384#inc/index.poll.php:431 
    383385$GLOBALS['__l10n']['Content'] = 'Contenu'; 
    384386 
    385 #inc/index.poll.php:431 
     387#inc/index.poll.php:434 
    386388$GLOBALS['__l10n']['Show results'] = 'Afficher les résultats'; 
    387389 
    388 #inc/index.poll.php:431 
     390#inc/index.poll.php:434 
    389391$GLOBALS['__l10n']['Results'] = 'Résultats'; 
    390392 
     
    393395 
    394396#inc/index.polls.php:41 
     397#inc/index.polls.php:294 
     398#inc/index.polls.php:295 
    395399$GLOBALS['__l10n']['Votes'] = 'Votes'; 
    396400 
     
    434438 
    435439#inc/index.result.php:163 
    436 #inc/index.result.php:303 
     440#inc/index.result.php:304 
    437441$GLOBALS['__l10n']['Results by user'] = 'Résultats par votant'; 
    438442 
    439443#inc/index.result.php:168 
    440 #inc/index.result.php:298 
     444#inc/index.result.php:299 
    441445$GLOBALS['__l10n']['Results by query'] = 'Résultats par question'; 
    442446 
     
    445449 
    446450#inc/index.result.php:197 
    447 #inc/index.result.php:337 
     451#inc/index.result.php:339 
    448452$GLOBALS['__l10n']['Responses'] = 'Réponses'; 
    449453 
    450 #inc/index.result.php:214 
     454#inc/index.result.php:215 
    451455$GLOBALS['__l10n']['User has not answered this query'] = 'L\'utilisateur n\'a pas répondu à cette question'; 
    452456 
    453 #inc/index.result.php:223 
     457#inc/index.result.php:224 
    454458$GLOBALS['__l10n']['Remove this response from public side'] = 'Enlever cette réponse de la partie publique'; 
    455459 
    456 #inc/index.result.php:228 
     460#inc/index.result.php:229 
    457461$GLOBALS['__l10n']['Show this response on public side'] = 'Afficher cette réponse sur la partie publique'; 
    458462 
    459 #inc/index.result.php:345 
    460 #inc/index.result.php:452 
     463#inc/index.result.php:347 
     464#inc/index.result.php:454 
    461465$GLOBALS['__l10n']['There is no response for this query.'] = 'Il n\'y a pas de reponse pour cette question.'; 
    462466 
    463 #inc/index.result.php:438 
     467#inc/index.result.php:440 
    464468$GLOBALS['__l10n']['Show selected responses on public side'] = 'Afficher les réponses selectionnées coté publique'; 
    465469 
  • plugins/pollsFactory/locales/fr/main.po

    r2139 r2338  
    1 # Language: français 
    2 # Module: pollsFactory - 1.0 
    3 # Date: 2010-03-28 14:54:11 
    4 # Translated with translater 1.3 
     1# Language: Français 
     2# Module: pollsFactory - 1.3 
     3# Date: 2010-06-09 01:05:23 
     4# Translated with translater 1.4 
    55 
    66msgid "" 
    77msgstr "" 
    88"Content-Type: text/plain; charset=UTF-8\n" 
    9 "Project-Id-Version: pollsFactory 1.0\n" 
     9"Project-Id-Version: pollsFactory 1.3\n" 
    1010"POT-Creation-Date: \n" 
    11 "PO-Revision-Date: 2010-03-28T14:54:11+00:00\n" 
     11"PO-Revision-Date: 2010-06-09T01:05:23+00:00\n" 
    1212"Last-Translator: JC Denis\n" 
    1313"Language-Team: \n" 
     
    1616 
    1717#: _admin.php:18 
    18 #: _admin.php:117 
    19 #: _admin.php:153 
    20 #: _admin.php:199 
    21 #: _admin.php:200 
    22 #: _admin.php:201 
    23 #: _admin.php:202 
    24 #: _admin.php:203 
    25 #: _admin.php:204 
    26 #: _admin.php:205 
    27 #: _admin.php:207 
    28 #: _admin.php:208 
    29 #: _admin.php:211 
     18#: _admin.php:118 
     19#: _admin.php:154 
     20#: _admin.php:218 
     21#: _admin.php:219 
     22#: _admin.php:220 
     23#: _admin.php:221 
     24#: _admin.php:222 
     25#: _admin.php:223 
     26#: _admin.php:224 
     27#: _admin.php:226 
     28#: _admin.php:227 
     29#: _admin.php:230 
    3030#: inc/index.content.php:326 
    31 #: inc/index.poll.php:264 
     31#: inc/index.poll.php:267 
    3232#: inc/index.polls.php:382 
    3333#: inc/index.post.php:71 
    3434#: inc/index.result.php:95 
    3535#: inc/index.result.php:159 
    36 #: inc/index.result.php:294 
     36#: inc/index.result.php:295 
    3737#: inc/index.setting.php:77 
    3838#: index.php:37 
     
    4040msgstr "Gestion de sondages" 
    4141 
    42 #: _admin.php:140 
    43 #: _admin.php:142 
    44 #: _admin.php:199 
     42#: _admin.php:141 
     43#: _admin.php:143 
    4544msgid "add polls" 
    4645msgstr "ajouter des sondages" 
    4746 
    48 #: _admin.php:154 
     47#: _admin.php:155 
    4948msgid "Are you sure you want to remove this poll?" 
    5049msgstr "Étes-vous sur de vouloir retirer ce sondage ?" 
    5150 
    52 #: _admin.php:156 
     51#: _admin.php:157 
    5352msgid "edit poll" 
    5453msgstr "modifier le sondage" 
    5554 
    56 #: _admin.php:157 
     55#: _admin.php:158 
    5756msgid "add poll" 
    5857msgstr "ajouter le sondage" 
    5958 
    60 #: _admin.php:158 
     59#: _admin.php:159 
    6160msgid "remove poll" 
    6261msgstr "retirer le sondage" 
    6362 
    64 #: _admin.php:159 
     63#: _admin.php:160 
    6564msgid "No more poll" 
    6665msgstr "Pas plus de sondage" 
    6766 
    68 #: _admin.php:200 
    69 msgid "remove polls" 
    70 msgstr "retirer des sondages" 
    71  
    72 #: _admin.php:201 
     67#: _admin.php:218 
     68msgid "Add polls" 
     69msgstr "Ajouter des sondages" 
     70 
     71#: _admin.php:219 
     72msgid "Remove polls" 
     73msgstr "Retirer des sondages" 
     74 
     75#: _admin.php:220 
    7376#: inc/index.polls.php:294 
    74 msgid "open voting" 
    75 msgstr "ouvrir les votes" 
    76  
    77 #: _admin.php:202 
     77msgid "Open voting" 
     78msgstr "Ouvrir les votes" 
     79 
     80#: _admin.php:221 
    7881#: inc/index.polls.php:295 
    79 msgid "close voting" 
    80 msgstr "fermer les votes" 
    81  
    82 #: _admin.php:235 
     82msgid "Close voting" 
     83msgstr "Fermer les votes" 
     84 
     85#: _admin.php:254 
    8386#: inc/index.post.php:77 
    8487msgid "There is no polls" 
    8588msgstr "Il n'y a pas de sondage" 
    8689 
    87 #: _admin.php:238 
     90#: _admin.php:257 
    8891msgid "add polls to selected entries" 
    8992msgstr "ajouter des sondages aux billets selectionnés" 
    9093 
    91 #: _admin.php:268 
     94#: _admin.php:287 
    9295msgid "There is no poll for selected entries" 
    9396msgstr "Il n'y a pas de sondage pour les billets selectionnés" 
    9497 
    95 #: _admin.php:271 
     98#: _admin.php:290 
    9699msgid "select polls to remove" 
    97100msgstr "selectionner les sondages à retirer" 
    98101 
    99 #: _admin.php:298 
     102#: _admin.php:318 
    100103msgid "There is no poll that can be published for selected entries" 
    101104msgstr "Il n'y a pas de sondage pouvant être publié pour les billets selectionnés" 
    102105 
    103 #: _admin.php:301 
     106#: _admin.php:321 
    104107msgid "select polls to publish" 
    105108msgstr "selectionner les sondages à publier" 
    106109 
    107 #: _admin.php:328 
     110#: _admin.php:349 
    108111msgid "There is no poll that can be unpublished for selected entries" 
    109112msgstr "Il n'y a pas de sondage pouvant être mis hors ligne pour les billets selectionnés" 
    110113 
    111 #: _admin.php:331 
     114#: _admin.php:352 
    112115msgid "select polls to unpublish" 
    113116msgstr "selectionner les sondages à mettre hors ligne" 
    114117 
    115 #: _admin.php:358 
     118#: _admin.php:380 
    116119msgid "There is no poll that can be marked as pending for selected entries" 
    117120msgstr "Il n'y a pas de sondage pouvant être marqué en attente pour les billets selectionnés" 
    118121 
    119 #: _admin.php:361 
     122#: _admin.php:383 
    120123msgid "select polls to mark as pending" 
    121124msgstr "selectionner les sondages à marquer en attente" 
    122125 
    123 #: _admin.php:388 
     126#: _admin.php:411 
    124127msgid "There is no poll that can be opened for selected entries" 
    125128msgstr "Il n'y a pas de sondage puvant être ouvert aux votes" 
    126129 
    127 #: _admin.php:391 
     130#: _admin.php:414 
    128131msgid "select polls to open" 
    129132msgstr "selctionner les sondages à ouvrir aux votes" 
    130133 
    131 #: _admin.php:418 
     134#: _admin.php:442 
    132135msgid "There is no poll that can be closed for selected entries" 
    133136msgstr "Il n'y a pas de sondage pouvant être fermer aux votes pour les billets selectionnés" 
    134137 
    135 #: _admin.php:421 
     138#: _admin.php:445 
    136139msgid "select polls to close" 
    137140msgstr "selectionner les sondages à fermer aux votes" 
    138141 
    139 #: _admin.php:447 
     142#: _admin.php:472 
    140143msgid "There is no poll on selected entries" 
    141144msgstr "Il n'y a pas de sondage sur les billets selectionnés" 
    142145 
    143 #: _admin.php:450 
     146#: _admin.php:475 
    144147msgid "select polls to delete" 
    145148msgstr "selectionner les sondages à effacer" 
     
    150153#: default-templates/pollsfactory.html:17 
    151154#: inc/index.content.php:339 
    152 #: inc/index.poll.php:284 
     155#: inc/index.poll.php:287 
    153156#: inc/index.polls.php:385 
    154157#: inc/index.post.php:86 
    155158#: inc/index.result.php:98 
    156159#: inc/index.result.php:162 
    157 #: inc/index.result.php:297 
     160#: inc/index.result.php:298 
    158161#: inc/index.setting.php:86 
    159162msgid "Polls" 
    160163msgstr "Sondages" 
    161164 
    162 #: _public.php:452 
     165#: _public.php:454 
    163166msgid "Validate" 
    164167msgstr "Valider" 
    165168 
    166 #: _public.php:533 
     169#: _public.php:539 
    167170msgid "no vote" 
    168171msgstr "aucun vote" 
    169172 
    170 #: _public.php:536 
     173#: _public.php:542 
    171174msgid "one vote" 
    172175msgstr "un vote" 
    173176 
    174 #: _public.php:539 
    175 #: inc/index.result.php:416 
     177#: _public.php:545 
     178#: inc/index.result.php:418 
    176179msgid "%s votes" 
    177180msgstr "%s votes" 
    178181 
    179 #: _public.php:568 
     182#: _public.php:574 
    180183msgid "Some selected responses:" 
    181184msgstr "Quelques réponses selectionnées :" 
    182185 
    183 #: _public.php:584 
     186#: _public.php:590 
    184187msgid "Nobody has participated." 
    185188msgstr "Personne n'a participé." 
    186189 
    187 #: _public.php:587 
     190#: _public.php:593 
    188191msgid "One people has participated." 
    189192msgstr "Une personne a participé." 
    190193 
    191 #: _public.php:590 
     194#: _public.php:596 
    192195msgid "%s people participated." 
    193196msgstr "%s personnes ont participé." 
    194197 
    195 #: _public.php:593 
     198#: _public.php:599 
    196199msgid "This poll is closed." 
    197200msgstr "Ce sondage est fermé." 
    198201 
    199 #: _public.php:608 
     202#: _public.php:614 
    200203msgid "You have already participated to this poll." 
    201204msgstr "Vous avez déjà participez à ce sondage." 
    202205 
    203 #: _public.php:609 
     206#: _public.php:615 
    204207msgid "Please wait the end of this poll to see results." 
    205208msgstr "Merci de patienter la fin du sondage pour voir les résultats." 
     
    255258msgstr "Sondages selectionnés" 
    256259 
    257 #: inc/class.pollsfactory.php:121 
     260#: inc/class.pollsfactory.php:126 
    258261msgid "You are not allowed to update polls" 
    259262msgstr "Vous n'êtes pas autorisé à modifier les sondages" 
    260263 
    261 #: inc/class.pollsfactory.php:141 
     264#: inc/class.pollsfactory.php:146 
    262265msgid "You are not allowed to edit this poll" 
    263266msgstr "Vous n'êtes pas autorisé à modifier ce sondage" 
    264267 
    265 #: inc/class.pollsfactory.php:159 
     268#: inc/class.pollsfactory.php:164 
    266269msgid "home page" 
    267270msgstr "la page d'accueil" 
    268271 
    269 #: inc/class.pollsfactory.php:160 
     272#: inc/class.pollsfactory.php:165 
    270273msgid "post pages" 
    271274msgstr "la page d'un billet" 
    272275 
    273 #: inc/class.pollsfactory.php:161 
     276#: inc/class.pollsfactory.php:166 
    274277msgid "static pages" 
    275278msgstr "les pages statiques" 
    276279 
    277 #: inc/class.pollsfactory.php:162 
     280#: inc/class.pollsfactory.php:167 
    278281msgid "tags pages" 
    279282msgstr "les pages d'un tag" 
    280283 
    281 #: inc/class.pollsfactory.php:163 
     284#: inc/class.pollsfactory.php:168 
    282285msgid "archives pages" 
    283286msgstr "les pages des archives" 
    284287 
    285 #: inc/class.pollsfactory.php:164 
     288#: inc/class.pollsfactory.php:169 
    286289msgid "category pages" 
    287290msgstr "les pages de catégorie" 
    288291 
    289 #: inc/class.pollsfactory.php:165 
     292#: inc/class.pollsfactory.php:170 
    290293msgid "entries feed" 
    291294msgstr "le flux des billets" 
    292295 
    293 #: inc/class.pollsfactory.php:174 
     296#: inc/class.pollsfactory.php:179 
    294297msgid "multiple choice list" 
    295298msgstr "liste à choix multiples" 
    296299 
    297 #: inc/class.pollsfactory.php:175 
     300#: inc/class.pollsfactory.php:180 
    298301msgid "single choice list" 
    299302msgstr "liste à choix unique" 
    300303 
    301 #: inc/class.pollsfactory.php:176 
     304#: inc/class.pollsfactory.php:181 
    302305msgid "options box" 
    303306msgstr "liste déroulante" 
    304307 
    305 #: inc/class.pollsfactory.php:177 
     308#: inc/class.pollsfactory.php:182 
    306309msgid "text field" 
    307310msgstr "champs de texte" 
    308311 
    309 #: inc/class.pollsfactory.php:178 
     312#: inc/class.pollsfactory.php:183 
    310313msgid "text area" 
    311314msgstr "zone de texte" 
     
    336339 
    337340#: inc/index.content.php:348 
    338 #: inc/index.poll.php:289 
     341#: inc/index.poll.php:292 
    339342msgid "Preview poll" 
    340343msgstr "Prévisualiser le sondage" 
     
    342345#: inc/index.content.php:352 
    343346#: inc/index.poll.php:33 
    344 #: inc/index.poll.php:290 
    345347#: inc/index.poll.php:293 
     348#: inc/index.poll.php:296 
    346349#: inc/index.polls.php:386 
    347350#: inc/index.result.php:100 
    348351#: inc/index.result.php:164 
    349 #: inc/index.result.php:299 
     352#: inc/index.result.php:300 
    350353#: inc/index.setting.php:88 
    351354msgid "New poll" 
     
    366369 
    367370#: inc/index.content.php:392 
    368 #: inc/index.result.php:322 
     371#: inc/index.result.php:324 
    369372msgid "Queries" 
    370373msgstr "Questions" 
     
    439442msgstr "sondage précèdant" 
    440443 
    441 #: inc/index.poll.php:273 
    442 #: inc/index.poll.php:388 
     444#: inc/index.poll.php:276 
     445#: inc/index.poll.php:391 
    443446#: inc/index.polls.php:40 
    444447msgid "Related posts" 
    445448msgstr "Billets liés" 
    446449 
    447 #: inc/index.poll.php:274 
     450#: inc/index.poll.php:277 
    448451msgid "Are you sure you want to remove this post?" 
    449452msgstr "ëtes vous sur de vouloir retirer ce billet ?" 
    450453 
    451 #: inc/index.poll.php:288 
     454#: inc/index.poll.php:291 
    452455#: inc/index.polls.php:109 
    453456msgid "Edit poll" 
    454457msgstr "Modifier le sondage" 
    455458 
    456 #: inc/index.poll.php:304 
     459#: inc/index.poll.php:307 
    457460msgid "Don't forget to validate your XHTML conversion by saving your poll." 
    458461msgstr "N'oubliez pas de valider votre conversion XHTML en sauvant le sondage." 
    459462 
    460 #: inc/index.poll.php:332 
     463#: inc/index.poll.php:335 
    461464msgid "Poll" 
    462465msgstr "Sondage" 
    463466 
    464 #: inc/index.poll.php:337 
     467#: inc/index.poll.php:340 
    465468msgid "Poll status:" 
    466469msgstr "Status :" 
    467470 
    468 #: inc/index.poll.php:351 
     471#: inc/index.poll.php:354 
    469472msgid "Selected poll" 
    470473msgstr "Sondage selectionné" 
    471474 
    472 #: inc/index.poll.php:354 
     475#: inc/index.poll.php:357 
    473476msgid "Opened poll" 
    474477msgstr "Sondage ouvert" 
    475478 
    476 #: inc/index.poll.php:356 
     479#: inc/index.poll.php:359 
    477480msgid "Poll lang:" 
    478481msgstr "Langue du sondage" 
    479482 
    480 #: inc/index.poll.php:365 
     483#: inc/index.poll.php:368 
    481484msgid "Warning: If you set the URL manually, it may conflict with another poll." 
    482485msgstr "Attention: Si vous modifer manuellement l'URL, il peut être en conflit avec un autre sondage." 
    483486 
    484 #: inc/index.poll.php:382 
     487#: inc/index.poll.php:385 
    485488msgid "edit entry" 
    486489msgstr "modifier le billet" 
    487490 
    488 #: inc/index.poll.php:389 
     491#: inc/index.poll.php:392 
    489492msgid "Uncheck post to remove" 
    490493msgstr "Décocher les billets à retirer" 
    491494 
    492 #: inc/index.poll.php:428 
     495#: inc/index.poll.php:431 
    493496msgid "Edit queries" 
    494497msgstr "Modifier les questions" 
    495498 
    496 #: inc/index.poll.php:428 
     499#: inc/index.poll.php:431 
    497500msgid "Content" 
    498501msgstr "Contenu" 
    499502 
    500 #: inc/index.poll.php:431 
     503#: inc/index.poll.php:434 
    501504msgid "Show results" 
    502505msgstr "Afficher les résultats" 
    503506 
    504 #: inc/index.poll.php:431 
     507#: inc/index.poll.php:434 
    505508msgid "Results" 
    506509msgstr "Résultats" 
     
    511514 
    512515#: inc/index.polls.php:41 
     516#: inc/index.polls.php:294 
     517#: inc/index.polls.php:295 
    513518msgid "Votes" 
    514519msgstr "Votes" 
     
    565570 
    566571#: inc/index.result.php:163 
    567 #: inc/index.result.php:303 
     572#: inc/index.result.php:304 
    568573msgid "Results by user" 
    569574msgstr "Résultats par votant" 
    570575 
    571576#: inc/index.result.php:168 
    572 #: inc/index.result.php:298 
     577#: inc/index.result.php:299 
    573578msgid "Results by query" 
    574579msgstr "Résultats par question" 
     
    579584 
    580585#: inc/index.result.php:197 
    581 #: inc/index.result.php:337 
     586#: inc/index.result.php:339 
    582587msgid "Responses" 
    583588msgstr "Réponses" 
    584589 
    585 #: inc/index.result.php:214 
     590#: inc/index.result.php:215 
    586591msgid "User has not answered this query" 
    587592msgstr "L'utilisateur n'a pas répondu à cette question" 
    588593 
    589 #: inc/index.result.php:223 
     594#: inc/index.result.php:224 
    590595msgid "Remove this response from public side" 
    591596msgstr "Enlever cette réponse de la partie publique" 
    592597 
    593 #: inc/index.result.php:228 
     598#: inc/index.result.php:229 
    594599msgid "Show this response on public side" 
    595600msgstr "Afficher cette réponse sur la partie publique" 
    596601 
    597 #: inc/index.result.php:345 
    598 #: inc/index.result.php:452 
     602#: inc/index.result.php:347 
     603#: inc/index.result.php:454 
    599604msgid "There is no response for this query." 
    600605msgstr "Il n'y a pas de reponse pour cette question." 
    601606 
    602 #: inc/index.result.php:438 
     607#: inc/index.result.php:440 
    603608msgid "Show selected responses on public side" 
    604609msgstr "Afficher les réponses selectionnées coté publique" 
  • plugins/pollsFactory/release.txt

    r2240 r2338  
    22 * Not added Import/export 
    33 * Not fixed bug on image refresh 
     4 
     51.3 20100608 
     6 * Switched to DC 2.2 
     7 * Fixed minor bugs 
    48 
    591.2 20100513 
Note: See TracChangeset for help on using the changeset viewer.

Sites map