Dotclear

Changeset 1348


Ignore:
Timestamp:
07/25/09 16:19:09 (14 years ago)
Author:
JcDenis
Message:

rateIt 0.8.2:

  • Fixed rateit templates directories
  • Fixed widget conflict with same rateIt type
  • Fixed titles bug on multiple rateit type
  • Fixed some l10n
Location:
plugins/rateIt
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • plugins/rateIt/_define.php

    r1343 r1348  
    1818     /* Description*/         "Rating system for your posts", 
    1919     /* Author */             "JC Denis", 
    20      /* Version */            '0.8.1', 
     20     /* Version */            '0.8.2', 
    2121     /* Permissions */        'admin' 
    2222); 
    23      /* date */          #20090716 
     23     /* date */          #20090724 
    2424?> 
  • plugins/rateIt/_public.php

    r1341 r1348  
    3030 
    3131} else { 
     32     $core->tpl->setPath($core->tpl->getPath(),dirname(__FILE__).'/default-templates/tpl/'); 
     33 
    3234     $core->addBehavior('publicHeadContent', 
    3335          array('urlRateIt','publicHeadContent')); 
     
    4951class urlRateIt extends dcUrlHandlers 
    5052{ 
    51      private static function dirname(&$f) 
    52      { 
    53           $f = dirname(__FILE__).'/default-templates/'.$f; 
    54           return dirname($f); 
     53     private static function searchRateItTplFiles($file) 
     54     { 
     55          if (strstr($file,"..") !== false) 
     56               return false; 
     57 
     58          $paths = $GLOBALS['core']->tpl->getPath(); 
     59 
     60          foreach($paths as $path) 
     61          { 
     62               if (preg_match('/tpl(\/|)$/',$path) ) 
     63                    $path = path::real($path.'/..'); 
     64 
     65               if (file_exists($path.'/'.$file)) 
     66                    return $path.'/'.$file; 
     67          } 
     68          return false; 
    5569     } 
    5670 
     
    115129          } 
    116130 
    117           $f = $m[1]; 
    118           if (strstr($f,"..") !== false) { 
    119                self::p404(); 
    120                exit; 
    121           } 
    122  
    123           $path = self::dirname($f); 
    124           if (!is_dir($path)) { 
     131          if (!($f = self::searchRateItTplFiles($m[1]))) { 
    125132               self::p404(); 
    126133               exit; 
     
    187194          "rateIt.prototype.enable_cookie = '".($core->blog->settings->rateit_userident > 0 ? '1' : '0')."';\n". 
    188195          "rateIt.prototype.image_size = '".$s['h']."';\n". 
    189           "rateIt.prototype.service_url = '".html::escapeJS( 
    190                $core->blog->url.$core->url->getBase('rateItservice').'/')."';\n". 
     196          "rateIt.prototype.service_url = '".html::escapeJS($core->blog->url.$core->url->getBase('rateItservice').'/')."';\n". 
    191197          "rateIt.prototype.msg_thanks = '".html::escapeJS($core->blog->settings->rateit_msgthanks)."';\n". 
    192198          "\n//]]>\n". 
     
    201207              && ($core->blog->settings->rateit_poststpl && 'post.html' == $_ctx->current_tpl  
    202208               || $core->blog->settings->rateit_homepoststpl && 'home.html' == $_ctx->current_tpl 
     209               || $core->blog->settings->rateit_tagpoststpl && 'tag.html' == $_ctx->current_tpl  
    203210               || $core->blog->settings->rateit_categorypoststpl && 'category.html' == $_ctx->current_tpl) 
    204211              && (!$core->blog->settings->rateit_categorylimitposts 
    205212               || $core->blog->settings->rateit_categorylimitposts == $_ctx->posts->cat_id))) { 
    206213 
    207                     $f = 'tpl/rateit.html'; 
    208                     $d = self::dirname($f); 
    209                     $core->tpl->setPath($core->tpl->getPath(),$d); 
    210  
    211                if ('' != ($fc = $core->tpl->getData('rateit.html'))) 
    212                     echo $fc; 
    213  
    214           } else 
    215                return; 
     214               echo $core->tpl->getData('rateit.html'); 
     215 
     216          } else return; 
    216217     } 
    217218} 
     
    274275     public static function rateItTitle($attr) 
    275276     { 
    276           global $core,$_ctx; 
     277          global $core; 
    277278          $f = $core->tpl->getFilters($attr); 
    278279 
    279           $title = ''; 
    280           if ($_ctx->exists("posts") && $_ctx->posts->post_type == "post") 
    281                $title = __('Rate this entry'); 
    282  
    283           # --BEHAVIOR-- templateRateItTitle 
    284           $call_title = $core->callBehavior('templateRateItTitle',$title); 
    285           if (!empty($call_title)) 
    286                $title = $call_title; 
    287  
    288           return '<?php echo '.sprintf($f,"'$title'").'; ?>'; 
     280          return  
     281          "<?php\n". 
     282          '$title = "";'."\n". 
     283          'if ($rateit_type == "post")'."\n". 
     284          ' $title = "'.__('Rate this entry').'";'."\n". 
     285          "else\n". 
     286          ' $title = $core->callBehavior("templateRateItTitle",$rateit_type,$title);'."\n\n". 
     287          'echo '.sprintf($f,'$title').'; '."\n". 
     288          '?>'; 
     289 
    289290     } 
    290291 
  • plugins/rateIt/inc/class.rateit.install.php

    r1341 r1348  
    6666          $core->blog->settings->put('rateit_poststpl',0,'boolean','rateit template on post on post page',$force,$glob); 
    6767          $core->blog->settings->put('rateit_homepoststpl',0,'boolean','rateit template on post on home page',$force,$glob); 
     68          $core->blog->settings->put('rateit_tagpoststpl',0,'boolean','rateit template on post on tag page',$force,$glob); 
    6869          $core->blog->settings->put('rateit_categorypoststpl',0,'boolean','rateit template on post on category page',$force,$glob); 
    6970          $core->blog->settings->put('rateit_categorylimitposts',0,'integer','rateit limit post vote to one category',$force,$glob); 
  • plugins/rateIt/index.php

    r1343 r1348  
    312312               $core->blog->settings->put('rateit_poststpl',$_POST['s']['rateit_poststpl'],'boolean','rateit template on post on post page',true,false); 
    313313               $core->blog->settings->put('rateit_homepoststpl',$_POST['s']['rateit_homepoststpl'],'boolean','rateit template on post on home page',true,false); 
     314               $core->blog->settings->put('rateit_tagpoststpl',$_POST['s']['rateit_tagpoststpl'],'boolean','rateit template on post on tag page',true,false); 
    314315               $core->blog->settings->put('rateit_categorypoststpl',$_POST['s']['rateit_categorypoststpl'],'boolean','rateit template on post on category page',true,false); 
    315316               $core->blog->settings->put('rateit_categorylimitposts',$_POST['s']['rateit_categorylimitposts'],'integer','rateit limit post vote to one category',true,false); 
     
    350351          '<tr><td>'.__('Include on entries pages').'*</td><td>'.form::combo(array('s[rateit_poststpl]'),array(__('no')=>0,__('yes')=>1),$core->blog->settings->rateit_poststpl).'</td></tr>'. 
    351352          '<tr><td>'.__('Include on home page').'*</td><td>'.form::combo(array('s[rateit_homepoststpl]'),array(__('no')=>0,__('yes')=>1),$core->blog->settings->rateit_homepoststpl).'</td></tr>'. 
     353          '<tr><td>'.__('Include on tag page').'*</td><td>'.form::combo(array('s[rateit_tagpoststpl]'),array(__('no')=>0,__('yes')=>1),$core->blog->settings->rateit_tagpoststpl).'</td></tr>'. 
    352354          '<tr><td>'.__('Include on categories page').'*</td><td>'.form::combo(array('s[rateit_categorypoststpl]'),array(__('no')=>0,__('yes')=>1),$core->blog->settings->rateit_categorypoststpl).'</td></tr>'. 
    353355          '<tr><td>'.__('Limit to one category').'</td><td>'.form::combo(array('s[rateit_categorylimitposts]'),$categories_combo,$core->blog->settings->rateit_categorylimitposts).'</td></tr>'. 
  • plugins/rateIt/locales/fr/main.lang.php

    r1341 r1348  
    11<?php 
    22// Language: français  
    3 // Module: rateIt - 0.7.1 
    4 // Date: 2009-07-16 00:21:50  
     3// Module: rateIt - 0.8.2 
     4// Date: 2009-07-25 14:09:52  
    55// Author: JC Denis, http://blog.jcdenis.com 
    66// Translated with dcTranslater - 0.2.4  
    77 
    8 #index.php:622 
     8#index.php:694 
    99$GLOBALS['__l10n']['Rate it'] = 'Évaluer ça'; 
    1010 
     
    7575$GLOBALS['__l10n']['Length:'] = 'Longueur :'; 
    7676 
    77 #index.php:430 
     77#index.php:502 
    7878$GLOBALS['__l10n']['Note'] = 'Note'; 
    7979 
    80 #index.php:88 
     80#index.php:211 
    8181$GLOBALS['__l10n']['Votes'] = 'Votes'; 
    8282 
     
    105105$GLOBALS['__l10n']['Configuration saved'] = 'Configuration enregistrée'; 
    106106 
     107#index.php:204 
     108$GLOBALS['__l10n']['Summary'] = 'Résumé'; 
     109 
     110#index.php:205 
     111$GLOBALS['__l10n']['There is a total of %s votes on this blog.'] = 'Il y a un total de %s votes sur ce blog.'; 
     112 
    107113#index.php:208 
     114$GLOBALS['__l10n']['Last'] = 'Dernier'; 
     115 
     116#index.php:489 
     117$GLOBALS['__l10n']['Ip'] = 'Ip'; 
     118 
     119#index.php:277 
     120$GLOBALS['__l10n']['Id'] = 'Id'; 
     121 
     122#index.php:264 
     123$GLOBALS['__l10n']['This is detailed list for rating of type "%s" and id "%s"'] = 'Ceci est la liste détaillée des votes de type %s et d\'id %s'; 
     124 
     125#index.php:268 
     126$GLOBALS['__l10n']['There is no rating for this request at this time'] = 'Il n\'y a pas de vote pour cette requête'; 
     127 
     128#index.php:274 
     129$GLOBALS['__l10n']['Quotient'] = 'Quotient'; 
     130 
     131#index.php:287 
     132$GLOBALS['__l10n']['delete entry'] = 'effacer cette entrée'; 
     133 
     134#index.php:347 
    108135$GLOBALS['__l10n']['Settings for entries'] = 'Paramètres pour les billets'; 
    109136 
    110 #index.php:212 
     137#index.php:351 
    111138$GLOBALS['__l10n']['Include on entries pages'] = 'Inclure dans les pages des billets'; 
    112139 
    113 #index.php:213 
     140#index.php:352 
    114141$GLOBALS['__l10n']['Include on home page'] = 'Inclure sur la page d\'accueil'; 
    115142 
    116 #index.php:214 
     143#index.php:353 
     144$GLOBALS['__l10n']['Include on tag page'] = 'Inclure sur la page d\'un tag'; 
     145 
     146#index.php:354 
    117147$GLOBALS['__l10n']['Include on categories page'] = 'Inclure sur la page des catégories'; 
    118148 
    119 #index.php:215 
     149#index.php:355 
    120150$GLOBALS['__l10n']['Limit to one category'] = 'Limiter à une catégorie'; 
    121151 
    122 #index.php:223 
     152#index.php:363 
    123153$GLOBALS['__l10n']['To use this option you must have behavior "publicEntryAfterContent" in your theme'] = 'Pour utiliser cette option vous devez avoir le behavior "publiEntreyAfterContent" dans votre thème'; 
    124154 
    125 #index.php:228 
     155#index.php:368 
    126156$GLOBALS['__l10n']['List of entries'] = 'Liste des billets'; 
    127157 
    128 #index.php:230 
     158#index.php:370 
    129159$GLOBALS['__l10n']['This is the list of all entries having rating'] = 'Ceci est la liste des billets aillant des votes'; 
    130160 
    131 #index.php:316 
    132 $GLOBALS['__l10n']['This is detailed list for rating of type "%s" and id "%s"'] = 'Ceci est la liste détaillée des votes de type %s et d\'id %s'; 
    133  
    134 #index.php:320 
    135 $GLOBALS['__l10n']['There is no rating for this request at this time'] = 'Il n\'y a pas de vote pour cette requête'; 
    136  
    137 #index.php:326 
    138 $GLOBALS['__l10n']['Quotient'] = 'Quotient'; 
    139  
    140 #index.php:417 
    141 $GLOBALS['__l10n']['Ip'] = 'Ip'; 
    142  
    143 #index.php:329 
    144 $GLOBALS['__l10n']['Id'] = 'Id'; 
    145  
    146 #index.php:339 
    147 $GLOBALS['__l10n']['delete entry'] = 'effacer cette entrée'; 
    148  
    149 #index.php:367 
     161#index.php:436 
    150162$GLOBALS['__l10n']['Settings'] = 'Paramètres'; 
    151163 
    152 #index.php:398 
     164#index.php:467 
     165$GLOBALS['__l10n']['Maximum file size exceeded'] = 'Taille maximum de fichier dépassée'; 
     166 
     167#index.php:470 
    153168$GLOBALS['__l10n']['Something went wrong while download file'] = 'Une erreur est survenue lors de téléchargement de l\'image'; 
    154169 
    155 #index.php:401 
     170#index.php:473 
    156171$GLOBALS['__l10n']['Image must be in png format'] = 'L\'image doit être au format png'; 
    157172 
    158 #index.php:417 
     173#index.php:489 
    159174$GLOBALS['__l10n']['Both ip and cookie'] = 'Ip et cookie'; 
    160175 
    161 #index.php:420 
     176#index.php:492 
    162177$GLOBALS['__l10n']['Administration of options of this extension on this blog'] = 'Administration de l\'extension sur ce blog'; 
    163178 
    164 #index.php:427 
     179#index.php:499 
    165180$GLOBALS['__l10n']['Enable plugin'] = 'Activer l\'extension'; 
    166181 
    167 #index.php:428 
     182#index.php:500 
    168183$GLOBALS['__l10n']['Disable public javascript'] = 'Désactiver le javascript publique'; 
    169184 
    170 #index.php:429 
     185#index.php:501 
    171186$GLOBALS['__l10n']['Identify users by'] = 'Identifier l\'utilisateur par'; 
    172187 
    173 #index.php:431 
     188#index.php:503 
    174189$GLOBALS['__l10n']['Note out of'] = 'Note sur'; 
    175190 
    176 #index.php:432 
     191#index.php:504 
    177192$GLOBALS['__l10n']['Number of digits'] = 'Nombre de décimales'; 
    178193 
    179 #index.php:433 
     194#index.php:505 
    180195$GLOBALS['__l10n']['Message of thanks'] = 'Message de remerciement'; 
    181196 
    182 #index.php:434 
     197#index.php:506 
    183198$GLOBALS['__l10n']['URL prefix'] = 'Prefix des liens'; 
    184199 
    185 #index.php:594 
     200#index.php:666 
    186201$GLOBALS['__l10n']['Files'] = 'Fichiers'; 
    187202 
    188 #index.php:436 
     203#index.php:508 
    189204$GLOBALS['__l10n']['Post form'] = 'Envoie du formulaire'; 
    190205 
    191 #index.php:437 
     206#index.php:509 
    192207$GLOBALS['__l10n']['Rest service'] = 'Service Rest'; 
    193208 
    194 #index.php:439 
     209#index.php:511 
    195210$GLOBALS['__l10n']['This message replaces stars, leave it empty to not replace stars'] = 'Ce message remplace les images, laisser ce champ vide pour ne pas modifier l\'image'; 
    196211 
    197 #index.php:440 
     212#index.php:512 
    198213$GLOBALS['__l10n']['Change these prefixes only if you have any conflicts with other links.'] = 'Modifier ces prefixes seulement si vous avez des conflits avec d\'autres liens'; 
    199214 
    200 #index.php:443 
     215#index.php:515 
    201216$GLOBALS['__l10n']['Image'] = 'Image'; 
    202217 
    203 #index.php:450 
     218#index.php:522 
    204219$GLOBALS['__l10n']['Rating image exists on theme it will be used:'] = 'L\'image d\'évaluation existe dans le thème, elle sera utilisée'; 
    205220 
    206 #index.php:457 
     221#index.php:529 
    207222$GLOBALS['__l10n']['negative'] = 'négatif'; 
    208223 
    209 #index.php:457 
     224#index.php:529 
    210225$GLOBALS['__l10n']['positive'] = 'positif'; 
    211226 
    212 #index.php:457 
     227#index.php:529 
    213228$GLOBALS['__l10n']['hover'] = 'survole'; 
    214229 
    215 #index.php:457 
     230#index.php:529 
    216231$GLOBALS['__l10n']['size'] = 'taille'; 
    217232 
    218 #index.php:456 
     233#index.php:528 
    219234$GLOBALS['__l10n']['Rating image not exists on theme choose one to use:'] = 'L\'image de vote n\'existe pas dans le thème, en choisir une:'; 
    220235 
    221 #index.php:483 
     236#index.php:555 
    222237$GLOBALS['__l10n']['Please read the README file before uploading image'] = 'Merci de lire le ficher README avant de télécharger une image'; 
    223238 
    224 #index.php:572 
     239#index.php:644 
    225240$GLOBALS['__l10n']['Uninstall'] = 'Désinstaller'; 
    226241 
    227 #index.php:556 
     242#index.php:628 
    228243$GLOBALS['__l10n']['You must check warning in order to delete plugin.'] = 'Vous devez vérifier la mise en garde en vue de supprimer l\'extension'; 
    229244 
    230 #index.php:559 
     245#index.php:631 
    231246$GLOBALS['__l10n']['In order to properly uninstall this plugin, you must specify the actions to perform'] = 'Dans le but de désintaller proprement l\'extension, vous devez spécifier les actions à effectuer'; 
    232247 
    233 #index.php:563 
     248#index.php:635 
    234249$GLOBALS['__l10n']['You understand that if you delete this plugin, the other plugins that use there tables and classes will no longer work.'] = 'Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces tables et classes ne fonctionneront plus.'; 
    235250 
    236 #index.php:536 
     251#index.php:608 
    237252$GLOBALS['__l10n']['Delete plugin files'] = 'Supprimer les fichiers de l\'extension'; 
    238253 
    239 #index.php:565 
     254#index.php:637 
    240255$GLOBALS['__l10n']['Delete plugin database table'] = 'Supprimer la table de l\'extension dans la base de donnée'; 
    241256 
    242 #index.php:567 
     257#index.php:639 
    243258$GLOBALS['__l10n']['Delete plugin settings'] = 'Supprimer les paramètres de l\'extension'; 
    244259 
    245 #index.php:583 
     260#index.php:655 
    246261$GLOBALS['__l10n']['About'] = 'À propos'; 
    247262 
    248 #index.php:584 
     263#index.php:656 
    249264$GLOBALS['__l10n']['Version:'] = 'Version :'; 
    250265 
    251 #index.php:586 
     266#index.php:658 
    252267$GLOBALS['__l10n']['Support:'] = 'Support :'; 
    253268 
    254 #index.php:592 
     269#index.php:664 
    255270$GLOBALS['__l10n']['Copyrights:'] = 'Droits :'; 
    256271 
    257 #index.php:600 
     272#index.php:672 
    258273$GLOBALS['__l10n']['Images'] = 'Images'; 
    259274 
    260 #index.php:607 
     275#index.php:679 
    261276$GLOBALS['__l10n']['Tools'] = 'Outils'; 
    262277 
    263 #index.php:613 
     278#index.php:685 
    264279$GLOBALS['__l10n']['Special thanks to'] = 'Remerciement à'; 
    265280 
  • plugins/rateIt/locales/fr/main.po

    r1341 r1348  
    11# Language: français 
    2 # Module: rateIt - 0.7.1 
    3 # Date: 2009-07-16 00:21:50 
     2# Module: rateIt - 0.8.2 
     3# Date: 2009-07-25 14:09:52 
    44# Author: JC Denis, http://blog.jcdenis.com 
    55# Translated with dcTranslater - 0.2.4 
     
    88msgstr "Content-Type: text/plain; charset=UTF-8\n" 
    99 
    10 #: index.php:622 
     10#: index.php:694 
    1111msgid "Rate it" 
    1212msgstr "Évaluer ça" 
     
    100100msgstr "Longueur :" 
    101101 
    102 #: index.php:430 
     102#: index.php:502 
    103103msgid "Note" 
    104104msgstr "Note" 
    105105 
    106 #: index.php:88 
     106#: index.php:211 
    107107msgid "Votes" 
    108108msgstr "Votes" 
     
    140140msgstr "Configuration enregistrée" 
    141141 
     142#: index.php:204 
     143msgid "Summary" 
     144msgstr "Résumé" 
     145 
     146#: index.php:205 
     147msgid "There is a total of %s votes on this blog." 
     148msgstr "Il y a un total de %s votes sur ce blog." 
     149 
    142150#: index.php:208 
     151msgid "Last" 
     152msgstr "Dernier" 
     153 
     154#: index.php:489 
     155msgid "Ip" 
     156msgstr "Ip" 
     157 
     158#: index.php:277 
     159msgid "Id" 
     160msgstr "Id" 
     161 
     162#: index.php:264 
     163msgid "This is detailed list for rating of type "%s" and id "%s"" 
     164msgstr "Ceci est la liste détaillée des votes de type %s et d'id %s" 
     165 
     166#: index.php:268 
     167msgid "There is no rating for this request at this time" 
     168msgstr "Il n'y a pas de vote pour cette requête" 
     169 
     170#: index.php:274 
     171msgid "Quotient" 
     172msgstr "Quotient" 
     173 
     174#: index.php:287 
     175msgid "delete entry" 
     176msgstr "effacer cette entrée" 
     177 
     178#: index.php:347 
    143179msgid "Settings for entries" 
    144180msgstr "Paramètres pour les billets" 
    145181 
    146 #: index.php:212 
     182#: index.php:351 
    147183msgid "Include on entries pages" 
    148184msgstr "Inclure dans les pages des billets" 
    149185 
    150 #: index.php:213 
     186#: index.php:352 
    151187msgid "Include on home page" 
    152188msgstr "Inclure sur la page d'accueil" 
    153189 
    154 #: index.php:214 
     190#: index.php:353 
     191msgid "Include on tag page" 
     192msgstr "Inclure sur la page d'un tag" 
     193 
     194#: index.php:354 
    155195msgid "Include on categories page" 
    156196msgstr "Inclure sur la page des catégories" 
    157197 
    158 #: index.php:215 
     198#: index.php:355 
    159199msgid "Limit to one category" 
    160200msgstr "Limiter à une catégorie" 
    161201 
    162 #: index.php:223 
     202#: index.php:363 
    163203msgid "To use this option you must have behavior "publicEntryAfterContent" in your theme" 
    164204msgstr "Pour utiliser cette option vous devez avoir le behavior \"publiEntreyAfterContent\" dans votre thème" 
    165205 
    166 #: index.php:228 
     206#: index.php:368 
    167207msgid "List of entries" 
    168208msgstr "Liste des billets" 
    169209 
    170 #: index.php:230 
     210#: index.php:370 
    171211msgid "This is the list of all entries having rating" 
    172212msgstr "Ceci est la liste des billets aillant des votes" 
    173213 
    174 #: index.php:316 
    175 msgid "This is detailed list for rating of type "%s" and id "%s"" 
    176 msgstr "Ceci est la liste détaillée des votes de type %s et d'id %s" 
    177  
    178 #: index.php:320 
    179 msgid "There is no rating for this request at this time" 
    180 msgstr "Il n'y a pas de vote pour cette requête" 
    181  
    182 #: index.php:326 
    183 msgid "Quotient" 
    184 msgstr "Quotient" 
    185  
    186 #: index.php:417 
    187 msgid "Ip" 
    188 msgstr "Ip" 
    189  
    190 #: index.php:329 
    191 msgid "Id" 
    192 msgstr "Id" 
    193  
    194 #: index.php:339 
    195 msgid "delete entry" 
    196 msgstr "effacer cette entrée" 
    197  
    198 #: index.php:367 
     214#: index.php:436 
    199215msgid "Settings" 
    200216msgstr "Paramètres" 
    201217 
    202 #: index.php:398 
     218#: index.php:467 
     219msgid "Maximum file size exceeded" 
     220msgstr "Taille maximum de fichier dépassée" 
     221 
     222#: index.php:470 
    203223msgid "Something went wrong while download file" 
    204224msgstr "Une erreur est survenue lors de téléchargement de l'image" 
    205225 
    206 #: index.php:401 
     226#: index.php:473 
    207227msgid "Image must be in png format" 
    208228msgstr "L'image doit être au format png" 
    209229 
    210 #: index.php:417 
     230#: index.php:489 
    211231msgid "Both ip and cookie" 
    212232msgstr "Ip et cookie" 
    213233 
    214 #: index.php:420 
     234#: index.php:492 
    215235msgid "Administration of options of this extension on this blog" 
    216236msgstr "Administration de l'extension sur ce blog" 
    217237 
    218 #: index.php:427 
     238#: index.php:499 
    219239msgid "Enable plugin" 
    220240msgstr "Activer l'extension" 
    221241 
    222 #: index.php:428 
     242#: index.php:500 
    223243msgid "Disable public javascript" 
    224244msgstr "Désactiver le javascript publique" 
    225245 
    226 #: index.php:429 
     246#: index.php:501 
    227247msgid "Identify users by" 
    228248msgstr "Identifier l'utilisateur par" 
    229249 
    230 #: index.php:431 
     250#: index.php:503 
    231251msgid "Note out of" 
    232252msgstr "Note sur" 
    233253 
    234 #: index.php:432 
     254#: index.php:504 
    235255msgid "Number of digits" 
    236256msgstr "Nombre de décimales" 
    237257 
    238 #: index.php:433 
     258#: index.php:505 
    239259msgid "Message of thanks" 
    240260msgstr "Message de remerciement" 
    241261 
    242 #: index.php:434 
     262#: index.php:506 
    243263msgid "URL prefix" 
    244264msgstr "Prefix des liens" 
    245265 
    246 #: index.php:594 
     266#: index.php:666 
    247267msgid "Files" 
    248268msgstr "Fichiers" 
    249269 
    250 #: index.php:436 
     270#: index.php:508 
    251271msgid "Post form" 
    252272msgstr "Envoie du formulaire" 
    253273 
    254 #: index.php:437 
     274#: index.php:509 
    255275msgid "Rest service" 
    256276msgstr "Service Rest" 
    257277 
    258 #: index.php:439 
     278#: index.php:511 
    259279msgid "This message replaces stars, leave it empty to not replace stars" 
    260280msgstr "Ce message remplace les images, laisser ce champ vide pour ne pas modifier l'image" 
    261281 
    262 #: index.php:440 
     282#: index.php:512 
    263283msgid "Change these prefixes only if you have any conflicts with other links." 
    264284msgstr "Modifier ces prefixes seulement si vous avez des conflits avec d'autres liens" 
    265285 
    266 #: index.php:443 
     286#: index.php:515 
    267287msgid "Image" 
    268288msgstr "Image" 
    269289 
    270 #: index.php:450 
     290#: index.php:522 
    271291msgid "Rating image exists on theme it will be used:" 
    272292msgstr "L'image d'évaluation existe dans le thème, elle sera utilisée" 
    273293 
    274 #: index.php:457 
     294#: index.php:529 
    275295msgid "negative" 
    276296msgstr "négatif" 
    277297 
    278 #: index.php:457 
     298#: index.php:529 
    279299msgid "positive" 
    280300msgstr "positif" 
    281301 
    282 #: index.php:457 
     302#: index.php:529 
    283303msgid "hover" 
    284304msgstr "survole" 
    285305 
    286 #: index.php:457 
     306#: index.php:529 
    287307msgid "size" 
    288308msgstr "taille" 
    289309 
    290 #: index.php:456 
     310#: index.php:528 
    291311msgid "Rating image not exists on theme choose one to use:" 
    292312msgstr "L'image de vote n'existe pas dans le thème, en choisir une:" 
    293313 
    294 #: index.php:483 
     314#: index.php:555 
    295315msgid "Please read the README file before uploading image" 
    296316msgstr "Merci de lire le ficher README avant de télécharger une image" 
    297317 
    298 #: index.php:572 
     318#: index.php:644 
    299319msgid "Uninstall" 
    300320msgstr "Désinstaller" 
    301321 
    302 #: index.php:556 
     322#: index.php:628 
    303323msgid "You must check warning in order to delete plugin." 
    304324msgstr "Vous devez vérifier la mise en garde en vue de supprimer l'extension" 
    305325 
    306 #: index.php:559 
     326#: index.php:631 
    307327msgid "In order to properly uninstall this plugin, you must specify the actions to perform" 
    308328msgstr "Dans le but de désintaller proprement l'extension, vous devez spécifier les actions à effectuer" 
    309329 
    310 #: index.php:563 
     330#: index.php:635 
    311331msgid "You understand that if you delete this plugin, the other plugins that use there tables and classes will no longer work." 
    312332msgstr "Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces tables et classes ne fonctionneront plus." 
    313333 
    314 #: index.php:536 
     334#: index.php:608 
    315335msgid "Delete plugin files" 
    316336msgstr "Supprimer les fichiers de l'extension" 
    317337 
    318 #: index.php:565 
     338#: index.php:637 
    319339msgid "Delete plugin database table" 
    320340msgstr "Supprimer la table de l'extension dans la base de donnée" 
    321341 
    322 #: index.php:567 
     342#: index.php:639 
    323343msgid "Delete plugin settings" 
    324344msgstr "Supprimer les paramètres de l'extension" 
    325345 
    326 #: index.php:583 
     346#: index.php:655 
    327347msgid "About" 
    328348msgstr "À propos" 
    329349 
    330 #: index.php:584 
     350#: index.php:656 
    331351msgid "Version:" 
    332352msgstr "Version :" 
    333353 
    334 #: index.php:586 
     354#: index.php:658 
    335355msgid "Support:" 
    336356msgstr "Support :" 
    337357 
    338 #: index.php:592 
     358#: index.php:664 
    339359msgid "Copyrights:" 
    340360msgstr "Droits :" 
    341361 
    342 #: index.php:600 
     362#: index.php:672 
    343363msgid "Images" 
    344364msgstr "Images" 
    345365 
    346 #: index.php:607 
     366#: index.php:679 
    347367msgid "Tools" 
    348368msgstr "Outils" 
    349369 
    350 #: index.php:613 
     370#: index.php:685 
    351371msgid "Special thanks to" 
    352372msgstr "Remerciement à" 
Note: See TracChangeset for help on using the changeset viewer.

Sites map