Changeset 3139
- Timestamp:
- 07/05/13 07:56:47 (10 years ago)
- Location:
- plugins/zoneclearFeedServer
- Files:
-
- 1 added
- 23 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/zoneclearFeedServer/_admin.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 31 33 # Dashboard icon 32 34 $core->addBehavior('adminDashboardIcons',array('zoneclearFeedServerAdminBehaviors','adminDashboardIcons')); 35 $core->addBehavior('adminDashboardFavs',array('zoneclearFeedServerAdminBehaviors','adminDashboardFavs')); 36 $core->addBehavior('adminDashboardFavsIcon',array('zoneclearFeedServerAdminBehaviors','adminDashboardFavsIcon')); 33 37 # Add info about feed on post page sidebar 34 38 $core->addBehavior('adminPostHeaders',array('zoneclearFeedServerAdminBehaviors','adminPostHeaders')); … … 45 49 class zoneclearFeedServerAdminBehaviors 46 50 { 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 47 73 # Add icon on dashboard if there are disabled feeds 48 74 public static function adminDashboardIcons($core,$icons) … … 57 83 sprintf($str,$count), 58 84 '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' 60 86 )); 61 87 } -
plugins/zoneclearFeedServer/_define.php
r2928 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 17 19 /* Description*/ "Mix your blog with a feeds planet", 18 20 /* Author */ "JC Denis, BG", 19 /* Version */ ' 1.3.1',21 /* Version */ '2013.07.04', 20 22 /* Permissions */ 'admin' 21 23 ); 22 /* date */ #2011013023 24 ?> -
plugins/zoneclearFeedServer/_install.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 21 23 { 22 24 # 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','<')) 24 26 { 25 throw new Exception('zoneclearFeedServer requires Dotclear 2. 2');27 throw new Exception('zoneclearFeedServer requires Dotclear 2.5'); 26 28 } 27 29 … … 65 67 $s->put('zoneclearFeedServer_bhv_pub_upd',2,'string','Auto update on public side (disable/before/after)',false,true); 66 68 $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); 67 71 $s->put('zoneclearFeedServer_user','','string','User id that has right on post',false,true); 68 72 $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 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_RC_PATH')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 global $__autoload, $core; -
plugins/zoneclearFeedServer/_public.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 283 285 { 284 286 $lastn = -1; 287 $p = ''; 285 288 if (isset($a['lastn'])) 286 289 { … … 523 526 public static function FeedsCount($a) 524 527 { 525 $none = 'no source ';528 $none = 'no sources'; 526 529 $one = 'one source'; 527 530 $more = '%d sources'; … … 553 556 public static function FeedsEntriesCount($a) 554 557 { 555 $none = 'no entr y';558 $none = 'no entries'; 556 559 $one = 'one entry'; 557 560 $more = '%d entries'; … … 588 591 public static function FeedEntriesCount($a) 589 592 { 590 $none = 'no entr y';593 $none = 'no entries'; 591 594 $one = 'one entry'; 592 595 $more = '%d entries'; -
plugins/zoneclearFeedServer/_uninstall.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/zoneclearFeedServer/_widgets.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 46 48 ); 47 49 $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 ) 49 58 ); 50 59 } … … 63 72 $w->zcfsnumber->setting('entry_title',__('Title for entries count:'),__('Entries:'),'text'); 64 73 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 ); 66 85 } 67 86 … … 71 90 72 91 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; 74 94 75 95 $p = array(); … … 115 135 116 136 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; 118 139 119 140 $zc = new zoneclearFeedServer($core); … … 130 151 if ($count == 0) 131 152 { 132 $text = sprintf(__('no ne'),$count);153 $text = sprintf(__('no sources'),$count); 133 154 } 134 155 elseif ($count == 1) … … 138 159 else 139 160 { 140 $text = sprintf(__('% ssources'),$count);161 $text = sprintf(__('%d sources'),$count); 141 162 } 142 163 if ($core->blog->settings->zoneclearFeedServer->zoneclearFeedServer_pub_active) … … 165 186 if ($count == 0) 166 187 { 167 $text = sprintf(__('no ne'),$count);188 $text = sprintf(__('no entries'),$count); 168 189 } 169 190 elseif ($count == 1) … … 173 194 else 174 195 { 175 $text = sprintf(__('% sentries'),$count);196 $text = sprintf(__('%d entries'),$count); 176 197 } 177 198 -
plugins/zoneclearFeedServer/cron-script.php
r2915 r3139 2 2 <?php 3 3 # -- BEGIN LICENSE BLOCK ---------------------------------- 4 # 4 5 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 5 6 # 6 # Copyright (c) 2009-201 1 JCDenis, BG and contributors7 # jcdenis@gdwd.com7 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 8 # contact@jcdenis.fr http://jcd.lv 8 9 # 9 10 # Licensed under the GPL version 2.0 license. 10 11 # A copy of this license is available in LICENSE file or at 11 12 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 13 # 12 14 # -- END LICENSE BLOCK ------------------------------------ 13 15 -
plugins/zoneclearFeedServer/default-templates/zcfsupd.js
r2915 r3139 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 1 JCDenis, BG and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/zoneclearFeedServer/inc/class.zoneclear.feed.server.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 15 17 class zoneclearFeedServer 16 18 { 17 public static $nethttp_timeout = 2;19 public static $nethttp_timeout = 5; 18 20 public static $nethttp_agent = 'zoneclearFeedServer - http://zoneclear.org'; 19 21 public static $nethttp_maxredirect = 2; … … 402 404 if (!$feed) 403 405 { 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 } 406 411 $i++; 407 412 } … … 423 428 { 424 429 $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); 426 441 $is_new_published_entry = false; 427 442 … … 509 524 $cur_meta->post_id = $post_id; 510 525 $cur_meta->meta_type = 'zoneclearfeed_url'; 511 $cur_meta->meta_id = $meta->url = $item ->link;526 $cur_meta->meta_id = $meta->url = $item_link; 512 527 $cur_meta->insert(); 513 528 … … 543 558 $tags = array_unique($tags); 544 559 } 560 $formated_tags = array(); 545 561 foreach ($tags as $tag) 546 562 { 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 } 548 576 } 549 $meta->tags = $ tags;577 $meta->tags = $formated_tags; 550 578 551 579 # --BEHAVIOR-- zoneclearFeedServerAfterFeedUpdate … … 616 644 public static function validateURL($url) 617 645 { 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://')) 624 647 { 625 648 return false; -
plugins/zoneclearFeedServer/inc/index.feed.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 601 603 { 602 604 echo 603 ' › '.__('Edit feed').605 ' › <span class="page-title">'.__('Edit feed').'</span>'. 604 606 ' - <a class="button" href="'.$p_url.'&part=feed">'.__('New feed').'</a>'; 605 607 } 606 608 else 607 609 { 608 echo ' › '.__('New feed');610 echo ' › <span class="page-title">'.__('New feed').'</span>'; 609 611 } 610 612 echo ' … … 684 686 form::hidden(array('part'),'feed'). 685 687 $core->formNonce(). 686 '<input type="submit" name="save" value="'.__(' save').'" /></p>688 '<input type="submit" name="save" value="'.__('Save').'" /></p> 687 689 </form> 688 690 </div>'; … … 729 731 '<p><label class="classic">'. form::field('nb',3,3,$nb_per_page).' '. 730 732 __('Entries per page').'</label> '. 731 '<input type="submit" value="'.__(' filter').'" />'.733 '<input type="submit" value="'.__('Apply filters').'" />'. 732 734 form::hidden(array('p'),'zoneclearFeedServer'). 733 735 form::hidden(array('part'),'feed'). -
plugins/zoneclearFeedServer/inc/index.feeds.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 78 80 '<img src="images/check-on.png" alt="enable" />' : 79 81 '<img src="images/check-off.png" alt="disable" />'; 80 $category = $this->rs->cat_id ? $this->rs->cat_title : __('no ne');82 $category = $this->rs->cat_id ? $this->rs->cat_title : __('no categories'); 81 83 82 84 $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 } 83 89 84 90 return … … 92 98 "</td>\n". 93 99 '<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>'. 95 101 "</td>\n". 96 102 '<td class="nowrap">'. … … 109 115 ). 110 116 "</td>\n". 111 '<td >'.117 '<td class="nowrap">'. 112 118 html::escapeHTML($category). 113 119 "</td>\n". … … 384 390 <body> 385 391 <h2>'.html::escapeHTML($core->blog->name). 386 ' › '.__('Feeds').392 ' › <span class="page-title">'.__('Feeds').'</span>'. 387 393 ' - <a class="button" href="'.$p_url.'&part=feed">'.__('New feed').'</a>'. 388 394 '</h2>'.$msg; … … 474 480 form::field('nb',3,3,$nb_per_page).' '.__('Entries per page').' 475 481 </label> 476 <input type="submit" value="'.__(' filter').'" />'.482 <input type="submit" value="'.__('Apply filters').'" />'. 477 483 form::hidden(array('p'),'zoneclearFeedServer'). 478 484 form::hidden(array('part'),'feeds').' -
plugins/zoneclearFeedServer/inc/index.setting.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 19 21 $update_limit = (integer) $s->zoneclearFeedServer_update_limit; 20 22 if ($update_limit < 1) $update_limit = 10; 23 $keep_empty_feed = (boolean) $s->zoneclearFeedServer_keep_empty_feed; 24 $tag_case = (integer) $s->zoneclearFeedServer_tag_case; 21 25 $post_full_tpl = @unserialize($s->zoneclearFeedServer_post_full_tpl); 22 26 if (!is_array($post_full_tpl)) $post_full_tpl = array(); … … 44 48 $s->put('zoneclearFeedServer_bhv_pub_upd',(integer) $_POST['bhv_pub_upd']); 45 49 $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']); 46 52 $s->put('zoneclearFeedServer_post_full_tpl',serialize($_POST['post_full_tpl'])); 47 53 $s->put('zoneclearFeedServer_post_title_redir',serialize($_POST['post_title_redir'])); … … 69 75 __('published') => 1 70 76 ); 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 ); 71 83 72 84 $pub_page_url = $core->blog->url.$core->url->getBase('zoneclearFeedsPage'); … … 91 103 <h2>'.html::escapeHTML($core->blog->name). 92 104 ' › <a href="'.$p_url.'&part=feeds">'.__('Feeds').'</a>'. 93 ' › '.__('Settings').105 ' › <span class="page-title">'.__('Settings').'</span>'. 94 106 ' - <a class="button" href="'.$p_url.'&part=feed">'.__('New feed').'</a>'. 95 107 '</h2>'.$msg.' … … 111 123 form::combo(array('feeduser'),$combo_admins,$feeduser).'</label></p> 112 124 <p class="field"><label>'. 125 __('How to transform imported tags:').'<br />'. 126 form::combo(array('tag_case'),$combo_tagcase,$tag_case).'</label></p> 127 <p class="field"><label>'. 113 128 __('Update feeds on public side:').'<br />'. 114 129 form::combo(array('bhv_pub_upd'),$combo_pubupd,$bhv_pub_upd).'</label></p> … … 116 131 __('Number of feeds to update at one time:').'<br />'. 117 132 form::field('update_limit',6,4,$update_limit).'</label></p> 133 <p class="field"><label>'. 134 form::checkbox(array('keep_empty_feed'),'1',$keep_empty_feed). 135 __('Keep active empty feeds').'</label></p> 118 136 <p class="field"><label>'. 119 137 form::checkbox(array('pub_active'),'1',$pub_active). … … 168 186 169 187 <div class="clear"> 170 <p><input type="submit" name="save" value="'.__(' save').'" />'.188 <p><input type="submit" name="save" value="'.__('Save').'" />'. 171 189 $core->formNonce(). 172 190 form::hidden(array('p'),'zoneclearFeedServer'). -
plugins/zoneclearFeedServer/inc/lib.zoneclear.feed.server.activityreport.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/zoneclearFeedServer/inc/lib.zoneclear.feed.server.socialmewriter.php
r2928 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/zoneclearFeedServer/index.php
r2915 r3139 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 1 JCDenis, BG and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 55 57 if (isset($msg_list[$msg])) 56 58 { 57 $msg = sprintf('<p class="message">%s</p>',$msg_list[$msg]);59 $msg = dcPage::message($msg_list[$msg]); 58 60 } 59 61 -
plugins/zoneclearFeedServer/js/feeds.js
r2915 r3139 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 1 JCDenis, BG and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/zoneclearFeedServer/js/main.js
r2915 r3139 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 1 JCDenis, BG and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/zoneclearFeedServer/js/setting.js
r2915 r3139 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of zoneclearFeedServer, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 1 JCDenis, BG and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis, BG and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/zoneclearFeedServer/locales/fr/main.lang.php
r2915 r3139 1 1 <?php 2 2 // 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 11 306 #index.php:36 12 $GLOBALS['__l10n']['Feeds server'] = 'Serveur de flux';13 14 #_admin.php:5415 $GLOBALS['__l10n']['%s disabled feeds'] = '%s flux désactivés';16 17 #_admin.php:5418 $GLOBALS['__l10n']['one disable feed'] = 'Un flux désactivé';19 20 #_admin.php:9521 $GLOBALS['__l10n']['Feed source'] = 'Source du flux';22 23 #_admin.php:9824 $GLOBALS['__l10n']['feed URL'] = 'URL du fil';25 26 #_admin.php:9927 $GLOBALS['__l10n']['site URL'] = 'URL du site';28 29 #_admin.php:10730 $GLOBALS['__l10n']['Edit this feed'] = 'Modifier ce flux';31 32 #_public.php:19233 $GLOBALS['__l10n']['Original post on <a href="%s">%s</a>'] = 'Billet original sur <a href="%s">%s</a>';34 35 #_public.php:20336 $GLOBALS['__l10n']['Read more details about this feed'] = 'Lire plus de détails à propos de ce flux';37 38 #_widgets.php:2339 $GLOBALS['__l10n']['Feeds server : sources'] = 'Serveur de flux : les sources';40 41 #_widgets.php:2742 $GLOBALS['__l10n']['Feeds sources'] = 'Sources des flux';43 44 #_widgets.php:3145 $GLOBALS['__l10n']['name'] = 'nom';46 47 #_widgets.php:3248 $GLOBALS['__l10n']['creation date'] = 'date de création';49 50 #_widgets.php:4251 $GLOBALS['__l10n']['Limit:'] = 'Limite :';52 53 #_widgets.php:4554 $GLOBALS['__l10n']['Add link to feeds page'] = 'Ajouter un lien vers la page des flux';55 56 #_widgets.php:5457 $GLOBALS['__l10n']['Feeds server : numbers'] = 'Serveur de flux : les chiffres';58 59 #_widgets.php:5560 $GLOBALS['__l10n']['Feeds numbers'] = 'Le flux en chiffres';61 62 #_widgets.php:5863 $GLOBALS['__l10n']['Show feeds count'] = 'Afficher le nombre de flux';64 65 #_widgets.php:5966 $GLOBALS['__l10n']['Title for feeds count:'] = 'Titre pour le nombre de flux :';67 68 #_widgets.php:5969 $GLOBALS['__l10n']['Feeds:'] = 'Flux :';70 71 #_widgets.php:6272 $GLOBALS['__l10n']['Show entries count'] = 'Afficher le nombre de billets';73 74 #_widgets.php:6375 $GLOBALS['__l10n']['Title for entries count:'] = 'Titre pour le nombre de billets :';76 77 #_widgets.php:6378 $GLOBALS['__l10n']['Entries:'] = 'Billets :';79 80 #_widgets.php:10281 $GLOBALS['__l10n']['All sources'] = 'Toutes les sources';82 83 #_widgets.php:13284 #_widgets.php:16785 #inc/index.feeds.php:8086 $GLOBALS['__l10n']['none'] = 'aucun';87 88 #_widgets.php:13689 $GLOBALS['__l10n']['one source'] = 'une source';90 91 #_widgets.php:14092 $GLOBALS['__l10n']['%s sources'] = '%s sources';93 94 #_widgets.php:17195 $GLOBALS['__l10n']['one entry'] = 'un billet';96 97 #_widgets.php:17598 $GLOBALS['__l10n']['%s entries'] = '%s billets';99 100 #inc/class.zoneclear.feed.server.php:660101 $GLOBALS['__l10n']['disabled'] = 'désactivé';102 103 #inc/class.zoneclear.feed.server.php:661104 $GLOBALS['__l10n']['enabled'] = 'activé';105 106 #inc/class.zoneclear.feed.server.php:668107 $GLOBALS['__l10n']['every hour'] = 'toutes les heures';108 109 #inc/class.zoneclear.feed.server.php:669110 $GLOBALS['__l10n']['every two hours'] = 'toutes les deux heures';111 112 #inc/class.zoneclear.feed.server.php:670113 $GLOBALS['__l10n']['two times per day'] = 'deux fois par jour';114 115 #inc/class.zoneclear.feed.server.php:671116 $GLOBALS['__l10n']['every day'] = 'tous les jours';117 118 #inc/class.zoneclear.feed.server.php:672119 $GLOBALS['__l10n']['every two days'] = 'tous les deux jours';120 121 #inc/class.zoneclear.feed.server.php:673122 $GLOBALS['__l10n']['every week'] = 'toutes les semaines';123 124 #inc/class.zoneclear.feed.server.php:728125 $GLOBALS['__l10n']['home page'] = 'la page d\'accueil';126 127 #inc/class.zoneclear.feed.server.php:729128 $GLOBALS['__l10n']['post pages'] = 'la page d\'un billet';129 130 #inc/class.zoneclear.feed.server.php:730131 $GLOBALS['__l10n']['tags pages'] = 'les pages des tags';132 133 #inc/class.zoneclear.feed.server.php:731134 $GLOBALS['__l10n']['archives pages'] = 'les pages des archives';135 136 #inc/class.zoneclear.feed.server.php:732137 $GLOBALS['__l10n']['category pages'] = 'les pages de catégorie';138 139 #inc/class.zoneclear.feed.server.php:733140 $GLOBALS['__l10n']['entries feed'] = 'le flux des billets';141 142 #inc/index.feed.php:190143 $GLOBALS['__l10n']['This feed does not exist.'] = 'Ce flux n\'existe pas.';144 145 #inc/index.feed.php:223146 $GLOBALS['__l10n']['next feed'] = 'flux suivant';147 148 #inc/index.feed.php:231149 $GLOBALS['__l10n']['previous feed'] = 'flux précédent';150 151 #inc/index.feed.php:265152 $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:269155 $GLOBALS['__l10n']['You must provide a name.'] = 'Vous devez indiquer un nom.';156 157 #inc/index.feed.php:273158 $GLOBALS['__l10n']['You must provide an owner.'] = 'Vous devez indiquer un propriétaire.';159 160 #inc/index.feed.php:277161 $GLOBALS['__l10n']['You must provide valid site URL.'] = 'Vous devez donner une URL de site valide.';162 163 #inc/index.feed.php:281164 $GLOBALS['__l10n']['You must provide valid feed URL.'] = 'Vous devez donner une URL de flux valide.';165 166 #inc/index.feed.php:286167 $GLOBALS['__l10n']['You must provide valid category.'] = 'Vous devez donner une catégorie valide.';168 169 #inc/index.feed.php:599170 #inc/index.feeds.php:386171 #inc/index.setting.php:92172 $GLOBALS['__l10n']['Feeds'] = 'Fils de syndication';173 174 #inc/index.feed.php:603175 $GLOBALS['__l10n']['Edit feed'] = 'Edition de flux';176 177 #inc/index.feed.php:604178 #inc/index.feed.php:608179 #inc/index.feeds.php:387180 #inc/index.setting.php:94181 $GLOBALS['__l10n']['New feed'] = 'Nouveau flux';182 183 #inc/index.feed.php:627184 #inc/index.feeds.php:34185 $GLOBALS['__l10n']['Feed'] = 'Flux';186 187 #inc/index.feed.php:630188 $GLOBALS['__l10n']['Local settings'] = 'Paramètres locaux';189 190 #inc/index.feed.php:637191 $GLOBALS['__l10n']['Update:'] = 'Mise à jour :';192 193 #inc/index.feed.php:645194 $GLOBALS['__l10n']['Import tags from feed'] = 'Importer les tags depuis le flux';195 196 #inc/index.feed.php:648197 $GLOBALS['__l10n']['Feed information'] = 'Information sur le flux';198 199 #inc/index.feed.php:652200 $GLOBALS['__l10n']['Owner:'] = 'Propriétaire :';201 202 #inc/index.feed.php:656203 $GLOBALS['__l10n']['Tweeter or Identica ident:'] = 'Identifiant Twiiter ou Identi.ca :';204 205 #inc/index.feed.php:659206 $GLOBALS['__l10n']['Site URL:'] = 'URL du site :';207 208 #inc/index.feeds.php:21209 $GLOBALS['__l10n']['There is no feed'] = 'Il n\'y a pas de flux';210 211 #inc/index.feeds.php:33212 #inc/index.feeds.php:294213 $GLOBALS['__l10n']['Name'] = 'Nom';214 215 #inc/index.feeds.php:37216 $GLOBALS['__l10n']['Frequency'] = 'Fréquence';217 218 #inc/index.feeds.php:40219 $GLOBALS['__l10n']['Owner'] = 'Propriétaire';220 221 #inc/index.feeds.php:90222 $GLOBALS['__l10n']['Edit'] = 'Modifier';223 224 #inc/index.feeds.php:107225 $GLOBALS['__l10n']['never'] = 'jamais';226 227 #inc/index.feeds.php:119228 $GLOBALS['__l10n']['View entries'] = 'Voir les billets';229 230 #inc/index.feeds.php:295231 $GLOBALS['__l10n']['frequency'] = 'fréquence';232 233 #inc/index.feeds.php:296234 $GLOBALS['__l10n']['Date of update'] = 'Date de mise à jour';235 236 #inc/index.feeds.php:306237 $GLOBALS['__l10n']['change update interval'] = 'changer l\'intervalle de mise à jour';238 239 #inc/index.feeds.php:307240 $GLOBALS['__l10n']['disable feed update'] = 'désactiver la mise à jour du flux';241 242 #inc/index.feeds.php:308243 $GLOBALS['__l10n']['enable feed update'] = 'activer la mise à jour du flux';244 245 #inc/index.feeds.php:309246 $GLOBALS['__l10n']['Reset last update'] = 'remettre à zéro le chronomètre de mise à jour';247 248 #inc/index.feeds.php:310249 $GLOBALS['__l10n']['Update (check) feed'] = 'mettre à jour (vérifier) le flux';250 251 #inc/index.feeds.php:311252 $GLOBALS['__l10n']['delete related posts'] = 'effacer les billets liés';253 254 #inc/index.feeds.php:312255 $GLOBALS['__l10n']['delete feed (without related posts)'] = 'effacer le flux (sans effacer les billets liés)';256 257 #inc/index.feeds.php:395258 $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:407261 $GLOBALS['__l10n']['Select a category:'] = 'Sélectionner une catégorie :';262 263 #inc/index.feeds.php:423264 $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:435267 $GLOBALS['__l10n']['Select a frequency:'] = 'Sélectionner une fréquence :';268 269 #inc/index.feeds.php:492270 $GLOBALS['__l10n']['Selected feeds action:'] = 'Action sur les flux sélectionnés :';271 272 #inc/index.setting.php:62273 $GLOBALS['__l10n']['disable'] = 'désactiver';274 275 #inc/index.setting.php:63276 $GLOBALS['__l10n']['before display'] = 'avant l\'affichage';277 278 #inc/index.setting.php:64279 $GLOBALS['__l10n']['after display'] = 'après l\'affichage';280 281 #inc/index.setting.php:65282 $GLOBALS['__l10n']['through Ajax'] = 'A travers Ajax';283 284 #inc/index.setting.php:93285 #index.php:34286 307 $GLOBALS['__l10n']['Settings'] = 'Paramètres'; 287 308 288 #inc/index.setting.php: 98309 #inc/index.setting.php:110 289 310 $GLOBALS['__l10n']['Plugin activation'] = 'Activation de l\'extension'; 290 311 291 #inc/index.setting.php:1 01312 #inc/index.setting.php:113 292 313 $GLOBALS['__l10n']['Enable plugin'] = 'Activer l\'extension'; 293 314 294 #inc/index.setting.php:1 04315 #inc/index.setting.php:116 295 316 $GLOBALS['__l10n']['General rules'] = 'Réglages'; 296 317 297 #inc/index.setting.php:1 07318 #inc/index.setting.php:119 298 319 $GLOBALS['__l10n']['Status of new posts:'] = 'Status des nouveaux billets :'; 299 320 300 #inc/index.setting.php:1 10321 #inc/index.setting.php:122 301 322 $GLOBALS['__l10n']['Owner of entries created by zoneclearFeedServer:'] = 'Propriétaire des billets créés par zoneclearFeedServer :'; 302 323 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 304 328 $GLOBALS['__l10n']['Update feeds on public side:'] = 'Mettre à jour les flux depuis la partie publique :'; 305 329 306 #inc/index.setting.php:1 16330 #inc/index.setting.php:131 307 331 $GLOBALS['__l10n']['Number of feeds to update at one time:'] = 'Nombre de flux à mettre à jour à la fois :'; 308 332 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 310 337 $GLOBALS['__l10n']['Enable public page'] = 'Activer la page publique'; 311 338 312 #inc/index.setting.php:1 22339 #inc/index.setting.php:140 313 340 $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é!'; 314 341 315 #inc/index.setting.php:1 28342 #inc/index.setting.php:146 316 343 $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.'; 317 344 318 #inc/index.setting.php:1 29345 #inc/index.setting.php:147 319 346 $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.'; 320 347 321 #inc/index.setting.php:1 30348 #inc/index.setting.php:148 322 349 $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.'; 323 350 324 #inc/index.setting.php:1 31351 #inc/index.setting.php:149 325 352 $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 .'; 326 353 327 #inc/index.setting.php:1 32354 #inc/index.setting.php:150 328 355 $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.'; 329 356 330 #inc/index.setting.php:1 41357 #inc/index.setting.php:159 331 358 $GLOBALS['__l10n']['Display'] = 'Affichage'; 332 359 333 #inc/index.setting.php:1 44360 #inc/index.setting.php:162 334 361 $GLOBALS['__l10n']['Show full content on:'] = 'Afficher le contenu complet sur :'; 335 362 336 #inc/index.setting.php:1 55363 #inc/index.setting.php:173 337 364 $GLOBALS['__l10n']['Entries title'] = 'Titre des billets'; 338 365 339 #inc/index.setting.php:1 56366 #inc/index.setting.php:174 340 367 $GLOBALS['__l10n']['Redirect to original post on:'] = 'Rediriger vers le billet original sur :'; 341 368 342 #inc/lib.zoneclear.feed.server.activityreport.php:1 6369 #inc/lib.zoneclear.feed.server.activityreport.php:18 343 370 $GLOBALS['__l10n']['Plugin zoneclearFeedServer'] = 'Extension zoneclearFeedServer'; 344 371 345 #inc/lib.zoneclear.feed.server.activityreport.php:2 2372 #inc/lib.zoneclear.feed.server.activityreport.php:24 346 373 $GLOBALS['__l10n']['feed creation'] = 'création d\'un flux'; 347 374 348 #inc/lib.zoneclear.feed.server.activityreport.php:2 3375 #inc/lib.zoneclear.feed.server.activityreport.php:25 349 376 $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"'; 350 377 351 #inc/lib.zoneclear.feed.server.activityreport.php:3 1378 #inc/lib.zoneclear.feed.server.activityreport.php:33 352 379 $GLOBALS['__l10n']['updating feed info'] = 'mise à jour des informations du flux (administration)'; 353 380 354 #inc/lib.zoneclear.feed.server.activityreport.php:3 2381 #inc/lib.zoneclear.feed.server.activityreport.php:34 355 382 $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"'; 356 383 357 #inc/lib.zoneclear.feed.server.activityreport.php:4 0384 #inc/lib.zoneclear.feed.server.activityreport.php:42 358 385 $GLOBALS['__l10n']['updating feed records'] = 'mise à jour des enregistrements du flux (automatique)'; 359 386 360 #inc/lib.zoneclear.feed.server.activityreport.php:4 1387 #inc/lib.zoneclear.feed.server.activityreport.php:43 361 388 $GLOBALS['__l10n']['Records of the feed named "%s" have been updated automatically'] = 'Les enregistrements du flux nommé "%s" ont été automatiquement mis à jour'; 362 389 363 #inc/lib.zoneclear.feed.server.activityreport.php: 49390 #inc/lib.zoneclear.feed.server.activityreport.php:51 364 391 $GLOBALS['__l10n']['feed deletion'] = 'suppression d\'un flux'; 365 392 366 #inc/lib.zoneclear.feed.server.activityreport.php:5 0393 #inc/lib.zoneclear.feed.server.activityreport.php:52 367 394 $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"'; 368 395 369 #inc/lib.zoneclear.feed.server.activityreport.php: 58396 #inc/lib.zoneclear.feed.server.activityreport.php:60 370 397 $GLOBALS['__l10n']['feed status'] = 'status d\'un flux'; 371 398 372 #inc/lib.zoneclear.feed.server.activityreport.php: 59399 #inc/lib.zoneclear.feed.server.activityreport.php:61 373 400 $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"'; 374 401 375 #inc/lib.zoneclear.feed.server.socialmewriter.php:2 1402 #inc/lib.zoneclear.feed.server.socialmewriter.php:23 376 403 $GLOBALS['__l10n']['New Zoneclear post'] = 'Nouveu billet Zoneclear'; 377 404 378 #inc/lib.zoneclear.feed.server.socialmewriter.php:2 2405 #inc/lib.zoneclear.feed.server.socialmewriter.php:24 379 406 $GLOBALS['__l10n']['When a feed has new entry'] = 'Lorsqu\'un flux a un nouveau billet'; 380 407 381 #index.php: 29408 #index.php:31 382 409 $GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter'; 383 410 384 #index.php:4 2411 #index.php:44 385 412 $GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 386 413 387 #index.php:4 3414 #index.php:45 388 415 $GLOBALS['__l10n']['Entries successuflly deleted'] = 'Billets effacés avec succès'; 389 416 390 #index.php:4 4417 #index.php:46 391 418 $GLOBALS['__l10n']['Feeds successfully deleted'] = 'Flux effacés avec succès'; 392 419 393 #index.php:4 5420 #index.php:47 394 421 $GLOBALS['__l10n']['Feeds successfully enabled'] = 'Flux activés avec succès'; 395 422 396 #index.php:4 6423 #index.php:48 397 424 $GLOBALS['__l10n']['Feeds successfully disabled'] = 'Flux désactivés avec succès'; 398 425 399 #index.php:4 7426 #index.php:49 400 427 $GLOBALS['__l10n']['Feeds successfully updated'] = 'Flux mis à jour avec succès'; 401 428 402 #index.php: 48429 #index.php:50 403 430 $GLOBALS['__l10n']['Category of feeds successfully updated'] = 'Catégorie des flux modifiée avec succès'; 404 431 405 #index.php: 49432 #index.php:51 406 433 $GLOBALS['__l10n']['Frequency of feeds successfully updated'] = 'Fréquence de mise à jour des flux modifier avec succès'; 407 434 408 #index.php:5 0435 #index.php:52 409 436 $GLOBALS['__l10n']['Last update of feeds successfully reseted'] = 'Dernière mise à jour des flux remis à zéro avec succès'; 410 437 411 #index.php:5 1438 #index.php:53 412 439 $GLOBALS['__l10n']['Feed successfully updated'] = 'Flux modifié avec succès'; 413 440 414 #index.php:5 2441 #index.php:54 415 442 $GLOBALS['__l10n']['Feed successfully created'] = 'Flux créé avec succès'; 416 443 417 #index.php:5 3444 #index.php:55 418 445 $GLOBALS['__l10n']['Actions on posts successfully completed'] = 'Actions sur les billets complétées avec succès'; 419 446 420 $GLOBALS['__l10n']['no entry'] = 'aucun billet';421 422 $GLOBALS['__l10n']['no source'] = 'aucune source';423 424 447 ?> -
plugins/zoneclearFeedServer/locales/fr/main.po
r2915 r3139 1 1 # Language: Français 2 # Module: zoneclearFeedServer - 1.33 # Date: 201 1-01-30 11:14:094 # Translated with translater 1.52 # Module: zoneclearFeedServer - 2013.07.03 3 # Date: 2013-07-04 05:46:48 4 # Translated with translater 2013.05.11 5 5 6 6 msgid "" 7 7 msgstr "" 8 8 "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" 10 10 "POT-Creation-Date: \n" 11 "PO-Revision-Date: 201 1-01-30T11:14:09+00:00\n"12 "Last-Translator: J CDenis\n"11 "PO-Revision-Date: 2013-07-04T05:46:48+00:00\n" 12 "Last-Translator: Jean-Christian Denis\n" 13 13 "Language-Team: \n" 14 14 "MIME-Version: 1.0\n" 15 15 "Content-Transfer-Encoding: 8bit\n" 16 16 17 #: _admin.php:2 318 #: inc/index.feed.php:59 319 #: inc/index.feeds.php:38 120 #: inc/index.setting.php: 7621 #: index.php:3 617 #: _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 22 22 msgid "Feeds server" 23 23 msgstr "Serveur de flux" 24 24 25 #: _admin.php:54 25 #: _admin.php:66 26 #: _admin.php:80 26 27 msgid "%s disabled feeds" 27 28 msgstr "%s flux désactivés" 28 29 29 #: _admin.php:54 30 #: _admin.php:66 31 #: _admin.php:80 30 32 msgid "one disable feed" 31 33 msgstr "Un flux désactivé" 32 34 33 #: _admin.php: 9535 #: _admin.php:121 34 36 msgid "Feed source" 35 37 msgstr "Source du flux" 36 38 37 #: _admin.php: 9839 #: _admin.php:124 38 40 msgid "feed URL" 39 41 msgstr "URL du fil" 40 42 41 #: _admin.php: 9943 #: _admin.php:125 42 44 msgid "site URL" 43 45 msgstr "URL du site" 44 46 45 #: _admin.php:1 0747 #: _admin.php:133 46 48 msgid "Edit this feed" 47 49 msgstr "Modifier ce flux" 48 50 49 #: _public.php:19 251 #: _public.php:194 50 52 msgid "Original post on <a href=\"%s\">%s</a>" 51 53 msgstr "Billet original sur <a href=\"%s\">%s</a>" 52 54 53 #: _public.php:20 355 #: _public.php:205 54 56 msgid "Read more details about this feed" 55 57 msgstr "Lire plus de détails à propos de ce flux" 56 58 57 #: _widgets.php:2 359 #: _widgets.php:25 58 60 msgid "Feeds server : sources" 59 61 msgstr "Serveur de flux : les sources" 60 62 61 #: _widgets.php:2 763 #: _widgets.php:29 62 64 msgid "Feeds sources" 63 65 msgstr "Sources des flux" 64 66 65 #: _widgets.php:3 167 #: _widgets.php:33 66 68 msgid "name" 67 69 msgstr "nom" 68 70 69 #: _widgets.php:3 271 #: _widgets.php:34 70 72 msgid "creation date" 71 73 msgstr "date de création" 72 74 73 #: _widgets.php:4 275 #: _widgets.php:44 74 76 msgid "Limit:" 75 77 msgstr "Limite :" 76 78 77 #: _widgets.php:4 579 #: _widgets.php:47 78 80 msgid "Add link to feeds page" 79 81 msgstr "Ajouter un lien vers la page des flux" 80 82 81 #: _widgets.php: 5483 #: _widgets.php:63 82 84 msgid "Feeds server : numbers" 83 85 msgstr "Serveur de flux : les chiffres" 84 86 85 #: _widgets.php: 5587 #: _widgets.php:64 86 88 msgid "Feeds numbers" 87 89 msgstr "Le flux en chiffres" 88 90 89 #: _widgets.php: 5891 #: _widgets.php:67 90 92 msgid "Show feeds count" 91 93 msgstr "Afficher le nombre de flux" 92 94 93 #: _widgets.php: 5995 #: _widgets.php:68 94 96 msgid "Title for feeds count:" 95 97 msgstr "Titre pour le nombre de flux :" 96 98 97 #: _widgets.php: 5999 #: _widgets.php:68 98 100 msgid "Feeds:" 99 101 msgstr "Flux :" 100 102 101 #: _widgets.php: 62103 #: _widgets.php:71 102 104 msgid "Show entries count" 103 105 msgstr "Afficher le nombre de billets" 104 106 105 #: _widgets.php: 63107 #: _widgets.php:72 106 108 msgid "Title for entries count:" 107 109 msgstr "Titre pour le nombre de billets :" 108 110 109 #: _widgets.php: 63111 #: _widgets.php:72 110 112 msgid "Entries:" 111 113 msgstr "Billets :" 112 114 113 #: _widgets.php:1 02115 #: _widgets.php:122 114 116 msgid "All sources" 115 117 msgstr "Toutes les sources" 116 118 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 120 msgid "no sources" 121 msgstr "aucune source" 122 123 #: _widgets.php:157 124 124 msgid "one source" 125 125 msgstr "une source" 126 126 127 #: _widgets.php:140 128 msgid "%s sources" 129 msgstr "%s sources" 130 131 #: _widgets.php:171 127 #: _widgets.php:161 128 msgid "%d sources" 129 msgstr "%d sources" 130 131 #: _widgets.php:188 132 msgid "no entries" 133 msgstr "aucun billet" 134 135 #: _widgets.php:192 132 136 msgid "one entry" 133 137 msgstr "un billet" 134 138 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 140 msgid "%d entries" 141 msgstr "%d billets" 142 143 #: default-templates/zcfeeds.html:50 144 msgid "List of feeds" 145 msgstr "Liste des sources" 146 147 #: inc/class.zoneclear.feed.server.php:678 140 148 msgid "disabled" 141 149 msgstr "désactivé" 142 150 143 #: inc/class.zoneclear.feed.server.php:6 61151 #: inc/class.zoneclear.feed.server.php:679 144 152 msgid "enabled" 145 153 msgstr "activé" 146 154 147 #: inc/class.zoneclear.feed.server.php:6 68155 #: inc/class.zoneclear.feed.server.php:686 148 156 msgid "every hour" 149 157 msgstr "toutes les heures" 150 158 151 #: inc/class.zoneclear.feed.server.php:6 69159 #: inc/class.zoneclear.feed.server.php:687 152 160 msgid "every two hours" 153 161 msgstr "toutes les deux heures" 154 162 155 #: inc/class.zoneclear.feed.server.php:6 70163 #: inc/class.zoneclear.feed.server.php:688 156 164 msgid "two times per day" 157 165 msgstr "deux fois par jour" 158 166 159 #: inc/class.zoneclear.feed.server.php:6 71167 #: inc/class.zoneclear.feed.server.php:689 160 168 msgid "every day" 161 169 msgstr "tous les jours" 162 170 163 #: inc/class.zoneclear.feed.server.php:6 72171 #: inc/class.zoneclear.feed.server.php:690 164 172 msgid "every two days" 165 173 msgstr "tous les deux jours" 166 174 167 #: inc/class.zoneclear.feed.server.php:6 73175 #: inc/class.zoneclear.feed.server.php:691 168 176 msgid "every week" 169 177 msgstr "toutes les semaines" 170 178 171 #: inc/class.zoneclear.feed.server.php:7 28179 #: inc/class.zoneclear.feed.server.php:746 172 180 msgid "home page" 173 181 msgstr "la page d'accueil" 174 182 175 #: inc/class.zoneclear.feed.server.php:7 29183 #: inc/class.zoneclear.feed.server.php:747 176 184 msgid "post pages" 177 185 msgstr "la page d'un billet" 178 186 179 #: inc/class.zoneclear.feed.server.php:7 30187 #: inc/class.zoneclear.feed.server.php:748 180 188 msgid "tags pages" 181 189 msgstr "les pages des tags" 182 190 183 #: inc/class.zoneclear.feed.server.php:7 31191 #: inc/class.zoneclear.feed.server.php:749 184 192 msgid "archives pages" 185 193 msgstr "les pages des archives" 186 194 187 #: inc/class.zoneclear.feed.server.php:7 32195 #: inc/class.zoneclear.feed.server.php:750 188 196 msgid "category pages" 189 197 msgstr "les pages de catégorie" 190 198 191 #: inc/class.zoneclear.feed.server.php:7 33199 #: inc/class.zoneclear.feed.server.php:751 192 200 msgid "entries feed" 193 201 msgstr "le flux des billets" 194 202 195 #: inc/index.feed.php:19 0203 #: inc/index.feed.php:192 196 204 msgid "This feed does not exist." 197 205 msgstr "Ce flux n'existe pas." 198 206 199 #: inc/index.feed.php:22 3207 #: inc/index.feed.php:225 200 208 msgid "next feed" 201 209 msgstr "flux suivant" 202 210 203 #: inc/index.feed.php:23 1211 #: inc/index.feed.php:233 204 212 msgid "previous feed" 205 213 msgstr "flux précédent" 206 214 207 #: inc/index.feed.php:26 5215 #: inc/index.feed.php:267 208 216 msgid "Record with same feed URL already exists." 209 217 msgstr "Un enregistrement avec la même URL de flux existe déjà." 210 218 211 #: inc/index.feed.php:2 69219 #: inc/index.feed.php:271 212 220 msgid "You must provide a name." 213 221 msgstr "Vous devez indiquer un nom." 214 222 215 #: inc/index.feed.php:27 3223 #: inc/index.feed.php:275 216 224 msgid "You must provide an owner." 217 225 msgstr "Vous devez indiquer un propriétaire." 218 226 219 #: inc/index.feed.php:27 7227 #: inc/index.feed.php:279 220 228 msgid "You must provide valid site URL." 221 229 msgstr "Vous devez donner une URL de site valide." 222 230 223 #: inc/index.feed.php:28 1231 #: inc/index.feed.php:283 224 232 msgid "You must provide valid feed URL." 225 233 msgstr "Vous devez donner une URL de flux valide." 226 234 227 #: inc/index.feed.php:28 6235 #: inc/index.feed.php:288 228 236 msgid "You must provide valid category." 229 237 msgstr "Vous devez donner une catégorie valide." 230 238 231 #: inc/index.feed.php: 599232 #: inc/index.feeds.php:3 86233 #: inc/index.setting.php: 92239 #: inc/index.feed.php:601 240 #: inc/index.feeds.php:392 241 #: inc/index.setting.php:104 234 242 msgid "Feeds" 235 243 msgstr "Fils de syndication" 236 244 237 #: inc/index.feed.php:60 3245 #: inc/index.feed.php:605 238 246 msgid "Edit feed" 239 247 msgstr "Edition de flux" 240 248 241 #: inc/index.feed.php:60 4242 #: inc/index.feed.php:6 08243 #: inc/index.feeds.php:3 87244 #: inc/index.setting.php: 94249 #: inc/index.feed.php:606 250 #: inc/index.feed.php:610 251 #: inc/index.feeds.php:393 252 #: inc/index.setting.php:106 245 253 msgid "New feed" 246 254 msgstr "Nouveau flux" 247 255 248 #: inc/index.feed.php:62 7249 #: inc/index.feeds.php:3 4256 #: inc/index.feed.php:629 257 #: inc/index.feeds.php:36 250 258 msgid "Feed" 251 259 msgstr "Flux" 252 260 253 #: inc/index.feed.php:63 0261 #: inc/index.feed.php:632 254 262 msgid "Local settings" 255 263 msgstr "Paramètres locaux" 256 264 257 #: inc/index.feed.php:63 7265 #: inc/index.feed.php:639 258 266 msgid "Update:" 259 267 msgstr "Mise à jour :" 260 268 261 #: inc/index.feed.php:64 5269 #: inc/index.feed.php:647 262 270 msgid "Import tags from feed" 263 271 msgstr "Importer les tags depuis le flux" 264 272 265 #: inc/index.feed.php:6 48273 #: inc/index.feed.php:650 266 274 msgid "Feed information" 267 275 msgstr "Information sur le flux" 268 276 269 #: inc/index.feed.php:65 2277 #: inc/index.feed.php:654 270 278 msgid "Owner:" 271 279 msgstr "Propriétaire :" 272 280 273 #: inc/index.feed.php:65 6281 #: inc/index.feed.php:658 274 282 msgid "Tweeter or Identica ident:" 275 283 msgstr "Identifiant Twiiter ou Identi.ca :" 276 284 277 #: inc/index.feed.php:6 59285 #: inc/index.feed.php:661 278 286 msgid "Site URL:" 279 287 msgstr "URL du site :" 280 288 281 #: inc/index.feeds.php:2 1289 #: inc/index.feeds.php:23 282 290 msgid "There is no feed" 283 291 msgstr "Il n'y a pas de flux" 284 292 285 #: inc/index.feeds.php:3 3286 #: inc/index.feeds.php: 294293 #: inc/index.feeds.php:35 294 #: inc/index.feeds.php:300 287 295 msgid "Name" 288 296 msgstr "Nom" 289 297 290 #: inc/index.feeds.php:3 7298 #: inc/index.feeds.php:39 291 299 msgid "Frequency" 292 300 msgstr "Fréquence" 293 301 294 #: inc/index.feeds.php:4 0302 #: inc/index.feeds.php:42 295 303 msgid "Owner" 296 304 msgstr "Propriétaire" 297 305 298 #: inc/index.feeds.php:90 306 #: inc/index.feeds.php:82 307 msgid "no categories" 308 msgstr "aucune catégorie" 309 310 #: inc/index.feeds.php:96 299 311 msgid "Edit" 300 312 msgstr "Modifier" 301 313 302 #: inc/index.feeds.php:1 07314 #: inc/index.feeds.php:113 303 315 msgid "never" 304 316 msgstr "jamais" 305 317 306 #: inc/index.feeds.php:1 19318 #: inc/index.feeds.php:125 307 319 msgid "View entries" 308 320 msgstr "Voir les billets" 309 321 310 #: inc/index.feeds.php: 295322 #: inc/index.feeds.php:301 311 323 msgid "frequency" 312 324 msgstr "fréquence" 313 325 314 #: inc/index.feeds.php: 296326 #: inc/index.feeds.php:302 315 327 msgid "Date of update" 316 328 msgstr "Date de mise à jour" 317 329 318 #: inc/index.feeds.php:3 06330 #: inc/index.feeds.php:312 319 331 msgid "change update interval" 320 332 msgstr "changer l'intervalle de mise à jour" 321 333 322 #: inc/index.feeds.php:3 07334 #: inc/index.feeds.php:313 323 335 msgid "disable feed update" 324 336 msgstr "désactiver la mise à jour du flux" 325 337 326 #: inc/index.feeds.php:3 08338 #: inc/index.feeds.php:314 327 339 msgid "enable feed update" 328 340 msgstr "activer la mise à jour du flux" 329 341 330 #: inc/index.feeds.php:3 09342 #: inc/index.feeds.php:315 331 343 msgid "Reset last update" 332 344 msgstr "remettre à zéro le chronomètre de mise à jour" 333 345 334 #: inc/index.feeds.php:31 0346 #: inc/index.feeds.php:316 335 347 msgid "Update (check) feed" 336 348 msgstr "mettre à jour (vérifier) le flux" 337 349 338 #: inc/index.feeds.php:31 1350 #: inc/index.feeds.php:317 339 351 msgid "delete related posts" 340 352 msgstr "effacer les billets liés" 341 353 342 #: inc/index.feeds.php:31 2354 #: inc/index.feeds.php:318 343 355 msgid "delete feed (without related posts)" 344 356 msgstr "effacer le flux (sans effacer les billets liés)" 345 357 346 #: inc/index.feeds.php: 395358 #: inc/index.feeds.php:401 347 359 msgid "This changes category for all selected feeds." 348 360 msgstr "Ceci change la catégorie pour tous les flux sélectionnés." 349 361 350 #: inc/index.feeds.php:4 07362 #: inc/index.feeds.php:413 351 363 msgid "Select a category:" 352 364 msgstr "Sélectionner une catégorie :" 353 365 354 #: inc/index.feeds.php:42 3366 #: inc/index.feeds.php:429 355 367 msgid "This changes interval of updates for all selected feeds." 356 368 msgstr "Ceci change l'intervalle de mise à jour des flux sélectionnés." 357 369 358 #: inc/index.feeds.php:4 35370 #: inc/index.feeds.php:441 359 371 msgid "Select a frequency:" 360 372 msgstr "Sélectionner une fréquence :" 361 373 362 #: inc/index.feeds.php:49 2374 #: inc/index.feeds.php:498 363 375 msgid "Selected feeds action:" 364 376 msgstr "Action sur les flux sélectionnés :" 365 377 366 #: inc/index.setting.php:6 2378 #: inc/index.setting.php:68 367 379 msgid "disable" 368 380 msgstr "désactiver" 369 381 370 #: inc/index.setting.php:6 3382 #: inc/index.setting.php:69 371 383 msgid "before display" 372 384 msgstr "avant l'affichage" 373 385 374 #: inc/index.setting.php: 64386 #: inc/index.setting.php:70 375 387 msgid "after display" 376 388 msgstr "après l'affichage" 377 389 378 #: inc/index.setting.php: 65390 #: inc/index.setting.php:71 379 391 msgid "through Ajax" 380 392 msgstr "A travers Ajax" 381 393 382 #: inc/index.setting.php:93 383 #: index.php:34 394 #: inc/index.setting.php:78 395 msgid "Keep source case" 396 msgstr "Garder la casse de la source" 397 398 #: inc/index.setting.php:79 399 msgid "First upper case" 400 msgstr "Premier caractère en majuscule" 401 402 #: inc/index.setting.php:80 403 msgid "All lower case" 404 msgstr "Tout en minuscule" 405 406 #: inc/index.setting.php:81 407 msgid "All upper case" 408 msgstr "Tout en majuscule" 409 410 #: inc/index.setting.php:105 411 #: index.php:36 384 412 msgid "Settings" 385 413 msgstr "Paramètres" 386 414 387 #: inc/index.setting.php: 98415 #: inc/index.setting.php:110 388 416 msgid "Plugin activation" 389 417 msgstr "Activation de l'extension" 390 418 391 #: inc/index.setting.php:1 01419 #: inc/index.setting.php:113 392 420 msgid "Enable plugin" 393 421 msgstr "Activer l'extension" 394 422 395 #: inc/index.setting.php:1 04423 #: inc/index.setting.php:116 396 424 msgid "General rules" 397 425 msgstr "Réglages" 398 426 399 #: inc/index.setting.php:1 07427 #: inc/index.setting.php:119 400 428 msgid "Status of new posts:" 401 429 msgstr "Status des nouveaux billets :" 402 430 403 #: inc/index.setting.php:1 10431 #: inc/index.setting.php:122 404 432 msgid "Owner of entries created by zoneclearFeedServer:" 405 433 msgstr "Propriétaire des billets créés par zoneclearFeedServer :" 406 434 407 #: inc/index.setting.php:113 435 #: inc/index.setting.php:125 436 msgid "How to transform imported tags:" 437 msgstr "Comment tranformer la casse des mots-clés importés :" 438 439 #: inc/index.setting.php:128 408 440 msgid "Update feeds on public side:" 409 441 msgstr "Mettre à jour les flux depuis la partie publique :" 410 442 411 #: inc/index.setting.php:1 16443 #: inc/index.setting.php:131 412 444 msgid "Number of feeds to update at one time:" 413 445 msgstr "Nombre de flux à mettre à jour à la fois :" 414 446 415 #: inc/index.setting.php:120 447 #: inc/index.setting.php:135 448 msgid "Keep active empty feeds" 449 msgstr "Garder actif les flux vides" 450 451 #: inc/index.setting.php:138 416 452 msgid "Enable public page" 417 453 msgstr "Activer la page publique" 418 454 419 #: inc/index.setting.php:1 22455 #: inc/index.setting.php:140 420 456 msgid "Dotclear cache is not writable or not well configured!" 421 457 msgstr "Le cache de Dotclear n'est pas accessible en écriture ou n'est pas configuré!" 422 458 423 #: inc/index.setting.php:1 28459 #: inc/index.setting.php:146 424 460 msgid "A writable cache folder is required to use this extension." 425 461 msgstr "Un dossier de cache accessible en écriture est nécessaire pour utiliser cette extension." 426 462 427 #: inc/index.setting.php:1 29463 #: inc/index.setting.php:147 428 464 msgid "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." 429 465 msgstr "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." 430 466 431 #: inc/index.setting.php:1 30467 #: inc/index.setting.php:148 432 468 msgid "If you use cron script, you can disable public update." 433 469 msgstr "Si vous utilisez un script cron, vous pouvez désactiver la mise à jour publique." 434 470 435 #: inc/index.setting.php:1 31471 #: inc/index.setting.php:149 436 472 msgid "If active, a public list of feeds are available at \"%s\"." 437 473 msgstr "Si activé, une page publique de la liste des flux est disponible à l'adresse %s ." 438 474 439 #: inc/index.setting.php:1 32475 #: inc/index.setting.php:150 440 476 msgid "In order to do update through Ajax, your theme must have behavior publicHeadContent." 441 477 msgstr "Pour utiliser la mise à jour depuis Ajax, votre thème doit avoir le behavior publicheadContent." 442 478 443 #: inc/index.setting.php:1 41479 #: inc/index.setting.php:159 444 480 msgid "Display" 445 481 msgstr "Affichage" 446 482 447 #: inc/index.setting.php:1 44483 #: inc/index.setting.php:162 448 484 msgid "Show full content on:" 449 485 msgstr "Afficher le contenu complet sur :" 450 486 451 #: inc/index.setting.php:1 55487 #: inc/index.setting.php:173 452 488 msgid "Entries title" 453 489 msgstr "Titre des billets" 454 490 455 #: inc/index.setting.php:1 56491 #: inc/index.setting.php:174 456 492 msgid "Redirect to original post on:" 457 493 msgstr "Rediriger vers le billet original sur :" 458 494 459 #: inc/lib.zoneclear.feed.server.activityreport.php:1 6495 #: inc/lib.zoneclear.feed.server.activityreport.php:18 460 496 msgid "Plugin zoneclearFeedServer" 461 497 msgstr "Extension zoneclearFeedServer" 462 498 463 #: inc/lib.zoneclear.feed.server.activityreport.php:2 2499 #: inc/lib.zoneclear.feed.server.activityreport.php:24 464 500 msgid "feed creation" 465 501 msgstr "création d'un flux" 466 502 467 #: inc/lib.zoneclear.feed.server.activityreport.php:2 3503 #: inc/lib.zoneclear.feed.server.activityreport.php:25 468 504 msgid "A new feed named \"%s\" point to \"%s\" was added by \"%s\"" 469 505 msgstr "Un nouveau flux nommé \"%s\" pointant vers \"%s\" a été ajouté par \"%s\"" 470 506 471 #: inc/lib.zoneclear.feed.server.activityreport.php:3 1507 #: inc/lib.zoneclear.feed.server.activityreport.php:33 472 508 msgid "updating feed info" 473 509 msgstr "mise à jour des informations du flux (administration)" 474 510 475 #: inc/lib.zoneclear.feed.server.activityreport.php:3 2511 #: inc/lib.zoneclear.feed.server.activityreport.php:34 476 512 msgid "Feed named \"%s\" point to \"%s\" has been updated by \"%s\"" 477 513 msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été mis à jour par \"%s\"" 478 514 479 #: inc/lib.zoneclear.feed.server.activityreport.php:4 0515 #: inc/lib.zoneclear.feed.server.activityreport.php:42 480 516 msgid "updating feed records" 481 517 msgstr "mise à jour des enregistrements du flux (automatique)" 482 518 483 #: inc/lib.zoneclear.feed.server.activityreport.php:4 1519 #: inc/lib.zoneclear.feed.server.activityreport.php:43 484 520 msgid "Records of the feed named \"%s\" have been updated automatically" 485 521 msgstr "Les enregistrements du flux nommé \"%s\" ont été automatiquement mis à jour" 486 522 487 #: inc/lib.zoneclear.feed.server.activityreport.php: 49523 #: inc/lib.zoneclear.feed.server.activityreport.php:51 488 524 msgid "feed deletion" 489 525 msgstr "suppression d'un flux" 490 526 491 #: inc/lib.zoneclear.feed.server.activityreport.php:5 0527 #: inc/lib.zoneclear.feed.server.activityreport.php:52 492 528 msgid "Feed named \"%s\" point to \"%s\" has been deleted by \"%s\"" 493 529 msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été supprimé par \"%s\"" 494 530 495 #: inc/lib.zoneclear.feed.server.activityreport.php: 58531 #: inc/lib.zoneclear.feed.server.activityreport.php:60 496 532 msgid "feed status" 497 533 msgstr "status d'un flux" 498 534 499 #: inc/lib.zoneclear.feed.server.activityreport.php: 59535 #: inc/lib.zoneclear.feed.server.activityreport.php:61 500 536 msgid "Feed named \"%s\" point to \"%s\" has been set to \"%s\"" 501 537 msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été marqué comme \"%s\"" 502 538 503 #: inc/lib.zoneclear.feed.server.socialmewriter.php:2 1539 #: inc/lib.zoneclear.feed.server.socialmewriter.php:23 504 540 msgid "New Zoneclear post" 505 541 msgstr "Nouveu billet Zoneclear" 506 542 507 #: inc/lib.zoneclear.feed.server.socialmewriter.php:2 2543 #: inc/lib.zoneclear.feed.server.socialmewriter.php:24 508 544 msgid "When a feed has new entry" 509 545 msgstr "Lorsqu'un flux a un nouveau billet" 510 546 511 #: index.php: 29547 #: index.php:31 512 548 msgid "Please wait" 513 549 msgstr "Veuillez patienter" 514 550 515 #: index.php:4 2551 #: index.php:44 516 552 msgid "Configuration successfully saved" 517 553 msgstr "Configuration sauvegardée avec succès" 518 554 519 #: index.php:4 3555 #: index.php:45 520 556 msgid "Entries successuflly deleted" 521 557 msgstr "Billets effacés avec succès" 522 558 523 #: index.php:4 4559 #: index.php:46 524 560 msgid "Feeds successfully deleted" 525 561 msgstr "Flux effacés avec succès" 526 562 527 #: index.php:4 5563 #: index.php:47 528 564 msgid "Feeds successfully enabled" 529 565 msgstr "Flux activés avec succès" 530 566 531 #: index.php:4 6567 #: index.php:48 532 568 msgid "Feeds successfully disabled" 533 569 msgstr "Flux désactivés avec succès" 534 570 535 #: index.php:4 7571 #: index.php:49 536 572 msgid "Feeds successfully updated" 537 573 msgstr "Flux mis à jour avec succès" 538 574 539 #: index.php: 48575 #: index.php:50 540 576 msgid "Category of feeds successfully updated" 541 577 msgstr "Catégorie des flux modifiée avec succès" 542 578 543 #: index.php: 49579 #: index.php:51 544 580 msgid "Frequency of feeds successfully updated" 545 581 msgstr "Fréquence de mise à jour des flux modifier avec succès" 546 582 547 #: index.php:5 0583 #: index.php:52 548 584 msgid "Last update of feeds successfully reseted" 549 585 msgstr "Dernière mise à jour des flux remis à zéro avec succès" 550 586 551 #: index.php:5 1587 #: index.php:53 552 588 msgid "Feed successfully updated" 553 589 msgstr "Flux modifié avec succès" 554 590 555 #: index.php:5 2591 #: index.php:54 556 592 msgid "Feed successfully created" 557 593 msgstr "Flux créé avec succès" 558 594 559 #: index.php:5 3595 #: index.php:55 560 596 msgid "Actions on posts successfully completed" 561 597 msgstr "Actions sur les billets complétées avec succès" 562 598 563 msgid "no entry"564 msgstr "aucun billet"565 566 msgid "no source"567 msgstr "aucune source"568 -
plugins/zoneclearFeedServer/release.txt
r2915 r3139 2 2 * Not fixed disallow self blog feeds 3 3 * Added plugin muppet support (request Mathieu M.) 4 * Added log for errors 5 6 2013.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 4 14 5 15 1.3 20110130
Note: See TracChangeset
for help on using the changeset viewer.