Dotclear

Changeset 3139


Ignore:
Timestamp:
07/05/13 07:56:47 (10 years ago)
Author:
JcDenis
Message:
  • Required Dotclear 2.5
  • Fixed admin pages titles and messages and typo
  • Added Favorites icon
  • Added new 'homeonly' option on widgets
  • Fixed https protocol
  • Added option to keep active empty feeds
  • Added option to transform imported tags
Location:
plugins/zoneclearFeedServer
Files:
1 added
23 edited

Legend:

Unmodified
Added
Removed
  • plugins/zoneclearFeedServer/_admin.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    3133     # Dashboard icon 
    3234     $core->addBehavior('adminDashboardIcons',array('zoneclearFeedServerAdminBehaviors','adminDashboardIcons')); 
     35     $core->addBehavior('adminDashboardFavs',array('zoneclearFeedServerAdminBehaviors','adminDashboardFavs')); 
     36     $core->addBehavior('adminDashboardFavsIcon',array('zoneclearFeedServerAdminBehaviors','adminDashboardFavsIcon')); 
    3337     # Add info about feed on post page sidebar 
    3438     $core->addBehavior('adminPostHeaders',array('zoneclearFeedServerAdminBehaviors','adminPostHeaders')); 
     
    4549class zoneclearFeedServerAdminBehaviors 
    4650{ 
     51     # Cope with dashboard favorites 
     52     public static function adminDashboardFavs($core,$favs) 
     53     { 
     54          $favs['zcfs'] = new ArrayObject(array('zcfs','Feeds server','plugin.php?p=zoneclearFeedServer', 
     55               'index.php?pf=zoneclearFeedServer/icon.png','index.php?pf=zoneclearFeedServer/icon-b.png', 
     56               'usage,contentadmin',null,null)); 
     57     } 
     58 
     59     # Change icon on dashboard if there are disabled feeds 
     60     public static function adminDashboardFavsIcon($core,$name,$icon) 
     61     { 
     62          if ($name == 'zcfs') { 
     63               $zcfs = new zoneclearFeedServer($core); 
     64               $count = $zcfs->getFeeds(array('feed_status'=>'0'),true)->f(0); 
     65               if ($count) { 
     66                    $icon[0] = $count > 1 ? __('%s disabled feeds') : __('one disable feed'); 
     67                    $icon[1] = 'plugin.php?p=zoneclearFeedServer&part=feeds&sortby=feed_status&order=asc'; 
     68                    $icon[2] = 'index.php?pf=zoneclearFeedServer/icon-bb.png'; 
     69               } 
     70          } 
     71     } 
     72 
    4773     # Add icon on dashboard if there are disabled feeds 
    4874     public static function adminDashboardIcons($core,$icons) 
     
    5783               sprintf($str,$count), 
    5884               'plugin.php?p=zoneclearFeedServer&part=feeds&sortby=feed_status&order=asc', 
    59                'index.php?pf=zoneclearFeedServer/icon-b.png' 
     85               'index.php?pf=zoneclearFeedServer/icon-bb.png' 
    6086          )); 
    6187     } 
  • plugins/zoneclearFeedServer/_define.php

    r2928 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    1719     /* Description*/         "Mix your blog with a feeds planet", 
    1820     /* Author */             "JC Denis, BG", 
    19      /* Version */            '1.3.1', 
     21     /* Version */            '2013.07.04', 
    2022     /* Permissions */        'admin' 
    2123); 
    22      /* date */          #20110130 
    2324?> 
  • plugins/zoneclearFeedServer/_install.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    2123{ 
    2224     # Check DC version (dev on) 
    23      if (version_compare(str_replace("-r","-p",DC_VERSION),'2.2-alpha','<')) 
     25     if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')) 
    2426     { 
    25           throw new Exception('zoneclearFeedServer requires Dotclear 2.2'); 
     27          throw new Exception('zoneclearFeedServer requires Dotclear 2.5'); 
    2628     } 
    2729      
     
    6567     $s->put('zoneclearFeedServer_bhv_pub_upd',2,'string','Auto update on public side (disable/before/after)',false,true); 
    6668     $s->put('zoneclearFeedServer_update_limit',1,'integer','Number of feeds to update at one time',false,true); 
     69     $s->put('zoneclearFeedServer_keep_empty_feed',false,'boolean','Keep active empty feeds',false,true); 
     70     $s->put('zoneclearFeedServer_tag_case',0,'integer','How to transform imported tags',false,true); 
    6771     $s->put('zoneclearFeedServer_user','','string','User id that has right on post',false,true); 
    6872     $s->put('zoneclearFeedServer_post_full_tpl',serialize(array('post','category','tag','archive')),'string','List of templates types for full feed',false,true); 
  • plugins/zoneclearFeedServer/_prepend.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
    1315if (!defined('DC_RC_PATH')){return;} 
    14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.2-alpha','<')){return;} 
     16if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 
    1517 
    1618global $__autoload, $core; 
  • plugins/zoneclearFeedServer/_public.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    283285     { 
    284286          $lastn = -1; 
     287          $p = ''; 
    285288          if (isset($a['lastn'])) 
    286289          { 
     
    523526     public static function FeedsCount($a) 
    524527     { 
    525           $none = 'no source'; 
     528          $none = 'no sources'; 
    526529          $one = 'one source'; 
    527530          $more = '%d sources'; 
     
    553556     public static function FeedsEntriesCount($a) 
    554557     { 
    555           $none = 'no entry'; 
     558          $none = 'no entries'; 
    556559          $one = 'one entry'; 
    557560          $more = '%d entries'; 
     
    588591     public static function FeedEntriesCount($a) 
    589592     { 
    590           $none = 'no entry'; 
     593          $none = 'no entries'; 
    591594          $one = 'one entry'; 
    592595          $more = '%d entries'; 
  • plugins/zoneclearFeedServer/_uninstall.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
  • plugins/zoneclearFeedServer/_widgets.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    4648          ); 
    4749          $w->zcfssource->setting('homeonly', 
    48                __('Home page only'),1,'check' 
     50               __('Display on:'), 
     51               0, 
     52               'combo', 
     53               array( 
     54                    __('All pages') => 0, 
     55                    __('Home page only') => 1, 
     56                    __('Except on home page') => 2 
     57               ) 
    4958          ); 
    5059     } 
     
    6372          $w->zcfsnumber->setting('entry_title',__('Title for entries count:'),__('Entries:'),'text'); 
    6473           
    65           $w->zcfsnumber->setting('homeonly',__('Home page only'),1,'check'); 
     74          $w->zcfsnumber->setting( 
     75               'homeonly', 
     76               __('Display on:'), 
     77               0, 
     78               'combo', 
     79               array( 
     80                    __('All pages') => 0, 
     81                    __('Home page only') => 1, 
     82                    __('Except on home page') => 2 
     83               ) 
     84          ); 
    6685     } 
    6786 
     
    7190           
    7291          if (!$core->blog->settings->zoneclearFeedServer->zoneclearFeedServer_active  
    73            || $w->homeonly && $core->url->type != 'default') return; 
     92           || $w->homeonly == 1 && $core->url->type != 'default'  
     93           || $w->homeonly == 2 && $core->url->type == 'default') return; 
    7494           
    7595          $p = array(); 
     
    115135           
    116136          if (!$core->blog->settings->zoneclearFeedServer->zoneclearFeedServer_active  
    117            || $w->homeonly && $core->url->type != 'default') return; 
     137           || $w->homeonly == 1 && $core->url->type != 'default'  
     138           || $w->homeonly == 2 && $core->url->type == 'default') return; 
    118139           
    119140          $zc = new zoneclearFeedServer($core); 
     
    130151               if ($count == 0) 
    131152               { 
    132                     $text = sprintf(__('none'),$count); 
     153                    $text = sprintf(__('no sources'),$count); 
    133154               } 
    134155               elseif ($count == 1) 
     
    138159               else 
    139160               { 
    140                     $text = sprintf(__('%s sources'),$count); 
     161                    $text = sprintf(__('%d sources'),$count); 
    141162               } 
    142163               if ($core->blog->settings->zoneclearFeedServer->zoneclearFeedServer_pub_active) 
     
    165186               if ($count == 0) 
    166187               { 
    167                     $text = sprintf(__('none'),$count); 
     188                    $text = sprintf(__('no entries'),$count); 
    168189               } 
    169190               elseif ($count == 1) 
     
    173194               else 
    174195               { 
    175                     $text = sprintf(__('%s entries'),$count); 
     196                    $text = sprintf(__('%d entries'),$count); 
    176197               } 
    177198                
  • plugins/zoneclearFeedServer/cron-script.php

    r2915 r3139  
    22<?php 
    33# -- BEGIN LICENSE BLOCK ---------------------------------- 
     4# 
    45# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    56#  
    6 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    7 # jcdenis@gdwd.com 
     7# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     8# contact@jcdenis.fr http://jcd.lv 
    89#  
    910# Licensed under the GPL version 2.0 license. 
    1011# A copy of this license is available in LICENSE file or at 
    1112# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     13# 
    1214# -- END LICENSE BLOCK ------------------------------------ 
    1315 
  • plugins/zoneclearFeedServer/default-templates/zcfsupd.js

    r2915 r3139  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2011 JC Denis, BG and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     6 * contact@jcdenis.fr http://jcd.lv 
    67 *  
    78 * Licensed under the GPL version 2.0 license. 
    89 * A copy of this license is available in LICENSE file or at 
    910 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11 * 
    1012 * -- END LICENSE BLOCK ------------------------------------*/ 
    1113 
  • plugins/zoneclearFeedServer/inc/class.zoneclear.feed.server.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    1517class zoneclearFeedServer 
    1618{ 
    17      public static $nethttp_timeout = 2; 
     19     public static $nethttp_timeout = 5; 
    1820     public static $nethttp_agent = 'zoneclearFeedServer - http://zoneclear.org'; 
    1921     public static $nethttp_maxredirect = 2; 
     
    402404                    if (!$feed) 
    403405                    { 
    404                          # Disable feed 
    405                          $this->enableFeed($f->feed_id,false); 
     406                         # Keep active empty feed or disable it ? 
     407                         if (!$s->zoneclearFeedServer_keep_empty_feed) 
     408                         { 
     409                              $this->enableFeed($f->feed_id,false); 
     410                         } 
    406411                         $i++; 
    407412                    } 
     
    423428                         { 
    424429                              $item_TS = $item->TS ? $item->TS : $time; 
    425                               $item_link = $this->con->escape($item->link); 
     430                               
     431                              // I found that mercurial atom feed did not repect standard 
     432                              $item_link = @$item->link; 
     433                              if (!$item_link) 
     434                              { 
     435                                   $item_link = @$item->guid; 
     436                              } 
     437                              # Unknow feed item link 
     438                              if (!$item_link) continue; 
     439                               
     440                              $item_link = $this->con->escape($item_link); 
    426441                              $is_new_published_entry = false; 
    427442                               
     
    509524                                   $cur_meta->post_id = $post_id; 
    510525                                   $cur_meta->meta_type = 'zoneclearfeed_url'; 
    511                                    $cur_meta->meta_id = $meta->url = $item->link; 
     526                                   $cur_meta->meta_id = $meta->url = $item_link; 
    512527                                   $cur_meta->insert(); 
    513528                                    
     
    543558                                        $tags = array_unique($tags); 
    544559                                   } 
     560                                   $formated_tags = array(); 
    545561                                   foreach ($tags as $tag) 
    546562                                   { 
    547                                         $this->core->auth->sudo(array($this->core->meta,'setPostMeta'),$post_id,'tag',dcMeta::sanitizeMetaID($tag)); 
     563                                        # Change tags case 
     564                                        switch((integer) $s->zoneclearFeedServer_tag_case) 
     565                                        { 
     566                                             case 3: $tag = strtoupper($tag); break; 
     567                                             case 2: $tag = strtolower($tag); break; 
     568                                             case 1: $tag = ucfirst(strtolower($tag)); break; 
     569                                             default: /* do nothing*/ break; 
     570                                        } 
     571                                        if (!in_array($tag,$formated_tags)) 
     572                                        { 
     573                                             $formated_tags[] = $tag; 
     574                                             $this->core->auth->sudo(array($this->core->meta,'setPostMeta'),$post_id,'tag',dcMeta::sanitizeMetaID($tag)); 
     575                                        } 
    548576                                   } 
    549                                    $meta->tags = $tags; 
     577                                   $meta->tags = $formated_tags; 
    550578                                    
    551579                                   # --BEHAVIOR-- zoneclearFeedServerAfterFeedUpdate 
     
    616644     public static function validateURL($url) 
    617645     { 
    618           if ( 
    619            /*(function_exists('filter_var') && !filter_var($url, FILTER_VALIDATE_URL)) // pff http://my-url.com is not valid! 
    620            || */false !== strpos($url,'localhost') 
    621            || false === strpos($url,'http://') 
    622            || false !== strpos($url,'http://192.') 
    623           ) 
     646          if (false === strpos($url,'http://') && false === strpos($url,'https://')) 
    624647          { 
    625648               return false; 
  • plugins/zoneclearFeedServer/inc/index.feed.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    601603{ 
    602604     echo 
    603      ' &rsaquo; '.__('Edit feed'). 
     605     ' &rsaquo; <span class="page-title">'.__('Edit feed').'</span>'. 
    604606     ' - <a class="button" href="'.$p_url.'&amp;part=feed">'.__('New feed').'</a>'; 
    605607} 
    606608else 
    607609{ 
    608      echo ' &rsaquo; '.__('New feed'); 
     610     echo ' &rsaquo; <span class="page-title">'.__('New feed').'</span>'; 
    609611} 
    610612echo ' 
     
    684686     form::hidden(array('part'),'feed'). 
    685687     $core->formNonce(). 
    686      '<input type="submit" name="save" value="'.__('save').'" /></p> 
     688     '<input type="submit" name="save" value="'.__('Save').'" /></p> 
    687689     </form> 
    688690     </div>'; 
     
    729731     '<p><label class="classic">'. form::field('nb',3,3,$nb_per_page).' '. 
    730732     __('Entries per page').'</label> '. 
    731      '<input type="submit" value="'.__('filter').'" />'. 
     733     '<input type="submit" value="'.__('Apply filters').'" />'. 
    732734     form::hidden(array('p'),'zoneclearFeedServer'). 
    733735     form::hidden(array('part'),'feed'). 
  • plugins/zoneclearFeedServer/inc/index.feeds.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    7880               '<img src="images/check-on.png" alt="enable" />' : 
    7981               '<img src="images/check-off.png" alt="disable" />'; 
    80           $category = $this->rs->cat_id ? $this->rs->cat_title : __('none'); 
     82          $category = $this->rs->cat_id ? $this->rs->cat_title : __('no categories'); 
    8183           
    8284          $entries_count = $this->rs->zc->getPostsByFeed(array('feed_id'=>$this->rs->feed_id),true)->f(0); 
     85          $shunk_feed = $this->rs->feed_feed; 
     86          if (strlen($shunk_feed) > 83) { 
     87               $shunk_feed = substr($shunk_feed,0,50).'...'.substr($shunk_feed,-20); 
     88          } 
    8389           
    8490          return 
     
    9298          "</td>\n". 
    9399          '<td class="maximal nowrap">'. 
    94           '<a href="'.$this->rs->feed_feed.'" title="'.html::escapeHTML($this->rs->feed_desc).'">'.$this->rs->feed_feed.'</a>'. 
     100          '<a href="'.$this->rs->feed_feed.'" title="'.html::escapeHTML($this->rs->feed_desc).'">'.html::escapeHTML($shunk_feed).'</a>'. 
    95101          "</td>\n". 
    96102          '<td class="nowrap">'. 
     
    109115          ). 
    110116          "</td>\n". 
    111           '<td>'. 
     117          '<td class="nowrap">'. 
    112118          html::escapeHTML($category). 
    113119          "</td>\n". 
     
    384390<body> 
    385391<h2>'.html::escapeHTML($core->blog->name). 
    386 ' &rsaquo; '.__('Feeds'). 
     392' &rsaquo; <span class="page-title">'.__('Feeds').'</span>'. 
    387393' - <a class="button" href="'.$p_url.'&amp;part=feed">'.__('New feed').'</a>'. 
    388394'</h2>'.$msg; 
     
    474480          form::field('nb',3,3,$nb_per_page).' '.__('Entries per page').' 
    475481          </label>  
    476           <input type="submit" value="'.__('filter').'" />'. 
     482          <input type="submit" value="'.__('Apply filters').'" />'. 
    477483          form::hidden(array('p'),'zoneclearFeedServer'). 
    478484          form::hidden(array('part'),'feeds').' 
  • plugins/zoneclearFeedServer/inc/index.setting.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    1921$update_limit = (integer) $s->zoneclearFeedServer_update_limit; 
    2022if ($update_limit < 1) $update_limit = 10; 
     23$keep_empty_feed = (boolean) $s->zoneclearFeedServer_keep_empty_feed; 
     24$tag_case = (integer) $s->zoneclearFeedServer_tag_case; 
    2125$post_full_tpl = @unserialize($s->zoneclearFeedServer_post_full_tpl); 
    2226if (!is_array($post_full_tpl)) $post_full_tpl = array(); 
     
    4448          $s->put('zoneclearFeedServer_bhv_pub_upd',(integer) $_POST['bhv_pub_upd']); 
    4549          $s->put('zoneclearFeedServer_update_limit',$limit); 
     50          $s->put('zoneclearFeedServer_keep_empty_feed',!empty($_POST['keep_empty_feed'])); 
     51          $s->put('zoneclearFeedServer_tag_case',(integer) $_POST['tag_case']); 
    4652          $s->put('zoneclearFeedServer_post_full_tpl',serialize($_POST['post_full_tpl'])); 
    4753          $s->put('zoneclearFeedServer_post_title_redir',serialize($_POST['post_title_redir'])); 
     
    6975     __('published') => 1 
    7076); 
     77$combo_tagcase = array( 
     78     __('Keep source case') => 0, 
     79     __('First upper case') => 1, 
     80     __('All lower case') => 2, 
     81     __('All upper case') => 3 
     82); 
    7183 
    7284$pub_page_url = $core->blog->url.$core->url->getBase('zoneclearFeedsPage'); 
     
    91103<h2>'.html::escapeHTML($core->blog->name). 
    92104' &rsaquo; <a href="'.$p_url.'&amp;part=feeds">'.__('Feeds').'</a>'. 
    93 ' &rsaquo; '.__('Settings'). 
     105' &rsaquo; <span class="page-title">'.__('Settings').'</span>'. 
    94106' - <a class="button" href="'.$p_url.'&amp;part=feed">'.__('New feed').'</a>'. 
    95107'</h2>'.$msg.' 
     
    111123form::combo(array('feeduser'),$combo_admins,$feeduser).'</label></p> 
    112124<p class="field"><label>'. 
     125__('How to transform imported tags:').'<br />'. 
     126form::combo(array('tag_case'),$combo_tagcase,$tag_case).'</label></p> 
     127<p class="field"><label>'. 
    113128__('Update feeds on public side:').'<br />'. 
    114129form::combo(array('bhv_pub_upd'),$combo_pubupd,$bhv_pub_upd).'</label></p> 
     
    116131__('Number of feeds to update at one time:').'<br />'. 
    117132form::field('update_limit',6,4,$update_limit).'</label></p> 
     133<p class="field"><label>'. 
     134form::checkbox(array('keep_empty_feed'),'1',$keep_empty_feed). 
     135__('Keep active empty feeds').'</label></p> 
    118136<p class="field"><label>'. 
    119137form::checkbox(array('pub_active'),'1',$pub_active). 
     
    168186 
    169187<div class="clear"> 
    170 <p><input type="submit" name="save" value="'.__('save').'" />'. 
     188<p><input type="submit" name="save" value="'.__('Save').'" />'. 
    171189$core->formNonce(). 
    172190form::hidden(array('p'),'zoneclearFeedServer'). 
  • plugins/zoneclearFeedServer/inc/lib.zoneclear.feed.server.activityreport.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
  • plugins/zoneclearFeedServer/inc/lib.zoneclear.feed.server.socialmewriter.php

    r2928 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
  • plugins/zoneclearFeedServer/index.php

    r2915 r3139  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2011 JC Denis, BG and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     7# contact@jcdenis.fr http://jcd.lv 
    78#  
    89# Licensed under the GPL version 2.0 license. 
    910# A copy of this license is available in LICENSE file or at 
    1011# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     12# 
    1113# -- END LICENSE BLOCK ------------------------------------ 
    1214 
     
    5557if (isset($msg_list[$msg])) 
    5658{ 
    57      $msg = sprintf('<p class="message">%s</p>',$msg_list[$msg]); 
     59     $msg = dcPage::message($msg_list[$msg]); 
    5860} 
    5961 
  • plugins/zoneclearFeedServer/js/feeds.js

    r2915 r3139  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2011 JC Denis, BG and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     6 * contact@jcdenis.fr http://jcd.lv 
    67 *  
    78 * Licensed under the GPL version 2.0 license. 
    89 * A copy of this license is available in LICENSE file or at 
    910 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11 * 
    1012 * -- END LICENSE BLOCK ------------------------------------*/ 
    1113 
  • plugins/zoneclearFeedServer/js/main.js

    r2915 r3139  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2011 JC Denis, BG and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     6 * contact@jcdenis.fr http://jcd.lv 
    67 *  
    78 * Licensed under the GPL version 2.0 license. 
    89 * A copy of this license is available in LICENSE file or at 
    910 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11 * 
    1012 * -- END LICENSE BLOCK ------------------------------------*/ 
    1113 
  • plugins/zoneclearFeedServer/js/setting.js

    r2915 r3139  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2011 JC Denis, BG and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 
     6 * contact@jcdenis.fr http://jcd.lv 
    67 *  
    78 * Licensed under the GPL version 2.0 license. 
    89 * A copy of this license is available in LICENSE file or at 
    910 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11 * 
    1012 * -- END LICENSE BLOCK ------------------------------------*/ 
    1113 
  • plugins/zoneclearFeedServer/locales/fr/main.lang.php

    r2915 r3139  
    11<?php 
    22// Language: Français  
    3 // Module: zoneclearFeedServer - 1.3 
    4 // Date: 2011-01-30 11:14:08  
    5 // Translated with dcTranslater - 1.5  
    6  
    7 #_admin.php:23 
    8 #inc/index.feed.php:593 
    9 #inc/index.feeds.php:381 
    10 #inc/index.setting.php:76 
     3// Module: zoneclearFeedServer - 2013.07.03 
     4// Date: 2013-07-04 05:46:48  
     5// Translated with dcTranslater - 2013.05.11  
     6 
     7#_admin.php:25 
     8#inc/index.feed.php:595 
     9#inc/index.feeds.php:387 
     10#inc/index.setting.php:88 
     11#index.php:38 
     12$GLOBALS['__l10n']['Feeds server'] = 'Serveur de flux'; 
     13 
     14#_admin.php:66 
     15#_admin.php:80 
     16$GLOBALS['__l10n']['%s disabled feeds'] = '%s flux désactivés'; 
     17 
     18#_admin.php:66 
     19#_admin.php:80 
     20$GLOBALS['__l10n']['one disable feed'] = 'Un flux désactivé'; 
     21 
     22#_admin.php:121 
     23$GLOBALS['__l10n']['Feed source'] = 'Source du flux'; 
     24 
     25#_admin.php:124 
     26$GLOBALS['__l10n']['feed URL'] = 'URL du fil'; 
     27 
     28#_admin.php:125 
     29$GLOBALS['__l10n']['site URL'] = 'URL du site'; 
     30 
     31#_admin.php:133 
     32$GLOBALS['__l10n']['Edit this feed'] = 'Modifier ce flux'; 
     33 
     34#_public.php:194 
     35$GLOBALS['__l10n']['Original post on <a href="%s">%s</a>'] = 'Billet original sur <a href="%s">%s</a>'; 
     36 
     37#_public.php:205 
     38$GLOBALS['__l10n']['Read more details about this feed'] = 'Lire plus de détails à propos de ce flux'; 
     39 
     40#_widgets.php:25 
     41$GLOBALS['__l10n']['Feeds server : sources'] = 'Serveur de flux : les sources'; 
     42 
     43#_widgets.php:29 
     44$GLOBALS['__l10n']['Feeds sources'] = 'Sources des flux'; 
     45 
     46#_widgets.php:33 
     47$GLOBALS['__l10n']['name'] = 'nom'; 
     48 
     49#_widgets.php:34 
     50$GLOBALS['__l10n']['creation date'] = 'date de création'; 
     51 
     52#_widgets.php:44 
     53$GLOBALS['__l10n']['Limit:'] = 'Limite :'; 
     54 
     55#_widgets.php:47 
     56$GLOBALS['__l10n']['Add link to feeds page'] = 'Ajouter un lien vers la page des flux'; 
     57 
     58#_widgets.php:63 
     59$GLOBALS['__l10n']['Feeds server : numbers'] = 'Serveur de flux : les chiffres'; 
     60 
     61#_widgets.php:64 
     62$GLOBALS['__l10n']['Feeds numbers'] = 'Le flux en chiffres'; 
     63 
     64#_widgets.php:67 
     65$GLOBALS['__l10n']['Show feeds count'] = 'Afficher le nombre de flux'; 
     66 
     67#_widgets.php:68 
     68$GLOBALS['__l10n']['Title for feeds count:'] = 'Titre pour le nombre de flux :'; 
     69 
     70#_widgets.php:68 
     71$GLOBALS['__l10n']['Feeds:'] = 'Flux :'; 
     72 
     73#_widgets.php:71 
     74$GLOBALS['__l10n']['Show entries count'] = 'Afficher le nombre de billets'; 
     75 
     76#_widgets.php:72 
     77$GLOBALS['__l10n']['Title for entries count:'] = 'Titre pour le nombre de billets :'; 
     78 
     79#_widgets.php:72 
     80$GLOBALS['__l10n']['Entries:'] = 'Billets :'; 
     81 
     82#_widgets.php:122 
     83$GLOBALS['__l10n']['All sources'] = 'Toutes les sources'; 
     84 
     85#_widgets.php:153 
     86$GLOBALS['__l10n']['no sources'] = 'aucune source'; 
     87 
     88#_widgets.php:157 
     89$GLOBALS['__l10n']['one source'] = 'une source'; 
     90 
     91#_widgets.php:161 
     92$GLOBALS['__l10n']['%d sources'] = '%d sources'; 
     93 
     94#_widgets.php:188 
     95$GLOBALS['__l10n']['no entries'] = 'aucun billet'; 
     96 
     97#_widgets.php:192 
     98$GLOBALS['__l10n']['one entry'] = 'un billet'; 
     99 
     100#_widgets.php:196 
     101$GLOBALS['__l10n']['%d entries'] = '%d billets'; 
     102 
     103#default-templates/zcfeeds.html:50 
     104$GLOBALS['__l10n']['List of feeds'] = 'Liste des sources'; 
     105 
     106#inc/class.zoneclear.feed.server.php:678 
     107$GLOBALS['__l10n']['disabled'] = 'désactivé'; 
     108 
     109#inc/class.zoneclear.feed.server.php:679 
     110$GLOBALS['__l10n']['enabled'] = 'activé'; 
     111 
     112#inc/class.zoneclear.feed.server.php:686 
     113$GLOBALS['__l10n']['every hour'] = 'toutes les heures'; 
     114 
     115#inc/class.zoneclear.feed.server.php:687 
     116$GLOBALS['__l10n']['every two hours'] = 'toutes les deux heures'; 
     117 
     118#inc/class.zoneclear.feed.server.php:688 
     119$GLOBALS['__l10n']['two times per day'] = 'deux fois par jour'; 
     120 
     121#inc/class.zoneclear.feed.server.php:689 
     122$GLOBALS['__l10n']['every day'] = 'tous les jours'; 
     123 
     124#inc/class.zoneclear.feed.server.php:690 
     125$GLOBALS['__l10n']['every two days'] = 'tous les deux jours'; 
     126 
     127#inc/class.zoneclear.feed.server.php:691 
     128$GLOBALS['__l10n']['every week'] = 'toutes les semaines'; 
     129 
     130#inc/class.zoneclear.feed.server.php:746 
     131$GLOBALS['__l10n']['home page'] = 'la page d\'accueil'; 
     132 
     133#inc/class.zoneclear.feed.server.php:747 
     134$GLOBALS['__l10n']['post pages'] = 'la page d\'un billet'; 
     135 
     136#inc/class.zoneclear.feed.server.php:748 
     137$GLOBALS['__l10n']['tags pages'] = 'les pages des tags'; 
     138 
     139#inc/class.zoneclear.feed.server.php:749 
     140$GLOBALS['__l10n']['archives pages'] = 'les pages des archives'; 
     141 
     142#inc/class.zoneclear.feed.server.php:750 
     143$GLOBALS['__l10n']['category pages'] = 'les pages de catégorie'; 
     144 
     145#inc/class.zoneclear.feed.server.php:751 
     146$GLOBALS['__l10n']['entries feed'] = 'le flux des billets'; 
     147 
     148#inc/index.feed.php:192 
     149$GLOBALS['__l10n']['This feed does not exist.'] = 'Ce flux n\'existe pas.'; 
     150 
     151#inc/index.feed.php:225 
     152$GLOBALS['__l10n']['next feed'] = 'flux suivant'; 
     153 
     154#inc/index.feed.php:233 
     155$GLOBALS['__l10n']['previous feed'] = 'flux précédent'; 
     156 
     157#inc/index.feed.php:267 
     158$GLOBALS['__l10n']['Record with same feed URL already exists.'] = 'Un enregistrement avec la même URL de flux existe déjà.'; 
     159 
     160#inc/index.feed.php:271 
     161$GLOBALS['__l10n']['You must provide a name.'] = 'Vous devez indiquer un nom.'; 
     162 
     163#inc/index.feed.php:275 
     164$GLOBALS['__l10n']['You must provide an owner.'] = 'Vous devez indiquer un propriétaire.'; 
     165 
     166#inc/index.feed.php:279 
     167$GLOBALS['__l10n']['You must provide valid site URL.'] = 'Vous devez donner une URL de site valide.'; 
     168 
     169#inc/index.feed.php:283 
     170$GLOBALS['__l10n']['You must provide valid feed URL.'] = 'Vous devez donner une URL de flux valide.'; 
     171 
     172#inc/index.feed.php:288 
     173$GLOBALS['__l10n']['You must provide valid category.'] = 'Vous devez donner une catégorie valide.'; 
     174 
     175#inc/index.feed.php:601 
     176#inc/index.feeds.php:392 
     177#inc/index.setting.php:104 
     178$GLOBALS['__l10n']['Feeds'] = 'Fils de syndication'; 
     179 
     180#inc/index.feed.php:605 
     181$GLOBALS['__l10n']['Edit feed'] = 'Edition de flux'; 
     182 
     183#inc/index.feed.php:606 
     184#inc/index.feed.php:610 
     185#inc/index.feeds.php:393 
     186#inc/index.setting.php:106 
     187$GLOBALS['__l10n']['New feed'] = 'Nouveau flux'; 
     188 
     189#inc/index.feed.php:629 
     190#inc/index.feeds.php:36 
     191$GLOBALS['__l10n']['Feed'] = 'Flux'; 
     192 
     193#inc/index.feed.php:632 
     194$GLOBALS['__l10n']['Local settings'] = 'Paramètres locaux'; 
     195 
     196#inc/index.feed.php:639 
     197$GLOBALS['__l10n']['Update:'] = 'Mise à jour :'; 
     198 
     199#inc/index.feed.php:647 
     200$GLOBALS['__l10n']['Import tags from feed'] = 'Importer les tags depuis le flux'; 
     201 
     202#inc/index.feed.php:650 
     203$GLOBALS['__l10n']['Feed information'] = 'Information sur le flux'; 
     204 
     205#inc/index.feed.php:654 
     206$GLOBALS['__l10n']['Owner:'] = 'Propriétaire :'; 
     207 
     208#inc/index.feed.php:658 
     209$GLOBALS['__l10n']['Tweeter or Identica ident:'] = 'Identifiant Twiiter ou Identi.ca :'; 
     210 
     211#inc/index.feed.php:661 
     212$GLOBALS['__l10n']['Site URL:'] = 'URL du site :'; 
     213 
     214#inc/index.feeds.php:23 
     215$GLOBALS['__l10n']['There is no feed'] = 'Il n\'y a pas de flux'; 
     216 
     217#inc/index.feeds.php:35 
     218#inc/index.feeds.php:300 
     219$GLOBALS['__l10n']['Name'] = 'Nom'; 
     220 
     221#inc/index.feeds.php:39 
     222$GLOBALS['__l10n']['Frequency'] = 'Fréquence'; 
     223 
     224#inc/index.feeds.php:42 
     225$GLOBALS['__l10n']['Owner'] = 'Propriétaire'; 
     226 
     227#inc/index.feeds.php:82 
     228$GLOBALS['__l10n']['no categories'] = 'aucune catégorie'; 
     229 
     230#inc/index.feeds.php:96 
     231$GLOBALS['__l10n']['Edit'] = 'Modifier'; 
     232 
     233#inc/index.feeds.php:113 
     234$GLOBALS['__l10n']['never'] = 'jamais'; 
     235 
     236#inc/index.feeds.php:125 
     237$GLOBALS['__l10n']['View entries'] = 'Voir les billets'; 
     238 
     239#inc/index.feeds.php:301 
     240$GLOBALS['__l10n']['frequency'] = 'fréquence'; 
     241 
     242#inc/index.feeds.php:302 
     243$GLOBALS['__l10n']['Date of update'] = 'Date de mise à jour'; 
     244 
     245#inc/index.feeds.php:312 
     246$GLOBALS['__l10n']['change update interval'] = 'changer l\'intervalle de mise à jour'; 
     247 
     248#inc/index.feeds.php:313 
     249$GLOBALS['__l10n']['disable feed update'] = 'désactiver la mise à jour du flux'; 
     250 
     251#inc/index.feeds.php:314 
     252$GLOBALS['__l10n']['enable feed update'] = 'activer la mise à jour du flux'; 
     253 
     254#inc/index.feeds.php:315 
     255$GLOBALS['__l10n']['Reset last update'] = 'remettre à zéro le chronomètre de mise à jour'; 
     256 
     257#inc/index.feeds.php:316 
     258$GLOBALS['__l10n']['Update (check) feed'] = 'mettre à jour (vérifier) le flux'; 
     259 
     260#inc/index.feeds.php:317 
     261$GLOBALS['__l10n']['delete related posts'] = 'effacer les billets liés'; 
     262 
     263#inc/index.feeds.php:318 
     264$GLOBALS['__l10n']['delete feed (without related posts)'] = 'effacer le flux (sans effacer les billets liés)'; 
     265 
     266#inc/index.feeds.php:401 
     267$GLOBALS['__l10n']['This changes category for all selected feeds.'] = 'Ceci change la catégorie pour tous les flux sélectionnés.'; 
     268 
     269#inc/index.feeds.php:413 
     270$GLOBALS['__l10n']['Select a category:'] = 'Sélectionner une catégorie :'; 
     271 
     272#inc/index.feeds.php:429 
     273$GLOBALS['__l10n']['This changes interval of updates for all selected feeds.'] = 'Ceci change l\'intervalle de mise à jour des flux sélectionnés.'; 
     274 
     275#inc/index.feeds.php:441 
     276$GLOBALS['__l10n']['Select a frequency:'] = 'Sélectionner une fréquence :'; 
     277 
     278#inc/index.feeds.php:498 
     279$GLOBALS['__l10n']['Selected feeds action:'] = 'Action sur les flux sélectionnés :'; 
     280 
     281#inc/index.setting.php:68 
     282$GLOBALS['__l10n']['disable'] = 'désactiver'; 
     283 
     284#inc/index.setting.php:69 
     285$GLOBALS['__l10n']['before display'] = 'avant l\'affichage'; 
     286 
     287#inc/index.setting.php:70 
     288$GLOBALS['__l10n']['after display'] = 'après l\'affichage'; 
     289 
     290#inc/index.setting.php:71 
     291$GLOBALS['__l10n']['through Ajax'] = 'A travers Ajax'; 
     292 
     293#inc/index.setting.php:78 
     294$GLOBALS['__l10n']['Keep source case'] = 'Garder la casse de la source'; 
     295 
     296#inc/index.setting.php:79 
     297$GLOBALS['__l10n']['First upper case'] = 'Premier caractère en majuscule'; 
     298 
     299#inc/index.setting.php:80 
     300$GLOBALS['__l10n']['All lower case'] = 'Tout en minuscule'; 
     301 
     302#inc/index.setting.php:81 
     303$GLOBALS['__l10n']['All upper case'] = 'Tout en majuscule'; 
     304 
     305#inc/index.setting.php:105 
    11306#index.php:36 
    12 $GLOBALS['__l10n']['Feeds server'] = 'Serveur de flux'; 
    13  
    14 #_admin.php:54 
    15 $GLOBALS['__l10n']['%s disabled feeds'] = '%s flux désactivés'; 
    16  
    17 #_admin.php:54 
    18 $GLOBALS['__l10n']['one disable feed'] = 'Un flux désactivé'; 
    19  
    20 #_admin.php:95 
    21 $GLOBALS['__l10n']['Feed source'] = 'Source du flux'; 
    22  
    23 #_admin.php:98 
    24 $GLOBALS['__l10n']['feed URL'] = 'URL du fil'; 
    25  
    26 #_admin.php:99 
    27 $GLOBALS['__l10n']['site URL'] = 'URL du site'; 
    28  
    29 #_admin.php:107 
    30 $GLOBALS['__l10n']['Edit this feed'] = 'Modifier ce flux'; 
    31  
    32 #_public.php:192 
    33 $GLOBALS['__l10n']['Original post on <a href="%s">%s</a>'] = 'Billet original sur <a href="%s">%s</a>'; 
    34  
    35 #_public.php:203 
    36 $GLOBALS['__l10n']['Read more details about this feed'] = 'Lire plus de détails à propos de ce flux'; 
    37  
    38 #_widgets.php:23 
    39 $GLOBALS['__l10n']['Feeds server : sources'] = 'Serveur de flux : les sources'; 
    40  
    41 #_widgets.php:27 
    42 $GLOBALS['__l10n']['Feeds sources'] = 'Sources des flux'; 
    43  
    44 #_widgets.php:31 
    45 $GLOBALS['__l10n']['name'] = 'nom'; 
    46  
    47 #_widgets.php:32 
    48 $GLOBALS['__l10n']['creation date'] = 'date de création'; 
    49  
    50 #_widgets.php:42 
    51 $GLOBALS['__l10n']['Limit:'] = 'Limite :'; 
    52  
    53 #_widgets.php:45 
    54 $GLOBALS['__l10n']['Add link to feeds page'] = 'Ajouter un lien vers la page des flux'; 
    55  
    56 #_widgets.php:54 
    57 $GLOBALS['__l10n']['Feeds server : numbers'] = 'Serveur de flux : les chiffres'; 
    58  
    59 #_widgets.php:55 
    60 $GLOBALS['__l10n']['Feeds numbers'] = 'Le flux en chiffres'; 
    61  
    62 #_widgets.php:58 
    63 $GLOBALS['__l10n']['Show feeds count'] = 'Afficher le nombre de flux'; 
    64  
    65 #_widgets.php:59 
    66 $GLOBALS['__l10n']['Title for feeds count:'] = 'Titre pour le nombre de flux :'; 
    67  
    68 #_widgets.php:59 
    69 $GLOBALS['__l10n']['Feeds:'] = 'Flux :'; 
    70  
    71 #_widgets.php:62 
    72 $GLOBALS['__l10n']['Show entries count'] = 'Afficher le nombre de billets'; 
    73  
    74 #_widgets.php:63 
    75 $GLOBALS['__l10n']['Title for entries count:'] = 'Titre pour le nombre de billets :'; 
    76  
    77 #_widgets.php:63 
    78 $GLOBALS['__l10n']['Entries:'] = 'Billets :'; 
    79  
    80 #_widgets.php:102 
    81 $GLOBALS['__l10n']['All sources'] = 'Toutes les sources'; 
    82  
    83 #_widgets.php:132 
    84 #_widgets.php:167 
    85 #inc/index.feeds.php:80 
    86 $GLOBALS['__l10n']['none'] = 'aucun'; 
    87  
    88 #_widgets.php:136 
    89 $GLOBALS['__l10n']['one source'] = 'une source'; 
    90  
    91 #_widgets.php:140 
    92 $GLOBALS['__l10n']['%s sources'] = '%s sources'; 
    93  
    94 #_widgets.php:171 
    95 $GLOBALS['__l10n']['one entry'] = 'un billet'; 
    96  
    97 #_widgets.php:175 
    98 $GLOBALS['__l10n']['%s entries'] = '%s billets'; 
    99  
    100 #inc/class.zoneclear.feed.server.php:660 
    101 $GLOBALS['__l10n']['disabled'] = 'désactivé'; 
    102  
    103 #inc/class.zoneclear.feed.server.php:661 
    104 $GLOBALS['__l10n']['enabled'] = 'activé'; 
    105  
    106 #inc/class.zoneclear.feed.server.php:668 
    107 $GLOBALS['__l10n']['every hour'] = 'toutes les heures'; 
    108  
    109 #inc/class.zoneclear.feed.server.php:669 
    110 $GLOBALS['__l10n']['every two hours'] = 'toutes les deux heures'; 
    111  
    112 #inc/class.zoneclear.feed.server.php:670 
    113 $GLOBALS['__l10n']['two times per day'] = 'deux fois par jour'; 
    114  
    115 #inc/class.zoneclear.feed.server.php:671 
    116 $GLOBALS['__l10n']['every day'] = 'tous les jours'; 
    117  
    118 #inc/class.zoneclear.feed.server.php:672 
    119 $GLOBALS['__l10n']['every two days'] = 'tous les deux jours'; 
    120  
    121 #inc/class.zoneclear.feed.server.php:673 
    122 $GLOBALS['__l10n']['every week'] = 'toutes les semaines'; 
    123  
    124 #inc/class.zoneclear.feed.server.php:728 
    125 $GLOBALS['__l10n']['home page'] = 'la page d\'accueil'; 
    126  
    127 #inc/class.zoneclear.feed.server.php:729 
    128 $GLOBALS['__l10n']['post pages'] = 'la page d\'un billet'; 
    129  
    130 #inc/class.zoneclear.feed.server.php:730 
    131 $GLOBALS['__l10n']['tags pages'] = 'les pages des tags'; 
    132  
    133 #inc/class.zoneclear.feed.server.php:731 
    134 $GLOBALS['__l10n']['archives pages'] = 'les pages des archives'; 
    135  
    136 #inc/class.zoneclear.feed.server.php:732 
    137 $GLOBALS['__l10n']['category pages'] = 'les pages de catégorie'; 
    138  
    139 #inc/class.zoneclear.feed.server.php:733 
    140 $GLOBALS['__l10n']['entries feed'] = 'le flux des billets'; 
    141  
    142 #inc/index.feed.php:190 
    143 $GLOBALS['__l10n']['This feed does not exist.'] = 'Ce flux n\'existe pas.'; 
    144  
    145 #inc/index.feed.php:223 
    146 $GLOBALS['__l10n']['next feed'] = 'flux suivant'; 
    147  
    148 #inc/index.feed.php:231 
    149 $GLOBALS['__l10n']['previous feed'] = 'flux précédent'; 
    150  
    151 #inc/index.feed.php:265 
    152 $GLOBALS['__l10n']['Record with same feed URL already exists.'] = 'Un enregistrement avec la même URL de flux existe déjà.'; 
    153  
    154 #inc/index.feed.php:269 
    155 $GLOBALS['__l10n']['You must provide a name.'] = 'Vous devez indiquer un nom.'; 
    156  
    157 #inc/index.feed.php:273 
    158 $GLOBALS['__l10n']['You must provide an owner.'] = 'Vous devez indiquer un propriétaire.'; 
    159  
    160 #inc/index.feed.php:277 
    161 $GLOBALS['__l10n']['You must provide valid site URL.'] = 'Vous devez donner une URL de site valide.'; 
    162  
    163 #inc/index.feed.php:281 
    164 $GLOBALS['__l10n']['You must provide valid feed URL.'] = 'Vous devez donner une URL de flux valide.'; 
    165  
    166 #inc/index.feed.php:286 
    167 $GLOBALS['__l10n']['You must provide valid category.'] = 'Vous devez donner une catégorie valide.'; 
    168  
    169 #inc/index.feed.php:599 
    170 #inc/index.feeds.php:386 
    171 #inc/index.setting.php:92 
    172 $GLOBALS['__l10n']['Feeds'] = 'Fils de syndication'; 
    173  
    174 #inc/index.feed.php:603 
    175 $GLOBALS['__l10n']['Edit feed'] = 'Edition de flux'; 
    176  
    177 #inc/index.feed.php:604 
    178 #inc/index.feed.php:608 
    179 #inc/index.feeds.php:387 
    180 #inc/index.setting.php:94 
    181 $GLOBALS['__l10n']['New feed'] = 'Nouveau flux'; 
    182  
    183 #inc/index.feed.php:627 
    184 #inc/index.feeds.php:34 
    185 $GLOBALS['__l10n']['Feed'] = 'Flux'; 
    186  
    187 #inc/index.feed.php:630 
    188 $GLOBALS['__l10n']['Local settings'] = 'Paramètres locaux'; 
    189  
    190 #inc/index.feed.php:637 
    191 $GLOBALS['__l10n']['Update:'] = 'Mise à jour :'; 
    192  
    193 #inc/index.feed.php:645 
    194 $GLOBALS['__l10n']['Import tags from feed'] = 'Importer les tags depuis le flux'; 
    195  
    196 #inc/index.feed.php:648 
    197 $GLOBALS['__l10n']['Feed information'] = 'Information sur le flux'; 
    198  
    199 #inc/index.feed.php:652 
    200 $GLOBALS['__l10n']['Owner:'] = 'Propriétaire :'; 
    201  
    202 #inc/index.feed.php:656 
    203 $GLOBALS['__l10n']['Tweeter or Identica ident:'] = 'Identifiant Twiiter ou Identi.ca :'; 
    204  
    205 #inc/index.feed.php:659 
    206 $GLOBALS['__l10n']['Site URL:'] = 'URL du site :'; 
    207  
    208 #inc/index.feeds.php:21 
    209 $GLOBALS['__l10n']['There is no feed'] = 'Il n\'y a pas de flux'; 
    210  
    211 #inc/index.feeds.php:33 
    212 #inc/index.feeds.php:294 
    213 $GLOBALS['__l10n']['Name'] = 'Nom'; 
    214  
    215 #inc/index.feeds.php:37 
    216 $GLOBALS['__l10n']['Frequency'] = 'Fréquence'; 
    217  
    218 #inc/index.feeds.php:40 
    219 $GLOBALS['__l10n']['Owner'] = 'Propriétaire'; 
    220  
    221 #inc/index.feeds.php:90 
    222 $GLOBALS['__l10n']['Edit'] = 'Modifier'; 
    223  
    224 #inc/index.feeds.php:107 
    225 $GLOBALS['__l10n']['never'] = 'jamais'; 
    226  
    227 #inc/index.feeds.php:119 
    228 $GLOBALS['__l10n']['View entries'] = 'Voir les billets'; 
    229  
    230 #inc/index.feeds.php:295 
    231 $GLOBALS['__l10n']['frequency'] = 'fréquence'; 
    232  
    233 #inc/index.feeds.php:296 
    234 $GLOBALS['__l10n']['Date of update'] = 'Date de mise à jour'; 
    235  
    236 #inc/index.feeds.php:306 
    237 $GLOBALS['__l10n']['change update interval'] = 'changer l\'intervalle de mise à jour'; 
    238  
    239 #inc/index.feeds.php:307 
    240 $GLOBALS['__l10n']['disable feed update'] = 'désactiver la mise à jour du flux'; 
    241  
    242 #inc/index.feeds.php:308 
    243 $GLOBALS['__l10n']['enable feed update'] = 'activer la mise à jour du flux'; 
    244  
    245 #inc/index.feeds.php:309 
    246 $GLOBALS['__l10n']['Reset last update'] = 'remettre à zéro le chronomètre de mise à jour'; 
    247  
    248 #inc/index.feeds.php:310 
    249 $GLOBALS['__l10n']['Update (check) feed'] = 'mettre à jour (vérifier) le flux'; 
    250  
    251 #inc/index.feeds.php:311 
    252 $GLOBALS['__l10n']['delete related posts'] = 'effacer les billets liés'; 
    253  
    254 #inc/index.feeds.php:312 
    255 $GLOBALS['__l10n']['delete feed (without related posts)'] = 'effacer le flux (sans effacer les billets liés)'; 
    256  
    257 #inc/index.feeds.php:395 
    258 $GLOBALS['__l10n']['This changes category for all selected feeds.'] = 'Ceci change la catégorie pour tous les flux sélectionnés.'; 
    259  
    260 #inc/index.feeds.php:407 
    261 $GLOBALS['__l10n']['Select a category:'] = 'Sélectionner une catégorie :'; 
    262  
    263 #inc/index.feeds.php:423 
    264 $GLOBALS['__l10n']['This changes interval of updates for all selected feeds.'] = 'Ceci change l\'intervalle de mise à jour des flux sélectionnés.'; 
    265  
    266 #inc/index.feeds.php:435 
    267 $GLOBALS['__l10n']['Select a frequency:'] = 'Sélectionner une fréquence :'; 
    268  
    269 #inc/index.feeds.php:492 
    270 $GLOBALS['__l10n']['Selected feeds action:'] = 'Action sur les flux sélectionnés :'; 
    271  
    272 #inc/index.setting.php:62 
    273 $GLOBALS['__l10n']['disable'] = 'désactiver'; 
    274  
    275 #inc/index.setting.php:63 
    276 $GLOBALS['__l10n']['before display'] = 'avant l\'affichage'; 
    277  
    278 #inc/index.setting.php:64 
    279 $GLOBALS['__l10n']['after display'] = 'après l\'affichage'; 
    280  
    281 #inc/index.setting.php:65 
    282 $GLOBALS['__l10n']['through Ajax'] = 'A travers Ajax'; 
    283  
    284 #inc/index.setting.php:93 
    285 #index.php:34 
    286307$GLOBALS['__l10n']['Settings'] = 'Paramètres'; 
    287308 
    288 #inc/index.setting.php:98 
     309#inc/index.setting.php:110 
    289310$GLOBALS['__l10n']['Plugin activation'] = 'Activation de l\'extension'; 
    290311 
    291 #inc/index.setting.php:101 
     312#inc/index.setting.php:113 
    292313$GLOBALS['__l10n']['Enable plugin'] = 'Activer l\'extension'; 
    293314 
    294 #inc/index.setting.php:104 
     315#inc/index.setting.php:116 
    295316$GLOBALS['__l10n']['General rules'] = 'Réglages'; 
    296317 
    297 #inc/index.setting.php:107 
     318#inc/index.setting.php:119 
    298319$GLOBALS['__l10n']['Status of new posts:'] = 'Status des nouveaux billets :'; 
    299320 
    300 #inc/index.setting.php:110 
     321#inc/index.setting.php:122 
    301322$GLOBALS['__l10n']['Owner of entries created by zoneclearFeedServer:'] = 'Propriétaire des billets créés par zoneclearFeedServer :'; 
    302323 
    303 #inc/index.setting.php:113 
     324#inc/index.setting.php:125 
     325$GLOBALS['__l10n']['How to transform imported tags:'] = 'Comment tranformer la casse des mots-clés importés :'; 
     326 
     327#inc/index.setting.php:128 
    304328$GLOBALS['__l10n']['Update feeds on public side:'] = 'Mettre à jour les flux depuis la partie publique :'; 
    305329 
    306 #inc/index.setting.php:116 
     330#inc/index.setting.php:131 
    307331$GLOBALS['__l10n']['Number of feeds to update at one time:'] = 'Nombre de flux à mettre à jour à la fois :'; 
    308332 
    309 #inc/index.setting.php:120 
     333#inc/index.setting.php:135 
     334$GLOBALS['__l10n']['Keep active empty feeds'] = 'Garder actif les flux vides'; 
     335 
     336#inc/index.setting.php:138 
    310337$GLOBALS['__l10n']['Enable public page'] = 'Activer la page publique'; 
    311338 
    312 #inc/index.setting.php:122 
     339#inc/index.setting.php:140 
    313340$GLOBALS['__l10n']['Dotclear cache is not writable or not well configured!'] = 'Le cache de Dotclear n\'est pas accessible en écriture ou n\'est pas configuré!'; 
    314341 
    315 #inc/index.setting.php:128 
     342#inc/index.setting.php:146 
    316343$GLOBALS['__l10n']['A writable cache folder is required to use this extension.'] = 'Un dossier de cache accessible en écriture est nécessaire pour utiliser cette extension.'; 
    317344 
    318 #inc/index.setting.php:129 
     345#inc/index.setting.php:147 
    319346$GLOBALS['__l10n']['If you set a large number of feeds to update at one time, this may cause a timeout error. We recommand to keep it to one.'] = 'Si vous paramètrez un grand nombre de flux à mettre à jour, ceci peut causer une erreur de timeout. Il est recommandé de laisser cette valeur à 1.'; 
    320347 
    321 #inc/index.setting.php:130 
     348#inc/index.setting.php:148 
    322349$GLOBALS['__l10n']['If you use cron script, you can disable public update.'] = 'Si vous utilisez un script cron, vous pouvez désactiver la mise à jour publique.'; 
    323350 
    324 #inc/index.setting.php:131 
     351#inc/index.setting.php:149 
    325352$GLOBALS['__l10n']['If active, a public list of feeds are available at "%s".'] = 'Si activé, une page publique de la liste des flux est disponible à l\'adresse %s .'; 
    326353 
    327 #inc/index.setting.php:132 
     354#inc/index.setting.php:150 
    328355$GLOBALS['__l10n']['In order to do update through Ajax, your theme must have behavior publicHeadContent.'] = 'Pour utiliser la mise à jour depuis Ajax, votre thème doit avoir le behavior publicheadContent.'; 
    329356 
    330 #inc/index.setting.php:141 
     357#inc/index.setting.php:159 
    331358$GLOBALS['__l10n']['Display'] = 'Affichage'; 
    332359 
    333 #inc/index.setting.php:144 
     360#inc/index.setting.php:162 
    334361$GLOBALS['__l10n']['Show full content on:'] = 'Afficher le contenu complet sur :'; 
    335362 
    336 #inc/index.setting.php:155 
     363#inc/index.setting.php:173 
    337364$GLOBALS['__l10n']['Entries title'] = 'Titre des billets'; 
    338365 
    339 #inc/index.setting.php:156 
     366#inc/index.setting.php:174 
    340367$GLOBALS['__l10n']['Redirect to original post on:'] = 'Rediriger vers le billet original sur :'; 
    341368 
    342 #inc/lib.zoneclear.feed.server.activityreport.php:16 
     369#inc/lib.zoneclear.feed.server.activityreport.php:18 
    343370$GLOBALS['__l10n']['Plugin zoneclearFeedServer'] = 'Extension zoneclearFeedServer'; 
    344371 
    345 #inc/lib.zoneclear.feed.server.activityreport.php:22 
     372#inc/lib.zoneclear.feed.server.activityreport.php:24 
    346373$GLOBALS['__l10n']['feed creation'] = 'création d\'un flux'; 
    347374 
    348 #inc/lib.zoneclear.feed.server.activityreport.php:23 
     375#inc/lib.zoneclear.feed.server.activityreport.php:25 
    349376$GLOBALS['__l10n']['A new feed named "%s" point to "%s" was added by "%s"'] = 'Un nouveau flux nommé "%s" pointant vers "%s" a été ajouté par "%s"'; 
    350377 
    351 #inc/lib.zoneclear.feed.server.activityreport.php:31 
     378#inc/lib.zoneclear.feed.server.activityreport.php:33 
    352379$GLOBALS['__l10n']['updating feed info'] = 'mise à jour des informations du flux (administration)'; 
    353380 
    354 #inc/lib.zoneclear.feed.server.activityreport.php:32 
     381#inc/lib.zoneclear.feed.server.activityreport.php:34 
    355382$GLOBALS['__l10n']['Feed named "%s" point to "%s" has been updated by "%s"'] = 'Le flux nommé "%s" pointant vers "%s" a été mis à jour par "%s"'; 
    356383 
    357 #inc/lib.zoneclear.feed.server.activityreport.php:40 
     384#inc/lib.zoneclear.feed.server.activityreport.php:42 
    358385$GLOBALS['__l10n']['updating feed records'] = 'mise à jour des enregistrements du flux (automatique)'; 
    359386 
    360 #inc/lib.zoneclear.feed.server.activityreport.php:41 
     387#inc/lib.zoneclear.feed.server.activityreport.php:43 
    361388$GLOBALS['__l10n']['Records of the feed named "%s" have been updated automatically'] = 'Les enregistrements du flux nommé "%s" ont été automatiquement mis à jour'; 
    362389 
    363 #inc/lib.zoneclear.feed.server.activityreport.php:49 
     390#inc/lib.zoneclear.feed.server.activityreport.php:51 
    364391$GLOBALS['__l10n']['feed deletion'] = 'suppression d\'un flux'; 
    365392 
    366 #inc/lib.zoneclear.feed.server.activityreport.php:50 
     393#inc/lib.zoneclear.feed.server.activityreport.php:52 
    367394$GLOBALS['__l10n']['Feed named "%s" point to "%s" has been deleted by "%s"'] = 'Le flux nommé "%s" pointant vers "%s" a été supprimé par "%s"'; 
    368395 
    369 #inc/lib.zoneclear.feed.server.activityreport.php:58 
     396#inc/lib.zoneclear.feed.server.activityreport.php:60 
    370397$GLOBALS['__l10n']['feed status'] = 'status d\'un flux'; 
    371398 
    372 #inc/lib.zoneclear.feed.server.activityreport.php:59 
     399#inc/lib.zoneclear.feed.server.activityreport.php:61 
    373400$GLOBALS['__l10n']['Feed named "%s" point to "%s" has been set to "%s"'] = 'Le flux nommé "%s" pointant vers "%s" a été marqué comme "%s"'; 
    374401 
    375 #inc/lib.zoneclear.feed.server.socialmewriter.php:21 
     402#inc/lib.zoneclear.feed.server.socialmewriter.php:23 
    376403$GLOBALS['__l10n']['New Zoneclear post'] = 'Nouveu billet Zoneclear'; 
    377404 
    378 #inc/lib.zoneclear.feed.server.socialmewriter.php:22 
     405#inc/lib.zoneclear.feed.server.socialmewriter.php:24 
    379406$GLOBALS['__l10n']['When a feed has new entry'] = 'Lorsqu\'un flux a un nouveau billet'; 
    380407 
    381 #index.php:29 
     408#index.php:31 
    382409$GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter'; 
    383410 
    384 #index.php:42 
     411#index.php:44 
    385412$GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 
    386413 
    387 #index.php:43 
     414#index.php:45 
    388415$GLOBALS['__l10n']['Entries successuflly deleted'] = 'Billets effacés avec succès'; 
    389416 
    390 #index.php:44 
     417#index.php:46 
    391418$GLOBALS['__l10n']['Feeds successfully deleted'] = 'Flux effacés avec succès'; 
    392419 
    393 #index.php:45 
     420#index.php:47 
    394421$GLOBALS['__l10n']['Feeds successfully enabled'] = 'Flux activés avec succès'; 
    395422 
    396 #index.php:46 
     423#index.php:48 
    397424$GLOBALS['__l10n']['Feeds successfully disabled'] = 'Flux désactivés avec succès'; 
    398425 
    399 #index.php:47 
     426#index.php:49 
    400427$GLOBALS['__l10n']['Feeds successfully updated'] = 'Flux mis à jour avec succès'; 
    401428 
    402 #index.php:48 
     429#index.php:50 
    403430$GLOBALS['__l10n']['Category of feeds successfully updated'] = 'Catégorie des flux modifiée avec succès'; 
    404431 
    405 #index.php:49 
     432#index.php:51 
    406433$GLOBALS['__l10n']['Frequency of feeds successfully updated'] = 'Fréquence de mise à jour des flux modifier avec succès'; 
    407434 
    408 #index.php:50 
     435#index.php:52 
    409436$GLOBALS['__l10n']['Last update of feeds successfully reseted'] = 'Dernière mise à jour des flux remis à zéro avec succès'; 
    410437 
    411 #index.php:51 
     438#index.php:53 
    412439$GLOBALS['__l10n']['Feed successfully updated'] = 'Flux modifié avec succès'; 
    413440 
    414 #index.php:52 
     441#index.php:54 
    415442$GLOBALS['__l10n']['Feed successfully created'] = 'Flux créé avec succès'; 
    416443 
    417 #index.php:53 
     444#index.php:55 
    418445$GLOBALS['__l10n']['Actions on posts successfully completed'] = 'Actions sur les billets complétées avec succès'; 
    419446 
    420 $GLOBALS['__l10n']['no entry'] = 'aucun billet'; 
    421  
    422 $GLOBALS['__l10n']['no source'] = 'aucune source'; 
    423  
    424447?> 
  • plugins/zoneclearFeedServer/locales/fr/main.po

    r2915 r3139  
    11# Language: Français 
    2 # Module: zoneclearFeedServer - 1.3 
    3 # Date: 2011-01-30 11:14:09 
    4 # Translated with translater 1.5 
     2# Module: zoneclearFeedServer - 2013.07.03 
     3# Date: 2013-07-04 05:46:48 
     4# Translated with translater 2013.05.11 
    55 
    66msgid "" 
    77msgstr "" 
    88"Content-Type: text/plain; charset=UTF-8\n" 
    9 "Project-Id-Version: zoneclearFeedServer 1.3\n" 
     9"Project-Id-Version: zoneclearFeedServer 2013.07.03\n" 
    1010"POT-Creation-Date: \n" 
    11 "PO-Revision-Date: 2011-01-30T11:14:09+00:00\n" 
    12 "Last-Translator: JC Denis\n" 
     11"PO-Revision-Date: 2013-07-04T05:46:48+00:00\n" 
     12"Last-Translator: Jean-Christian Denis\n" 
    1313"Language-Team: \n" 
    1414"MIME-Version: 1.0\n" 
    1515"Content-Transfer-Encoding: 8bit\n" 
    1616 
    17 #: _admin.php:23 
    18 #: inc/index.feed.php:593 
    19 #: inc/index.feeds.php:381 
    20 #: inc/index.setting.php:76 
    21 #: index.php:36 
     17#: _admin.php:25 
     18#: inc/index.feed.php:595 
     19#: inc/index.feeds.php:387 
     20#: inc/index.setting.php:88 
     21#: index.php:38 
    2222msgid "Feeds server" 
    2323msgstr "Serveur de flux" 
    2424 
    25 #: _admin.php:54 
     25#: _admin.php:66 
     26#: _admin.php:80 
    2627msgid "%s disabled feeds" 
    2728msgstr "%s flux désactivés" 
    2829 
    29 #: _admin.php:54 
     30#: _admin.php:66 
     31#: _admin.php:80 
    3032msgid "one disable feed" 
    3133msgstr "Un flux désactivé" 
    3234 
    33 #: _admin.php:95 
     35#: _admin.php:121 
    3436msgid "Feed source" 
    3537msgstr "Source du flux" 
    3638 
    37 #: _admin.php:98 
     39#: _admin.php:124 
    3840msgid "feed URL" 
    3941msgstr "URL du fil" 
    4042 
    41 #: _admin.php:99 
     43#: _admin.php:125 
    4244msgid "site URL" 
    4345msgstr "URL du site" 
    4446 
    45 #: _admin.php:107 
     47#: _admin.php:133 
    4648msgid "Edit this feed" 
    4749msgstr "Modifier ce flux" 
    4850 
    49 #: _public.php:192 
     51#: _public.php:194 
    5052msgid "Original post on <a href=\"%s\">%s</a>" 
    5153msgstr "Billet original sur <a href=\"%s\">%s</a>" 
    5254 
    53 #: _public.php:203 
     55#: _public.php:205 
    5456msgid "Read more details about this feed" 
    5557msgstr "Lire plus de détails à propos de ce flux" 
    5658 
    57 #: _widgets.php:23 
     59#: _widgets.php:25 
    5860msgid "Feeds server : sources" 
    5961msgstr "Serveur de flux : les sources" 
    6062 
    61 #: _widgets.php:27 
     63#: _widgets.php:29 
    6264msgid "Feeds sources" 
    6365msgstr "Sources des flux" 
    6466 
    65 #: _widgets.php:31 
     67#: _widgets.php:33 
    6668msgid "name" 
    6769msgstr "nom" 
    6870 
    69 #: _widgets.php:32 
     71#: _widgets.php:34 
    7072msgid "creation date" 
    7173msgstr "date de création" 
    7274 
    73 #: _widgets.php:42 
     75#: _widgets.php:44 
    7476msgid "Limit:" 
    7577msgstr "Limite :" 
    7678 
    77 #: _widgets.php:45 
     79#: _widgets.php:47 
    7880msgid "Add link to feeds page" 
    7981msgstr "Ajouter un lien vers la page des flux" 
    8082 
    81 #: _widgets.php:54 
     83#: _widgets.php:63 
    8284msgid "Feeds server : numbers" 
    8385msgstr "Serveur de flux : les chiffres" 
    8486 
    85 #: _widgets.php:55 
     87#: _widgets.php:64 
    8688msgid "Feeds numbers" 
    8789msgstr "Le flux en chiffres" 
    8890 
    89 #: _widgets.php:58 
     91#: _widgets.php:67 
    9092msgid "Show feeds count" 
    9193msgstr "Afficher le nombre de flux" 
    9294 
    93 #: _widgets.php:59 
     95#: _widgets.php:68 
    9496msgid "Title for feeds count:" 
    9597msgstr "Titre pour le nombre de flux :" 
    9698 
    97 #: _widgets.php:59 
     99#: _widgets.php:68 
    98100msgid "Feeds:" 
    99101msgstr "Flux :" 
    100102 
    101 #: _widgets.php:62 
     103#: _widgets.php:71 
    102104msgid "Show entries count" 
    103105msgstr "Afficher le nombre de billets" 
    104106 
    105 #: _widgets.php:63 
     107#: _widgets.php:72 
    106108msgid "Title for entries count:" 
    107109msgstr "Titre pour le nombre de billets :" 
    108110 
    109 #: _widgets.php:63 
     111#: _widgets.php:72 
    110112msgid "Entries:" 
    111113msgstr "Billets :" 
    112114 
    113 #: _widgets.php:102 
     115#: _widgets.php:122 
    114116msgid "All sources" 
    115117msgstr "Toutes les sources" 
    116118 
    117 #: _widgets.php:132 
    118 #: _widgets.php:167 
    119 #: inc/index.feeds.php:80 
    120 msgid "none" 
    121 msgstr "aucun" 
    122  
    123 #: _widgets.php:136 
     119#: _widgets.php:153 
     120msgid "no sources" 
     121msgstr "aucune source" 
     122 
     123#: _widgets.php:157 
    124124msgid "one source" 
    125125msgstr "une source" 
    126126 
    127 #: _widgets.php:140 
    128 msgid "%s sources" 
    129 msgstr "%s sources" 
    130  
    131 #: _widgets.php:171 
     127#: _widgets.php:161 
     128msgid "%d sources" 
     129msgstr "%d sources" 
     130 
     131#: _widgets.php:188 
     132msgid "no entries" 
     133msgstr "aucun billet" 
     134 
     135#: _widgets.php:192 
    132136msgid "one entry" 
    133137msgstr "un billet" 
    134138 
    135 #: _widgets.php:175 
    136 msgid "%s entries" 
    137 msgstr "%s billets" 
    138  
    139 #: inc/class.zoneclear.feed.server.php:660 
     139#: _widgets.php:196 
     140msgid "%d entries" 
     141msgstr "%d billets" 
     142 
     143#: default-templates/zcfeeds.html:50 
     144msgid "List of feeds" 
     145msgstr "Liste des sources" 
     146 
     147#: inc/class.zoneclear.feed.server.php:678 
    140148msgid "disabled" 
    141149msgstr "désactivé" 
    142150 
    143 #: inc/class.zoneclear.feed.server.php:661 
     151#: inc/class.zoneclear.feed.server.php:679 
    144152msgid "enabled" 
    145153msgstr "activé" 
    146154 
    147 #: inc/class.zoneclear.feed.server.php:668 
     155#: inc/class.zoneclear.feed.server.php:686 
    148156msgid "every hour" 
    149157msgstr "toutes les heures" 
    150158 
    151 #: inc/class.zoneclear.feed.server.php:669 
     159#: inc/class.zoneclear.feed.server.php:687 
    152160msgid "every two hours" 
    153161msgstr "toutes les deux heures" 
    154162 
    155 #: inc/class.zoneclear.feed.server.php:670 
     163#: inc/class.zoneclear.feed.server.php:688 
    156164msgid "two times per day" 
    157165msgstr "deux fois par jour" 
    158166 
    159 #: inc/class.zoneclear.feed.server.php:671 
     167#: inc/class.zoneclear.feed.server.php:689 
    160168msgid "every day" 
    161169msgstr "tous les jours" 
    162170 
    163 #: inc/class.zoneclear.feed.server.php:672 
     171#: inc/class.zoneclear.feed.server.php:690 
    164172msgid "every two days" 
    165173msgstr "tous les deux jours" 
    166174 
    167 #: inc/class.zoneclear.feed.server.php:673 
     175#: inc/class.zoneclear.feed.server.php:691 
    168176msgid "every week" 
    169177msgstr "toutes les semaines" 
    170178 
    171 #: inc/class.zoneclear.feed.server.php:728 
     179#: inc/class.zoneclear.feed.server.php:746 
    172180msgid "home page" 
    173181msgstr "la page d'accueil" 
    174182 
    175 #: inc/class.zoneclear.feed.server.php:729 
     183#: inc/class.zoneclear.feed.server.php:747 
    176184msgid "post pages" 
    177185msgstr "la page d'un billet" 
    178186 
    179 #: inc/class.zoneclear.feed.server.php:730 
     187#: inc/class.zoneclear.feed.server.php:748 
    180188msgid "tags pages" 
    181189msgstr "les pages des tags" 
    182190 
    183 #: inc/class.zoneclear.feed.server.php:731 
     191#: inc/class.zoneclear.feed.server.php:749 
    184192msgid "archives pages" 
    185193msgstr "les pages des archives" 
    186194 
    187 #: inc/class.zoneclear.feed.server.php:732 
     195#: inc/class.zoneclear.feed.server.php:750 
    188196msgid "category pages" 
    189197msgstr "les pages de catégorie" 
    190198 
    191 #: inc/class.zoneclear.feed.server.php:733 
     199#: inc/class.zoneclear.feed.server.php:751 
    192200msgid "entries feed" 
    193201msgstr "le flux des billets" 
    194202 
    195 #: inc/index.feed.php:190 
     203#: inc/index.feed.php:192 
    196204msgid "This feed does not exist." 
    197205msgstr "Ce flux n'existe pas." 
    198206 
    199 #: inc/index.feed.php:223 
     207#: inc/index.feed.php:225 
    200208msgid "next feed" 
    201209msgstr "flux suivant" 
    202210 
    203 #: inc/index.feed.php:231 
     211#: inc/index.feed.php:233 
    204212msgid "previous feed" 
    205213msgstr "flux précédent" 
    206214 
    207 #: inc/index.feed.php:265 
     215#: inc/index.feed.php:267 
    208216msgid "Record with same feed URL already exists." 
    209217msgstr "Un enregistrement avec la même URL de flux existe déjà." 
    210218 
    211 #: inc/index.feed.php:269 
     219#: inc/index.feed.php:271 
    212220msgid "You must provide a name." 
    213221msgstr "Vous devez indiquer un nom." 
    214222 
    215 #: inc/index.feed.php:273 
     223#: inc/index.feed.php:275 
    216224msgid "You must provide an owner." 
    217225msgstr "Vous devez indiquer un propriétaire." 
    218226 
    219 #: inc/index.feed.php:277 
     227#: inc/index.feed.php:279 
    220228msgid "You must provide valid site URL." 
    221229msgstr "Vous devez donner une URL de site valide." 
    222230 
    223 #: inc/index.feed.php:281 
     231#: inc/index.feed.php:283 
    224232msgid "You must provide valid feed URL." 
    225233msgstr "Vous devez donner une URL de flux valide." 
    226234 
    227 #: inc/index.feed.php:286 
     235#: inc/index.feed.php:288 
    228236msgid "You must provide valid category." 
    229237msgstr "Vous devez donner une catégorie valide." 
    230238 
    231 #: inc/index.feed.php:599 
    232 #: inc/index.feeds.php:386 
    233 #: inc/index.setting.php:92 
     239#: inc/index.feed.php:601 
     240#: inc/index.feeds.php:392 
     241#: inc/index.setting.php:104 
    234242msgid "Feeds" 
    235243msgstr "Fils de syndication" 
    236244 
    237 #: inc/index.feed.php:603 
     245#: inc/index.feed.php:605 
    238246msgid "Edit feed" 
    239247msgstr "Edition de flux" 
    240248 
    241 #: inc/index.feed.php:604 
    242 #: inc/index.feed.php:608 
    243 #: inc/index.feeds.php:387 
    244 #: inc/index.setting.php:94 
     249#: inc/index.feed.php:606 
     250#: inc/index.feed.php:610 
     251#: inc/index.feeds.php:393 
     252#: inc/index.setting.php:106 
    245253msgid "New feed" 
    246254msgstr "Nouveau flux" 
    247255 
    248 #: inc/index.feed.php:627 
    249 #: inc/index.feeds.php:34 
     256#: inc/index.feed.php:629 
     257#: inc/index.feeds.php:36 
    250258msgid "Feed" 
    251259msgstr "Flux" 
    252260 
    253 #: inc/index.feed.php:630 
     261#: inc/index.feed.php:632 
    254262msgid "Local settings" 
    255263msgstr "Paramètres locaux" 
    256264 
    257 #: inc/index.feed.php:637 
     265#: inc/index.feed.php:639 
    258266msgid "Update:" 
    259267msgstr "Mise à jour :" 
    260268 
    261 #: inc/index.feed.php:645 
     269#: inc/index.feed.php:647 
    262270msgid "Import tags from feed" 
    263271msgstr "Importer les tags depuis le flux" 
    264272 
    265 #: inc/index.feed.php:648 
     273#: inc/index.feed.php:650 
    266274msgid "Feed information" 
    267275msgstr "Information sur le flux" 
    268276 
    269 #: inc/index.feed.php:652 
     277#: inc/index.feed.php:654 
    270278msgid "Owner:" 
    271279msgstr "Propriétaire :" 
    272280 
    273 #: inc/index.feed.php:656 
     281#: inc/index.feed.php:658 
    274282msgid "Tweeter or Identica ident:" 
    275283msgstr "Identifiant Twiiter ou Identi.ca :" 
    276284 
    277 #: inc/index.feed.php:659 
     285#: inc/index.feed.php:661 
    278286msgid "Site URL:" 
    279287msgstr "URL du site :" 
    280288 
    281 #: inc/index.feeds.php:21 
     289#: inc/index.feeds.php:23 
    282290msgid "There is no feed" 
    283291msgstr "Il n'y a pas de flux" 
    284292 
    285 #: inc/index.feeds.php:33 
    286 #: inc/index.feeds.php:294 
     293#: inc/index.feeds.php:35 
     294#: inc/index.feeds.php:300 
    287295msgid "Name" 
    288296msgstr "Nom" 
    289297 
    290 #: inc/index.feeds.php:37 
     298#: inc/index.feeds.php:39 
    291299msgid "Frequency" 
    292300msgstr "Fréquence" 
    293301 
    294 #: inc/index.feeds.php:40 
     302#: inc/index.feeds.php:42 
    295303msgid "Owner" 
    296304msgstr "Propriétaire" 
    297305 
    298 #: inc/index.feeds.php:90 
     306#: inc/index.feeds.php:82 
     307msgid "no categories" 
     308msgstr "aucune catégorie" 
     309 
     310#: inc/index.feeds.php:96 
    299311msgid "Edit" 
    300312msgstr "Modifier" 
    301313 
    302 #: inc/index.feeds.php:107 
     314#: inc/index.feeds.php:113 
    303315msgid "never" 
    304316msgstr "jamais" 
    305317 
    306 #: inc/index.feeds.php:119 
     318#: inc/index.feeds.php:125 
    307319msgid "View entries" 
    308320msgstr "Voir les billets" 
    309321 
    310 #: inc/index.feeds.php:295 
     322#: inc/index.feeds.php:301 
    311323msgid "frequency" 
    312324msgstr "fréquence" 
    313325 
    314 #: inc/index.feeds.php:296 
     326#: inc/index.feeds.php:302 
    315327msgid "Date of update" 
    316328msgstr "Date de mise à jour" 
    317329 
    318 #: inc/index.feeds.php:306 
     330#: inc/index.feeds.php:312 
    319331msgid "change update interval" 
    320332msgstr "changer l'intervalle de mise à jour" 
    321333 
    322 #: inc/index.feeds.php:307 
     334#: inc/index.feeds.php:313 
    323335msgid "disable feed update" 
    324336msgstr "désactiver la mise à jour du flux" 
    325337 
    326 #: inc/index.feeds.php:308 
     338#: inc/index.feeds.php:314 
    327339msgid "enable feed update" 
    328340msgstr "activer la mise à jour du flux" 
    329341 
    330 #: inc/index.feeds.php:309 
     342#: inc/index.feeds.php:315 
    331343msgid "Reset last update" 
    332344msgstr "remettre à zéro le chronomètre de mise à jour" 
    333345 
    334 #: inc/index.feeds.php:310 
     346#: inc/index.feeds.php:316 
    335347msgid "Update (check) feed" 
    336348msgstr "mettre à jour (vérifier) le flux" 
    337349 
    338 #: inc/index.feeds.php:311 
     350#: inc/index.feeds.php:317 
    339351msgid "delete related posts" 
    340352msgstr "effacer les billets liés" 
    341353 
    342 #: inc/index.feeds.php:312 
     354#: inc/index.feeds.php:318 
    343355msgid "delete feed (without related posts)" 
    344356msgstr "effacer le flux (sans effacer les billets liés)" 
    345357 
    346 #: inc/index.feeds.php:395 
     358#: inc/index.feeds.php:401 
    347359msgid "This changes category for all selected feeds." 
    348360msgstr "Ceci change la catégorie pour tous les flux sélectionnés." 
    349361 
    350 #: inc/index.feeds.php:407 
     362#: inc/index.feeds.php:413 
    351363msgid "Select a category:" 
    352364msgstr "Sélectionner une catégorie :" 
    353365 
    354 #: inc/index.feeds.php:423 
     366#: inc/index.feeds.php:429 
    355367msgid "This changes interval of updates for all selected feeds." 
    356368msgstr "Ceci change l'intervalle de mise à jour des flux sélectionnés." 
    357369 
    358 #: inc/index.feeds.php:435 
     370#: inc/index.feeds.php:441 
    359371msgid "Select a frequency:" 
    360372msgstr "Sélectionner une fréquence :" 
    361373 
    362 #: inc/index.feeds.php:492 
     374#: inc/index.feeds.php:498 
    363375msgid "Selected feeds action:" 
    364376msgstr "Action sur les flux sélectionnés :" 
    365377 
    366 #: inc/index.setting.php:62 
     378#: inc/index.setting.php:68 
    367379msgid "disable" 
    368380msgstr "désactiver" 
    369381 
    370 #: inc/index.setting.php:63 
     382#: inc/index.setting.php:69 
    371383msgid "before display" 
    372384msgstr "avant l'affichage" 
    373385 
    374 #: inc/index.setting.php:64 
     386#: inc/index.setting.php:70 
    375387msgid "after display" 
    376388msgstr "après l'affichage" 
    377389 
    378 #: inc/index.setting.php:65 
     390#: inc/index.setting.php:71 
    379391msgid "through Ajax" 
    380392msgstr "A travers Ajax" 
    381393 
    382 #: inc/index.setting.php:93 
    383 #: index.php:34 
     394#: inc/index.setting.php:78 
     395msgid "Keep source case" 
     396msgstr "Garder la casse de la source" 
     397 
     398#: inc/index.setting.php:79 
     399msgid "First upper case" 
     400msgstr "Premier caractère en majuscule" 
     401 
     402#: inc/index.setting.php:80 
     403msgid "All lower case" 
     404msgstr "Tout en minuscule" 
     405 
     406#: inc/index.setting.php:81 
     407msgid "All upper case" 
     408msgstr "Tout en majuscule" 
     409 
     410#: inc/index.setting.php:105 
     411#: index.php:36 
    384412msgid "Settings" 
    385413msgstr "Paramètres" 
    386414 
    387 #: inc/index.setting.php:98 
     415#: inc/index.setting.php:110 
    388416msgid "Plugin activation" 
    389417msgstr "Activation de l'extension" 
    390418 
    391 #: inc/index.setting.php:101 
     419#: inc/index.setting.php:113 
    392420msgid "Enable plugin" 
    393421msgstr "Activer l'extension" 
    394422 
    395 #: inc/index.setting.php:104 
     423#: inc/index.setting.php:116 
    396424msgid "General rules" 
    397425msgstr "Réglages" 
    398426 
    399 #: inc/index.setting.php:107 
     427#: inc/index.setting.php:119 
    400428msgid "Status of new posts:" 
    401429msgstr "Status des nouveaux billets :" 
    402430 
    403 #: inc/index.setting.php:110 
     431#: inc/index.setting.php:122 
    404432msgid "Owner of entries created by zoneclearFeedServer:" 
    405433msgstr "Propriétaire des billets créés par zoneclearFeedServer :" 
    406434 
    407 #: inc/index.setting.php:113 
     435#: inc/index.setting.php:125 
     436msgid "How to transform imported tags:" 
     437msgstr "Comment tranformer la casse des mots-clés importés :" 
     438 
     439#: inc/index.setting.php:128 
    408440msgid "Update feeds on public side:" 
    409441msgstr "Mettre à jour les flux depuis la partie publique :" 
    410442 
    411 #: inc/index.setting.php:116 
     443#: inc/index.setting.php:131 
    412444msgid "Number of feeds to update at one time:" 
    413445msgstr "Nombre de flux à mettre à jour à la fois :" 
    414446 
    415 #: inc/index.setting.php:120 
     447#: inc/index.setting.php:135 
     448msgid "Keep active empty feeds" 
     449msgstr "Garder actif les flux vides" 
     450 
     451#: inc/index.setting.php:138 
    416452msgid "Enable public page" 
    417453msgstr "Activer la page publique" 
    418454 
    419 #: inc/index.setting.php:122 
     455#: inc/index.setting.php:140 
    420456msgid "Dotclear cache is not writable or not well configured!" 
    421457msgstr "Le cache de Dotclear n'est pas accessible en écriture ou n'est pas configuré!" 
    422458 
    423 #: inc/index.setting.php:128 
     459#: inc/index.setting.php:146 
    424460msgid "A writable cache folder is required to use this extension." 
    425461msgstr "Un dossier de cache accessible en écriture est nécessaire pour utiliser cette extension." 
    426462 
    427 #: inc/index.setting.php:129 
     463#: inc/index.setting.php:147 
    428464msgid "If you set a large number of feeds to update at one time, this may cause a timeout error. We recommand to keep it to one." 
    429465msgstr "Si vous paramètrez un grand nombre de flux à mettre à jour, ceci peut causer une erreur de timeout. Il est recommandé de laisser cette valeur à 1." 
    430466 
    431 #: inc/index.setting.php:130 
     467#: inc/index.setting.php:148 
    432468msgid "If you use cron script, you can disable public update." 
    433469msgstr "Si vous utilisez un script cron, vous pouvez désactiver la mise à jour publique." 
    434470 
    435 #: inc/index.setting.php:131 
     471#: inc/index.setting.php:149 
    436472msgid "If active, a public list of feeds are available at \"%s\"." 
    437473msgstr "Si activé, une page publique de la liste des flux est disponible à l'adresse %s ." 
    438474 
    439 #: inc/index.setting.php:132 
     475#: inc/index.setting.php:150 
    440476msgid "In order to do update through Ajax, your theme must have behavior publicHeadContent." 
    441477msgstr "Pour utiliser la mise à jour depuis Ajax, votre thème doit avoir le behavior publicheadContent." 
    442478 
    443 #: inc/index.setting.php:141 
     479#: inc/index.setting.php:159 
    444480msgid "Display" 
    445481msgstr "Affichage" 
    446482 
    447 #: inc/index.setting.php:144 
     483#: inc/index.setting.php:162 
    448484msgid "Show full content on:" 
    449485msgstr "Afficher le contenu complet sur :" 
    450486 
    451 #: inc/index.setting.php:155 
     487#: inc/index.setting.php:173 
    452488msgid "Entries title" 
    453489msgstr "Titre des billets" 
    454490 
    455 #: inc/index.setting.php:156 
     491#: inc/index.setting.php:174 
    456492msgid "Redirect to original post on:" 
    457493msgstr "Rediriger vers le billet original sur :" 
    458494 
    459 #: inc/lib.zoneclear.feed.server.activityreport.php:16 
     495#: inc/lib.zoneclear.feed.server.activityreport.php:18 
    460496msgid "Plugin zoneclearFeedServer" 
    461497msgstr "Extension zoneclearFeedServer" 
    462498 
    463 #: inc/lib.zoneclear.feed.server.activityreport.php:22 
     499#: inc/lib.zoneclear.feed.server.activityreport.php:24 
    464500msgid "feed creation" 
    465501msgstr "création d'un flux" 
    466502 
    467 #: inc/lib.zoneclear.feed.server.activityreport.php:23 
     503#: inc/lib.zoneclear.feed.server.activityreport.php:25 
    468504msgid "A new feed named \"%s\" point to \"%s\" was added by \"%s\"" 
    469505msgstr "Un nouveau flux nommé \"%s\" pointant vers \"%s\" a été ajouté par \"%s\"" 
    470506 
    471 #: inc/lib.zoneclear.feed.server.activityreport.php:31 
     507#: inc/lib.zoneclear.feed.server.activityreport.php:33 
    472508msgid "updating feed info" 
    473509msgstr "mise à jour des informations du flux (administration)" 
    474510 
    475 #: inc/lib.zoneclear.feed.server.activityreport.php:32 
     511#: inc/lib.zoneclear.feed.server.activityreport.php:34 
    476512msgid "Feed named \"%s\" point to \"%s\" has been updated by \"%s\"" 
    477513msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été mis à jour par \"%s\"" 
    478514 
    479 #: inc/lib.zoneclear.feed.server.activityreport.php:40 
     515#: inc/lib.zoneclear.feed.server.activityreport.php:42 
    480516msgid "updating feed records" 
    481517msgstr "mise à jour des enregistrements du flux (automatique)" 
    482518 
    483 #: inc/lib.zoneclear.feed.server.activityreport.php:41 
     519#: inc/lib.zoneclear.feed.server.activityreport.php:43 
    484520msgid "Records of the feed named \"%s\" have been updated automatically" 
    485521msgstr "Les enregistrements du flux nommé \"%s\" ont été automatiquement mis à jour" 
    486522 
    487 #: inc/lib.zoneclear.feed.server.activityreport.php:49 
     523#: inc/lib.zoneclear.feed.server.activityreport.php:51 
    488524msgid "feed deletion" 
    489525msgstr "suppression d'un flux" 
    490526 
    491 #: inc/lib.zoneclear.feed.server.activityreport.php:50 
     527#: inc/lib.zoneclear.feed.server.activityreport.php:52 
    492528msgid "Feed named \"%s\" point to \"%s\" has been deleted by \"%s\"" 
    493529msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été supprimé par \"%s\"" 
    494530 
    495 #: inc/lib.zoneclear.feed.server.activityreport.php:58 
     531#: inc/lib.zoneclear.feed.server.activityreport.php:60 
    496532msgid "feed status" 
    497533msgstr "status d'un flux" 
    498534 
    499 #: inc/lib.zoneclear.feed.server.activityreport.php:59 
     535#: inc/lib.zoneclear.feed.server.activityreport.php:61 
    500536msgid "Feed named \"%s\" point to \"%s\" has been set to \"%s\"" 
    501537msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été marqué comme \"%s\"" 
    502538 
    503 #: inc/lib.zoneclear.feed.server.socialmewriter.php:21 
     539#: inc/lib.zoneclear.feed.server.socialmewriter.php:23 
    504540msgid "New Zoneclear post" 
    505541msgstr "Nouveu billet Zoneclear" 
    506542 
    507 #: inc/lib.zoneclear.feed.server.socialmewriter.php:22 
     543#: inc/lib.zoneclear.feed.server.socialmewriter.php:24 
    508544msgid "When a feed has new entry" 
    509545msgstr "Lorsqu'un flux a un nouveau billet" 
    510546 
    511 #: index.php:29 
     547#: index.php:31 
    512548msgid "Please wait" 
    513549msgstr "Veuillez patienter" 
    514550 
    515 #: index.php:42 
     551#: index.php:44 
    516552msgid "Configuration successfully saved" 
    517553msgstr "Configuration sauvegardée avec succès" 
    518554 
    519 #: index.php:43 
     555#: index.php:45 
    520556msgid "Entries successuflly deleted" 
    521557msgstr "Billets effacés avec succès" 
    522558 
    523 #: index.php:44 
     559#: index.php:46 
    524560msgid "Feeds successfully deleted" 
    525561msgstr "Flux effacés avec succès" 
    526562 
    527 #: index.php:45 
     563#: index.php:47 
    528564msgid "Feeds successfully enabled" 
    529565msgstr "Flux activés avec succès" 
    530566 
    531 #: index.php:46 
     567#: index.php:48 
    532568msgid "Feeds successfully disabled" 
    533569msgstr "Flux désactivés avec succès" 
    534570 
    535 #: index.php:47 
     571#: index.php:49 
    536572msgid "Feeds successfully updated" 
    537573msgstr "Flux mis à jour avec succès" 
    538574 
    539 #: index.php:48 
     575#: index.php:50 
    540576msgid "Category of feeds successfully updated" 
    541577msgstr "Catégorie des flux modifiée avec succès" 
    542578 
    543 #: index.php:49 
     579#: index.php:51 
    544580msgid "Frequency of feeds successfully updated" 
    545581msgstr "Fréquence de mise à jour des flux modifier avec succès" 
    546582 
    547 #: index.php:50 
     583#: index.php:52 
    548584msgid "Last update of feeds successfully reseted" 
    549585msgstr "Dernière mise à jour des flux remis à zéro avec succès" 
    550586 
    551 #: index.php:51 
     587#: index.php:53 
    552588msgid "Feed successfully updated" 
    553589msgstr "Flux modifié avec succès" 
    554590 
    555 #: index.php:52 
     591#: index.php:54 
    556592msgid "Feed successfully created" 
    557593msgstr "Flux créé avec succès" 
    558594 
    559 #: index.php:53 
     595#: index.php:55 
    560596msgid "Actions on posts successfully completed" 
    561597msgstr "Actions sur les billets complétées avec succès" 
    562598 
    563 msgid "no entry" 
    564 msgstr "aucun billet" 
    565  
    566 msgid "no source" 
    567 msgstr "aucune source" 
    568  
  • plugins/zoneclearFeedServer/release.txt

    r2915 r3139  
    22 * Not fixed disallow self blog feeds 
    33 * Added plugin muppet support (request Mathieu M.) 
     4 * Added log for errors 
     5 
     62013.07.02 
     7 * Required Dotclear 2.5 
     8 * Fixed admin pages titles and messages and typo 
     9 * Added Favorites icon 
     10 * Added new 'homeonly' option on widgets 
     11 * Fixed https protocol 
     12 * Added option to keep active empty feeds 
     13 * Added option to transform imported tags 
    414 
    5151.3 20110130 
Note: See TracChangeset for help on using the changeset viewer.

Sites map