Changeset 1865
- Timestamp:
- 11/09/09 11:01:46 (13 years ago)
- Location:
- plugins/rateIt
- Files:
-
- 9 added
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/rateIt/_admin.php
r1458 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/_define.php
r1486 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 … … 18 17 /* Description*/ "Rating system for your posts", 19 18 /* Author */ "JC Denis", 20 /* Version */ '0.9. 6',19 /* Version */ '0.9.7', 21 20 /* Permissions */ 'admin' 22 21 ); 23 /* date */ #2009 092322 /* date */ #20091109 24 23 ?> -
plugins/rateIt/_install.php
r1458 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/_prepend.php
r1458 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 … … 33 32 34 33 # Add rateIt report on plugin activityReport 35 if ( $core->activityReport instanceof activityReport)34 if (defined('ACTIVITY_REPORT')) 36 35 { 37 36 require_once dirname(__FILE__).'/inc/lib.rateit.activityreport.php'; -
plugins/rateIt/_public.php
r1486 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 … … 611 610 $res .= '<p><span id="rateit-fullnote-'.$type.'-'.$id.'" class="rateit-fullnote">'.$rs->note.'/'.$rs->quotient.'</span></p>'; 612 611 613 $res .= '<form class="rateit-linker" id="rateit-linker-'.$type.'-'.$id.'" action="'.$core->blog->url.$core->url->getBase('rateItpostform').'/'.$type.'/'.$id.'" method="post"><p>'; 612 $res .= 613 '<form class="rateit-linker" id="rateit-linker-'.$type.'-'.$id.'" action="'.$core->blog->url.$core->url->getBase('rateItpostform').'/'.$type.'/'.$id.'" method="post"><p>'. 614 '<input type="hidden" name="rateit-style" value="'.$core->blog->settings->rateit_style.'" />'; 614 615 615 616 $dis = $voted ? ' disabled="disabled"' : ''; … … 665 666 $p['columns'][] = $core->con->concat("'".$core->blog->url.$core->getPostPublicUrl('post','')."'",'P.post_url').' AS url'; 666 667 $p['columns'][] = 'P.post_title AS title'; 668 $p['columns'][] = 'P.post_id AS id'; 667 669 $p['groups'][] = 'P.post_url'; 668 670 $p['groups'][] = 'P.post_title'; 671 $p['groups'][] = 'P.post_id'; 669 672 $p['from'] .= ' INNER JOIN '.$core->prefix.'post P ON CAST(P.post_id as char)=RI.rateit_id '; 670 673 $p['sql'] .= " AND P.post_type='post' AND P.post_status = 1 AND P.post_password IS NULL "; … … 707 710 $p['columns'][] = $core->con->concat("'".$core->blog->url.$core->url->getBase('gal')."/'",'P.post_url').' AS url'; 708 711 $p['columns'][] = 'P.post_title AS title'; 712 $p['columns'][] = 'P.post_id AS id'; 709 713 $p['groups'][] = 'P.post_url'; 710 714 $p['groups'][] = 'P.post_title'; 715 $p['groups'][] = 'P.post_id'; 711 716 $p['from'] .= ' INNER JOIN '.$core->prefix.'post P ON CAST(P.post_id as char)=RI.rateit_id '; 712 717 $p['sql'] .= "AND post_type='gal' "; … … 718 723 $p['columns'][] = $core->con->concat("'".$core->blog->url.$core->url->getBase('galitem')."/'",'P.post_url').' AS url'; 719 724 $p['columns'][] = 'P.post_title AS title'; 725 $p['columns'][] = 'P.post_id AS id'; 720 726 $p['groups'][] = 'P.post_url'; 721 727 $p['groups'][] = 'P.post_title'; 728 $p['groups'][] = 'P.post_id'; 722 729 $p['from'] .= ' INNER JOIN '.$core->prefix.'post P ON CAST(P.post_id as char)=RI.rateit_id '; 723 730 $p['sql'] .= "AND post_type='galitem' "; … … 767 774 768 775 $i++; 769 $res .= '<li>'.str_replace(array('%rank%','%title%','%note%','%quotient%','%percent%','%count%','%totaltext%'),array( 770 '<span class="rateit-rank">'.$i.'</span>', 771 '<a href="'.$rs->url.'">'.$title.'</a>', 772 round($rs->rateit_avg * $q,$d), 773 $q, 774 floor($rs->rateit_avg * 100), 775 $rs->rateit_total, 776 $totaltext 777 ), 778 $w->text).'</li>'; 776 $res .= '<li>'.str_replace( 777 array( 778 '%rank%', 779 '%title%', 780 '%note%', 781 '%quotient%', 782 '%percent%', 783 '%count%', 784 '%totaltext%', 785 '%entryfirstimage%' 786 ), 787 array( 788 '<span class="rateit-rank">'.$i.'</span>', 789 '<a href="'.$rs->url.'">'.$title.'</a>', 790 round($rs->rateit_avg * $q,$d), 791 $q, 792 floor($rs->rateit_avg * 100), 793 $rs->rateit_total, 794 $totaltext, 795 self::entryFirstImage($core,$w->type,$rs->id) 796 ), 797 $w->text 798 ).'</li>'; 779 799 } 780 800 $res .= '</ul></div>'; 781 801 782 802 return $res; 803 } 804 805 private static function entryFirstImage($core,$type,$id) 806 { 807 if (!in_array($type,array('post','gal','galitem'))) return ''; 808 809 $rs = $core->blog->getPosts(array('post_id'=>$id,'post_type'=>$type)); 810 811 if ($rs->isEmpty()) return ''; 812 813 $size = $core->blog->settings->rateit_firstimage_size; 814 if (!preg_match('/^sq|t|s|m|o$/',$size)) 815 { 816 $size = 's'; 817 } 818 819 $p_url = $core->blog->settings->public_url; 820 $p_site = preg_replace('#^(.+?//.+?)/(.*)$#','$1',$core->blog->url); 821 $p_root = $core->blog->public_path; 822 823 $pattern = '(?:'.preg_quote($p_site,'/').')?'.preg_quote($p_url,'/'); 824 $pattern = sprintf('/<img.+?src="%s(.*?\.(?:jpg|gif|png))"[^>]+/msu',$pattern); 825 826 $src = ''; 827 $alt = ''; 828 829 $subject = $rs->post_excerpt_xhtml.$rs->post_content_xhtml.$rs->cat_desc; 830 if (preg_match_all($pattern,$subject,$m) > 0) 831 { 832 foreach ($m[1] as $i => $img) 833 { 834 if (($src = self::ContentFirstImageLookup($p_root,$img,$size)) !== false) 835 { 836 $src = $p_url.(dirname($img) != '/' ? dirname($img) : '').'/'.$src; 837 if (preg_match('/alt="([^"]+)"/',$m[0][$i],$malt)) 838 { 839 $alt = $malt[1]; 840 } 841 break; 842 } 843 } 844 } 845 if (!$src) return ''; 846 847 return 848 '<div class="img-box">'. 849 '<div class="img-thumbnail">'. 850 '<a title="'.html::escapeHTML($rs->post_title).'" href="'.$rs->getURL().'">'. 851 '<img alt="'.$alt.'" src="'.$src.'" />'. 852 '</a></div>'. 853 "</div>\n"; 854 } 855 856 private static function ContentFirstImageLookup($root,$img,$size) 857 { 858 # Get base name and extension 859 $info = path::info($img); 860 $base = $info['base']; 861 862 if (preg_match('/^\.(.+)_(sq|t|s|m)$/',$base,$m)) { 863 $base = $m[1]; 864 } 865 866 $res = false; 867 if ($size != 'o' && file_exists($root.'/'.$info['dirname'].'/.'.$base.'_'.$size.'.jpg')) 868 { 869 $res = '.'.$base.'_'.$size.'.jpg'; 870 } 871 else 872 { 873 $f = $root.'/'.$info['dirname'].'/'.$base; 874 if (file_exists($f.'.'.$info['extension'])) { 875 $res = $base.'.'.$info['extension']; 876 } elseif (file_exists($f.'.jpg')) { 877 $res = $base.'.jpg'; 878 } elseif (file_exists($f.'.png')) { 879 $res = $base.'.png'; 880 } elseif (file_exists($f.'.gif')) { 881 $res = $base.'.gif'; 882 } 883 } 884 885 if ($res) { 886 return $res; 887 } 888 return false; 783 889 } 784 890 } -
plugins/rateIt/_uninstall.php
r1421 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at -
plugins/rateIt/_widgets.php
r1486 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/default-templates/js/jquery.rateit.js
r1392 r1865 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 2 * This file is part of rateIt, a plugin for Dotclear 2. 3 * 3 * 4 4 * Copyright (c) 2009 JC Denis and contributors 5 5 * jcdenis@gdwd.com 6 * 6 * 7 7 * Licensed under the GPL version 2.0 license. 8 *A copy of this license is available in LICENSE file or at8 * A copy of this license is available in LICENSE file or at 9 9 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 10 10 * -- END LICENSE BLOCK ------------------------------------*/ -
plugins/rateIt/inc/class.rateit.php
r1486 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/inc/class.rateit.rest.php
r1406 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/inc/lib.image.path.php
r1341 r1865 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file 'lib.image.path.php is used under Dotclear 2.4 # 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/inc/lib.rateit.activityreport.php
r1458 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 -
plugins/rateIt/inc/lib.rateit.index.php
r1458 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 … … 57 56 $requests->p_url = 'plugin.php?p=rateIt'; 58 57 59 $requests->msg = isset($_REQUEST['done']) ? __('Configuration s aved') : '';58 $requests->msg = isset($_REQUEST['done']) ? __('Configuration successfully updated') : ''; 60 59 $requests->img_green = '<img alt="" src="images/check-on.png" />'; 61 60 $requests->img_red = '<img alt="" src="images/check-off.png" />'; -
plugins/rateIt/index.php
r1421 r1865 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 4 # 5 5 # Copyright (c) 2009 JC Denis and contributors 6 6 # jcdenis@gdwd.com 7 # 7 # 8 8 # Licensed under the GPL version 2.0 license. 9 9 # A copy of this license is available in LICENSE file or at 10 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 #12 11 # -- END LICENSE BLOCK ------------------------------------ 13 12 … … 68 67 rateItTabs::settingsTab($core,$requests,$combos); 69 68 70 ?> 71 <div class="multi-part" id="about" title="<?php echo __('About'); ?>"> 72 <div class="two-cols"> 73 <div class="col"> 74 <h3>Version:</h3> 75 <ul><li>rateIt <?php echo $core->plugins->moduleInfo('rateIt','version'); ?></li></ul> 76 <h3>Support:</h3> 77 <ul> 78 <li><a href="http://dotclear.jcdenis.com/go/rateIt">Author's blog</a></li> 79 <li><a href="http://dotclear.jcdenis.com/go/rateIt-support">Dotclear forum</a></li> 80 <li><a href="http://lab.dotclear.org/wiki/plugin/rateIt">Dotclear lab</a></li> 81 </ul> 82 <h3>Copyrights:</h3> 83 <ul> 84 <li><strong>Files</strong><br /> 85 These files are parts of rateIt, a plugin for Dotclear 2.<br /> 86 Copyright (c) 2009 JC Denis and contributors<br /> 87 Licensed under the GPL version 2.0 license.<br /> 88 <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">http://www.gnu.org/licenses/old-licenses/gpl-2.0.html</a> 89 </li> 90 <li><strong>Images</strong><br /> 91 Some icons from Silk icon set 1.3 by Mark James at:<br /> 92 <a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a><br /> 93 under a Creative Commons Attribution 2.5 License<br /> 94 <a href="http://creativecommons.org/licenses/by/2.5/">http://creativecommons.org/licenses/by/2.5/</a>. 95 </li> 96 </ul> 97 <h3>Tools:</h3> 98 <ul> 99 <li>Traduced with Dotclear plugin Translater,</li> 100 <li>Packaged with Dotclear plugin Packager.</li> 101 <li>Used jQuery Star Rating Plugin v3.12 by <a href="http://www.fyneworks.com/jquery/star-rating/">Fyneworks</a></li> 102 </ul> 103 </div> 104 <div class="col"> 105 <pre><?php readfile(dirname(__FILE__).'/release.txt'); ?></pre> 106 </div> 107 </div> 108 </div> 69 echo dcPage::helpBlock('rateIt'); ?> 70 109 71 <hr class="clear"/> 110 72 <p class="right"> -
plugins/rateIt/locales/fr/main.lang.php
r1458 r1865 1 1 <?php 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # This file is part of rateIt, a plugin for Dotclear 2. 4 # 5 # Copyright (c) 2009 JC Denis and contributors 6 # jcdenis@gdwd.com 7 # 8 # Licensed under the GPL version 2.0 license. 9 # A copy of this license is available in LICENSE file or at 10 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 # -- END LICENSE BLOCK ------------------------------------ 12 2 13 // Language: français 3 // Module: rateIt - 0.9.3 4 // Date: 2009-09-02 23:05:14 5 // Author: JC Denis, jcdenis@gdwd.com 6 // Translated with dcTranslater - 0.2.4 7 14 // Module: rateIt - 0.9.7 15 // Date: 2009-11-09 09:50:37 16 // Translated with dcTranslater - 1.3 17 18 #_admin.php:19 19 #index.php:25 8 20 #index.php:49 9 21 $GLOBALS['__l10n']['Rate it'] = 'Évaluer ça'; 10 22 23 #_admin.php:54 24 #_admin.php:81 25 #inc/lib.rateit.index.php:99 26 #inc/lib.rateit.index.php:686 27 #inc/lib.rateit.index.php:798 28 #inc/lib.rateit.index.php:914 29 #inc/lib.rateit.index.php:1036 11 30 #inc/lib.rateit.index.php:1091 12 31 $GLOBALS['__l10n']['delete rating'] = 'Effacer les votes'; 13 32 14 33 #_admin.php:83 15 $GLOBALS['__l10n']['Do you really want to delete all votes for these entries?'] = 'Êtes vous sûr de vouloir effacer les votes pour ces entrées?'; 16 17 #_widgets.php:30 34 $GLOBALS['__l10n']['Do you really want to delete all votes for these entries?'] = 'Êtes-vous sûr de vouloir effacer les votes pour ces entrées ?'; 35 36 #_public.php:442 37 #_widgets.php:29 18 38 $GLOBALS['__l10n']['Rate this entry'] = 'Évaluer ce billet'; 19 39 20 #_public.php:4 3840 #_public.php:443 21 41 $GLOBALS['__l10n']['Rate this comment'] = 'Évaluer ce commentaire'; 22 42 23 #_widgets.php:35 43 #_public.php:444 44 #_widgets.php:34 24 45 $GLOBALS['__l10n']['Rate this category'] = 'Évaluer cette catégorie'; 25 46 26 #_widgets.php:41 27 $GLOBALS['__l10n']['Rate this tag'] = 'Évaluer cet tag'; 47 #_public.php:445 48 #_widgets.php:40 49 $GLOBALS['__l10n']['Rate this tag'] = 'Évaluer ce tag'; 50 51 #_public.php:446 52 #_widgets.php:47 53 $GLOBALS['__l10n']['Rate this gallery'] = 'Évaluer cette galerie'; 54 55 #_public.php:447 56 $GLOBALS['__l10n']['Rate this image'] = 'Évaluer cette image'; 57 58 #_public.php:468 59 #_public.php:625 60 $GLOBALS['__l10n']['Vote'] = 'Vote'; 61 62 #_public.php:491 63 #_public.php:770 64 $GLOBALS['__l10n']['no rate'] = 'aucun vote'; 65 66 #_public.php:493 67 #_public.php:772 68 $GLOBALS['__l10n']['one rate'] = 'un vote'; 69 70 #_public.php:495 71 #_public.php:774 72 $GLOBALS['__l10n']['%d rates'] = '%d votes'; 73 74 #_public.php:632 75 #default-templates/tpl/rateit.html:7 76 $GLOBALS['__l10n']['Note:'] = 'Note :'; 77 78 #_public.php:634 79 #default-templates/tpl/rateit.html:8 80 $GLOBALS['__l10n']['Votes:'] = 'Votes :'; 81 82 #_public.php:636 83 #default-templates/tpl/rateit.html:9 84 $GLOBALS['__l10n']['Higher:'] = 'Plus haute :'; 85 86 #_public.php:638 87 #default-templates/tpl/rateit.html:10 88 $GLOBALS['__l10n']['Lower:'] = 'Plus basse :'; 89 90 #_widgets.php:24 91 $GLOBALS['__l10n']['Rating'] = 'Évaluation'; 92 93 #_widgets.php:26 94 $GLOBALS['__l10n']['Enable vote for entries'] = 'Autoriser le vote pour les billets'; 95 96 #_widgets.php:28 97 $GLOBALS['__l10n']['Title for entries:'] = 'Titre pour les billets :'; 98 99 #_widgets.php:31 100 $GLOBALS['__l10n']['Enable vote for categories'] = 'Autoriser le vote sur les catégories'; 101 102 #_widgets.php:33 103 $GLOBALS['__l10n']['Title for categories:'] = 'Titre pour les catégories'; 104 105 #_widgets.php:37 106 $GLOBALS['__l10n']['Enable vote for tags'] = 'Autoriser le vote pour les tags'; 107 108 #_widgets.php:39 109 $GLOBALS['__l10n']['Title for tags:'] = 'Titre pour les tags'; 110 111 #_widgets.php:44 112 $GLOBALS['__l10n']['Enable vote for gallery'] = 'Autoriser le vote pour les galeries'; 113 114 #_widgets.php:46 115 $GLOBALS['__l10n']['Title for gallery:'] = 'Titre pour les galeries'; 28 116 29 117 #_widgets.php:48 30 $GLOBALS['__l10n']['Rate this gallery'] = 'Évaluer cette galerie';31 32 #_public.php:44233 $GLOBALS['__l10n']['Rate this image'] = 'Évaluer cette image';34 35 #_public.php:61836 $GLOBALS['__l10n']['Vote'] = 'Vote';37 38 #_public.php:75739 $GLOBALS['__l10n']['no rate'] = 'aucun vote';40 41 #_public.php:75942 $GLOBALS['__l10n']['one rate'] = 'un vote';43 44 #_public.php:76145 $GLOBALS['__l10n']['%d rates'] = '%d votes';46 47 #_public.php:62548 $GLOBALS['__l10n']['Note:'] = 'Note :';49 50 #_public.php:62751 $GLOBALS['__l10n']['Votes:'] = 'Votes :';52 53 #_public.php:62954 $GLOBALS['__l10n']['Higher:'] = 'Plus haute :';55 56 #_public.php:63157 $GLOBALS['__l10n']['Lower:'] = 'Plus basse :';58 59 #_widgets.php:2560 $GLOBALS['__l10n']['Rating'] = 'Évaluation';61 62 #_widgets.php:2763 $GLOBALS['__l10n']['Enable vote for entries'] = 'Autoriser le vote pour les billets';64 65 #_widgets.php:2966 $GLOBALS['__l10n']['Title for entries:'] = 'Titre pour les billets :';67 68 #_widgets.php:3269 $GLOBALS['__l10n']['Enable vote for categories'] = 'Autoriser le vote sur les catégories';70 71 #_widgets.php:3472 $GLOBALS['__l10n']['Title for categories:'] = 'Titre pour les catégories';73 74 #_widgets.php:3875 $GLOBALS['__l10n']['Enable vote for tags'] = 'Autoriser le vote pour les tags';76 77 #_widgets.php:4078 $GLOBALS['__l10n']['Title for tags:'] = 'Titre pour les tags';79 80 #_widgets.php:4581 $GLOBALS['__l10n']['Enable vote for gallery'] = 'Autoriser le vote pour les galeries';82 83 #_widgets.php:4784 $GLOBALS['__l10n']['Title for gallery:'] = 'Titre pour les galeries';85 86 #_widgets.php:4987 118 $GLOBALS['__l10n']['Enable vote for gallery item'] = 'Autoriser le vote pour les images'; 88 119 120 #_widgets.php:50 121 $GLOBALS['__l10n']['Title for gallery item:'] = 'Titre pour les images'; 122 89 123 #_widgets.php:51 90 $GLOBALS['__l10n']['Title for gallery item:'] = 'Titre pour les images';91 92 #_widgets.php:5293 124 $GLOBALS['__l10n']['Rate this gallery item'] = 'Évaluer cette image'; 94 125 126 #_widgets.php:58 127 $GLOBALS['__l10n']['Show full note'] = 'Afficher la note complète'; 128 95 129 #_widgets.php:59 96 $GLOBALS['__l10n']['Show full note'] = 'Afficher la note complète'; 130 $GLOBALS['__l10n']['Hidden'] = 'Masquer'; 131 132 #_widgets.php:59 133 $GLOBALS['__l10n']['Full note (5/20)'] = 'Note complète'; 134 135 #_widgets.php:59 136 $GLOBALS['__l10n']['Percent (25%)'] = 'Pourcentage'; 97 137 98 138 #_widgets.php:60 99 $GLOBALS['__l10n']['Hidden'] = 'Masquer';100 101 #_widgets.php:60102 $GLOBALS['__l10n']['Full note (5/20)'] = 'Note complète';103 104 #_widgets.php:60105 $GLOBALS['__l10n']['Percent (25%)'] = 'Pourcentage';106 107 #_widgets.php:61108 139 $GLOBALS['__l10n']['Show note'] = 'Afficher la note'; 109 140 110 #_widgets.php:6 3141 #_widgets.php:62 111 142 $GLOBALS['__l10n']['Show the count of vote'] = 'Afficher le nombre de votes'; 112 143 113 #_widgets.php:6 5144 #_widgets.php:64 114 145 $GLOBALS['__l10n']['Show the highest rate'] = 'Afficher la note la plus haute'; 115 146 116 #_widgets.php:6 7147 #_widgets.php:66 117 148 $GLOBALS['__l10n']['Show the lowest rate'] = 'Afficher la note la plus basse'; 118 149 119 #_widgets.php:7 8150 #_widgets.php:77 120 151 $GLOBALS['__l10n']['Top rating'] = 'Top évaluation'; 121 152 122 #_widgets.php:8 1153 #_widgets.php:80 123 154 $GLOBALS['__l10n']['Top rated entries'] = 'Billets les mieux notés'; 124 155 156 #_widgets.php:97 157 $GLOBALS['__l10n']['Gallery'] = 'Galerie'; 158 125 159 #_widgets.php:98 126 $GLOBALS['__l10n']['Gallery'] = 'Galerie';127 128 #_widgets.php:99129 160 $GLOBALS['__l10n']['Gallery item'] = 'Image'; 130 161 131 #_widgets.php:1 10162 #_widgets.php:109 132 163 $GLOBALS['__l10n']['Length:'] = 'Longueur :'; 133 164 165 #_widgets.php:112 166 #inc/lib.rateit.index.php:261 167 #inc/lib.rateit.index.php:371 168 #inc/lib.rateit.index.php:430 169 #inc/lib.rateit.index.php:670 170 #inc/lib.rateit.index.php:782 171 #inc/lib.rateit.index.php:901 172 #inc/lib.rateit.index.php:1023 173 #inc/lib.rateit.index.php:1078 134 174 #inc/lib.rateit.index.php:1195 135 175 $GLOBALS['__l10n']['Note'] = 'Note'; 136 176 177 #_widgets.php:113 178 #inc/lib.rateit.index.php:141 179 #inc/lib.rateit.index.php:369 180 #inc/lib.rateit.index.php:671 181 #inc/lib.rateit.index.php:783 182 #inc/lib.rateit.index.php:900 183 #inc/lib.rateit.index.php:1022 184 #inc/lib.rateit.index.php:1077 137 185 #inc/lib.rateit.index.php:1194 138 186 $GLOBALS['__l10n']['Votes'] = 'Votes'; … … 153 201 $GLOBALS['__l10n']['You have already voted'] = 'Vous avez déjà voté'; 154 202 155 #inc/lib.rateit.index.php:59 156 $GLOBALS['__l10n']['Configuration saved'] = 'Configuration enregistrée'; 203 #inc/lib.rateit.activityreport.php:17 204 $GLOBALS['__l10n']['Plugin rateIt'] = 'Extension "Évaluer ça"'; 205 206 #inc/lib.rateit.activityreport.php:23 207 $GLOBALS['__l10n']['new vote'] = 'nouveau vote'; 208 209 #inc/lib.rateit.activityreport.php:24 210 $GLOBALS['__l10n']['New vote of type "%s" was set with note of %s/%s'] = 'Un nouveau vote de type "%s" a été effectué avec une note de %s/%s'; 157 211 158 212 #inc/lib.rateit.index.php:196 … … 163 217 164 218 #inc/lib.rateit.index.php:228 165 $GLOBALS['__l10n']['Something went wrong while download file'] = 'Une erreur est survenue lors d etéléchargement de l\'image';219 $GLOBALS['__l10n']['Something went wrong while download file'] = 'Une erreur est survenue lors du téléchargement de l\'image'; 166 220 167 221 #inc/lib.rateit.index.php:231 168 222 $GLOBALS['__l10n']['Image must be in png format'] = 'L\'image doit être au format png'; 169 223 224 #inc/lib.rateit.index.php:247 225 #inc/lib.rateit.index.php:372 170 226 #inc/lib.rateit.index.php:432 171 227 $GLOBALS['__l10n']['Ip'] = 'Ip'; … … 181 237 182 238 #inc/lib.rateit.index.php:258 183 $GLOBALS['__l10n']['Disable public javascript'] = 'Désactiver le javascript publi que';239 $GLOBALS['__l10n']['Disable public javascript'] = 'Désactiver le javascript public'; 184 240 185 241 #inc/lib.rateit.index.php:259 186 $GLOBALS['__l10n']['Disable public css'] = 'Désactiver l eCSS publique';242 $GLOBALS['__l10n']['Disable public css'] = 'Désactiver la CSS publique'; 187 243 188 244 #inc/lib.rateit.index.php:260 … … 213 269 $GLOBALS['__l10n']['Rating image exists on theme it will be used:'] = 'L\'image d\'évaluation existe dans le thème, elle sera utilisée'; 214 270 271 #inc/lib.rateit.index.php:280 215 272 #inc/lib.rateit.index.php:285 216 273 $GLOBALS['__l10n']['negative'] = 'négatif'; 217 274 275 #inc/lib.rateit.index.php:280 218 276 #inc/lib.rateit.index.php:285 219 277 $GLOBALS['__l10n']['positive'] = 'positif'; 220 278 279 #inc/lib.rateit.index.php:280 221 280 #inc/lib.rateit.index.php:285 222 281 $GLOBALS['__l10n']['hover'] = 'survole'; 223 282 283 #inc/lib.rateit.index.php:280 224 284 #inc/lib.rateit.index.php:285 225 285 $GLOBALS['__l10n']['size'] = 'taille'; 226 286 227 287 #inc/lib.rateit.index.php:284 228 $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 :';288 $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 :'; 229 289 230 290 #inc/lib.rateit.index.php:311 … … 240 300 $GLOBALS['__l10n']['Last'] = 'Dernier'; 241 301 302 #inc/lib.rateit.index.php:373 303 #inc/lib.rateit.index.php:434 304 #inc/lib.rateit.index.php:674 242 305 #inc/lib.rateit.index.php:786 243 306 $GLOBALS['__l10n']['Id'] = 'Id'; … … 276 339 $GLOBALS['__l10n']['Limit to one category'] = 'Limiter à une catégorie'; 277 340 341 #inc/lib.rateit.index.php:522 278 342 #inc/lib.rateit.index.php:988 279 343 $GLOBALS['__l10n']['To use this option you must have behavior "publicEntryAfterContent" in your theme'] = 'Pour utiliser cette option vous devez avoir le behavior "publicEntryAfterContent" dans votre thème'; … … 286 350 287 351 #inc/lib.rateit.index.php:533 288 $GLOBALS['__l10n']['This is the list of all entries having rating'] = 'Ceci est la liste des billets a illantdes votes';352 $GLOBALS['__l10n']['This is the list of all entries having rating'] = 'Ceci est la liste des billets ayant reçu des votes'; 289 353 290 354 #inc/lib.rateit.index.php:624 … … 294 358 $GLOBALS['__l10n']['Disactivate addon category'] = 'Désactiver l\'extension pour les catégories'; 295 359 360 #inc/lib.rateit.index.php:653 361 #inc/lib.rateit.index.php:761 362 #inc/lib.rateit.index.php:883 363 #inc/lib.rateit.index.php:1003 364 #inc/lib.rateit.index.php:1058 296 365 #inc/lib.rateit.index.php:1245 297 366 $GLOBALS['__l10n']['Show rating details'] = 'Voir le détail des votes'; … … 301 370 302 371 #inc/lib.rateit.index.php:666 303 $GLOBALS['__l10n']['This is a list of all the categories having rating'] = 'Ceci est la liste des toutes les catégories aillant des votes'; 304 372 $GLOBALS['__l10n']['This is a list of all the categories having rating'] = 'Ceci est la liste des toutes les catégories ayant reçu des votes'; 373 374 #inc/lib.rateit.index.php:672 375 #inc/lib.rateit.index.php:784 376 #inc/lib.rateit.index.php:902 377 #inc/lib.rateit.index.php:1024 378 #inc/lib.rateit.index.php:1079 305 379 #inc/lib.rateit.index.php:1196 306 380 $GLOBALS['__l10n']['Higher'] = 'Haute'; 307 381 382 #inc/lib.rateit.index.php:673 383 #inc/lib.rateit.index.php:785 384 #inc/lib.rateit.index.php:903 385 #inc/lib.rateit.index.php:1025 386 #inc/lib.rateit.index.php:1080 308 387 #inc/lib.rateit.index.php:1197 309 388 $GLOBALS['__l10n']['Lower'] = 'Basse'; … … 334 413 335 414 #inc/lib.rateit.index.php:778 336 $GLOBALS['__l10n']['This is a list of all the comments having rating'] = 'Ceci est la liste de s toutes les commentaires aillantdes votes';415 $GLOBALS['__l10n']['This is a list of all the comments having rating'] = 'Ceci est la liste de tous les commentaires ayant reçu des votes'; 337 416 338 417 #inc/lib.rateit.index.php:855 … … 343 422 344 423 #inc/lib.rateit.index.php:891 345 $GLOBALS['__l10n']['This is a list of all the tags having rating'] = 'Ceci est la liste des tags a illantsdes votes';424 $GLOBALS['__l10n']['This is a list of all the tags having rating'] = 'Ceci est la liste des tags ayant reçu des votes'; 346 425 347 426 #inc/lib.rateit.index.php:895 … … 373 452 374 453 #inc/lib.rateit.index.php:1013 375 $GLOBALS['__l10n']['This is a list of all the galleries having rating'] = 'Ceci est la liste des galeries a illantsdes votes';454 $GLOBALS['__l10n']['This is a list of all the galleries having rating'] = 'Ceci est la liste des galeries ayant reçu des votes'; 376 455 377 456 #inc/lib.rateit.index.php:1017 … … 385 464 386 465 #inc/lib.rateit.index.php:1068 387 $GLOBALS['__l10n']['This is a list of all the galleries items having rating'] = 'Ceci est la liste des images a illantsdes votes';466 $GLOBALS['__l10n']['This is a list of all the galleries items having rating'] = 'Ceci est la liste des images ayant reçu des votes'; 388 467 389 468 #inc/lib.rateit.index.php:1072 … … 393 472 $GLOBALS['__l10n']['Selected galeries items action:'] = 'Action sur les images selectionnées :'; 394 473 395 #index.php:71396 $GLOBALS['__l10n']['About'] = 'À propos';397 398 474 ?> -
plugins/rateIt/locales/fr/main.po
r1786 r1865 1 1 # Language: français 2 # Module: rateIt - 0.9. 33 # Date: 2009- 09-02 23:05:144 # Author: JC Denis, jcdenis@gdwd.com5 # Translated with dcTranslater - 0.2.4 2 # Module: rateIt - 0.9.7 3 # Date: 2009-11-09 09:50:37 4 # Translated with translater 1.3 5 6 6 msgid "" 7 7 msgstr "" 8 8 "Content-Type: text/plain; charset=UTF-8\n" 9 "Project-Id-Version: \n"9 "Project-Id-Version: rateIt 0.9.7\n" 10 10 "POT-Creation-Date: \n" 11 "PO-Revision-Date: \n"12 "Last-Translator: Kozlika <kozlika@free.fr>\n"11 "PO-Revision-Date: 2009-11-09T09:50:37+00:00\n" 12 "Last-Translator: JC Denis\n" 13 13 "Language-Team: \n" 14 14 "MIME-Version: 1.0\n" 15 15 "Content-Transfer-Encoding: 8bit\n" 16 16 17 #: _admin.php:19 18 #: index.php:25 17 19 #: index.php:49 18 20 msgid "Rate it" 19 21 msgstr "Évaluer ça" 20 22 23 #: _admin.php:54 24 #: _admin.php:81 25 #: inc/lib.rateit.index.php:99 26 #: inc/lib.rateit.index.php:686 27 #: inc/lib.rateit.index.php:798 28 #: inc/lib.rateit.index.php:914 29 #: inc/lib.rateit.index.php:1036 21 30 #: inc/lib.rateit.index.php:1091 22 31 msgid "delete rating" … … 27 36 msgstr "Êtes-vous sûr de vouloir effacer les votes pour ces entrées ?" 28 37 29 #: _widgets.php:30 38 #: _public.php:442 39 #: _widgets.php:29 30 40 msgid "Rate this entry" 31 41 msgstr "Évaluer ce billet" 32 42 33 #: _public.php:4 3843 #: _public.php:443 34 44 msgid "Rate this comment" 35 45 msgstr "Évaluer ce commentaire" 36 46 37 #: _widgets.php:35 47 #: _public.php:444 48 #: _widgets.php:34 38 49 msgid "Rate this category" 39 50 msgstr "Évaluer cette catégorie" 40 51 41 #: _widgets.php:41 52 #: _public.php:445 53 #: _widgets.php:40 42 54 msgid "Rate this tag" 43 55 msgstr "Évaluer ce tag" 44 56 45 #: _widgets.php:48 57 #: _public.php:446 58 #: _widgets.php:47 46 59 msgid "Rate this gallery" 47 60 msgstr "Évaluer cette galerie" 48 61 49 #: _public.php:44 262 #: _public.php:447 50 63 msgid "Rate this image" 51 64 msgstr "Évaluer cette image" 52 65 53 #: _public.php:618 66 #: _public.php:468 67 #: _public.php:625 54 68 msgid "Vote" 55 69 msgstr "Vote" 56 70 57 #: _public.php:757 71 #: _public.php:491 72 #: _public.php:770 58 73 msgid "no rate" 59 74 msgstr "aucun vote" 60 75 61 #: _public.php:759 76 #: _public.php:493 77 #: _public.php:772 62 78 msgid "one rate" 63 79 msgstr "un vote" 64 80 65 #: _public.php:761 81 #: _public.php:495 82 #: _public.php:774 66 83 msgid "%d rates" 67 84 msgstr "%d votes" 68 85 69 #: _public.php:625 86 #: _public.php:632 87 #: default-templates/tpl/rateit.html:7 70 88 msgid "Note:" 71 89 msgstr "Note :" 72 90 73 #: _public.php:627 91 #: _public.php:634 92 #: default-templates/tpl/rateit.html:8 74 93 msgid "Votes:" 75 94 msgstr "Votes :" 76 95 77 #: _public.php:629 96 #: _public.php:636 97 #: default-templates/tpl/rateit.html:9 78 98 msgid "Higher:" 79 99 msgstr "Plus haute :" 80 100 81 #: _public.php:631 101 #: _public.php:638 102 #: default-templates/tpl/rateit.html:10 82 103 msgid "Lower:" 83 104 msgstr "Plus basse :" 84 105 85 #: _widgets.php:2 5106 #: _widgets.php:24 86 107 msgid "Rating" 87 108 msgstr "Évaluation" 88 109 89 #: _widgets.php:2 7110 #: _widgets.php:26 90 111 msgid "Enable vote for entries" 91 112 msgstr "Autoriser le vote pour les billets" 92 113 93 #: _widgets.php:2 9114 #: _widgets.php:28 94 115 msgid "Title for entries:" 95 116 msgstr "Titre pour les billets :" 96 117 97 #: _widgets.php:3 2118 #: _widgets.php:31 98 119 msgid "Enable vote for categories" 99 120 msgstr "Autoriser le vote sur les catégories" 100 121 101 #: _widgets.php:3 4122 #: _widgets.php:33 102 123 msgid "Title for categories:" 103 124 msgstr "Titre pour les catégories" 104 125 105 #: _widgets.php:3 8126 #: _widgets.php:37 106 127 msgid "Enable vote for tags" 107 128 msgstr "Autoriser le vote pour les tags" 108 129 109 #: _widgets.php: 40130 #: _widgets.php:39 110 131 msgid "Title for tags:" 111 132 msgstr "Titre pour les tags" 112 133 113 #: _widgets.php:4 5134 #: _widgets.php:44 114 135 msgid "Enable vote for gallery" 115 136 msgstr "Autoriser le vote pour les galeries" 116 137 117 #: _widgets.php:4 7138 #: _widgets.php:46 118 139 msgid "Title for gallery:" 119 140 msgstr "Titre pour les galeries" 120 141 121 #: _widgets.php:4 9142 #: _widgets.php:48 122 143 msgid "Enable vote for gallery item" 123 144 msgstr "Autoriser le vote pour les images" 124 145 125 #: _widgets.php:5 1146 #: _widgets.php:50 126 147 msgid "Title for gallery item:" 127 148 msgstr "Titre pour les images" 128 149 129 #: _widgets.php:5 2150 #: _widgets.php:51 130 151 msgid "Rate this gallery item" 131 152 msgstr "Évaluer cette image" 132 153 133 #: _widgets.php:5 9154 #: _widgets.php:58 134 155 msgid "Show full note" 135 156 msgstr "Afficher la note complète" 136 157 137 #: _widgets.php: 60158 #: _widgets.php:59 138 159 msgid "Hidden" 139 160 msgstr "Masquer" 140 161 141 #: _widgets.php: 60162 #: _widgets.php:59 142 163 msgid "Full note (5/20)" 143 164 msgstr "Note complète" 144 165 145 #: _widgets.php: 60166 #: _widgets.php:59 146 167 msgid "Percent (25%)" 147 168 msgstr "Pourcentage" 148 169 149 #: _widgets.php:6 1170 #: _widgets.php:60 150 171 msgid "Show note" 151 172 msgstr "Afficher la note" 152 173 153 #: _widgets.php:6 3174 #: _widgets.php:62 154 175 msgid "Show the count of vote" 155 176 msgstr "Afficher le nombre de votes" 156 177 157 #: _widgets.php:6 5178 #: _widgets.php:64 158 179 msgid "Show the highest rate" 159 180 msgstr "Afficher la note la plus haute" 160 181 161 #: _widgets.php:6 7182 #: _widgets.php:66 162 183 msgid "Show the lowest rate" 163 184 msgstr "Afficher la note la plus basse" 164 185 165 #: _widgets.php:7 8186 #: _widgets.php:77 166 187 msgid "Top rating" 167 188 msgstr "Top évaluation" 168 189 169 #: _widgets.php:8 1190 #: _widgets.php:80 170 191 msgid "Top rated entries" 171 192 msgstr "Billets les mieux notés" 172 193 173 #: _widgets.php:9 8194 #: _widgets.php:97 174 195 msgid "Gallery" 175 196 msgstr "Galerie" 176 197 177 #: _widgets.php:9 9198 #: _widgets.php:98 178 199 msgid "Gallery item" 179 200 msgstr "Image" 180 201 181 #: _widgets.php:1 10202 #: _widgets.php:109 182 203 msgid "Length:" 183 204 msgstr "Longueur :" 184 205 206 #: _widgets.php:112 207 #: inc/lib.rateit.index.php:261 208 #: inc/lib.rateit.index.php:371 209 #: inc/lib.rateit.index.php:430 210 #: inc/lib.rateit.index.php:670 211 #: inc/lib.rateit.index.php:782 212 #: inc/lib.rateit.index.php:901 213 #: inc/lib.rateit.index.php:1023 214 #: inc/lib.rateit.index.php:1078 185 215 #: inc/lib.rateit.index.php:1195 186 216 msgid "Note" 187 217 msgstr "Note" 188 218 219 #: _widgets.php:113 220 #: inc/lib.rateit.index.php:141 221 #: inc/lib.rateit.index.php:369 222 #: inc/lib.rateit.index.php:671 223 #: inc/lib.rateit.index.php:783 224 #: inc/lib.rateit.index.php:900 225 #: inc/lib.rateit.index.php:1022 226 #: inc/lib.rateit.index.php:1077 189 227 #: inc/lib.rateit.index.php:1194 190 228 msgid "Votes" … … 211 249 msgstr "Vous avez déjà voté" 212 250 213 #: inc/lib.rateit.index.php:59 214 msgid "Configuration saved" 215 msgstr "Configuration enregistrée" 251 #: inc/lib.rateit.activityreport.php:17 252 msgid "Plugin rateIt" 253 msgstr "Extension \"Évaluer ça\"" 254 255 #: inc/lib.rateit.activityreport.php:23 256 msgid "new vote" 257 msgstr "nouveau vote" 258 259 #: inc/lib.rateit.activityreport.php:24 260 msgid "New vote of type \"%s\" was set with note of %s/%s" 261 msgstr "Un nouveau vote de type \"%s\" a été effectué avec une note de %s/%s" 216 262 217 263 #: inc/lib.rateit.index.php:196 … … 231 277 msgstr "L'image doit être au format png" 232 278 279 #: inc/lib.rateit.index.php:247 280 #: inc/lib.rateit.index.php:372 233 281 #: inc/lib.rateit.index.php:432 234 282 msgid "Ip" … … 272 320 273 321 #: inc/lib.rateit.index.php:266 274 msgid "This disables the file "rateit.css" if you want to include your styles directly in the CSS file of the theme."322 msgid "This disables the file \"rateit.css\" if you want to include your styles directly in the CSS file of the theme." 275 323 msgstr "Ceci désactive le fichier \"rateit.css\" si vous souhaitez directement inclure vos styles dans le fichier CSS du thème." 276 324 … … 291 339 msgstr "L'image d'évaluation existe dans le thème, elle sera utilisée" 292 340 341 #: inc/lib.rateit.index.php:280 293 342 #: inc/lib.rateit.index.php:285 294 343 msgid "negative" 295 344 msgstr "négatif" 296 345 346 #: inc/lib.rateit.index.php:280 297 347 #: inc/lib.rateit.index.php:285 298 348 msgid "positive" 299 349 msgstr "positif" 300 350 351 #: inc/lib.rateit.index.php:280 301 352 #: inc/lib.rateit.index.php:285 302 353 msgid "hover" 303 msgstr "survol" 304 354 msgstr "survole" 355 356 #: inc/lib.rateit.index.php:280 305 357 #: inc/lib.rateit.index.php:285 306 358 msgid "size" … … 327 379 msgstr "Dernier" 328 380 381 #: inc/lib.rateit.index.php:373 382 #: inc/lib.rateit.index.php:434 383 #: inc/lib.rateit.index.php:674 329 384 #: inc/lib.rateit.index.php:786 330 385 msgid "Id" … … 332 387 333 388 #: inc/lib.rateit.index.php:421 334 msgid "This is detailed list for rating of type "%s" and id "%s""389 msgid "This is detailed list for rating of type \"%s\" and id \"%s\"" 335 390 msgstr "Ceci est la liste détaillée des votes de type %s et d'id %s" 336 391 … … 375 430 msgstr "Limiter à une catégorie" 376 431 432 #: inc/lib.rateit.index.php:522 377 433 #: inc/lib.rateit.index.php:988 378 msgid "To use this option you must have behavior "publicEntryAfterContent" in your theme"379 msgstr "Pour utiliser cette option le behavior \"publicEntryAfterContent\" doit être présentdans votre thème"434 msgid "To use this option you must have behavior \"publicEntryAfterContent\" in your theme" 435 msgstr "Pour utiliser cette option vous devez avoir le behavior \"publicEntryAfterContent\" dans votre thème" 380 436 381 437 #: inc/lib.rateit.index.php:527 … … 399 455 msgstr "Désactiver l'extension pour les catégories" 400 456 457 #: inc/lib.rateit.index.php:653 458 #: inc/lib.rateit.index.php:761 459 #: inc/lib.rateit.index.php:883 460 #: inc/lib.rateit.index.php:1003 461 #: inc/lib.rateit.index.php:1058 401 462 #: inc/lib.rateit.index.php:1245 402 463 msgid "Show rating details" … … 411 472 msgstr "Ceci est la liste des toutes les catégories ayant reçu des votes" 412 473 474 #: inc/lib.rateit.index.php:672 475 #: inc/lib.rateit.index.php:784 476 #: inc/lib.rateit.index.php:902 477 #: inc/lib.rateit.index.php:1024 478 #: inc/lib.rateit.index.php:1079 413 479 #: inc/lib.rateit.index.php:1196 414 480 msgid "Higher" 415 481 msgstr "Haute" 416 482 483 #: inc/lib.rateit.index.php:673 484 #: inc/lib.rateit.index.php:785 485 #: inc/lib.rateit.index.php:903 486 #: inc/lib.rateit.index.php:1025 487 #: inc/lib.rateit.index.php:1080 417 488 #: inc/lib.rateit.index.php:1197 418 489 msgid "Lower" … … 440 511 441 512 #: inc/lib.rateit.index.php:747 442 msgid "To use this option you must have behavior "publicCommentAfterContent" in your theme"443 msgstr "Pour utiliser cette option le behavior \"publicCommentAfterContent\" doit être présentdans votre thème"513 msgid "To use this option you must have behavior \"publicCommentAfterContent\" in your theme" 514 msgstr "Pour utiliser cette option vous devez avoir le behavior \"publicCommentAfterContent\" dans votre thème" 444 515 445 516 #: inc/lib.rateit.index.php:771 … … 531 602 msgstr "Action sur les images selectionnées :" 532 603 533 #: index.php:71534 msgid "About"535 msgstr "À propos"536 -
plugins/rateIt/release.txt
r1486 r1865 1 1 x.x.x xxxxxxxx 2 2 - Not fixed bug with rate by cookie 3 4 0.9.7 20091108 5 * Added entryFirstImage to wigdet 6 * Fixed bug with date sorting on widget 7 * Fixed bug with plugin ativityReport 8 * Removed about tabs and fixed typo 3 9 4 10 0.9.6 20090923
Note: See TracChangeset
for help on using the changeset viewer.