Dotclear

Changeset 3141


Ignore:
Timestamp:
07/11/13 08:47:48 (10 years ago)
Author:
JcDenis
Message:

2013.07.07

  • Added options to widgets (closes #693)
  • Added dashboard icon
  • Fixed admin pages titles and messages
  • Fixed map on Ductile theme's widget
  • Fixed typo
Location:
plugins/eventHandler
Files:
1 added
27 edited

Legend:

Unmodified
Added
Removed
  • plugins/eventHandler/_admin.php

    r2648 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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_CONTEXT_ADMIN')){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 
    1618# set ns 
     
    2729     $core->auth->check('usage,contentadmin',$core->blog->id) 
    2830); 
     31 
     32# Admin Dashboard 
     33$core->addBehavior('adminDashboardIcons',array('adminEventHandler','adminDashboardIcons')); 
     34$core->addBehavior('adminDashboardFavs',array('adminEventHandler','adminDashboardFavs')); 
    2935 
    3036# Admin behaviors 
     
    4450class adminEventHandler 
    4551{ 
     52     # Dashboard icon 
     53     public static function adminDashboardIcons($core,$icons) 
     54     { 
     55          $icons['eventHandler'] = new ArrayObject(array( 
     56               __('Event handler'), 
     57               'plugin.php?p=eventHandler', 
     58               'index.php?pf=eventHandler/icon.png' 
     59          )); 
     60     } 
     61      
     62     # Dashboard fav icon 
     63     public static function adminDashboardFavs($core,$favs) 
     64     { 
     65          $favs['eventHandler'] = new ArrayObject(array( 
     66               'eventHandler', 
     67               'Event handler', 
     68               'plugin.php?p=eventHandler', 
     69               'index.php?pf=eventHandler/icon.png', 
     70               'index.php?pf=eventHandler/icon-b.png', 
     71               'usage,contentadmin',null,null 
     72          )); 
     73     } 
     74      
    4675     # post.php 
    4776     # Headers, jQuery features to remove events from a post 
  • plugins/eventHandler/_define.php

    r3059 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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*/         "Add period to your posts", 
    1820     /* Author */             "JC Denis", 
    19      /* Version */            '1.0-RC4', 
     21     /* Version */            '2013.07.10', 
    2022     /* Permissions */        'usage,contentadmin' 
    2123); 
    22      /* date */          #20110102 
    2324?> 
  • plugins/eventHandler/_install.php

    r3059 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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 
     
    2224{ 
    2325     # Check DC version 
    24      if (version_compare(str_replace("-r","-p",DC_VERSION),'2.2-alpha','<')) 
     26     if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')) 
    2527     { 
    26           throw new Exception('eventHandler requires Dotclear 2.2'); 
     28          throw new Exception('eventHandler requires Dotclear 2.5'); 
    2729     } 
    2830 
  • plugins/eventHandler/_prepend.php

    r2648 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/_public.php

    r3059 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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 
    1618# set ns 
  • plugins/eventHandler/_services.php

    r2648 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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_CONTEXT_ADMIN')){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 
    1618class eventHandlerRestMethods 
  • plugins/eventHandler/_uninstall.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/_widgets.php

    r2648 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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 
    1618$core->addBehavior('initWidgets',array('eventHandlerAdminWidgets','events')); 
     
    5254               __('Ongoing') => 'ongoing', 
    5355               __('Outgoing') => 'outgoing' 
     56          ); 
     57          $combo_homeonly = array( 
     58               __('All pages') => 0, 
     59               __('Home page only') => 1, 
     60               __('Except on home page') => 2 
    5461          ); 
    5562           
     
    6673          $w->ehEvents->setting('item_showcat',__('Show category'),1,'check'); 
    6774          $w->ehEvents->setting('pagelink',__('Add link to events page'),1,'check'); 
    68           $w->ehEvents->setting('homeonly',__('Home page only'),1,'check'); 
     75          $w->ehEvents->setting('homeonly',__('Display on:'),0,'combo',$combo_homeonly); 
    6976     } 
    7077      
     
    137144     public static function categories($w) 
    138145     { 
     146          $combo_homeonly = array( 
     147               __('All pages') => 0, 
     148               __('Home page only') => 1, 
     149               __('Except on home page') => 2 
     150          ); 
     151           
    139152          $w->create('ehCategories',__('Events categories'),array('eventHandlerPublicWidgets','categories')); 
    140153          $w->ehCategories->setting('title',__('Title:'),__('Events by categories')); 
    141154          $w->ehCategories->setting('postcount',__('With events counts'),0,'check'); 
    142155          $w->ehCategories->setting('pagelink',__('Add link to events page'),1,'check'); 
    143           $w->ehCategories->setting('homeonly',__('Home page only'),1,'check'); 
     156          $w->ehCategories->setting('homeonly',__('Display on:'),0,'combo',$combo_homeonly); 
    144157     } 
    145158      
     
    155168               __('hybrid') => 'HYBRID', 
    156169               __('terrain') => 'TERRAIN' 
     170          ); 
     171          $combo_sortby = array( 
     172               __('Date') => 'post_dt', 
     173               __('Title') => 'post_title', 
     174               __('Start date') => 'event_startdt', 
     175               __('End date') => 'event_enddt' 
     176          ); 
     177          $combo_sort = array( 
     178               __('Ascending') => 'asc', 
     179               __('Descending') => 'desc' 
     180          ); 
     181          $combo_period = array( 
     182               __('All periods') => '', 
     183               __('Not started') => 'scheduled', 
     184               __('Started') => 'started', 
     185               __('Finished') => 'finished', 
     186               __('Not finished') => 'notfinished', 
     187               __('Ongoing') => 'ongoing', 
     188               __('Outgoing') => 'outgoing' 
     189          ); 
     190          $combo_homeonly = array( 
     191               __('All pages') => 0, 
     192               __('Home page only') => 1, 
     193               __('Except on home page') => 2 
    157194          ); 
    158195           
     
    164201          $w->ehMap->setting('map_height',__('Height of map: (with unit as % or px)'),'250px'); 
    165202          $w->ehMap->setting('map_info',__('Add tooltips'),0,'check'); 
     203          $w->ehMap->setting('sortby',__('Order by:'),'event_startdt','combo',$combo_sortby); 
     204          $w->ehMap->setting('sort',__('Sort:'),'asc','combo',$combo_sort); 
     205          $w->ehMap->setting('period',__('Period:'),'scheduled','combo',$combo_period); 
    166206          $w->ehMap->setting('pagelink',__('Add link to events page'),1,'check'); 
    167           $w->ehMap->setting('homeonly',__('Home page only'),1,'check'); 
     207          $w->ehMap->setting('homeonly',__('Display on:'),0,'combo',$combo_homeonly); 
    168208     } 
    169209 
    170210     public static function calendar($w) 
    171211     { 
    172           global $core; 
    173            
    174212          $combo_weekstart = array( 
    175213               __('Sunday') => '0', 
    176214               __('Monday') => '1' 
     215          ); 
     216          $combo_homeonly = array( 
     217               __('All pages') => 0, 
     218               __('Home page only') => 1, 
     219               __('Except on home page') => 2 
    177220          ); 
    178221           
     
    182225          $w->ehCalendar->setting('startonly',__('Show only start date of events'),1,'check'); 
    183226          $w->ehCalendar->setting('pagelink',__('Add link to events page'),1,'check'); 
    184           $w->ehCalendar->setting('homeonly',__('Home page only'),1,'check'); 
     227          $w->ehCalendar->setting('homeonly',__('Display on:'),0,'combo',$combo_homeonly); 
    185228     } 
    186229} 
     
    196239          if (!$core->blog->settings->eventHandler->active) return; 
    197240          # Home only 
    198           if ($w->homeonly && $core->url->type != 'default') return; 
     241          if ($w->homeonly == 1 && $core->url->type != 'default'  
     242          ||  $w->homeonly == 2 && $core->url->type == 'default') 
     243          { 
     244               return; 
     245          } 
    199246          $params['sql'] = ''; 
    200247          # Period 
     
    484531          global $core, $_ctx; 
    485532           
    486           if ($w->homeonly && $core->url->type != 'default') return; 
     533          if ($w->homeonly == 1 && $core->url->type != 'default'  
     534          ||  $w->homeonly == 2 && $core->url->type == 'default') 
     535          { 
     536               return; 
     537          } 
    487538           
    488539          $res = 
     
    553604 
    554605          # Plugin active 
    555           if (!$core->blog->settings->eventHandler->active) return; 
    556           # Home only 
    557           if ($w->homeonly && $core->url->type != 'default') return; 
     606          if (!$core->blog->settings->eventHandler->active  
     607           || $w->homeonly == 1 && $core->url->type != 'default'  
     608           || $w->homeonly == 2 && $core->url->type == 'default') 
     609          { 
     610               return; 
     611          } 
    558612           
    559613          $params['sql'] = ''; 
    560           $params['event_period'] = 'all'; 
    561           $params['order'] = 'event_startdt ASC'; 
     614          # Period 
     615          if ($w->period) 
     616          { 
     617               $params['event_period'] = $w->period; 
     618          } 
     619          # Sort field 
     620          $params['order'] = ($w->sortby && in_array($w->sortby,array('post_title','post_dt','event_startdt','event_enddt'))) ?  
     621               $w->sortby.' ' : 'event_startdt '; 
     622          # Sort order 
     623          $params['order'] .= $w->sort == 'desc' ? 'desc' : 'asc'; 
    562624          $params['limit'] = 10; 
    563625          $params['no_content'] = true; 
     
    629691          global $core, $_ctx; 
    630692           
    631           if ($w->homeonly && $core->url->type != 'default') return; 
     693          if ($w->homeonly == 1 && $core->url->type != 'default'  
     694          ||  $w->homeonly == 2 && $core->url->type == 'default') 
     695          { 
     696               return; 
     697          } 
    632698           
    633699          $year = date('Y'); 
  • plugins/eventHandler/default-templates/default-eventhandler.css

    r2617 r3141  
    7171     width: 100%; 
    7272} 
     73/* Fix Ductile mediaqueries.css#320 - space on title */ 
     74#sidebar #blognav div.event-gmap { 
     75     margin-top: 10px; 
     76} 
     77/* Fix Ductile mediaqueries.css#320 - space on map */ 
     78#sidebar #blognav div.event-gmap div { 
     79     margin-top: 0px; 
     80} 
    7381.calendar-array table { 
    7482     text-align: center; 
  • plugins/eventHandler/inc/class.eventhandler.php

    r3059 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/inc/index.event.php

    r3059 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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 
     
    531533 
    532534if (!empty($_GET['upd'])) { 
    533           echo '<p class="message">'.__('Entry has been successfully updated.').'</p>'; 
     535     dcPage::message(__('Entry has been successfully updated.')); 
    534536} 
    535537elseif (!empty($_GET['crea'])) { 
    536           echo '<p class="message">'.__('Entry has been successfully created.').'</p>'; 
     538     dcPage::message(__('Entry has been successfully created.')); 
    537539} 
    538540elseif (!empty($_GET['attached'])) { 
    539      echo '<p class="message">'.__('File has been successfully attached.').'</p>'; 
     541     dcPage::message(__('File has been successfully attached.')); 
    540542} 
    541543elseif (!empty($_GET['rmattach'])) { 
    542      echo '<p class="message">'.__('Attachment has been successfully removed.').'</p>'; 
    543 } 
    544  
     544     dcPage::message(__('Attachment has been successfully removed.')); 
     545} 
    545546if (!empty($_GET['creaco'])) { 
    546           echo '<p class="message">'.__('Comment has been successfully created.').'</p>'; 
    547      } 
     547     dcPage::message(__('Comment has been successfully created.')); 
     548} 
    548549 
    549550# XHTML conversion 
     
    560561<h2>'.html::escapeHTML($core->blog->name). 
    561562' &rsaquo; <a href="'.$p_url.'&amp;part=events">'.__('Events').'</a>'. 
    562 ' &rsaquo; '.$page_title; 
     563' &rsaquo; <span class="page-title">'.$page_title.'</span>'; 
    563564 
    564565if ($post_id && $post->post_status == 1) 
  • plugins/eventHandler/inc/index.events.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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 
     
    506508     <body> 
    507509     <h2>'.html::escapeHTML($core->blog->name). 
    508      ' &rsaquo; '.($from_id ? __('Bind an event') : __('Events')). 
     510     ' &rsaquo; <span class="page-title">'.($from_id ? __('Bind an event') : __('Events')).'</span>'. 
    509511     ' - <a class="button" href="'.$p_url.'&amp;part=event">'.__('New event').'</a>'. 
    510512     '</h2>'.$msg; 
     
    550552     form::hidden(array('part'),'events'). 
    551553     ($from_id ? form::hidden(array('from_id'),$from_id) : ''). 
    552      '<input type="submit" value="'.__('filter').'" /></p>'. 
     554     '<input type="submit" value="'.__('Apply filters').'" /></p>'. 
    553555     '</div>'. 
    554556     '</div>'. 
  • plugins/eventHandler/inc/index.settings.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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 
     
    101103<h2>'.html::escapeHTML($core->blog->name). 
    102104' &rsaquo; <a href="'.$p_url.'&amp;part=events">'.__('Events').'</a>'. 
    103 ' &rsaquo; '.__('Settings'). 
     105' &rsaquo; <span class="page-title">'.__('Settings').'</span>'. 
    104106' - <a class="button" href="'.$p_url.'&amp;part=event">'.__('New event').'</a>'. 
    105107'</h2>'.$msg.' 
  • plugins/eventHandler/inc/lib.eventhandler.calendar.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/inc/lib.eventhandler.pubrest.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/inc/lib.eventhandler.rs.extension.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/inc/patch.eventdata.php

    r2617 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/index.php

    r2648 r3141  
    11<?php 
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# 
    34# This file is part of eventHandler, a plugin for Dotclear 2. 
    45#  
    5 # Copyright (c) 2009-2010 JC Denis and contributors 
    6 # jcdenis@gdwd.com 
     6# Copyright (c) 2009-2013 Jean-Christian Denis 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_CONTEXT_ADMIN')){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 
    1618dcPage::check('usage,contentadmin'); 
     
    6769if (isset($succes[$msg])) 
    6870{ 
    69      $msg = sprintf('<p class="message">%s</p>',$succes[$msg]); 
     71     $msg = dcPage::message($succes[$msg]); 
    7072} 
    7173 
  • plugins/eventHandler/js/event-admin-map.js

    r2617 r3141  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of eventHandler, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2010 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/js/event-public-cal.js

    r2617 r3141  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of eventHandler, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2010 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis 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 ------------------------------------*/ 
    11  
    1213 
    1314;if(window.jQuery) (function($) { 
  • plugins/eventHandler/js/event-public-map.js

    r2617 r3141  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of eventHandler, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2010 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/js/event.js

    r2617 r3141  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of eventHandler, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2010 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/js/post.js

    r2617 r3141  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of eventHandler, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2010 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/js/settings.js

    r2617 r3141  
    11/* -- BEGIN LICENSE BLOCK ---------------------------------- 
     2 * 
    23 * This file is part of eventHandler, a plugin for Dotclear 2. 
    34 *  
    4  * Copyright (c) 2009-2010 JC Denis and contributors 
    5  * jcdenis@gdwd.com 
     5 * Copyright (c) 2009-2013 Jean-Christian Denis 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/eventHandler/locales/fr/main.lang.php

    r2648 r3141  
    11<?php 
    22// Language: Français  
    3 // Module: eventHandler - 1.0-RC1 
    4 // Date: 2010-09-03 01:55:08  
    5 // Translated with dcTranslater - 1.5  
    6  
    7 #_admin.php:21 
    8 #inc/index.event.php:12 
    9 #inc/index.events.php:12 
    10 #inc/index.events.php:12 
    11 #inc/index.settings.php:12 
    12 #index.php:51 
     3// Module: eventHandler - 2013.07.10 
     4// Date: 2013-07-11 06:44:44  
     5// Translated with dcTranslater - 2013.05.11  
     6 
     7#_admin.php:26 
     8#_admin.php:56 
     9#inc/index.event.php:15 
     10#inc/index.events.php:15 
     11#inc/index.events.php:15 
     12#inc/index.settings.php:15 
     13#index.php:53 
    1314$GLOBALS['__l10n']['Event handler'] = 'Gestionnaire d\'événements'; 
    1415 
    15 #_admin.php:57 
    16 #_admin.php:58 
    17 #_public.php:19 
    18 #_public.php:21 
    19 #_public.php:24 
    20 #_widgets.php:56 
     16#_admin.php:89 
     17#_admin.php:90 
     18#_public.php:25 
     19#_public.php:27 
     20#_public.php:30 
     21#_widgets.php:63 
    2122#default-templates/eventhandler-list.html:9 
    2223#default-templates/eventhandler-list.html:16 
     
    2728#exemple-templates/noviny-basic/tpl/eventhandler-list.html:9 
    2829#exemple-templates/noviny-basic/tpl/eventhandler-list.html:16 
    29 #inc/index.event.php:12 
    30 #inc/index.events.php:12 
    31 #inc/index.events.php:12 
    32 #inc/index.events.php:12 
    33 #inc/index.events.php:12 
    34 #inc/index.settings.php:12 
    35 #inc/index.settings.php:12 
    36 #inc/index.settings.php:12 
     30#inc/index.event.php:15 
     31#inc/index.events.php:15 
     32#inc/index.events.php:15 
     33#inc/index.events.php:15 
     34#inc/index.events.php:15 
     35#inc/index.settings.php:15 
     36#inc/index.settings.php:15 
     37#inc/index.settings.php:15 
    3738$GLOBALS['__l10n']['Events'] = 'Événements'; 
    3839 
    39 #_admin.php:57 
    40 #_admin.php:227 
     40#_admin.php:89 
     41#_admin.php:259 
    4142$GLOBALS['__l10n']['Bind events'] = 'Attacher des événements'; 
    4243 
    43 #_admin.php:58 
     44#_admin.php:90 
    4445$GLOBALS['__l10n']['Unbind events'] = 'Détacher les événements'; 
    4546 
    46 #_admin.php:88 
     47#_admin.php:120 
    4748$GLOBALS['__l10n']['No such event'] = 'Pas d\'événement'; 
    4849 
    49 #_admin.php:138 
     50#_admin.php:170 
    5051$GLOBALS['__l10n']['Select events to link to entries'] = 'Sélectionner les événements à lier aux billets'; 
    5152 
    52 #_admin.php:204 
     53#_admin.php:236 
    5354$GLOBALS['__l10n']['Events:'] = 'Événements :'; 
    5455 
    55 #_admin.php:216 
     56#_admin.php:248 
    5657$GLOBALS['__l10n']['Check to unbind'] = 'Cocher pour détacher'; 
    5758 
    58 #_admin.php:235 
     59#_admin.php:267 
    5960$GLOBALS['__l10n']['Change this entry into an event'] = 'Changer ce billet en événement'; 
    6061 
    61 #_admin.php:236 
     62#_admin.php:268 
    6263$GLOBALS['__l10n']['Change into event'] = 'Changer en événement'; 
    6364 
    64 #_admin.php:297 
    65 #inc/index.events.php:12 
     65#_admin.php:329 
     66#inc/index.events.php:15 
    6667$GLOBALS['__l10n']['No event'] = 'Pas d\'événement'; 
    6768 
    68 #_admin.php:309 
     69#_admin.php:341 
    6970$GLOBALS['__l10n']['Period'] = 'Période'; 
    7071 
    71 #_admin.php:310 
    72 #_public.php:46 
    73 #_widgets.php:39 
    74 #_widgets.php:84 
    75 #inc/index.events.php:12 
    76 #inc/index.events.php:12 
     72#_admin.php:342 
     73#_public.php:52 
     74#_widgets.php:41 
     75#_widgets.php:91 
     76#_widgets.php:174 
     77#inc/index.events.php:15 
     78#inc/index.events.php:15 
    7779$GLOBALS['__l10n']['Start date'] = 'Date de début'; 
    7880 
    79 #_admin.php:311 
    80 #_public.php:46 
    81 #_widgets.php:40 
    82 #_widgets.php:85 
    83 #inc/index.events.php:12 
    84 #inc/index.events.php:12 
     81#_admin.php:343 
     82#_public.php:52 
     83#_widgets.php:42 
     84#_widgets.php:92 
     85#_widgets.php:175 
     86#inc/index.events.php:15 
     87#inc/index.events.php:15 
    8588$GLOBALS['__l10n']['End date'] = 'Date de fin'; 
    8689 
    87 #_admin.php:347 
    88 #_public.php:13 
    89 #inc/index.event.php:12 
    90 #inc/index.events.php:12 
    91 $GLOBALS['__l10n']['scheduled'] = 'programmé'; 
    92  
    93 #_public.php:13 
     90#_public.php:19 
    9491$GLOBALS['__l10n']['ongoing'] = 'en cours'; 
    9592 
    96 #_public.php:13 
     93#_public.php:19 
    9794$GLOBALS['__l10n']['finished'] = 'terminé'; 
    9895 
    99 #_public.php:17 
    100 #index.php:38 
     96#_public.php:23 
     97#index.php:40 
    10198$GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter'; 
    10299 
    103 #_public.php:21 
     100#_public.php:27 
    104101$GLOBALS['__l10n']['Directory:'] = 'Repertoire :'; 
    105102 
    106 #_public.php:23 
     103#_public.php:29 
    107104$GLOBALS['__l10n']['This page is powered by Dotclear and eventHandler'] = 'Cette page est propulsée par Dotclear et eventHandler'; 
    108105 
    109 #_public.php:46 
    110 #_public.php:54 
     106#_public.php:50 
     107$GLOBALS['__l10n']['There\'s no event at this time.'] = 'Il n\'y a pas d\'événement pour l\'instant.'; 
     108 
     109#_public.php:52 
     110#_public.php:60 
    111111$GLOBALS['__l10n']['All'] = 'Tous'; 
    112112 
    113 #_public.php:46 
    114 #_public.php:54 
     113#_public.php:52 
     114#_public.php:60 
     115#_widgets.php:54 
     116#_widgets.php:104 
     117#_widgets.php:187 
     118#inc/index.events.php:15 
     119$GLOBALS['__l10n']['Ongoing'] = 'En cours'; 
     120 
     121#_public.php:52 
     122#_public.php:60 
     123#_widgets.php:55 
     124#_widgets.php:105 
     125#_widgets.php:188 
     126#inc/index.events.php:15 
     127$GLOBALS['__l10n']['Outgoing'] = 'Pas en cours'; 
     128 
     129#_public.php:52 
     130#_public.php:60 
     131$GLOBALS['__l10n']['Scheduled'] = 'Programmé'; 
     132 
     133#_public.php:52 
     134#_public.php:60 
     135#_widgets.php:51 
     136#_widgets.php:101 
     137#_widgets.php:184 
     138#inc/index.events.php:15 
     139$GLOBALS['__l10n']['Started'] = 'Débuté'; 
     140 
     141#_public.php:52 
     142#_public.php:60 
     143#_widgets.php:53 
     144#_widgets.php:103 
     145#_widgets.php:186 
     146#inc/index.events.php:15 
     147$GLOBALS['__l10n']['Not finished'] = 'Non fini'; 
     148 
     149#_public.php:52 
     150#_public.php:60 
    115151#_widgets.php:52 
    116 #_widgets.php:97 
    117 #inc/index.events.php:12 
    118 $GLOBALS['__l10n']['Ongoing'] = 'En cours'; 
    119  
    120 #_public.php:46 
    121 #_public.php:54 
    122 #_widgets.php:53 
    123 #_widgets.php:98 
    124 #inc/index.events.php:12 
    125 $GLOBALS['__l10n']['Outgoing'] = 'Pas en cours'; 
    126  
    127 #_public.php:46 
    128 #_public.php:54 
    129 $GLOBALS['__l10n']['Scheduled'] = 'Programmé'; 
    130  
    131 #_public.php:46 
    132 #_public.php:54 
    133 #_widgets.php:49 
    134 #_widgets.php:94 
    135 #inc/index.events.php:12 
    136 $GLOBALS['__l10n']['Started'] = 'Débuté'; 
    137  
    138 #_public.php:46 
    139 #_public.php:54 
    140 #_widgets.php:51 
    141 #_widgets.php:96 
    142 #inc/index.events.php:12 
    143 $GLOBALS['__l10n']['Not finished'] = 'Non fini'; 
    144  
    145 #_public.php:46 
    146 #_public.php:54 
    147 #_widgets.php:50 
    148 #_widgets.php:95 
    149 #inc/index.events.php:12 
     152#_widgets.php:102 
     153#_widgets.php:185 
     154#inc/index.events.php:15 
    150155$GLOBALS['__l10n']['Finished'] = 'Fini'; 
    151156 
    152 #_public.php:46 
    153 #inc/index.events.php:12 
    154 $GLOBALS['__l10n']['Selected'] = 'Sélectionné'; 
    155  
    156 #_public.php:46 
    157 #inc/index.event.php:12 
    158 #inc/index.events.php:12 
    159 #inc/index.events.php:12 
    160 $GLOBALS['__l10n']['Author'] = 'Auteur'; 
    161  
    162 #_public.php:46 
     157#_public.php:52 
    163158$GLOBALS['__l10n']['Published date'] = 'Date de publication'; 
    164159 
    165 #_public.php:54 
    166 #_widgets.php:299 
    167 #_widgets.php:413 
    168 #_widgets.php:542 
    169 #_widgets.php:619 
    170 #_widgets.php:658 
     160#_public.php:60 
     161#_widgets.php:346 
     162#_widgets.php:460 
     163#_widgets.php:593 
     164#_widgets.php:681 
     165#_widgets.php:724 
    171166#default-templates/eventhandler-single.html:64 
    172167#exemple-templates/default-basic/tpl/eventhandler-single.html:64 
     
    174169$GLOBALS['__l10n']['All events'] = 'Tous les événements'; 
    175170 
    176 #_public.php:54 
     171#_public.php:60 
    177172$GLOBALS['__l10n']['Current events'] = 'Événements en cours'; 
    178173 
    179 #_public.php:54 
     174#_public.php:60 
    180175$GLOBALS['__l10n']['Event not being'] = 'Événements pas en cours'; 
    181176 
    182 #_public.php:54 
     177#_public.php:60 
    183178$GLOBALS['__l10n']['Scheduled events'] = 'Événements programmés'; 
    184179 
    185 #_public.php:54 
     180#_public.php:60 
    186181$GLOBALS['__l10n']['Started events'] = 'Événements débutés'; 
    187182 
    188 #_public.php:54 
     183#_public.php:60 
    189184$GLOBALS['__l10n']['Unfinished events'] = 'Événements non finis'; 
    190185 
    191 #_public.php:54 
     186#_public.php:60 
    192187$GLOBALS['__l10n']['Completed events'] = 'Événements terminés'; 
    193188 
    194 #_public.php:54 
     189#_public.php:60 
    195190$GLOBALS['__l10n']['%m %d %Y'] = '%d %m %Y'; 
    196191 
    197 #_public.php:54 
     192#_public.php:60 
    198193$GLOBALS['__l10n']['For the day of %s'] = 'Pour la journée du %s'; 
    199194 
    200 #_public.php:54 
     195#_public.php:60 
    201196$GLOBALS['__l10n']['%m %Y'] = '%m %Y'; 
    202197 
    203 #_public.php:54 
     198#_public.php:60 
    204199$GLOBALS['__l10n']['For the month of %s'] = 'Pour le mois de %s'; 
    205200 
    206 #_public.php:54 
     201#_public.php:60 
    207202$GLOBALS['__l10n']['For the year of %s'] = 'Pour l\'année %s'; 
    208203 
    209 #_public.php:54 
     204#_public.php:60 
    210205$GLOBALS['__l10n']['For the period between %s and %s'] = 'Pour la période entre %s et %s'; 
    211206 
    212 #_public.php:54 
     207#_public.php:60 
    213208$GLOBALS['__l10n']['For the period through %s and %s'] = 'Pour la période passant entre %s et %s'; 
    214209 
    215 #_services.php:25 
    216 #inc/index.events.php:12 
     210#_services.php:29 
     211#inc/index.events.php:15 
    217212$GLOBALS['__l10n']['No such post ID'] = 'Pas de tel billet'; 
    218213 
    219 #_services.php:29 
    220 #inc/class.eventhandler.php:301 
    221 #inc/class.eventhandler.php:345 
     214#_services.php:33 
     215#inc/class.eventhandler.php:309 
     216#inc/class.eventhandler.php:353 
    222217$GLOBALS['__l10n']['No such event ID'] = 'Pas de tel événement'; 
    223218 
    224 #_services.php:42 
     219#_services.php:46 
    225220$GLOBALS['__l10n']['Event successfully removed from post'] = 'Événements retirés avec succès'; 
    226221 
    227 #_widgets.php:47 
    228 #_widgets.php:92 
     222#_widgets.php:49 
     223#_widgets.php:99 
     224#_widgets.php:182 
    229225$GLOBALS['__l10n']['All periods'] = 'Toutes les périodes'; 
    230226 
    231 #_widgets.php:48 
    232 #_widgets.php:93 
    233 #inc/index.events.php:12 
     227#_widgets.php:50 
     228#_widgets.php:100 
     229#_widgets.php:183 
     230#inc/index.events.php:15 
    234231$GLOBALS['__l10n']['Not started'] = 'Non débuté'; 
    235232 
    236 #_widgets.php:57 
     233#_widgets.php:64 
    237234$GLOBALS['__l10n']['Next events'] = 'Événements à venir'; 
    238235 
    239 #_widgets.php:62 
     236#_widgets.php:69 
    240237$GLOBALS['__l10n']['Selected entries only'] = 'Billets séléctionnés seulement'; 
    241238 
    242 #_widgets.php:63 
    243 #_widgets.php:107 
    244 #inc/index.events.php:12 
     239#_widgets.php:70 
     240#_widgets.php:114 
     241#_widgets.php:205 
     242#inc/index.events.php:15 
    245243$GLOBALS['__l10n']['Period:'] = 'Période :'; 
    246244 
    247 #_widgets.php:64 
     245#_widgets.php:71 
    248246$GLOBALS['__l10n']['Date format of events:'] = 'Format de date des événements :'; 
    249247 
    250 #_widgets.php:65 
     248#_widgets.php:72 
    251249$GLOBALS['__l10n']['Time format of events:'] = 'Format d\'heure des événements :'; 
    252250 
    253 #_widgets.php:67 
    254 #_widgets.php:142 
     251#_widgets.php:73 
     252$GLOBALS['__l10n']['Show category'] = 'Afficher la catégorie'; 
     253 
     254#_widgets.php:74 
     255#_widgets.php:155 
     256#_widgets.php:206 
     257#_widgets.php:226 
     258$GLOBALS['__l10n']['Add link to events page'] = 'Ajouter le lien vers la page des événements'; 
     259 
     260#_widgets.php:108 
     261$GLOBALS['__l10n']['Events of an entry'] = 'Événements d\'un billet'; 
     262 
     263#_widgets.php:109 
     264$GLOBALS['__l10n']['Related events'] = 'Événements liés'; 
     265 
     266#_widgets.php:136 
     267$GLOBALS['__l10n']['Entries of an event'] = 'Billets d\'un événement'; 
     268 
     269#_widgets.php:137 
     270#inc/index.event.php:15 
     271$GLOBALS['__l10n']['Related entries'] = 'Billets liés'; 
     272 
     273#_widgets.php:152 
     274$GLOBALS['__l10n']['Events categories'] = 'Catégories d\'événements'; 
     275 
     276#_widgets.php:153 
     277$GLOBALS['__l10n']['Events by categories'] = 'Événements par catégorie'; 
     278 
     279#_widgets.php:154 
     280$GLOBALS['__l10n']['With events counts'] = 'Avec le nombre d\'événements'; 
     281 
    255282#_widgets.php:166 
    256 #_widgets.php:183 
    257 $GLOBALS['__l10n']['Add link to events page'] = 'Ajouter le lien vers la page des événements'; 
    258  
    259 #_widgets.php:101 
    260 $GLOBALS['__l10n']['Events of an entry'] = 'Événements d\'un billet'; 
    261  
    262 #_widgets.php:102 
    263 $GLOBALS['__l10n']['Related events'] = 'Événements liés'; 
    264  
    265 #_widgets.php:129 
    266 $GLOBALS['__l10n']['Entries of an event'] = 'Billets d\'un événement'; 
    267  
    268 #_widgets.php:130 
    269 #inc/index.event.php:12 
    270 $GLOBALS['__l10n']['Related entries'] = 'Billets liés'; 
    271  
    272 #_widgets.php:139 
    273 $GLOBALS['__l10n']['Events categories'] = 'Catégories d\'événements'; 
    274  
    275 #_widgets.php:140 
    276 $GLOBALS['__l10n']['Events by categories'] = 'Événements par catégorie'; 
    277  
    278 #_widgets.php:141 
    279 $GLOBALS['__l10n']['With events counts'] = 'Avec le nombre d\'événements'; 
    280  
    281 #_widgets.php:153 
    282 #inc/index.settings.php:12 
     283#inc/index.settings.php:15 
    283284$GLOBALS['__l10n']['road map'] = 'route'; 
    284285 
    285 #_widgets.php:154 
    286 #inc/index.settings.php:12 
     286#_widgets.php:167 
     287#inc/index.settings.php:15 
    287288$GLOBALS['__l10n']['satellite'] = 'satellite'; 
    288289 
    289 #_widgets.php:155 
    290 #inc/index.settings.php:12 
     290#_widgets.php:168 
     291#inc/index.settings.php:15 
    291292$GLOBALS['__l10n']['hybrid'] = 'hybride'; 
    292293 
    293 #_widgets.php:156 
    294 #inc/index.settings.php:12 
     294#_widgets.php:169 
     295#inc/index.settings.php:15 
    295296$GLOBALS['__l10n']['terrain'] = 'terrain'; 
    296297 
    297 #_widgets.php:159 
     298#_widgets.php:196 
    298299$GLOBALS['__l10n']['Events map'] = 'Carte des événements'; 
    299300 
    300 #_widgets.php:160 
     301#_widgets.php:197 
    301302$GLOBALS['__l10n']['Events on map'] = 'Événements sur une carte'; 
    302303 
    303 #_widgets.php:161 
    304 #inc/index.settings.php:12 
     304#_widgets.php:198 
     305#inc/index.settings.php:15 
    305306$GLOBALS['__l10n']['Default zoom on map:'] = 'Zoom par défaut de la carte :'; 
    306307 
    307 #_widgets.php:162 
    308 #inc/index.settings.php:12 
     308#_widgets.php:199 
     309#inc/index.settings.php:15 
    309310$GLOBALS['__l10n']['Default type of map:'] = 'Type par défaut de la carte :'; 
    310311 
    311 #_widgets.php:163 
     312#_widgets.php:200 
    312313$GLOBALS['__l10n']['Width of map: (with unit as % or px)'] = 'Largeur de la carte : (avec les unités telles que % ou px)'; 
    313314 
    314 #_widgets.php:164 
     315#_widgets.php:201 
    315316$GLOBALS['__l10n']['Height of map: (with unit as % or px)'] = 'Hauteur de la carte : (avec les unités telles que % ou px)'; 
    316317 
    317 #_widgets.php:165 
     318#_widgets.php:202 
    318319$GLOBALS['__l10n']['Add tooltips'] = 'Ajouter les info-bulles'; 
    319320 
    320 #_widgets.php:179 
    321 #_widgets.php:180 
     321#_widgets.php:222 
     322#_widgets.php:223 
    322323$GLOBALS['__l10n']['Events calendar'] = 'Calendrier des événements'; 
    323324 
    324 #_widgets.php:181 
     325#_widgets.php:224 
    325326$GLOBALS['__l10n']['First day of week:'] = 'Premier jour de la semaine :'; 
    326327 
    327 #_widgets.php:182 
     328#_widgets.php:225 
    328329$GLOBALS['__l10n']['Show only start date of events'] = 'Afficher seulement la date de début des événements'; 
    329330 
    330 #_widgets.php:266 
    331 #_widgets.php:383 
     331#_widgets.php:313 
     332#_widgets.php:430 
    332333$GLOBALS['__l10n']['On %sd from %st to %et'] = 'Le %sd de %st à %et'; 
    333334 
    334 #_widgets.php:269 
    335 #_widgets.php:387 
     335#_widgets.php:316 
     336#_widgets.php:434 
    336337$GLOBALS['__l10n']['From %sd, %st to %ed, %et'] = 'Du %sd, %st au %ed, %et'; 
    337338 
    338 #_widgets.php:287 
     339#_widgets.php:334 
    339340$GLOBALS['__l10n']['go to this category'] = 'aller à cette catégorie'; 
    340341 
     
    458459#exemple-templates/default-basic/tpl/eventhandler-single.html:108 
    459460#exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 
    460 #inc/index.event.php:12 
     461#inc/index.event.php:15 
    461462$GLOBALS['__l10n']['Latitude:'] = 'Latitude :'; 
    462463 
     
    464465#exemple-templates/default-basic/tpl/eventhandler-single.html:108 
    465466#exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 
    466 #inc/index.event.php:12 
     467#inc/index.event.php:15 
    467468$GLOBALS['__l10n']['Longitude:'] = 'Longitude :'; 
    468469 
     
    477478$GLOBALS['__l10n']['Display this event on hCalendar format'] = 'Afficher cet événement au format hCalendar'; 
    478479 
    479 #inc/class.eventhandler.php:260 
     480#inc/class.eventhandler.php:268 
    480481$GLOBALS['__l10n']['You are not allowed to create an event'] = 'Vous n\'êtes pas autorisé à créer un événement'; 
    481482 
    482 #inc/class.eventhandler.php:294 
     483#inc/class.eventhandler.php:302 
    483484$GLOBALS['__l10n']['You are not allowed to update events'] = 'Vous n\'êtes pas autorisé à mettre à jour les événements'; 
    484485 
    485 #inc/class.eventhandler.php:338 
     486#inc/class.eventhandler.php:346 
    486487$GLOBALS['__l10n']['You are not allowed to delete events'] = 'Vous n\'êtes pas autorisé à supprimer des événements'; 
    487488 
    488 #inc/class.eventhandler.php:365 
     489#inc/class.eventhandler.php:373 
    489490$GLOBALS['__l10n']['No event start date'] = 'pas de date de début'; 
    490491 
    491 #inc/class.eventhandler.php:370 
     492#inc/class.eventhandler.php:378 
    492493$GLOBALS['__l10n']['No event end date'] = 'pas de date de fin'; 
    493494 
    494 #inc/class.eventhandler.php:375 
     495#inc/class.eventhandler.php:383 
    495496$GLOBALS['__l10n']['Start date greater than end date'] = 'date de début plus récente qu la date de fin'; 
    496497 
    497 #inc/class.eventhandler.php:381 
     498#inc/class.eventhandler.php:389 
    498499$GLOBALS['__l10n']['Not full coordinate'] = 'coordonnées incomplètes'; 
    499500 
    500 #inc/class.eventhandler.php:388 
    501501#inc/class.eventhandler.php:396 
     502#inc/class.eventhandler.php:404 
    502503$GLOBALS['__l10n']['Wrong format of coordinate'] = 'mauvais format de coordonnée'; 
    503504 
    504 #inc/class.eventhandler.php:431 
     505#inc/class.eventhandler.php:439 
    505506$GLOBALS['__l10n']['%s days'] = '%s jours'; 
    506507 
    507 #inc/class.eventhandler.php:432 
     508#inc/class.eventhandler.php:440 
    508509$GLOBALS['__l10n']['one day'] = 'un jour'; 
    509510 
    510 #inc/class.eventhandler.php:433 
     511#inc/class.eventhandler.php:441 
    511512$GLOBALS['__l10n']['%s hours'] = '%s heures'; 
    512513 
    513 #inc/class.eventhandler.php:434 
     514#inc/class.eventhandler.php:442 
    514515$GLOBALS['__l10n']['one hour'] = 'une heure'; 
    515516 
    516 #inc/class.eventhandler.php:435 
     517#inc/class.eventhandler.php:443 
    517518$GLOBALS['__l10n']['%s minutes'] = '%s minutes'; 
    518519 
    519 #inc/class.eventhandler.php:436 
     520#inc/class.eventhandler.php:444 
    520521$GLOBALS['__l10n']['one minute'] = 'une minute'; 
    521522 
    522 #inc/class.eventhandler.php:460 
     523#inc/class.eventhandler.php:445 
     524$GLOBALS['__l10n']['instantaneous'] = 'instantané'; 
     525 
     526#inc/class.eventhandler.php:468 
    523527$GLOBALS['__l10n']['Please wait, try to create map...'] = 'Veulliez patienter, construction de la carte...'; 
    524528 
    525 #inc/index.event.php:12 
    526 #inc/index.event.php:12 
    527 #inc/index.events.php:12 
    528 #inc/index.events.php:12 
    529 #inc/index.settings.php:12 
     529#inc/index.event.php:15 
     530#inc/index.event.php:15 
     531#inc/index.events.php:15 
     532#inc/index.events.php:15 
     533#inc/index.settings.php:15 
    530534$GLOBALS['__l10n']['New event'] = 'Nouvel événement'; 
    531535 
    532 #inc/index.event.php:12 
     536#inc/index.event.php:15 
    533537$GLOBALS['__l10n']['This event does not exist.'] = 'Cette événement n\'existe pas'; 
    534538 
    535 #inc/index.event.php:12 
     539#inc/index.event.php:15 
    536540$GLOBALS['__l10n']['Change entry into event'] = 'Changer un billet en événement'; 
    537541 
    538 #inc/index.event.php:12 
    539 #inc/index.event.php:12 
     542#inc/index.event.php:15 
     543#inc/index.event.php:15 
    540544$GLOBALS['__l10n']['Edit event'] = 'Modifier un événement'; 
    541545 
    542 #inc/index.event.php:12 
     546#inc/index.event.php:15 
    543547$GLOBALS['__l10n']['next event'] = 'Événements suivant'; 
    544548 
    545 #inc/index.event.php:12 
     549#inc/index.event.php:15 
    546550$GLOBALS['__l10n']['previous event'] = 'Événements précédent'; 
    547551 
    548 #inc/index.event.php:12 
     552#inc/index.event.php:15 
    549553$GLOBALS['__l10n']['View event'] = 'Voir l\'événement'; 
    550554 
    551 #inc/index.event.php:12 
     555#inc/index.event.php:15 
    552556$GLOBALS['__l10n']['Preview event'] = 'Prévisualier l\'événement'; 
    553557 
    554 #inc/index.event.php:12 
     558#inc/index.event.php:15 
     559#inc/lib.eventhandler.rs.extension.php:231 
     560$GLOBALS['__l10n']['Start date:'] = 'Date de début :'; 
     561 
     562#inc/index.event.php:15 
     563#inc/lib.eventhandler.rs.extension.php:232 
     564$GLOBALS['__l10n']['End date:'] = 'Date de fin :'; 
     565 
     566#inc/index.event.php:15 
     567$GLOBALS['__l10n']['Localization:'] = 'Localisation :'; 
     568 
     569#inc/index.event.php:15 
     570#inc/lib.eventhandler.rs.extension.php:235 
     571$GLOBALS['__l10n']['Address:'] = 'Adresse :'; 
     572 
     573#inc/index.event.php:15 
     574#inc/index.settings.php:15 
     575$GLOBALS['__l10n']['Maps'] = 'Cartes'; 
     576 
     577#inc/index.event.php:15 
     578$GLOBALS['__l10n']['If you want to use maps, you must enter an address as precise as possible (number, street, city, country)'] = 'Si vous souhaitez utiliser des cartes, vous devez entrer une adresse aussi précise que possible (numéro, rue, ville, pays)'; 
     579 
     580#inc/index.event.php:15 
     581$GLOBALS['__l10n']['Find coordinates on googleMap'] = 'Trouver les coordonnées sur GoogleMaps'; 
     582 
     583#inc/index.event.php:15 
     584$GLOBALS['__l10n']['You must save event before adding entries'] = 'Vous devez sauvegarder l\'événement avant d\'ajouter des billets'; 
     585 
     586#inc/index.events.php:15 
     587$GLOBALS['__l10n']['Localization'] = 'Localisation'; 
     588 
     589#inc/index.events.php:15 
     590$GLOBALS['__l10n']['Unbind related entries'] = 'Séparer les entrées liées'; 
     591 
     592#inc/index.events.php:15 
     593$GLOBALS['__l10n']['Bind an event'] = 'Lier un événement'; 
     594 
     595#inc/index.events.php:15 
     596$GLOBALS['__l10n']['Attach selected events'] = 'Lier les événements selectionnés'; 
     597 
     598#inc/index.settings.php:15 
     599$GLOBALS['__l10n']['before content'] = 'avant le contenu'; 
     600 
     601#inc/index.settings.php:15 
     602$GLOBALS['__l10n']['after content'] = 'après le contenu'; 
     603 
     604#inc/index.settings.php:15 
     605#inc/index.settings.php:15 
     606#index.php:49 
     607$GLOBALS['__l10n']['Settings'] = 'Paramètres'; 
     608 
     609#inc/index.settings.php:15 
     610$GLOBALS['__l10n']['Activation'] = 'Activation'; 
     611 
     612#inc/index.settings.php:15 
     613$GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension'; 
     614 
     615#inc/index.settings.php:15 
     616$GLOBALS['__l10n']['Additionnal style sheet:'] = 'Feuille de style additionnelle'; 
     617 
     618#inc/index.settings.php:15 
     619$GLOBALS['__l10n']['Show related entries on event:'] = 'Afficher les billets liés sur un événement :'; 
     620 
     621#inc/index.settings.php:15 
     622$GLOBALS['__l10n']['Show related events on entry:'] = 'Afficher les événement liés sur un billet :'; 
     623 
     624#inc/index.settings.php:15 
     625$GLOBALS['__l10n']['When an event has an hidden category, it will only display on its category page.'] = 'Quand un événement à une catégorie cachée, il ne s\'affiche que sur sa page de catégorie.'; 
     626 
     627#inc/index.settings.php:15 
     628$GLOBALS['__l10n']['Level'] = 'Niveau'; 
     629 
     630#inc/index.settings.php:15 
     631$GLOBALS['__l10n']['List of events related to this category'] = 'Liste des événements liés à cette catégorie'; 
     632 
     633#inc/index.settings.php:15 
     634$GLOBALS['__l10n']['List of entries related to this category'] = 'Liste des billets liés à cette catégorie'; 
     635 
     636#inc/index.settings.php:15 
     637$GLOBALS['__l10n']['Edit this category'] = 'Modifier cette catégorie'; 
     638 
     639#inc/index.settings.php:15 
     640$GLOBALS['__l10n']['Events from eventdata successfully imported'] = 'Événements importés avec succès depuis eventdata'; 
     641 
     642#inc/index.settings.php:15 
     643$GLOBALS['__l10n']['Records of eventdata have been imported for this blog.'] = 'Les enregistrements de eventdata ont déjà été importé pour ce blog.'; 
     644 
     645#inc/index.settings.php:15 
     646$GLOBALS['__l10n']['Import eventdata records'] = 'Importer les enregistrements de eventdata'; 
     647 
     648#inc/lib.eventhandler.calendar.php:121 
     649$GLOBALS['__l10n']['Calendar'] = 'Calendrier'; 
     650 
     651#inc/lib.eventhandler.calendar.php:195 
     652$GLOBALS['__l10n']['one event'] = 'un événement'; 
     653 
     654#inc/lib.eventhandler.calendar.php:195 
     655$GLOBALS['__l10n']['%s events'] = '%s événements'; 
     656 
     657#inc/lib.eventhandler.rs.extension.php:239 
     658$GLOBALS['__l10n']['Location:'] = 'Lieu :'; 
     659 
     660#inc/lib.eventhandler.rs.extension.php:239 
     661$GLOBALS['__l10n']['latitude:'] = 'latitude :'; 
     662 
     663#inc/lib.eventhandler.rs.extension.php:239 
     664$GLOBALS['__l10n']['longitude:'] = 'longitude :'; 
     665 
     666#inc/lib.eventhandler.rs.extension.php:248 
     667$GLOBALS['__l10n']['Read more'] = 'Lire la suite'; 
     668 
     669#index.php:58 
     670$GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 
     671 
     672#index.php:59 
     673$GLOBALS['__l10n']['Records succesfully deleted'] = 'Enregistrements effacés avec succès'; 
     674 
    555675$GLOBALS['__l10n']['Start date of the event :'] = 'Date de début de l\'événement :'; 
    556676 
    557 #inc/index.event.php:12 
    558677$GLOBALS['__l10n']['End date of the event:'] = 'Date de fin de l\'événement :'; 
    559678 
    560 #inc/index.event.php:12 
    561 $GLOBALS['__l10n']['Localization:'] = 'Localisation :'; 
    562  
    563 #inc/index.event.php:12 
    564 #inc/lib.eventhandler.rs.extension.php:233 
    565 $GLOBALS['__l10n']['Address:'] = 'Adresse :'; 
    566  
    567 #inc/index.event.php:12 
    568 #inc/index.settings.php:12 
    569 $GLOBALS['__l10n']['Maps'] = 'Cartes'; 
    570  
    571 #inc/index.event.php:12 
    572 $GLOBALS['__l10n']['If you want to use maps, you must enter an address as precise as possible (number, street, city, country)'] = 'Si vous souhaitez utiliser des cartes, vous devez entrer une adresse aussi précise que possible (numéro, rue, ville, pays)'; 
    573  
    574 #inc/index.event.php:12 
    575 $GLOBALS['__l10n']['Find coordinates on googleMap'] = 'Trouver les coordonnées sur GoogleMaps'; 
    576  
    577 #inc/index.event.php:12 
    578 $GLOBALS['__l10n']['You must save event before adding entries'] = 'Vous devez sauvegarder l\'événement avant d\'ajouter des billets'; 
    579  
    580 #inc/index.events.php:12 
    581 $GLOBALS['__l10n']['Localization'] = 'Localisation'; 
    582  
    583 #inc/index.events.php:12 
    584 $GLOBALS['__l10n']['Unbind related entries'] = 'Séparer les entrées liées'; 
    585  
    586 #inc/index.events.php:12 
    587 $GLOBALS['__l10n']['Bind an event'] = 'Lier un événement'; 
    588  
    589 #inc/index.events.php:12 
    590 $GLOBALS['__l10n']['Attach selected events'] = 'Lier les événements selectionnés'; 
    591  
    592 #inc/index.settings.php:12 
    593 $GLOBALS['__l10n']['before content'] = 'avant le contenu'; 
    594  
    595 #inc/index.settings.php:12 
    596 $GLOBALS['__l10n']['after content'] = 'après le contenu'; 
    597  
    598 #inc/index.settings.php:12 
    599 #inc/index.settings.php:12 
    600 #index.php:47 
    601 $GLOBALS['__l10n']['Settings'] = 'Paramètres'; 
    602  
    603 #inc/index.settings.php:12 
    604 $GLOBALS['__l10n']['Activation'] = 'Activation'; 
    605  
    606 #inc/index.settings.php:12 
    607 $GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension'; 
    608  
    609 #inc/index.settings.php:12 
    610 $GLOBALS['__l10n']['Additionnal style sheet:'] = 'Feuille de style additionnelle'; 
    611  
    612 #inc/index.settings.php:12 
    613 $GLOBALS['__l10n']['Show related entries on event:'] = 'Afficher les billets liés sur un événement :'; 
    614  
    615 #inc/index.settings.php:12 
    616 $GLOBALS['__l10n']['Show related events on entry:'] = 'Afficher les événement liés sur un billet :'; 
    617  
    618 #inc/index.settings.php:12 
    619 $GLOBALS['__l10n']['When an event has an hidden category, it will only display on its category page.'] = 'Quand un événement à une catégorie cachée, il ne s\'affiche que sur sa page de catégorie.'; 
    620  
    621 #inc/index.settings.php:12 
    622 $GLOBALS['__l10n']['Hide'] = 'Cacher'; 
    623  
    624 #inc/index.settings.php:12 
    625 $GLOBALS['__l10n']['Level'] = 'Niveau'; 
    626  
    627 #inc/index.settings.php:12 
    628 $GLOBALS['__l10n']['List of events related to this category'] = 'Liste des événements liés à cette catégorie'; 
    629  
    630 #inc/index.settings.php:12 
    631 $GLOBALS['__l10n']['List of entries related to this category'] = 'Liste des billets liés à cette catégorie'; 
    632  
    633 #inc/index.settings.php:12 
    634 $GLOBALS['__l10n']['Edit this category'] = 'Modifier cette catégorie'; 
    635  
    636 #inc/index.settings.php:12 
    637 $GLOBALS['__l10n']['Events from eventdata successfully imported'] = 'Événements importés avec succès depuis eventdata'; 
    638  
    639 #inc/index.settings.php:12 
    640 $GLOBALS['__l10n']['Records of eventdata have been imported for this blog.'] = 'Les enregistrements de eventdata ont déjà été importé pour ce blog.'; 
    641  
    642 #inc/index.settings.php:12 
    643 $GLOBALS['__l10n']['Import eventdata records'] = 'Importer les enregistrements de eventdata'; 
    644  
    645 #inc/lib.eventhandler.calendar.php:119 
    646 $GLOBALS['__l10n']['Calendar'] = 'Calendrier'; 
    647  
    648 #inc/lib.eventhandler.calendar.php:193 
    649 $GLOBALS['__l10n']['one event'] = 'un événement'; 
    650  
    651 #inc/lib.eventhandler.calendar.php:193 
    652 $GLOBALS['__l10n']['%s events'] = '%s événements'; 
    653  
    654 #inc/lib.eventhandler.rs.extension.php:229 
    655 $GLOBALS['__l10n']['Start date:'] = 'Date de début :'; 
    656  
    657 #inc/lib.eventhandler.rs.extension.php:230 
    658 $GLOBALS['__l10n']['End date:'] = 'Date de fin :'; 
    659  
    660 #inc/lib.eventhandler.rs.extension.php:237 
    661 $GLOBALS['__l10n']['Location:'] = 'Lieu :'; 
    662  
    663 #inc/lib.eventhandler.rs.extension.php:237 
    664 $GLOBALS['__l10n']['latitude:'] = 'latitude :'; 
    665  
    666 #inc/lib.eventhandler.rs.extension.php:237 
    667 $GLOBALS['__l10n']['longitude:'] = 'longitude :'; 
    668  
    669 #inc/lib.eventhandler.rs.extension.php:246 
    670 $GLOBALS['__l10n']['Read more'] = 'Lire la suite'; 
    671  
    672 #index.php:56 
    673 $GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès'; 
    674  
    675 #index.php:57 
    676 $GLOBALS['__l10n']['Records succesfully deleted'] = 'Enregistrements effacés avec succès'; 
    677  
    678679$GLOBALS['__l10n']['%Y-%m-%d'] = '%d/%m/%Y'; 
    679680 
  • plugins/eventHandler/locales/fr/main.po

    r2648 r3141  
    11# Language: Français 
    2 # Module: eventHandler - 1.0-RC1 
    3 # Date: 2010-09-03 01:55:08 
    4 # Translated with translater 1.5 
     2# Module: eventHandler - 2013.07.10 
     3# Date: 2013-07-11 06:44:44 
     4# Translated with translater 2013.05.11 
    55 
    66msgid "" 
    77msgstr "" 
    88"Content-Type: text/plain; charset=UTF-8\n" 
    9 "Project-Id-Version: eventHandler 1.0-RC1\n" 
     9"Project-Id-Version: eventHandler 2013.07.10\n" 
    1010"POT-Creation-Date: \n" 
    11 "PO-Revision-Date: 2010-09-03T01:55:08+00:00\n" 
    12 "Last-Translator: JC Denis\n" 
     11"PO-Revision-Date: 2013-07-11T06:44:44+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:21 
    18 #: inc/index.event.php:12 
    19 #: inc/index.events.php:12 
    20 #: inc/index.events.php:12 
    21 #: inc/index.settings.php:12 
    22 #: index.php:51 
     17#: _admin.php:26 
     18#: _admin.php:56 
     19#: inc/index.event.php:15 
     20#: inc/index.events.php:15 
     21#: inc/index.events.php:15 
     22#: inc/index.settings.php:15 
     23#: index.php:53 
    2324msgid "Event handler" 
    2425msgstr "Gestionnaire d'événements" 
    2526 
    26 #: _admin.php:57 
    27 #: _admin.php:58 
    28 #: _public.php:19 
    29 #: _public.php:21 
    30 #: _public.php:24 
    31 #: _widgets.php:56 
     27#: _admin.php:89 
     28#: _admin.php:90 
     29#: _public.php:25 
     30#: _public.php:27 
     31#: _public.php:30 
     32#: _widgets.php:63 
    3233#: default-templates/eventhandler-list.html:9 
    3334#: default-templates/eventhandler-list.html:16 
     
    3839#: exemple-templates/noviny-basic/tpl/eventhandler-list.html:9 
    3940#: exemple-templates/noviny-basic/tpl/eventhandler-list.html:16 
    40 #: inc/index.event.php:12 
    41 #: inc/index.events.php:12 
    42 #: inc/index.events.php:12 
    43 #: inc/index.events.php:12 
    44 #: inc/index.events.php:12 
    45 #: inc/index.settings.php:12 
    46 #: inc/index.settings.php:12 
    47 #: inc/index.settings.php:12 
     41#: inc/index.event.php:15 
     42#: inc/index.events.php:15 
     43#: inc/index.events.php:15 
     44#: inc/index.events.php:15 
     45#: inc/index.events.php:15 
     46#: inc/index.settings.php:15 
     47#: inc/index.settings.php:15 
     48#: inc/index.settings.php:15 
    4849msgid "Events" 
    4950msgstr "Événements" 
    5051 
    51 #: _admin.php:57 
    52 #: _admin.php:227 
     52#: _admin.php:89 
     53#: _admin.php:259 
    5354msgid "Bind events" 
    5455msgstr "Attacher des événements" 
    5556 
    56 #: _admin.php:58 
     57#: _admin.php:90 
    5758msgid "Unbind events" 
    5859msgstr "Détacher les événements" 
    5960 
    60 #: _admin.php:88 
     61#: _admin.php:120 
    6162msgid "No such event" 
    6263msgstr "Pas d'événement" 
    6364 
    64 #: _admin.php:138 
     65#: _admin.php:170 
    6566msgid "Select events to link to entries" 
    6667msgstr "Sélectionner les événements à lier aux billets" 
    6768 
    68 #: _admin.php:204 
     69#: _admin.php:236 
    6970msgid "Events:" 
    7071msgstr "Événements :" 
    7172 
    72 #: _admin.php:216 
     73#: _admin.php:248 
    7374msgid "Check to unbind" 
    7475msgstr "Cocher pour détacher" 
    7576 
    76 #: _admin.php:235 
     77#: _admin.php:267 
    7778msgid "Change this entry into an event" 
    7879msgstr "Changer ce billet en événement" 
    7980 
    80 #: _admin.php:236 
     81#: _admin.php:268 
    8182msgid "Change into event" 
    8283msgstr "Changer en événement" 
    8384 
    84 #: _admin.php:297 
    85 #: inc/index.events.php:12 
     85#: _admin.php:329 
     86#: inc/index.events.php:15 
    8687msgid "No event" 
    8788msgstr "Pas d'événement" 
    8889 
    89 #: _admin.php:309 
     90#: _admin.php:341 
    9091msgid "Period" 
    9192msgstr "Période" 
    9293 
    93 #: _admin.php:310 
    94 #: _public.php:46 
    95 #: _widgets.php:39 
    96 #: _widgets.php:84 
    97 #: inc/index.events.php:12 
    98 #: inc/index.events.php:12 
     94#: _admin.php:342 
     95#: _public.php:52 
     96#: _widgets.php:41 
     97#: _widgets.php:91 
     98#: _widgets.php:174 
     99#: inc/index.events.php:15 
     100#: inc/index.events.php:15 
    99101msgid "Start date" 
    100102msgstr "Date de début" 
    101103 
    102 #: _admin.php:311 
    103 #: _public.php:46 
    104 #: _widgets.php:40 
    105 #: _widgets.php:85 
    106 #: inc/index.events.php:12 
    107 #: inc/index.events.php:12 
     104#: _admin.php:343 
     105#: _public.php:52 
     106#: _widgets.php:42 
     107#: _widgets.php:92 
     108#: _widgets.php:175 
     109#: inc/index.events.php:15 
     110#: inc/index.events.php:15 
    108111msgid "End date" 
    109112msgstr "Date de fin" 
    110113 
    111 #: _admin.php:347 
    112 #: _public.php:13 
    113 #: inc/index.event.php:12 
    114 #: inc/index.events.php:12 
    115 msgid "scheduled" 
    116 msgstr "programmé" 
    117  
    118 #: _public.php:13 
     114#: _public.php:19 
    119115msgid "ongoing" 
    120116msgstr "en cours" 
    121117 
    122 #: _public.php:13 
     118#: _public.php:19 
    123119msgid "finished" 
    124120msgstr "terminé" 
    125121 
    126 #: _public.php:17 
    127 #: index.php:38 
     122#: _public.php:23 
     123#: index.php:40 
    128124msgid "Please wait" 
    129125msgstr "Veuillez patienter" 
    130126 
    131 #: _public.php:21 
     127#: _public.php:27 
    132128msgid "Directory:" 
    133129msgstr "Repertoire :" 
    134130 
    135 #: _public.php:23 
     131#: _public.php:29 
    136132msgid "This page is powered by Dotclear and eventHandler" 
    137133msgstr "Cette page est propulsée par Dotclear et eventHandler" 
    138134 
    139 #: _public.php:46 
    140 #: _public.php:54 
     135#: _public.php:50 
     136msgid "There's no event at this time." 
     137msgstr "Il n'y a pas d'événement pour l'instant." 
     138 
     139#: _public.php:52 
     140#: _public.php:60 
    141141msgid "All" 
    142142msgstr "Tous" 
    143143 
    144 #: _public.php:46 
    145 #: _public.php:54 
    146 #: _widgets.php:52 
    147 #: _widgets.php:97 
    148 #: inc/index.events.php:12 
     144#: _public.php:52 
     145#: _public.php:60 
     146#: _widgets.php:54 
     147#: _widgets.php:104 
     148#: _widgets.php:187 
     149#: inc/index.events.php:15 
    149150msgid "Ongoing" 
    150151msgstr "En cours" 
    151152 
    152 #: _public.php:46 
    153 #: _public.php:54 
    154 #: _widgets.php:53 
    155 #: _widgets.php:98 
    156 #: inc/index.events.php:12 
     153#: _public.php:52 
     154#: _public.php:60 
     155#: _widgets.php:55 
     156#: _widgets.php:105 
     157#: _widgets.php:188 
     158#: inc/index.events.php:15 
    157159msgid "Outgoing" 
    158160msgstr "Pas en cours" 
    159161 
    160 #: _public.php:46 
    161 #: _public.php:54 
     162#: _public.php:52 
     163#: _public.php:60 
    162164msgid "Scheduled" 
    163165msgstr "Programmé" 
    164166 
    165 #: _public.php:46 
    166 #: _public.php:54 
    167 #: _widgets.php:49 
    168 #: _widgets.php:94 
    169 #: inc/index.events.php:12 
     167#: _public.php:52 
     168#: _public.php:60 
     169#: _widgets.php:51 
     170#: _widgets.php:101 
     171#: _widgets.php:184 
     172#: inc/index.events.php:15 
    170173msgid "Started" 
    171174msgstr "Débuté" 
    172175 
    173 #: _public.php:46 
    174 #: _public.php:54 
    175 #: _widgets.php:51 
    176 #: _widgets.php:96 
    177 #: inc/index.events.php:12 
     176#: _public.php:52 
     177#: _public.php:60 
     178#: _widgets.php:53 
     179#: _widgets.php:103 
     180#: _widgets.php:186 
     181#: inc/index.events.php:15 
    178182msgid "Not finished" 
    179183msgstr "Non fini" 
    180184 
    181 #: _public.php:46 
    182 #: _public.php:54 
    183 #: _widgets.php:50 
    184 #: _widgets.php:95 
    185 #: inc/index.events.php:12 
     185#: _public.php:52 
     186#: _public.php:60 
     187#: _widgets.php:52 
     188#: _widgets.php:102 
     189#: _widgets.php:185 
     190#: inc/index.events.php:15 
    186191msgid "Finished" 
    187192msgstr "Fini" 
    188193 
    189 #: _public.php:46 
    190 #: inc/index.events.php:12 
    191 msgid "Selected" 
    192 msgstr "Sélectionné" 
    193  
    194 #: _public.php:46 
    195 #: inc/index.event.php:12 
    196 #: inc/index.events.php:12 
    197 #: inc/index.events.php:12 
    198 msgid "Author" 
    199 msgstr "Auteur" 
    200  
    201 #: _public.php:46 
     194#: _public.php:52 
    202195msgid "Published date" 
    203196msgstr "Date de publication" 
    204197 
    205 #: _public.php:54 
    206 #: _widgets.php:299 
    207 #: _widgets.php:413 
    208 #: _widgets.php:542 
    209 #: _widgets.php:619 
    210 #: _widgets.php:658 
     198#: _public.php:60 
     199#: _widgets.php:346 
     200#: _widgets.php:460 
     201#: _widgets.php:593 
     202#: _widgets.php:681 
     203#: _widgets.php:724 
    211204#: default-templates/eventhandler-single.html:64 
    212205#: exemple-templates/default-basic/tpl/eventhandler-single.html:64 
     
    215208msgstr "Tous les événements" 
    216209 
    217 #: _public.php:54 
     210#: _public.php:60 
    218211msgid "Current events" 
    219212msgstr "Événements en cours" 
    220213 
    221 #: _public.php:54 
     214#: _public.php:60 
    222215msgid "Event not being" 
    223216msgstr "Événements pas en cours" 
    224217 
    225 #: _public.php:54 
     218#: _public.php:60 
    226219msgid "Scheduled events" 
    227220msgstr "Événements programmés" 
    228221 
    229 #: _public.php:54 
     222#: _public.php:60 
    230223msgid "Started events" 
    231224msgstr "Événements débutés" 
    232225 
    233 #: _public.php:54 
     226#: _public.php:60 
    234227msgid "Unfinished events" 
    235228msgstr "Événements non finis" 
    236229 
    237 #: _public.php:54 
     230#: _public.php:60 
    238231msgid "Completed events" 
    239232msgstr "Événements terminés" 
    240233 
    241 #: _public.php:54 
     234#: _public.php:60 
    242235msgid "%m %d %Y" 
    243236msgstr "%d %m %Y" 
    244237 
    245 #: _public.php:54 
     238#: _public.php:60 
    246239msgid "For the day of %s" 
    247240msgstr "Pour la journée du %s" 
    248241 
    249 #: _public.php:54 
     242#: _public.php:60 
    250243msgid "%m %Y" 
    251244msgstr "%m %Y" 
    252245 
    253 #: _public.php:54 
     246#: _public.php:60 
    254247msgid "For the month of %s" 
    255248msgstr "Pour le mois de %s" 
    256249 
    257 #: _public.php:54 
     250#: _public.php:60 
    258251msgid "For the year of %s" 
    259252msgstr "Pour l'année %s" 
    260253 
    261 #: _public.php:54 
     254#: _public.php:60 
    262255msgid "For the period between %s and %s" 
    263256msgstr "Pour la période entre %s et %s" 
    264257 
    265 #: _public.php:54 
     258#: _public.php:60 
    266259msgid "For the period through %s and %s" 
    267260msgstr "Pour la période passant entre %s et %s" 
    268261 
    269 #: _services.php:25 
    270 #: inc/index.events.php:12 
     262#: _services.php:29 
     263#: inc/index.events.php:15 
    271264msgid "No such post ID" 
    272265msgstr "Pas de tel billet" 
    273266 
    274 #: _services.php:29 
    275 #: inc/class.eventhandler.php:301 
    276 #: inc/class.eventhandler.php:345 
     267#: _services.php:33 
     268#: inc/class.eventhandler.php:309 
     269#: inc/class.eventhandler.php:353 
    277270msgid "No such event ID" 
    278271msgstr "Pas de tel événement" 
    279272 
    280 #: _services.php:42 
     273#: _services.php:46 
    281274msgid "Event successfully removed from post" 
    282275msgstr "Événements retirés avec succès" 
    283276 
    284 #: _widgets.php:47 
    285 #: _widgets.php:92 
     277#: _widgets.php:49 
     278#: _widgets.php:99 
     279#: _widgets.php:182 
    286280msgid "All periods" 
    287281msgstr "Toutes les périodes" 
    288282 
    289 #: _widgets.php:48 
    290 #: _widgets.php:93 
    291 #: inc/index.events.php:12 
     283#: _widgets.php:50 
     284#: _widgets.php:100 
     285#: _widgets.php:183 
     286#: inc/index.events.php:15 
    292287msgid "Not started" 
    293288msgstr "Non débuté" 
    294289 
    295 #: _widgets.php:57 
     290#: _widgets.php:64 
    296291msgid "Next events" 
    297292msgstr "Événements à venir" 
    298293 
    299 #: _widgets.php:62 
     294#: _widgets.php:69 
    300295msgid "Selected entries only" 
    301296msgstr "Billets séléctionnés seulement" 
    302297 
    303 #: _widgets.php:63 
    304 #: _widgets.php:107 
    305 #: inc/index.events.php:12 
     298#: _widgets.php:70 
     299#: _widgets.php:114 
     300#: _widgets.php:205 
     301#: inc/index.events.php:15 
    306302msgid "Period:" 
    307303msgstr "Période :" 
    308304 
    309 #: _widgets.php:64 
     305#: _widgets.php:71 
    310306msgid "Date format of events:" 
    311307msgstr "Format de date des événements :" 
    312308 
    313 #: _widgets.php:65 
     309#: _widgets.php:72 
    314310msgid "Time format of events:" 
    315311msgstr "Format d'heure des événements :" 
    316312 
    317 #: _widgets.php:67 
    318 #: _widgets.php:142 
    319 #: _widgets.php:166 
    320 #: _widgets.php:183 
     313#: _widgets.php:73 
     314msgid "Show category" 
     315msgstr "Afficher la catégorie" 
     316 
     317#: _widgets.php:74 
     318#: _widgets.php:155 
     319#: _widgets.php:206 
     320#: _widgets.php:226 
    321321msgid "Add link to events page" 
    322322msgstr "Ajouter le lien vers la page des événements" 
    323323 
    324 #: _widgets.php:101 
     324#: _widgets.php:108 
    325325msgid "Events of an entry" 
    326326msgstr "Événements d'un billet" 
    327327 
    328 #: _widgets.php:102 
     328#: _widgets.php:109 
    329329msgid "Related events" 
    330330msgstr "Événements liés" 
    331331 
    332 #: _widgets.php:129 
     332#: _widgets.php:136 
    333333msgid "Entries of an event" 
    334334msgstr "Billets d'un événement" 
    335335 
    336 #: _widgets.php:130 
    337 #: inc/index.event.php:12 
     336#: _widgets.php:137 
     337#: inc/index.event.php:15 
    338338msgid "Related entries" 
    339339msgstr "Billets liés" 
    340340 
    341 #: _widgets.php:139 
     341#: _widgets.php:152 
    342342msgid "Events categories" 
    343343msgstr "Catégories d'événements" 
    344344 
    345 #: _widgets.php:140 
     345#: _widgets.php:153 
    346346msgid "Events by categories" 
    347347msgstr "Événements par catégorie" 
    348348 
    349 #: _widgets.php:141 
     349#: _widgets.php:154 
    350350msgid "With events counts" 
    351351msgstr "Avec le nombre d'événements" 
    352352 
    353 #: _widgets.php:153 
    354 #: inc/index.settings.php:12 
     353#: _widgets.php:166 
     354#: inc/index.settings.php:15 
    355355msgid "road map" 
    356356msgstr "route" 
    357357 
    358 #: _widgets.php:154 
    359 #: inc/index.settings.php:12 
     358#: _widgets.php:167 
     359#: inc/index.settings.php:15 
    360360msgid "satellite" 
    361361msgstr "satellite" 
    362362 
    363 #: _widgets.php:155 
    364 #: inc/index.settings.php:12 
     363#: _widgets.php:168 
     364#: inc/index.settings.php:15 
    365365msgid "hybrid" 
    366366msgstr "hybride" 
    367367 
    368 #: _widgets.php:156 
    369 #: inc/index.settings.php:12 
     368#: _widgets.php:169 
     369#: inc/index.settings.php:15 
    370370msgid "terrain" 
    371371msgstr "terrain" 
    372372 
    373 #: _widgets.php:159 
     373#: _widgets.php:196 
    374374msgid "Events map" 
    375375msgstr "Carte des événements" 
    376376 
    377 #: _widgets.php:160 
     377#: _widgets.php:197 
    378378msgid "Events on map" 
    379379msgstr "Événements sur une carte" 
    380380 
    381 #: _widgets.php:161 
    382 #: inc/index.settings.php:12 
     381#: _widgets.php:198 
     382#: inc/index.settings.php:15 
    383383msgid "Default zoom on map:" 
    384384msgstr "Zoom par défaut de la carte :" 
    385385 
    386 #: _widgets.php:162 
    387 #: inc/index.settings.php:12 
     386#: _widgets.php:199 
     387#: inc/index.settings.php:15 
    388388msgid "Default type of map:" 
    389389msgstr "Type par défaut de la carte :" 
    390390 
    391 #: _widgets.php:163 
     391#: _widgets.php:200 
    392392msgid "Width of map: (with unit as % or px)" 
    393393msgstr "Largeur de la carte : (avec les unités telles que % ou px)" 
    394394 
    395 #: _widgets.php:164 
     395#: _widgets.php:201 
    396396msgid "Height of map: (with unit as % or px)" 
    397397msgstr "Hauteur de la carte : (avec les unités telles que % ou px)" 
    398398 
    399 #: _widgets.php:165 
     399#: _widgets.php:202 
    400400msgid "Add tooltips" 
    401401msgstr "Ajouter les info-bulles" 
    402402 
    403 #: _widgets.php:179 
    404 #: _widgets.php:180 
     403#: _widgets.php:222 
     404#: _widgets.php:223 
    405405msgid "Events calendar" 
    406406msgstr "Calendrier des événements" 
    407407 
    408 #: _widgets.php:181 
     408#: _widgets.php:224 
    409409msgid "First day of week:" 
    410410msgstr "Premier jour de la semaine :" 
    411411 
    412 #: _widgets.php:182 
     412#: _widgets.php:225 
    413413msgid "Show only start date of events" 
    414414msgstr "Afficher seulement la date de début des événements" 
    415415 
    416 #: _widgets.php:266 
    417 #: _widgets.php:383 
     416#: _widgets.php:313 
     417#: _widgets.php:430 
    418418msgid "On %sd from %st to %et" 
    419419msgstr "Le %sd de %st à %et" 
    420420 
    421 #: _widgets.php:269 
    422 #: _widgets.php:387 
     421#: _widgets.php:316 
     422#: _widgets.php:434 
    423423msgid "From %sd, %st to %ed, %et" 
    424424msgstr "Du %sd, %st au %ed, %et" 
    425425 
    426 #: _widgets.php:287 
     426#: _widgets.php:334 
    427427msgid "go to this category" 
    428428msgstr "aller à cette catégorie" 
     
    567567#: exemple-templates/default-basic/tpl/eventhandler-single.html:108 
    568568#: exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 
    569 #: inc/index.event.php:12 
     569#: inc/index.event.php:15 
    570570msgid "Latitude:" 
    571571msgstr "Latitude :" 
     
    574574#: exemple-templates/default-basic/tpl/eventhandler-single.html:108 
    575575#: exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 
    576 #: inc/index.event.php:12 
     576#: inc/index.event.php:15 
    577577msgid "Longitude:" 
    578578msgstr "Longitude :" 
     
    590590msgstr "Afficher cet événement au format hCalendar" 
    591591 
    592 #: inc/class.eventhandler.php:260 
     592#: inc/class.eventhandler.php:268 
    593593msgid "You are not allowed to create an event" 
    594594msgstr "Vous n'êtes pas autorisé à créer un événement" 
    595595 
    596 #: inc/class.eventhandler.php:294 
     596#: inc/class.eventhandler.php:302 
    597597msgid "You are not allowed to update events" 
    598598msgstr "Vous n'êtes pas autorisé à mettre à jour les événements" 
    599599 
    600 #: inc/class.eventhandler.php:338 
     600#: inc/class.eventhandler.php:346 
    601601msgid "You are not allowed to delete events" 
    602602msgstr "Vous n'êtes pas autorisé à supprimer des événements" 
    603603 
    604 #: inc/class.eventhandler.php:365 
     604#: inc/class.eventhandler.php:373 
    605605msgid "No event start date" 
    606606msgstr "pas de date de début" 
    607607 
    608 #: inc/class.eventhandler.php:370 
     608#: inc/class.eventhandler.php:378 
    609609msgid "No event end date" 
    610610msgstr "pas de date de fin" 
    611611 
    612 #: inc/class.eventhandler.php:375 
     612#: inc/class.eventhandler.php:383 
    613613msgid "Start date greater than end date" 
    614614msgstr "date de début plus récente qu la date de fin" 
    615615 
    616 #: inc/class.eventhandler.php:381 
     616#: inc/class.eventhandler.php:389 
    617617msgid "Not full coordinate" 
    618618msgstr "coordonnées incomplètes" 
    619619 
    620 #: inc/class.eventhandler.php:388 
    621620#: inc/class.eventhandler.php:396 
     621#: inc/class.eventhandler.php:404 
    622622msgid "Wrong format of coordinate" 
    623623msgstr "mauvais format de coordonnée" 
    624624 
    625 #: inc/class.eventhandler.php:431 
     625#: inc/class.eventhandler.php:439 
    626626msgid "%s days" 
    627627msgstr "%s jours" 
    628628 
    629 #: inc/class.eventhandler.php:432 
     629#: inc/class.eventhandler.php:440 
    630630msgid "one day" 
    631631msgstr "un jour" 
    632632 
    633 #: inc/class.eventhandler.php:433 
     633#: inc/class.eventhandler.php:441 
    634634msgid "%s hours" 
    635635msgstr "%s heures" 
    636636 
    637 #: inc/class.eventhandler.php:434 
     637#: inc/class.eventhandler.php:442 
    638638msgid "one hour" 
    639639msgstr "une heure" 
    640640 
    641 #: inc/class.eventhandler.php:435 
     641#: inc/class.eventhandler.php:443 
    642642msgid "%s minutes" 
    643643msgstr "%s minutes" 
    644644 
    645 #: inc/class.eventhandler.php:436 
     645#: inc/class.eventhandler.php:444 
    646646msgid "one minute" 
    647647msgstr "une minute" 
    648648 
    649 #: inc/class.eventhandler.php:460 
     649#: inc/class.eventhandler.php:445 
     650msgid "instantaneous" 
     651msgstr "instantané" 
     652 
     653#: inc/class.eventhandler.php:468 
    650654msgid "Please wait, try to create map..." 
    651655msgstr "Veulliez patienter, construction de la carte..." 
    652656 
    653 #: inc/index.event.php:12 
    654 #: inc/index.event.php:12 
    655 #: inc/index.events.php:12 
    656 #: inc/index.events.php:12 
    657 #: inc/index.settings.php:12 
     657#: inc/index.event.php:15 
     658#: inc/index.event.php:15 
     659#: inc/index.events.php:15 
     660#: inc/index.events.php:15 
     661#: inc/index.settings.php:15 
    658662msgid "New event" 
    659663msgstr "Nouvel événement" 
    660664 
    661 #: inc/index.event.php:12 
     665#: inc/index.event.php:15 
    662666msgid "This event does not exist." 
    663667msgstr "Cette événement n'existe pas" 
    664668 
    665 #: inc/index.event.php:12 
     669#: inc/index.event.php:15 
    666670msgid "Change entry into event" 
    667671msgstr "Changer un billet en événement" 
    668672 
    669 #: inc/index.event.php:12 
    670 #: inc/index.event.php:12 
     673#: inc/index.event.php:15 
     674#: inc/index.event.php:15 
    671675msgid "Edit event" 
    672676msgstr "Modifier un événement" 
    673677 
    674 #: inc/index.event.php:12 
     678#: inc/index.event.php:15 
    675679msgid "next event" 
    676680msgstr "Événements suivant" 
    677681 
    678 #: inc/index.event.php:12 
     682#: inc/index.event.php:15 
    679683msgid "previous event" 
    680684msgstr "Événements précédent" 
    681685 
    682 #: inc/index.event.php:12 
     686#: inc/index.event.php:15 
    683687msgid "View event" 
    684688msgstr "Voir l'événement" 
    685689 
    686 #: inc/index.event.php:12 
     690#: inc/index.event.php:15 
    687691msgid "Preview event" 
    688692msgstr "Prévisualier l'événement" 
    689693 
    690 #: inc/index.event.php:12 
     694#: inc/index.event.php:15 
     695#: inc/lib.eventhandler.rs.extension.php:231 
     696msgid "Start date:" 
     697msgstr "Date de début :" 
     698 
     699#: inc/index.event.php:15 
     700#: inc/lib.eventhandler.rs.extension.php:232 
     701msgid "End date:" 
     702msgstr "Date de fin :" 
     703 
     704#: inc/index.event.php:15 
     705msgid "Localization:" 
     706msgstr "Localisation :" 
     707 
     708#: inc/index.event.php:15 
     709#: inc/lib.eventhandler.rs.extension.php:235 
     710msgid "Address:" 
     711msgstr "Adresse :" 
     712 
     713#: inc/index.event.php:15 
     714#: inc/index.settings.php:15 
     715msgid "Maps" 
     716msgstr "Cartes" 
     717 
     718#: inc/index.event.php:15 
     719msgid "If you want to use maps, you must enter an address as precise as possible (number, street, city, country)" 
     720msgstr "Si vous souhaitez utiliser des cartes, vous devez entrer une adresse aussi précise que possible (numéro, rue, ville, pays)" 
     721 
     722#: inc/index.event.php:15 
     723msgid "Find coordinates on googleMap" 
     724msgstr "Trouver les coordonnées sur GoogleMaps" 
     725 
     726#: inc/index.event.php:15 
     727msgid "You must save event before adding entries" 
     728msgstr "Vous devez sauvegarder l'événement avant d'ajouter des billets" 
     729 
     730#: inc/index.events.php:15 
     731msgid "Localization" 
     732msgstr "Localisation" 
     733 
     734#: inc/index.events.php:15 
     735msgid "Unbind related entries" 
     736msgstr "Séparer les entrées liées" 
     737 
     738#: inc/index.events.php:15 
     739msgid "Bind an event" 
     740msgstr "Lier un événement" 
     741 
     742#: inc/index.events.php:15 
     743msgid "Attach selected events" 
     744msgstr "Lier les événements selectionnés" 
     745 
     746#: inc/index.settings.php:15 
     747msgid "before content" 
     748msgstr "avant le contenu" 
     749 
     750#: inc/index.settings.php:15 
     751msgid "after content" 
     752msgstr "après le contenu" 
     753 
     754#: inc/index.settings.php:15 
     755#: inc/index.settings.php:15 
     756#: index.php:49 
     757msgid "Settings" 
     758msgstr "Paramètres" 
     759 
     760#: inc/index.settings.php:15 
     761msgid "Activation" 
     762msgstr "Activation" 
     763 
     764#: inc/index.settings.php:15 
     765msgid "Enable extension" 
     766msgstr "Activer l'extension" 
     767 
     768#: inc/index.settings.php:15 
     769msgid "Additionnal style sheet:" 
     770msgstr "Feuille de style additionnelle" 
     771 
     772#: inc/index.settings.php:15 
     773msgid "Show related entries on event:" 
     774msgstr "Afficher les billets liés sur un événement :" 
     775 
     776#: inc/index.settings.php:15 
     777msgid "Show related events on entry:" 
     778msgstr "Afficher les événement liés sur un billet :" 
     779 
     780#: inc/index.settings.php:15 
     781msgid "When an event has an hidden category, it will only display on its category page." 
     782msgstr "Quand un événement à une catégorie cachée, il ne s'affiche que sur sa page de catégorie." 
     783 
     784#: inc/index.settings.php:15 
     785msgid "Level" 
     786msgstr "Niveau" 
     787 
     788#: inc/index.settings.php:15 
     789msgid "List of events related to this category" 
     790msgstr "Liste des événements liés à cette catégorie" 
     791 
     792#: inc/index.settings.php:15 
     793msgid "List of entries related to this category" 
     794msgstr "Liste des billets liés à cette catégorie" 
     795 
     796#: inc/index.settings.php:15 
     797msgid "Edit this category" 
     798msgstr "Modifier cette catégorie" 
     799 
     800#: inc/index.settings.php:15 
     801msgid "Events from eventdata successfully imported" 
     802msgstr "Événements importés avec succès depuis eventdata" 
     803 
     804#: inc/index.settings.php:15 
     805msgid "Records of eventdata have been imported for this blog." 
     806msgstr "Les enregistrements de eventdata ont déjà été importé pour ce blog." 
     807 
     808#: inc/index.settings.php:15 
     809msgid "Import eventdata records" 
     810msgstr "Importer les enregistrements de eventdata" 
     811 
     812#: inc/lib.eventhandler.calendar.php:121 
     813msgid "Calendar" 
     814msgstr "Calendrier" 
     815 
     816#: inc/lib.eventhandler.calendar.php:195 
     817msgid "one event" 
     818msgstr "un événement" 
     819 
     820#: inc/lib.eventhandler.calendar.php:195 
     821msgid "%s events" 
     822msgstr "%s événements" 
     823 
     824#: inc/lib.eventhandler.rs.extension.php:239 
     825msgid "Location:" 
     826msgstr "Lieu :" 
     827 
     828#: inc/lib.eventhandler.rs.extension.php:239 
     829msgid "latitude:" 
     830msgstr "latitude :" 
     831 
     832#: inc/lib.eventhandler.rs.extension.php:239 
     833msgid "longitude:" 
     834msgstr "longitude :" 
     835 
     836#: inc/lib.eventhandler.rs.extension.php:248 
     837msgid "Read more" 
     838msgstr "Lire la suite" 
     839 
     840#: index.php:58 
     841msgid "Configuration successfully saved" 
     842msgstr "Configuration sauvegardée avec succès" 
     843 
     844#: index.php:59 
     845msgid "Records succesfully deleted" 
     846msgstr "Enregistrements effacés avec succès" 
     847 
    691848msgid "Start date of the event :" 
    692849msgstr "Date de début de l'événement :" 
    693850 
    694 #: inc/index.event.php:12 
    695851msgid "End date of the event:" 
    696852msgstr "Date de fin de l'événement :" 
    697853 
    698 #: inc/index.event.php:12 
    699 msgid "Localization:" 
    700 msgstr "Localisation :" 
    701  
    702 #: inc/index.event.php:12 
    703 #: inc/lib.eventhandler.rs.extension.php:233 
    704 msgid "Address:" 
    705 msgstr "Adresse :" 
    706  
    707 #: inc/index.event.php:12 
    708 #: inc/index.settings.php:12 
    709 msgid "Maps" 
    710 msgstr "Cartes" 
    711  
    712 #: inc/index.event.php:12 
    713 msgid "If you want to use maps, you must enter an address as precise as possible (number, street, city, country)" 
    714 msgstr "Si vous souhaitez utiliser des cartes, vous devez entrer une adresse aussi précise que possible (numéro, rue, ville, pays)" 
    715  
    716 #: inc/index.event.php:12 
    717 msgid "Find coordinates on googleMap" 
    718 msgstr "Trouver les coordonnées sur GoogleMaps" 
    719  
    720 #: inc/index.event.php:12 
    721 msgid "You must save event before adding entries" 
    722 msgstr "Vous devez sauvegarder l'événement avant d'ajouter des billets" 
    723  
    724 #: inc/index.events.php:12 
    725 msgid "Localization" 
    726 msgstr "Localisation" 
    727  
    728 #: inc/index.events.php:12 
    729 msgid "Unbind related entries" 
    730 msgstr "Séparer les entrées liées" 
    731  
    732 #: inc/index.events.php:12 
    733 msgid "Bind an event" 
    734 msgstr "Lier un événement" 
    735  
    736 #: inc/index.events.php:12 
    737 msgid "Attach selected events" 
    738 msgstr "Lier les événements selectionnés" 
    739  
    740 #: inc/index.settings.php:12 
    741 msgid "before content" 
    742 msgstr "avant le contenu" 
    743  
    744 #: inc/index.settings.php:12 
    745 msgid "after content" 
    746 msgstr "après le contenu" 
    747  
    748 #: inc/index.settings.php:12 
    749 #: inc/index.settings.php:12 
    750 #: index.php:47 
    751 msgid "Settings" 
    752 msgstr "Paramètres" 
    753  
    754 #: inc/index.settings.php:12 
    755 msgid "Activation" 
    756 msgstr "Activation" 
    757  
    758 #: inc/index.settings.php:12 
    759 msgid "Enable extension" 
    760 msgstr "Activer l'extension" 
    761  
    762 #: inc/index.settings.php:12 
    763 msgid "Additionnal style sheet:" 
    764 msgstr "Feuille de style additionnelle" 
    765  
    766 #: inc/index.settings.php:12 
    767 msgid "Show related entries on event:" 
    768 msgstr "Afficher les billets liés sur un événement :" 
    769  
    770 #: inc/index.settings.php:12 
    771 msgid "Show related events on entry:" 
    772 msgstr "Afficher les événement liés sur un billet :" 
    773  
    774 #: inc/index.settings.php:12 
    775 msgid "When an event has an hidden category, it will only display on its category page." 
    776 msgstr "Quand un événement à une catégorie cachée, il ne s'affiche que sur sa page de catégorie." 
    777  
    778 #: inc/index.settings.php:12 
    779 msgid "Hide" 
    780 msgstr "Cacher" 
    781  
    782 #: inc/index.settings.php:12 
    783 msgid "Level" 
    784 msgstr "Niveau" 
    785  
    786 #: inc/index.settings.php:12 
    787 msgid "List of events related to this category" 
    788 msgstr "Liste des événements liés à cette catégorie" 
    789  
    790 #: inc/index.settings.php:12 
    791 msgid "List of entries related to this category" 
    792 msgstr "Liste des billets liés à cette catégorie" 
    793  
    794 #: inc/index.settings.php:12 
    795 msgid "Edit this category" 
    796 msgstr "Modifier cette catégorie" 
    797  
    798 #: inc/index.settings.php:12 
    799 msgid "Events from eventdata successfully imported" 
    800 msgstr "Événements importés avec succès depuis eventdata" 
    801  
    802 #: inc/index.settings.php:12 
    803 msgid "Records of eventdata have been imported for this blog." 
    804 msgstr "Les enregistrements de eventdata ont déjà été importé pour ce blog." 
    805  
    806 #: inc/index.settings.php:12 
    807 msgid "Import eventdata records" 
    808 msgstr "Importer les enregistrements de eventdata" 
    809  
    810 #: inc/lib.eventhandler.calendar.php:119 
    811 msgid "Calendar" 
    812 msgstr "Calendrier" 
    813  
    814 #: inc/lib.eventhandler.calendar.php:193 
    815 msgid "one event" 
    816 msgstr "un événement" 
    817  
    818 #: inc/lib.eventhandler.calendar.php:193 
    819 msgid "%s events" 
    820 msgstr "%s événements" 
    821  
    822 #: inc/lib.eventhandler.rs.extension.php:229 
    823 msgid "Start date:" 
    824 msgstr "Date de début :" 
    825  
    826 #: inc/lib.eventhandler.rs.extension.php:230 
    827 msgid "End date:" 
    828 msgstr "Date de fin :" 
    829  
    830 #: inc/lib.eventhandler.rs.extension.php:237 
    831 msgid "Location:" 
    832 msgstr "Lieu :" 
    833  
    834 #: inc/lib.eventhandler.rs.extension.php:237 
    835 msgid "latitude:" 
    836 msgstr "latitude :" 
    837  
    838 #: inc/lib.eventhandler.rs.extension.php:237 
    839 msgid "longitude:" 
    840 msgstr "longitude :" 
    841  
    842 #: inc/lib.eventhandler.rs.extension.php:246 
    843 msgid "Read more" 
    844 msgstr "Lire la suite" 
    845  
    846 #: index.php:56 
    847 msgid "Configuration successfully saved" 
    848 msgstr "Configuration sauvegardée avec succès" 
    849  
    850 #: index.php:57 
    851 msgid "Records succesfully deleted" 
    852 msgstr "Enregistrements effacés avec succès" 
    853  
    854854msgid "%Y-%m-%d" 
    855855msgstr "%d/%m/%Y" 
  • plugins/eventHandler/release.txt

    r3059 r3141  
    55 * quick add on post entry (copy post content) 
    66 * manage sub categories 
     7 
     82013.07.07 
     9 * Added options to widgets (closes #693) 
     10 * Added dashboard icon 
     11 * Fixed admin pages titles and messages 
     12 * Fixed map on Ductile theme's widget 
     13 * Fixed typo 
    714 
    8151.0-RC4 20110102 
Note: See TracChangeset for help on using the changeset viewer.

Sites map