Changeset 1348
- Timestamp:
- 07/25/09 16:19:09 (14 years ago)
- Location:
- plugins/rateIt
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/rateIt/_define.php
r1343 r1348 18 18 /* Description*/ "Rating system for your posts", 19 19 /* Author */ "JC Denis", 20 /* Version */ '0.8. 1',20 /* Version */ '0.8.2', 21 21 /* Permissions */ 'admin' 22 22 ); 23 /* date */ #200907 1623 /* date */ #20090724 24 24 ?> -
plugins/rateIt/_public.php
r1341 r1348 30 30 31 31 } else { 32 $core->tpl->setPath($core->tpl->getPath(),dirname(__FILE__).'/default-templates/tpl/'); 33 32 34 $core->addBehavior('publicHeadContent', 33 35 array('urlRateIt','publicHeadContent')); … … 49 51 class urlRateIt extends dcUrlHandlers 50 52 { 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; 55 69 } 56 70 … … 115 129 } 116 130 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]))) { 125 132 self::p404(); 126 133 exit; … … 187 194 "rateIt.prototype.enable_cookie = '".($core->blog->settings->rateit_userident > 0 ? '1' : '0')."';\n". 188 195 "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". 191 197 "rateIt.prototype.msg_thanks = '".html::escapeJS($core->blog->settings->rateit_msgthanks)."';\n". 192 198 "\n//]]>\n". … … 201 207 && ($core->blog->settings->rateit_poststpl && 'post.html' == $_ctx->current_tpl 202 208 || $core->blog->settings->rateit_homepoststpl && 'home.html' == $_ctx->current_tpl 209 || $core->blog->settings->rateit_tagpoststpl && 'tag.html' == $_ctx->current_tpl 203 210 || $core->blog->settings->rateit_categorypoststpl && 'category.html' == $_ctx->current_tpl) 204 211 && (!$core->blog->settings->rateit_categorylimitposts 205 212 || $core->blog->settings->rateit_categorylimitposts == $_ctx->posts->cat_id))) { 206 213 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; 216 217 } 217 218 } … … 274 275 public static function rateItTitle($attr) 275 276 { 276 global $core ,$_ctx;277 global $core; 277 278 $f = $core->tpl->getFilters($attr); 278 279 279 $title = '';280 if ($_ctx->exists("posts") && $_ctx->posts->post_type == "post")281 $title = __('Rate this entry');282 283 # --BEHAVIOR-- templateRateItTitle284 $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 289 290 } 290 291 -
plugins/rateIt/inc/class.rateit.install.php
r1341 r1348 66 66 $core->blog->settings->put('rateit_poststpl',0,'boolean','rateit template on post on post page',$force,$glob); 67 67 $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); 68 69 $core->blog->settings->put('rateit_categorypoststpl',0,'boolean','rateit template on post on category page',$force,$glob); 69 70 $core->blog->settings->put('rateit_categorylimitposts',0,'integer','rateit limit post vote to one category',$force,$glob); -
plugins/rateIt/index.php
r1343 r1348 312 312 $core->blog->settings->put('rateit_poststpl',$_POST['s']['rateit_poststpl'],'boolean','rateit template on post on post page',true,false); 313 313 $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); 314 315 $core->blog->settings->put('rateit_categorypoststpl',$_POST['s']['rateit_categorypoststpl'],'boolean','rateit template on post on category page',true,false); 315 316 $core->blog->settings->put('rateit_categorylimitposts',$_POST['s']['rateit_categorylimitposts'],'integer','rateit limit post vote to one category',true,false); … … 350 351 '<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>'. 351 352 '<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>'. 352 354 '<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>'. 353 355 '<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 1 1 <?php 2 2 // Language: français 3 // Module: rateIt - 0. 7.14 // Date: 2009-07- 16 00:21:503 // Module: rateIt - 0.8.2 4 // Date: 2009-07-25 14:09:52 5 5 // Author: JC Denis, http://blog.jcdenis.com 6 6 // Translated with dcTranslater - 0.2.4 7 7 8 #index.php:6 228 #index.php:694 9 9 $GLOBALS['__l10n']['Rate it'] = 'Évaluer ça'; 10 10 … … 75 75 $GLOBALS['__l10n']['Length:'] = 'Longueur :'; 76 76 77 #index.php: 43077 #index.php:502 78 78 $GLOBALS['__l10n']['Note'] = 'Note'; 79 79 80 #index.php: 8880 #index.php:211 81 81 $GLOBALS['__l10n']['Votes'] = 'Votes'; 82 82 … … 105 105 $GLOBALS['__l10n']['Configuration saved'] = 'Configuration enregistrée'; 106 106 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 107 113 #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 108 135 $GLOBALS['__l10n']['Settings for entries'] = 'Paramètres pour les billets'; 109 136 110 #index.php: 212137 #index.php:351 111 138 $GLOBALS['__l10n']['Include on entries pages'] = 'Inclure dans les pages des billets'; 112 139 113 #index.php: 213140 #index.php:352 114 141 $GLOBALS['__l10n']['Include on home page'] = 'Inclure sur la page d\'accueil'; 115 142 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 117 147 $GLOBALS['__l10n']['Include on categories page'] = 'Inclure sur la page des catégories'; 118 148 119 #index.php: 215149 #index.php:355 120 150 $GLOBALS['__l10n']['Limit to one category'] = 'Limiter à une catégorie'; 121 151 122 #index.php: 223152 #index.php:363 123 153 $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'; 124 154 125 #index.php: 228155 #index.php:368 126 156 $GLOBALS['__l10n']['List of entries'] = 'Liste des billets'; 127 157 128 #index.php: 230158 #index.php:370 129 159 $GLOBALS['__l10n']['This is the list of all entries having rating'] = 'Ceci est la liste des billets aillant des votes'; 130 160 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 150 162 $GLOBALS['__l10n']['Settings'] = 'Paramètres'; 151 163 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 153 168 $GLOBALS['__l10n']['Something went wrong while download file'] = 'Une erreur est survenue lors de téléchargement de l\'image'; 154 169 155 #index.php:4 01170 #index.php:473 156 171 $GLOBALS['__l10n']['Image must be in png format'] = 'L\'image doit être au format png'; 157 172 158 #index.php:4 17173 #index.php:489 159 174 $GLOBALS['__l10n']['Both ip and cookie'] = 'Ip et cookie'; 160 175 161 #index.php:4 20176 #index.php:492 162 177 $GLOBALS['__l10n']['Administration of options of this extension on this blog'] = 'Administration de l\'extension sur ce blog'; 163 178 164 #index.php:4 27179 #index.php:499 165 180 $GLOBALS['__l10n']['Enable plugin'] = 'Activer l\'extension'; 166 181 167 #index.php: 428182 #index.php:500 168 183 $GLOBALS['__l10n']['Disable public javascript'] = 'Désactiver le javascript publique'; 169 184 170 #index.php: 429185 #index.php:501 171 186 $GLOBALS['__l10n']['Identify users by'] = 'Identifier l\'utilisateur par'; 172 187 173 #index.php: 431188 #index.php:503 174 189 $GLOBALS['__l10n']['Note out of'] = 'Note sur'; 175 190 176 #index.php: 432191 #index.php:504 177 192 $GLOBALS['__l10n']['Number of digits'] = 'Nombre de décimales'; 178 193 179 #index.php: 433194 #index.php:505 180 195 $GLOBALS['__l10n']['Message of thanks'] = 'Message de remerciement'; 181 196 182 #index.php: 434197 #index.php:506 183 198 $GLOBALS['__l10n']['URL prefix'] = 'Prefix des liens'; 184 199 185 #index.php: 594200 #index.php:666 186 201 $GLOBALS['__l10n']['Files'] = 'Fichiers'; 187 202 188 #index.php: 436203 #index.php:508 189 204 $GLOBALS['__l10n']['Post form'] = 'Envoie du formulaire'; 190 205 191 #index.php: 437206 #index.php:509 192 207 $GLOBALS['__l10n']['Rest service'] = 'Service Rest'; 193 208 194 #index.php: 439209 #index.php:511 195 210 $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'; 196 211 197 #index.php: 440212 #index.php:512 198 213 $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'; 199 214 200 #index.php: 443215 #index.php:515 201 216 $GLOBALS['__l10n']['Image'] = 'Image'; 202 217 203 #index.php: 450218 #index.php:522 204 219 $GLOBALS['__l10n']['Rating image exists on theme it will be used:'] = 'L\'image d\'évaluation existe dans le thème, elle sera utilisée'; 205 220 206 #index.php: 457221 #index.php:529 207 222 $GLOBALS['__l10n']['negative'] = 'négatif'; 208 223 209 #index.php: 457224 #index.php:529 210 225 $GLOBALS['__l10n']['positive'] = 'positif'; 211 226 212 #index.php: 457227 #index.php:529 213 228 $GLOBALS['__l10n']['hover'] = 'survole'; 214 229 215 #index.php: 457230 #index.php:529 216 231 $GLOBALS['__l10n']['size'] = 'taille'; 217 232 218 #index.php: 456233 #index.php:528 219 234 $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:'; 220 235 221 #index.php: 483236 #index.php:555 222 237 $GLOBALS['__l10n']['Please read the README file before uploading image'] = 'Merci de lire le ficher README avant de télécharger une image'; 223 238 224 #index.php: 572239 #index.php:644 225 240 $GLOBALS['__l10n']['Uninstall'] = 'Désinstaller'; 226 241 227 #index.php: 556242 #index.php:628 228 243 $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'; 229 244 230 #index.php: 559245 #index.php:631 231 246 $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'; 232 247 233 #index.php: 563248 #index.php:635 234 249 $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.'; 235 250 236 #index.php: 536251 #index.php:608 237 252 $GLOBALS['__l10n']['Delete plugin files'] = 'Supprimer les fichiers de l\'extension'; 238 253 239 #index.php: 565254 #index.php:637 240 255 $GLOBALS['__l10n']['Delete plugin database table'] = 'Supprimer la table de l\'extension dans la base de donnée'; 241 256 242 #index.php: 567257 #index.php:639 243 258 $GLOBALS['__l10n']['Delete plugin settings'] = 'Supprimer les paramètres de l\'extension'; 244 259 245 #index.php: 583260 #index.php:655 246 261 $GLOBALS['__l10n']['About'] = 'À propos'; 247 262 248 #index.php: 584263 #index.php:656 249 264 $GLOBALS['__l10n']['Version:'] = 'Version :'; 250 265 251 #index.php: 586266 #index.php:658 252 267 $GLOBALS['__l10n']['Support:'] = 'Support :'; 253 268 254 #index.php: 592269 #index.php:664 255 270 $GLOBALS['__l10n']['Copyrights:'] = 'Droits :'; 256 271 257 #index.php:6 00272 #index.php:672 258 273 $GLOBALS['__l10n']['Images'] = 'Images'; 259 274 260 #index.php:6 07275 #index.php:679 261 276 $GLOBALS['__l10n']['Tools'] = 'Outils'; 262 277 263 #index.php:6 13278 #index.php:685 264 279 $GLOBALS['__l10n']['Special thanks to'] = 'Remerciement à'; 265 280 -
plugins/rateIt/locales/fr/main.po
r1341 r1348 1 1 # Language: français 2 # Module: rateIt - 0. 7.13 # Date: 2009-07- 16 00:21:502 # Module: rateIt - 0.8.2 3 # Date: 2009-07-25 14:09:52 4 4 # Author: JC Denis, http://blog.jcdenis.com 5 5 # Translated with dcTranslater - 0.2.4 … … 8 8 msgstr "Content-Type: text/plain; charset=UTF-8\n" 9 9 10 #: index.php:6 2210 #: index.php:694 11 11 msgid "Rate it" 12 12 msgstr "Évaluer ça" … … 100 100 msgstr "Longueur :" 101 101 102 #: index.php: 430102 #: index.php:502 103 103 msgid "Note" 104 104 msgstr "Note" 105 105 106 #: index.php: 88106 #: index.php:211 107 107 msgid "Votes" 108 108 msgstr "Votes" … … 140 140 msgstr "Configuration enregistrée" 141 141 142 #: index.php:204 143 msgid "Summary" 144 msgstr "Résumé" 145 146 #: index.php:205 147 msgid "There is a total of %s votes on this blog." 148 msgstr "Il y a un total de %s votes sur ce blog." 149 142 150 #: index.php:208 151 msgid "Last" 152 msgstr "Dernier" 153 154 #: index.php:489 155 msgid "Ip" 156 msgstr "Ip" 157 158 #: index.php:277 159 msgid "Id" 160 msgstr "Id" 161 162 #: index.php:264 163 msgid "This is detailed list for rating of type "%s" and id "%s"" 164 msgstr "Ceci est la liste détaillée des votes de type %s et d'id %s" 165 166 #: index.php:268 167 msgid "There is no rating for this request at this time" 168 msgstr "Il n'y a pas de vote pour cette requête" 169 170 #: index.php:274 171 msgid "Quotient" 172 msgstr "Quotient" 173 174 #: index.php:287 175 msgid "delete entry" 176 msgstr "effacer cette entrée" 177 178 #: index.php:347 143 179 msgid "Settings for entries" 144 180 msgstr "Paramètres pour les billets" 145 181 146 #: index.php: 212182 #: index.php:351 147 183 msgid "Include on entries pages" 148 184 msgstr "Inclure dans les pages des billets" 149 185 150 #: index.php: 213186 #: index.php:352 151 187 msgid "Include on home page" 152 188 msgstr "Inclure sur la page d'accueil" 153 189 154 #: index.php:214 190 #: index.php:353 191 msgid "Include on tag page" 192 msgstr "Inclure sur la page d'un tag" 193 194 #: index.php:354 155 195 msgid "Include on categories page" 156 196 msgstr "Inclure sur la page des catégories" 157 197 158 #: index.php: 215198 #: index.php:355 159 199 msgid "Limit to one category" 160 200 msgstr "Limiter à une catégorie" 161 201 162 #: index.php: 223202 #: index.php:363 163 203 msgid "To use this option you must have behavior "publicEntryAfterContent" in your theme" 164 204 msgstr "Pour utiliser cette option vous devez avoir le behavior \"publiEntreyAfterContent\" dans votre thème" 165 205 166 #: index.php: 228206 #: index.php:368 167 207 msgid "List of entries" 168 208 msgstr "Liste des billets" 169 209 170 #: index.php: 230210 #: index.php:370 171 211 msgid "This is the list of all entries having rating" 172 212 msgstr "Ceci est la liste des billets aillant des votes" 173 213 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 199 215 msgid "Settings" 200 216 msgstr "Paramètres" 201 217 202 #: index.php:398 218 #: index.php:467 219 msgid "Maximum file size exceeded" 220 msgstr "Taille maximum de fichier dépassée" 221 222 #: index.php:470 203 223 msgid "Something went wrong while download file" 204 224 msgstr "Une erreur est survenue lors de téléchargement de l'image" 205 225 206 #: index.php:4 01226 #: index.php:473 207 227 msgid "Image must be in png format" 208 228 msgstr "L'image doit être au format png" 209 229 210 #: index.php:4 17230 #: index.php:489 211 231 msgid "Both ip and cookie" 212 232 msgstr "Ip et cookie" 213 233 214 #: index.php:4 20234 #: index.php:492 215 235 msgid "Administration of options of this extension on this blog" 216 236 msgstr "Administration de l'extension sur ce blog" 217 237 218 #: index.php:4 27238 #: index.php:499 219 239 msgid "Enable plugin" 220 240 msgstr "Activer l'extension" 221 241 222 #: index.php: 428242 #: index.php:500 223 243 msgid "Disable public javascript" 224 244 msgstr "Désactiver le javascript publique" 225 245 226 #: index.php: 429246 #: index.php:501 227 247 msgid "Identify users by" 228 248 msgstr "Identifier l'utilisateur par" 229 249 230 #: index.php: 431250 #: index.php:503 231 251 msgid "Note out of" 232 252 msgstr "Note sur" 233 253 234 #: index.php: 432254 #: index.php:504 235 255 msgid "Number of digits" 236 256 msgstr "Nombre de décimales" 237 257 238 #: index.php: 433258 #: index.php:505 239 259 msgid "Message of thanks" 240 260 msgstr "Message de remerciement" 241 261 242 #: index.php: 434262 #: index.php:506 243 263 msgid "URL prefix" 244 264 msgstr "Prefix des liens" 245 265 246 #: index.php: 594266 #: index.php:666 247 267 msgid "Files" 248 268 msgstr "Fichiers" 249 269 250 #: index.php: 436270 #: index.php:508 251 271 msgid "Post form" 252 272 msgstr "Envoie du formulaire" 253 273 254 #: index.php: 437274 #: index.php:509 255 275 msgid "Rest service" 256 276 msgstr "Service Rest" 257 277 258 #: index.php: 439278 #: index.php:511 259 279 msgid "This message replaces stars, leave it empty to not replace stars" 260 280 msgstr "Ce message remplace les images, laisser ce champ vide pour ne pas modifier l'image" 261 281 262 #: index.php: 440282 #: index.php:512 263 283 msgid "Change these prefixes only if you have any conflicts with other links." 264 284 msgstr "Modifier ces prefixes seulement si vous avez des conflits avec d'autres liens" 265 285 266 #: index.php: 443286 #: index.php:515 267 287 msgid "Image" 268 288 msgstr "Image" 269 289 270 #: index.php: 450290 #: index.php:522 271 291 msgid "Rating image exists on theme it will be used:" 272 292 msgstr "L'image d'évaluation existe dans le thème, elle sera utilisée" 273 293 274 #: index.php: 457294 #: index.php:529 275 295 msgid "negative" 276 296 msgstr "négatif" 277 297 278 #: index.php: 457298 #: index.php:529 279 299 msgid "positive" 280 300 msgstr "positif" 281 301 282 #: index.php: 457302 #: index.php:529 283 303 msgid "hover" 284 304 msgstr "survole" 285 305 286 #: index.php: 457306 #: index.php:529 287 307 msgid "size" 288 308 msgstr "taille" 289 309 290 #: index.php: 456310 #: index.php:528 291 311 msgid "Rating image not exists on theme choose one to use:" 292 312 msgstr "L'image de vote n'existe pas dans le thème, en choisir une:" 293 313 294 #: index.php: 483314 #: index.php:555 295 315 msgid "Please read the README file before uploading image" 296 316 msgstr "Merci de lire le ficher README avant de télécharger une image" 297 317 298 #: index.php: 572318 #: index.php:644 299 319 msgid "Uninstall" 300 320 msgstr "Désinstaller" 301 321 302 #: index.php: 556322 #: index.php:628 303 323 msgid "You must check warning in order to delete plugin." 304 324 msgstr "Vous devez vérifier la mise en garde en vue de supprimer l'extension" 305 325 306 #: index.php: 559326 #: index.php:631 307 327 msgid "In order to properly uninstall this plugin, you must specify the actions to perform" 308 328 msgstr "Dans le but de désintaller proprement l'extension, vous devez spécifier les actions à effectuer" 309 329 310 #: index.php: 563330 #: index.php:635 311 331 msgid "You understand that if you delete this plugin, the other plugins that use there tables and classes will no longer work." 312 332 msgstr "Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces tables et classes ne fonctionneront plus." 313 333 314 #: index.php: 536334 #: index.php:608 315 335 msgid "Delete plugin files" 316 336 msgstr "Supprimer les fichiers de l'extension" 317 337 318 #: index.php: 565338 #: index.php:637 319 339 msgid "Delete plugin database table" 320 340 msgstr "Supprimer la table de l'extension dans la base de donnée" 321 341 322 #: index.php: 567342 #: index.php:639 323 343 msgid "Delete plugin settings" 324 344 msgstr "Supprimer les paramètres de l'extension" 325 345 326 #: index.php: 583346 #: index.php:655 327 347 msgid "About" 328 348 msgstr "À propos" 329 349 330 #: index.php: 584350 #: index.php:656 331 351 msgid "Version:" 332 352 msgstr "Version :" 333 353 334 #: index.php: 586354 #: index.php:658 335 355 msgid "Support:" 336 356 msgstr "Support :" 337 357 338 #: index.php: 592358 #: index.php:664 339 359 msgid "Copyrights:" 340 360 msgstr "Droits :" 341 361 342 #: index.php:6 00362 #: index.php:672 343 363 msgid "Images" 344 364 msgstr "Images" 345 365 346 #: index.php:6 07366 #: index.php:679 347 367 msgid "Tools" 348 368 msgstr "Outils" 349 369 350 #: index.php:6 13370 #: index.php:685 351 371 msgid "Special thanks to" 352 372 msgstr "Remerciement à"
Note: See TracChangeset
for help on using the changeset viewer.