Changeset 3141
- Timestamp:
- 07/11/13 08:47:48 (10 years ago)
- Location:
- plugins/eventHandler
- Files:
-
- 1 added
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/eventHandler/_admin.php
r2648 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_CONTEXT_ADMIN')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 # set ns … … 27 29 $core->auth->check('usage,contentadmin',$core->blog->id) 28 30 ); 31 32 # Admin Dashboard 33 $core->addBehavior('adminDashboardIcons',array('adminEventHandler','adminDashboardIcons')); 34 $core->addBehavior('adminDashboardFavs',array('adminEventHandler','adminDashboardFavs')); 29 35 30 36 # Admin behaviors … … 44 50 class adminEventHandler 45 51 { 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 46 75 # post.php 47 76 # Headers, jQuery features to remove events from a post -
plugins/eventHandler/_define.php
r3059 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 17 19 /* Description*/ "Add period to your posts", 18 20 /* Author */ "JC Denis", 19 /* Version */ ' 1.0-RC4',21 /* Version */ '2013.07.10', 20 22 /* Permissions */ 'usage,contentadmin' 21 23 ); 22 /* date */ #2011010223 24 ?> -
plugins/eventHandler/_install.php
r3059 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 22 24 { 23 25 # 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','<')) 25 27 { 26 throw new Exception('eventHandler requires Dotclear 2. 2');28 throw new Exception('eventHandler requires Dotclear 2.5'); 27 29 } 28 30 -
plugins/eventHandler/_prepend.php
r2648 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_RC_PATH')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 global $__autoload, $core; -
plugins/eventHandler/_public.php
r3059 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_RC_PATH')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 # set ns -
plugins/eventHandler/_services.php
r2648 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_CONTEXT_ADMIN')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 class eventHandlerRestMethods -
plugins/eventHandler/_uninstall.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/eventHandler/_widgets.php
r2648 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_RC_PATH')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 $core->addBehavior('initWidgets',array('eventHandlerAdminWidgets','events')); … … 52 54 __('Ongoing') => 'ongoing', 53 55 __('Outgoing') => 'outgoing' 56 ); 57 $combo_homeonly = array( 58 __('All pages') => 0, 59 __('Home page only') => 1, 60 __('Except on home page') => 2 54 61 ); 55 62 … … 66 73 $w->ehEvents->setting('item_showcat',__('Show category'),1,'check'); 67 74 $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); 69 76 } 70 77 … … 137 144 public static function categories($w) 138 145 { 146 $combo_homeonly = array( 147 __('All pages') => 0, 148 __('Home page only') => 1, 149 __('Except on home page') => 2 150 ); 151 139 152 $w->create('ehCategories',__('Events categories'),array('eventHandlerPublicWidgets','categories')); 140 153 $w->ehCategories->setting('title',__('Title:'),__('Events by categories')); 141 154 $w->ehCategories->setting('postcount',__('With events counts'),0,'check'); 142 155 $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); 144 157 } 145 158 … … 155 168 __('hybrid') => 'HYBRID', 156 169 __('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 157 194 ); 158 195 … … 164 201 $w->ehMap->setting('map_height',__('Height of map: (with unit as % or px)'),'250px'); 165 202 $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); 166 206 $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); 168 208 } 169 209 170 210 public static function calendar($w) 171 211 { 172 global $core;173 174 212 $combo_weekstart = array( 175 213 __('Sunday') => '0', 176 214 __('Monday') => '1' 215 ); 216 $combo_homeonly = array( 217 __('All pages') => 0, 218 __('Home page only') => 1, 219 __('Except on home page') => 2 177 220 ); 178 221 … … 182 225 $w->ehCalendar->setting('startonly',__('Show only start date of events'),1,'check'); 183 226 $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); 185 228 } 186 229 } … … 196 239 if (!$core->blog->settings->eventHandler->active) return; 197 240 # 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 } 199 246 $params['sql'] = ''; 200 247 # Period … … 484 531 global $core, $_ctx; 485 532 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 } 487 538 488 539 $res = … … 553 604 554 605 # 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 } 558 612 559 613 $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'; 562 624 $params['limit'] = 10; 563 625 $params['no_content'] = true; … … 629 691 global $core, $_ctx; 630 692 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 } 632 698 633 699 $year = date('Y'); -
plugins/eventHandler/default-templates/default-eventhandler.css
r2617 r3141 71 71 width: 100%; 72 72 } 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 } 73 81 .calendar-array table { 74 82 text-align: center; -
plugins/eventHandler/inc/class.eventhandler.php
r3059 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/eventHandler/inc/index.event.php
r3059 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 531 533 532 534 if (!empty($_GET['upd'])) { 533 echo '<p class="message">'.__('Entry has been successfully updated.').'</p>';535 dcPage::message(__('Entry has been successfully updated.')); 534 536 } 535 537 elseif (!empty($_GET['crea'])) { 536 echo '<p class="message">'.__('Entry has been successfully created.').'</p>';538 dcPage::message(__('Entry has been successfully created.')); 537 539 } 538 540 elseif (!empty($_GET['attached'])) { 539 echo '<p class="message">'.__('File has been successfully attached.').'</p>';541 dcPage::message(__('File has been successfully attached.')); 540 542 } 541 543 elseif (!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 } 545 546 if (!empty($_GET['creaco'])) { 546 echo '<p class="message">'.__('Comment has been successfully created.').'</p>';547 547 dcPage::message(__('Comment has been successfully created.')); 548 } 548 549 549 550 # XHTML conversion … … 560 561 <h2>'.html::escapeHTML($core->blog->name). 561 562 ' › <a href="'.$p_url.'&part=events">'.__('Events').'</a>'. 562 ' › '.$page_title;563 ' › <span class="page-title">'.$page_title.'</span>'; 563 564 564 565 if ($post_id && $post->post_status == 1) -
plugins/eventHandler/inc/index.events.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 506 508 <body> 507 509 <h2>'.html::escapeHTML($core->blog->name). 508 ' › '.($from_id ? __('Bind an event') : __('Events')).510 ' › <span class="page-title">'.($from_id ? __('Bind an event') : __('Events')).'</span>'. 509 511 ' - <a class="button" href="'.$p_url.'&part=event">'.__('New event').'</a>'. 510 512 '</h2>'.$msg; … … 550 552 form::hidden(array('part'),'events'). 551 553 ($from_id ? form::hidden(array('from_id'),$from_id) : ''). 552 '<input type="submit" value="'.__(' filter').'" /></p>'.554 '<input type="submit" value="'.__('Apply filters').'" /></p>'. 553 555 '</div>'. 554 556 '</div>'. -
plugins/eventHandler/inc/index.settings.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 … … 101 103 <h2>'.html::escapeHTML($core->blog->name). 102 104 ' › <a href="'.$p_url.'&part=events">'.__('Events').'</a>'. 103 ' › '.__('Settings').105 ' › <span class="page-title">'.__('Settings').'</span>'. 104 106 ' - <a class="button" href="'.$p_url.'&part=event">'.__('New event').'</a>'. 105 107 '</h2>'.$msg.' -
plugins/eventHandler/inc/lib.eventhandler.calendar.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/eventHandler/inc/lib.eventhandler.pubrest.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/eventHandler/inc/lib.eventhandler.rs.extension.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/eventHandler/inc/patch.eventdata.php
r2617 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 -
plugins/eventHandler/index.php
r2648 r3141 1 1 <?php 2 2 # -- BEGIN LICENSE BLOCK ---------------------------------- 3 # 3 4 # This file is part of eventHandler, a plugin for Dotclear 2. 4 5 # 5 # Copyright (c) 2009-201 0 JCDenis and contributors6 # jcdenis@gdwd.com6 # Copyright (c) 2009-2013 Jean-Christian Denis and contributors 7 # contact@jcdenis.fr http://jcd.lv 7 8 # 8 9 # Licensed under the GPL version 2.0 license. 9 10 # A copy of this license is available in LICENSE file or at 10 11 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 12 # 11 13 # -- END LICENSE BLOCK ------------------------------------ 12 14 13 15 if (!defined('DC_CONTEXT_ADMIN')){return;} 14 if (version_compare(str_replace("-r","-p",DC_VERSION),'2. 2-alpha','<')){return;}16 if (version_compare(str_replace("-r","-p",DC_VERSION),'2.5-alpha','<')){return;} 15 17 16 18 dcPage::check('usage,contentadmin'); … … 67 69 if (isset($succes[$msg])) 68 70 { 69 $msg = sprintf('<p class="message">%s</p>',$succes[$msg]);71 $msg = dcPage::message($succes[$msg]); 70 72 } 71 73 -
plugins/eventHandler/js/event-admin-map.js
r2617 r3141 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of eventHandler, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 0 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/eventHandler/js/event-public-cal.js
r2617 r3141 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of eventHandler, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 0 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 12 13 13 14 ;if(window.jQuery) (function($) { -
plugins/eventHandler/js/event-public-map.js
r2617 r3141 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of eventHandler, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 0 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/eventHandler/js/event.js
r2617 r3141 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of eventHandler, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 0 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/eventHandler/js/post.js
r2617 r3141 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of eventHandler, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 0 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/eventHandler/js/settings.js
r2617 r3141 1 1 /* -- BEGIN LICENSE BLOCK ---------------------------------- 2 * 2 3 * This file is part of eventHandler, a plugin for Dotclear 2. 3 4 * 4 * Copyright (c) 2009-201 0 JCDenis and contributors5 * jcdenis@gdwd.com5 * Copyright (c) 2009-2013 Jean-Christian Denis and contributors 6 * contact@jcdenis.fr http://jcd.lv 6 7 * 7 8 * Licensed under the GPL version 2.0 license. 8 9 * A copy of this license is available in LICENSE file or at 9 10 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 11 * 10 12 * -- END LICENSE BLOCK ------------------------------------*/ 11 13 -
plugins/eventHandler/locales/fr/main.lang.php
r2648 r3141 1 1 <?php 2 2 // 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 13 14 $GLOBALS['__l10n']['Event handler'] = 'Gestionnaire d\'événements'; 14 15 15 #_admin.php: 5716 #_admin.php: 5817 #_public.php: 1918 #_public.php:2 119 #_public.php: 2420 #_widgets.php: 5616 #_admin.php:89 17 #_admin.php:90 18 #_public.php:25 19 #_public.php:27 20 #_public.php:30 21 #_widgets.php:63 21 22 #default-templates/eventhandler-list.html:9 22 23 #default-templates/eventhandler-list.html:16 … … 27 28 #exemple-templates/noviny-basic/tpl/eventhandler-list.html:9 28 29 #exemple-templates/noviny-basic/tpl/eventhandler-list.html:16 29 #inc/index.event.php:1 230 #inc/index.events.php:1 231 #inc/index.events.php:1 232 #inc/index.events.php:1 233 #inc/index.events.php:1 234 #inc/index.settings.php:1 235 #inc/index.settings.php:1 236 #inc/index.settings.php:1 230 #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 37 38 $GLOBALS['__l10n']['Events'] = 'Événements'; 38 39 39 #_admin.php: 5740 #_admin.php:2 2740 #_admin.php:89 41 #_admin.php:259 41 42 $GLOBALS['__l10n']['Bind events'] = 'Attacher des événements'; 42 43 43 #_admin.php: 5844 #_admin.php:90 44 45 $GLOBALS['__l10n']['Unbind events'] = 'Détacher les événements'; 45 46 46 #_admin.php: 8847 #_admin.php:120 47 48 $GLOBALS['__l10n']['No such event'] = 'Pas d\'événement'; 48 49 49 #_admin.php:1 3850 #_admin.php:170 50 51 $GLOBALS['__l10n']['Select events to link to entries'] = 'Sélectionner les événements à lier aux billets'; 51 52 52 #_admin.php:2 0453 #_admin.php:236 53 54 $GLOBALS['__l10n']['Events:'] = 'Événements :'; 54 55 55 #_admin.php:2 1656 #_admin.php:248 56 57 $GLOBALS['__l10n']['Check to unbind'] = 'Cocher pour détacher'; 57 58 58 #_admin.php:2 3559 #_admin.php:267 59 60 $GLOBALS['__l10n']['Change this entry into an event'] = 'Changer ce billet en événement'; 60 61 61 #_admin.php:2 3662 #_admin.php:268 62 63 $GLOBALS['__l10n']['Change into event'] = 'Changer en événement'; 63 64 64 #_admin.php: 29765 #inc/index.events.php:1 265 #_admin.php:329 66 #inc/index.events.php:15 66 67 $GLOBALS['__l10n']['No event'] = 'Pas d\'événement'; 67 68 68 #_admin.php:3 0969 #_admin.php:341 69 70 $GLOBALS['__l10n']['Period'] = 'Période'; 70 71 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 77 79 $GLOBALS['__l10n']['Start date'] = 'Date de début'; 78 80 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 85 88 $GLOBALS['__l10n']['End date'] = 'Date de fin'; 86 89 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 94 91 $GLOBALS['__l10n']['ongoing'] = 'en cours'; 95 92 96 #_public.php:1 393 #_public.php:19 97 94 $GLOBALS['__l10n']['finished'] = 'terminé'; 98 95 99 #_public.php: 17100 #index.php: 3896 #_public.php:23 97 #index.php:40 101 98 $GLOBALS['__l10n']['Please wait'] = 'Veuillez patienter'; 102 99 103 #_public.php:2 1100 #_public.php:27 104 101 $GLOBALS['__l10n']['Directory:'] = 'Repertoire :'; 105 102 106 #_public.php:2 3103 #_public.php:29 107 104 $GLOBALS['__l10n']['This page is powered by Dotclear and eventHandler'] = 'Cette page est propulsée par Dotclear et eventHandler'; 108 105 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 111 111 $GLOBALS['__l10n']['All'] = 'Tous'; 112 112 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 115 151 #_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 150 155 $GLOBALS['__l10n']['Finished'] = 'Fini'; 151 156 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 163 158 $GLOBALS['__l10n']['Published date'] = 'Date de publication'; 164 159 165 #_public.php: 54166 #_widgets.php: 299167 #_widgets.php:4 13168 #_widgets.php:5 42169 #_widgets.php:6 19170 #_widgets.php: 658160 #_public.php:60 161 #_widgets.php:346 162 #_widgets.php:460 163 #_widgets.php:593 164 #_widgets.php:681 165 #_widgets.php:724 171 166 #default-templates/eventhandler-single.html:64 172 167 #exemple-templates/default-basic/tpl/eventhandler-single.html:64 … … 174 169 $GLOBALS['__l10n']['All events'] = 'Tous les événements'; 175 170 176 #_public.php: 54171 #_public.php:60 177 172 $GLOBALS['__l10n']['Current events'] = 'Événements en cours'; 178 173 179 #_public.php: 54174 #_public.php:60 180 175 $GLOBALS['__l10n']['Event not being'] = 'Événements pas en cours'; 181 176 182 #_public.php: 54177 #_public.php:60 183 178 $GLOBALS['__l10n']['Scheduled events'] = 'Événements programmés'; 184 179 185 #_public.php: 54180 #_public.php:60 186 181 $GLOBALS['__l10n']['Started events'] = 'Événements débutés'; 187 182 188 #_public.php: 54183 #_public.php:60 189 184 $GLOBALS['__l10n']['Unfinished events'] = 'Événements non finis'; 190 185 191 #_public.php: 54186 #_public.php:60 192 187 $GLOBALS['__l10n']['Completed events'] = 'Événements terminés'; 193 188 194 #_public.php: 54189 #_public.php:60 195 190 $GLOBALS['__l10n']['%m %d %Y'] = '%d %m %Y'; 196 191 197 #_public.php: 54192 #_public.php:60 198 193 $GLOBALS['__l10n']['For the day of %s'] = 'Pour la journée du %s'; 199 194 200 #_public.php: 54195 #_public.php:60 201 196 $GLOBALS['__l10n']['%m %Y'] = '%m %Y'; 202 197 203 #_public.php: 54198 #_public.php:60 204 199 $GLOBALS['__l10n']['For the month of %s'] = 'Pour le mois de %s'; 205 200 206 #_public.php: 54201 #_public.php:60 207 202 $GLOBALS['__l10n']['For the year of %s'] = 'Pour l\'année %s'; 208 203 209 #_public.php: 54204 #_public.php:60 210 205 $GLOBALS['__l10n']['For the period between %s and %s'] = 'Pour la période entre %s et %s'; 211 206 212 #_public.php: 54207 #_public.php:60 213 208 $GLOBALS['__l10n']['For the period through %s and %s'] = 'Pour la période passant entre %s et %s'; 214 209 215 #_services.php:2 5216 #inc/index.events.php:1 2210 #_services.php:29 211 #inc/index.events.php:15 217 212 $GLOBALS['__l10n']['No such post ID'] = 'Pas de tel billet'; 218 213 219 #_services.php: 29220 #inc/class.eventhandler.php:30 1221 #inc/class.eventhandler.php:3 45214 #_services.php:33 215 #inc/class.eventhandler.php:309 216 #inc/class.eventhandler.php:353 222 217 $GLOBALS['__l10n']['No such event ID'] = 'Pas de tel événement'; 223 218 224 #_services.php:4 2219 #_services.php:46 225 220 $GLOBALS['__l10n']['Event successfully removed from post'] = 'Événements retirés avec succès'; 226 221 227 #_widgets.php:47 228 #_widgets.php:92 222 #_widgets.php:49 223 #_widgets.php:99 224 #_widgets.php:182 229 225 $GLOBALS['__l10n']['All periods'] = 'Toutes les périodes'; 230 226 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 234 231 $GLOBALS['__l10n']['Not started'] = 'Non débuté'; 235 232 236 #_widgets.php: 57233 #_widgets.php:64 237 234 $GLOBALS['__l10n']['Next events'] = 'Événements à venir'; 238 235 239 #_widgets.php:6 2236 #_widgets.php:69 240 237 $GLOBALS['__l10n']['Selected entries only'] = 'Billets séléctionnés seulement'; 241 238 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 245 243 $GLOBALS['__l10n']['Period:'] = 'Période :'; 246 244 247 #_widgets.php: 64245 #_widgets.php:71 248 246 $GLOBALS['__l10n']['Date format of events:'] = 'Format de date des événements :'; 249 247 250 #_widgets.php: 65248 #_widgets.php:72 251 249 $GLOBALS['__l10n']['Time format of events:'] = 'Format d\'heure des événements :'; 252 250 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 255 282 #_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 283 284 $GLOBALS['__l10n']['road map'] = 'route'; 284 285 285 #_widgets.php:1 54286 #inc/index.settings.php:1 2286 #_widgets.php:167 287 #inc/index.settings.php:15 287 288 $GLOBALS['__l10n']['satellite'] = 'satellite'; 288 289 289 #_widgets.php:1 55290 #inc/index.settings.php:1 2290 #_widgets.php:168 291 #inc/index.settings.php:15 291 292 $GLOBALS['__l10n']['hybrid'] = 'hybride'; 292 293 293 #_widgets.php:1 56294 #inc/index.settings.php:1 2294 #_widgets.php:169 295 #inc/index.settings.php:15 295 296 $GLOBALS['__l10n']['terrain'] = 'terrain'; 296 297 297 #_widgets.php:1 59298 #_widgets.php:196 298 299 $GLOBALS['__l10n']['Events map'] = 'Carte des événements'; 299 300 300 #_widgets.php:1 60301 #_widgets.php:197 301 302 $GLOBALS['__l10n']['Events on map'] = 'Événements sur une carte'; 302 303 303 #_widgets.php:1 61304 #inc/index.settings.php:1 2304 #_widgets.php:198 305 #inc/index.settings.php:15 305 306 $GLOBALS['__l10n']['Default zoom on map:'] = 'Zoom par défaut de la carte :'; 306 307 307 #_widgets.php:1 62308 #inc/index.settings.php:1 2308 #_widgets.php:199 309 #inc/index.settings.php:15 309 310 $GLOBALS['__l10n']['Default type of map:'] = 'Type par défaut de la carte :'; 310 311 311 #_widgets.php: 163312 #_widgets.php:200 312 313 $GLOBALS['__l10n']['Width of map: (with unit as % or px)'] = 'Largeur de la carte : (avec les unités telles que % ou px)'; 313 314 314 #_widgets.php: 164315 #_widgets.php:201 315 316 $GLOBALS['__l10n']['Height of map: (with unit as % or px)'] = 'Hauteur de la carte : (avec les unités telles que % ou px)'; 316 317 317 #_widgets.php: 165318 #_widgets.php:202 318 319 $GLOBALS['__l10n']['Add tooltips'] = 'Ajouter les info-bulles'; 319 320 320 #_widgets.php: 179321 #_widgets.php: 180321 #_widgets.php:222 322 #_widgets.php:223 322 323 $GLOBALS['__l10n']['Events calendar'] = 'Calendrier des événements'; 323 324 324 #_widgets.php: 181325 #_widgets.php:224 325 326 $GLOBALS['__l10n']['First day of week:'] = 'Premier jour de la semaine :'; 326 327 327 #_widgets.php: 182328 #_widgets.php:225 328 329 $GLOBALS['__l10n']['Show only start date of events'] = 'Afficher seulement la date de début des événements'; 329 330 330 #_widgets.php: 266331 #_widgets.php: 383331 #_widgets.php:313 332 #_widgets.php:430 332 333 $GLOBALS['__l10n']['On %sd from %st to %et'] = 'Le %sd de %st à %et'; 333 334 334 #_widgets.php: 269335 #_widgets.php: 387335 #_widgets.php:316 336 #_widgets.php:434 336 337 $GLOBALS['__l10n']['From %sd, %st to %ed, %et'] = 'Du %sd, %st au %ed, %et'; 337 338 338 #_widgets.php: 287339 #_widgets.php:334 339 340 $GLOBALS['__l10n']['go to this category'] = 'aller à cette catégorie'; 340 341 … … 458 459 #exemple-templates/default-basic/tpl/eventhandler-single.html:108 459 460 #exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 460 #inc/index.event.php:1 2461 #inc/index.event.php:15 461 462 $GLOBALS['__l10n']['Latitude:'] = 'Latitude :'; 462 463 … … 464 465 #exemple-templates/default-basic/tpl/eventhandler-single.html:108 465 466 #exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 466 #inc/index.event.php:1 2467 #inc/index.event.php:15 467 468 $GLOBALS['__l10n']['Longitude:'] = 'Longitude :'; 468 469 … … 477 478 $GLOBALS['__l10n']['Display this event on hCalendar format'] = 'Afficher cet événement au format hCalendar'; 478 479 479 #inc/class.eventhandler.php:26 0480 #inc/class.eventhandler.php:268 480 481 $GLOBALS['__l10n']['You are not allowed to create an event'] = 'Vous n\'êtes pas autorisé à créer un événement'; 481 482 482 #inc/class.eventhandler.php: 294483 #inc/class.eventhandler.php:302 483 484 $GLOBALS['__l10n']['You are not allowed to update events'] = 'Vous n\'êtes pas autorisé à mettre à jour les événements'; 484 485 485 #inc/class.eventhandler.php:3 38486 #inc/class.eventhandler.php:346 486 487 $GLOBALS['__l10n']['You are not allowed to delete events'] = 'Vous n\'êtes pas autorisé à supprimer des événements'; 487 488 488 #inc/class.eventhandler.php:3 65489 #inc/class.eventhandler.php:373 489 490 $GLOBALS['__l10n']['No event start date'] = 'pas de date de début'; 490 491 491 #inc/class.eventhandler.php:37 0492 #inc/class.eventhandler.php:378 492 493 $GLOBALS['__l10n']['No event end date'] = 'pas de date de fin'; 493 494 494 #inc/class.eventhandler.php:3 75495 #inc/class.eventhandler.php:383 495 496 $GLOBALS['__l10n']['Start date greater than end date'] = 'date de début plus récente qu la date de fin'; 496 497 497 #inc/class.eventhandler.php:38 1498 #inc/class.eventhandler.php:389 498 499 $GLOBALS['__l10n']['Not full coordinate'] = 'coordonnées incomplètes'; 499 500 500 #inc/class.eventhandler.php:388501 501 #inc/class.eventhandler.php:396 502 #inc/class.eventhandler.php:404 502 503 $GLOBALS['__l10n']['Wrong format of coordinate'] = 'mauvais format de coordonnée'; 503 504 504 #inc/class.eventhandler.php:43 1505 #inc/class.eventhandler.php:439 505 506 $GLOBALS['__l10n']['%s days'] = '%s jours'; 506 507 507 #inc/class.eventhandler.php:4 32508 #inc/class.eventhandler.php:440 508 509 $GLOBALS['__l10n']['one day'] = 'un jour'; 509 510 510 #inc/class.eventhandler.php:4 33511 #inc/class.eventhandler.php:441 511 512 $GLOBALS['__l10n']['%s hours'] = '%s heures'; 512 513 513 #inc/class.eventhandler.php:4 34514 #inc/class.eventhandler.php:442 514 515 $GLOBALS['__l10n']['one hour'] = 'une heure'; 515 516 516 #inc/class.eventhandler.php:4 35517 #inc/class.eventhandler.php:443 517 518 $GLOBALS['__l10n']['%s minutes'] = '%s minutes'; 518 519 519 #inc/class.eventhandler.php:4 36520 #inc/class.eventhandler.php:444 520 521 $GLOBALS['__l10n']['one minute'] = 'une minute'; 521 522 522 #inc/class.eventhandler.php:460 523 #inc/class.eventhandler.php:445 524 $GLOBALS['__l10n']['instantaneous'] = 'instantané'; 525 526 #inc/class.eventhandler.php:468 523 527 $GLOBALS['__l10n']['Please wait, try to create map...'] = 'Veulliez patienter, construction de la carte...'; 524 528 525 #inc/index.event.php:1 2526 #inc/index.event.php:1 2527 #inc/index.events.php:1 2528 #inc/index.events.php:1 2529 #inc/index.settings.php:1 2529 #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 530 534 $GLOBALS['__l10n']['New event'] = 'Nouvel événement'; 531 535 532 #inc/index.event.php:1 2536 #inc/index.event.php:15 533 537 $GLOBALS['__l10n']['This event does not exist.'] = 'Cette événement n\'existe pas'; 534 538 535 #inc/index.event.php:1 2539 #inc/index.event.php:15 536 540 $GLOBALS['__l10n']['Change entry into event'] = 'Changer un billet en événement'; 537 541 538 #inc/index.event.php:1 2539 #inc/index.event.php:1 2542 #inc/index.event.php:15 543 #inc/index.event.php:15 540 544 $GLOBALS['__l10n']['Edit event'] = 'Modifier un événement'; 541 545 542 #inc/index.event.php:1 2546 #inc/index.event.php:15 543 547 $GLOBALS['__l10n']['next event'] = 'Événements suivant'; 544 548 545 #inc/index.event.php:1 2549 #inc/index.event.php:15 546 550 $GLOBALS['__l10n']['previous event'] = 'Événements précédent'; 547 551 548 #inc/index.event.php:1 2552 #inc/index.event.php:15 549 553 $GLOBALS['__l10n']['View event'] = 'Voir l\'événement'; 550 554 551 #inc/index.event.php:1 2555 #inc/index.event.php:15 552 556 $GLOBALS['__l10n']['Preview event'] = 'Prévisualier l\'événement'; 553 557 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 555 675 $GLOBALS['__l10n']['Start date of the event :'] = 'Date de début de l\'événement :'; 556 676 557 #inc/index.event.php:12558 677 $GLOBALS['__l10n']['End date of the event:'] = 'Date de fin de l\'événement :'; 559 678 560 #inc/index.event.php:12561 $GLOBALS['__l10n']['Localization:'] = 'Localisation :';562 563 #inc/index.event.php:12564 #inc/lib.eventhandler.rs.extension.php:233565 $GLOBALS['__l10n']['Address:'] = 'Adresse :';566 567 #inc/index.event.php:12568 #inc/index.settings.php:12569 $GLOBALS['__l10n']['Maps'] = 'Cartes';570 571 #inc/index.event.php:12572 $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:12575 $GLOBALS['__l10n']['Find coordinates on googleMap'] = 'Trouver les coordonnées sur GoogleMaps';576 577 #inc/index.event.php:12578 $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:12581 $GLOBALS['__l10n']['Localization'] = 'Localisation';582 583 #inc/index.events.php:12584 $GLOBALS['__l10n']['Unbind related entries'] = 'Séparer les entrées liées';585 586 #inc/index.events.php:12587 $GLOBALS['__l10n']['Bind an event'] = 'Lier un événement';588 589 #inc/index.events.php:12590 $GLOBALS['__l10n']['Attach selected events'] = 'Lier les événements selectionnés';591 592 #inc/index.settings.php:12593 $GLOBALS['__l10n']['before content'] = 'avant le contenu';594 595 #inc/index.settings.php:12596 $GLOBALS['__l10n']['after content'] = 'après le contenu';597 598 #inc/index.settings.php:12599 #inc/index.settings.php:12600 #index.php:47601 $GLOBALS['__l10n']['Settings'] = 'Paramètres';602 603 #inc/index.settings.php:12604 $GLOBALS['__l10n']['Activation'] = 'Activation';605 606 #inc/index.settings.php:12607 $GLOBALS['__l10n']['Enable extension'] = 'Activer l\'extension';608 609 #inc/index.settings.php:12610 $GLOBALS['__l10n']['Additionnal style sheet:'] = 'Feuille de style additionnelle';611 612 #inc/index.settings.php:12613 $GLOBALS['__l10n']['Show related entries on event:'] = 'Afficher les billets liés sur un événement :';614 615 #inc/index.settings.php:12616 $GLOBALS['__l10n']['Show related events on entry:'] = 'Afficher les événement liés sur un billet :';617 618 #inc/index.settings.php:12619 $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:12622 $GLOBALS['__l10n']['Hide'] = 'Cacher';623 624 #inc/index.settings.php:12625 $GLOBALS['__l10n']['Level'] = 'Niveau';626 627 #inc/index.settings.php:12628 $GLOBALS['__l10n']['List of events related to this category'] = 'Liste des événements liés à cette catégorie';629 630 #inc/index.settings.php:12631 $GLOBALS['__l10n']['List of entries related to this category'] = 'Liste des billets liés à cette catégorie';632 633 #inc/index.settings.php:12634 $GLOBALS['__l10n']['Edit this category'] = 'Modifier cette catégorie';635 636 #inc/index.settings.php:12637 $GLOBALS['__l10n']['Events from eventdata successfully imported'] = 'Événements importés avec succès depuis eventdata';638 639 #inc/index.settings.php:12640 $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:12643 $GLOBALS['__l10n']['Import eventdata records'] = 'Importer les enregistrements de eventdata';644 645 #inc/lib.eventhandler.calendar.php:119646 $GLOBALS['__l10n']['Calendar'] = 'Calendrier';647 648 #inc/lib.eventhandler.calendar.php:193649 $GLOBALS['__l10n']['one event'] = 'un événement';650 651 #inc/lib.eventhandler.calendar.php:193652 $GLOBALS['__l10n']['%s events'] = '%s événements';653 654 #inc/lib.eventhandler.rs.extension.php:229655 $GLOBALS['__l10n']['Start date:'] = 'Date de début :';656 657 #inc/lib.eventhandler.rs.extension.php:230658 $GLOBALS['__l10n']['End date:'] = 'Date de fin :';659 660 #inc/lib.eventhandler.rs.extension.php:237661 $GLOBALS['__l10n']['Location:'] = 'Lieu :';662 663 #inc/lib.eventhandler.rs.extension.php:237664 $GLOBALS['__l10n']['latitude:'] = 'latitude :';665 666 #inc/lib.eventhandler.rs.extension.php:237667 $GLOBALS['__l10n']['longitude:'] = 'longitude :';668 669 #inc/lib.eventhandler.rs.extension.php:246670 $GLOBALS['__l10n']['Read more'] = 'Lire la suite';671 672 #index.php:56673 $GLOBALS['__l10n']['Configuration successfully saved'] = 'Configuration sauvegardée avec succès';674 675 #index.php:57676 $GLOBALS['__l10n']['Records succesfully deleted'] = 'Enregistrements effacés avec succès';677 678 679 $GLOBALS['__l10n']['%Y-%m-%d'] = '%d/%m/%Y'; 679 680 -
plugins/eventHandler/locales/fr/main.po
r2648 r3141 1 1 # Language: Français 2 # Module: eventHandler - 1.0-RC13 # Date: 201 0-09-03 01:55:084 # Translated with translater 1.52 # Module: eventHandler - 2013.07.10 3 # Date: 2013-07-11 06:44:44 4 # Translated with translater 2013.05.11 5 5 6 6 msgid "" 7 7 msgstr "" 8 8 "Content-Type: text/plain; charset=UTF-8\n" 9 "Project-Id-Version: eventHandler 1.0-RC1\n"9 "Project-Id-Version: eventHandler 2013.07.10\n" 10 10 "POT-Creation-Date: \n" 11 "PO-Revision-Date: 201 0-09-03T01:55:08+00:00\n"12 "Last-Translator: J CDenis\n"11 "PO-Revision-Date: 2013-07-11T06:44:44+00:00\n" 12 "Last-Translator: Jean-Christian Denis\n" 13 13 "Language-Team: \n" 14 14 "MIME-Version: 1.0\n" 15 15 "Content-Transfer-Encoding: 8bit\n" 16 16 17 #: _admin.php: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 23 24 msgid "Event handler" 24 25 msgstr "Gestionnaire d'événements" 25 26 26 #: _admin.php: 5727 #: _admin.php: 5828 #: _public.php: 1929 #: _public.php:2 130 #: _public.php: 2431 #: _widgets.php: 5627 #: _admin.php:89 28 #: _admin.php:90 29 #: _public.php:25 30 #: _public.php:27 31 #: _public.php:30 32 #: _widgets.php:63 32 33 #: default-templates/eventhandler-list.html:9 33 34 #: default-templates/eventhandler-list.html:16 … … 38 39 #: exemple-templates/noviny-basic/tpl/eventhandler-list.html:9 39 40 #: exemple-templates/noviny-basic/tpl/eventhandler-list.html:16 40 #: inc/index.event.php:1 241 #: inc/index.events.php:1 242 #: inc/index.events.php:1 243 #: inc/index.events.php:1 244 #: inc/index.events.php:1 245 #: inc/index.settings.php:1 246 #: inc/index.settings.php:1 247 #: inc/index.settings.php:1 241 #: 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 48 49 msgid "Events" 49 50 msgstr "Événements" 50 51 51 #: _admin.php: 5752 #: _admin.php:2 2752 #: _admin.php:89 53 #: _admin.php:259 53 54 msgid "Bind events" 54 55 msgstr "Attacher des événements" 55 56 56 #: _admin.php: 5857 #: _admin.php:90 57 58 msgid "Unbind events" 58 59 msgstr "Détacher les événements" 59 60 60 #: _admin.php: 8861 #: _admin.php:120 61 62 msgid "No such event" 62 63 msgstr "Pas d'événement" 63 64 64 #: _admin.php:1 3865 #: _admin.php:170 65 66 msgid "Select events to link to entries" 66 67 msgstr "Sélectionner les événements à lier aux billets" 67 68 68 #: _admin.php:2 0469 #: _admin.php:236 69 70 msgid "Events:" 70 71 msgstr "Événements :" 71 72 72 #: _admin.php:2 1673 #: _admin.php:248 73 74 msgid "Check to unbind" 74 75 msgstr "Cocher pour détacher" 75 76 76 #: _admin.php:2 3577 #: _admin.php:267 77 78 msgid "Change this entry into an event" 78 79 msgstr "Changer ce billet en événement" 79 80 80 #: _admin.php:2 3681 #: _admin.php:268 81 82 msgid "Change into event" 82 83 msgstr "Changer en événement" 83 84 84 #: _admin.php: 29785 #: inc/index.events.php:1 285 #: _admin.php:329 86 #: inc/index.events.php:15 86 87 msgid "No event" 87 88 msgstr "Pas d'événement" 88 89 89 #: _admin.php:3 0990 #: _admin.php:341 90 91 msgid "Period" 91 92 msgstr "Période" 92 93 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 99 101 msgid "Start date" 100 102 msgstr "Date de début" 101 103 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 108 111 msgid "End date" 109 112 msgstr "Date de fin" 110 113 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 119 115 msgid "ongoing" 120 116 msgstr "en cours" 121 117 122 #: _public.php:1 3118 #: _public.php:19 123 119 msgid "finished" 124 120 msgstr "terminé" 125 121 126 #: _public.php: 17127 #: index.php: 38122 #: _public.php:23 123 #: index.php:40 128 124 msgid "Please wait" 129 125 msgstr "Veuillez patienter" 130 126 131 #: _public.php:2 1127 #: _public.php:27 132 128 msgid "Directory:" 133 129 msgstr "Repertoire :" 134 130 135 #: _public.php:2 3131 #: _public.php:29 136 132 msgid "This page is powered by Dotclear and eventHandler" 137 133 msgstr "Cette page est propulsée par Dotclear et eventHandler" 138 134 139 #: _public.php:46 140 #: _public.php:54 135 #: _public.php:50 136 msgid "There's no event at this time." 137 msgstr "Il n'y a pas d'événement pour l'instant." 138 139 #: _public.php:52 140 #: _public.php:60 141 141 msgid "All" 142 142 msgstr "Tous" 143 143 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 149 150 msgid "Ongoing" 150 151 msgstr "En cours" 151 152 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 157 159 msgid "Outgoing" 158 160 msgstr "Pas en cours" 159 161 160 #: _public.php: 46161 #: _public.php: 54162 #: _public.php:52 163 #: _public.php:60 162 164 msgid "Scheduled" 163 165 msgstr "Programmé" 164 166 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 170 173 msgid "Started" 171 174 msgstr "Débuté" 172 175 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 178 182 msgid "Not finished" 179 183 msgstr "Non fini" 180 184 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 186 191 msgid "Finished" 187 192 msgstr "Fini" 188 193 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 202 195 msgid "Published date" 203 196 msgstr "Date de publication" 204 197 205 #: _public.php: 54206 #: _widgets.php: 299207 #: _widgets.php:4 13208 #: _widgets.php:5 42209 #: _widgets.php:6 19210 #: _widgets.php: 658198 #: _public.php:60 199 #: _widgets.php:346 200 #: _widgets.php:460 201 #: _widgets.php:593 202 #: _widgets.php:681 203 #: _widgets.php:724 211 204 #: default-templates/eventhandler-single.html:64 212 205 #: exemple-templates/default-basic/tpl/eventhandler-single.html:64 … … 215 208 msgstr "Tous les événements" 216 209 217 #: _public.php: 54210 #: _public.php:60 218 211 msgid "Current events" 219 212 msgstr "Événements en cours" 220 213 221 #: _public.php: 54214 #: _public.php:60 222 215 msgid "Event not being" 223 216 msgstr "Événements pas en cours" 224 217 225 #: _public.php: 54218 #: _public.php:60 226 219 msgid "Scheduled events" 227 220 msgstr "Événements programmés" 228 221 229 #: _public.php: 54222 #: _public.php:60 230 223 msgid "Started events" 231 224 msgstr "Événements débutés" 232 225 233 #: _public.php: 54226 #: _public.php:60 234 227 msgid "Unfinished events" 235 228 msgstr "Événements non finis" 236 229 237 #: _public.php: 54230 #: _public.php:60 238 231 msgid "Completed events" 239 232 msgstr "Événements terminés" 240 233 241 #: _public.php: 54234 #: _public.php:60 242 235 msgid "%m %d %Y" 243 236 msgstr "%d %m %Y" 244 237 245 #: _public.php: 54238 #: _public.php:60 246 239 msgid "For the day of %s" 247 240 msgstr "Pour la journée du %s" 248 241 249 #: _public.php: 54242 #: _public.php:60 250 243 msgid "%m %Y" 251 244 msgstr "%m %Y" 252 245 253 #: _public.php: 54246 #: _public.php:60 254 247 msgid "For the month of %s" 255 248 msgstr "Pour le mois de %s" 256 249 257 #: _public.php: 54250 #: _public.php:60 258 251 msgid "For the year of %s" 259 252 msgstr "Pour l'année %s" 260 253 261 #: _public.php: 54254 #: _public.php:60 262 255 msgid "For the period between %s and %s" 263 256 msgstr "Pour la période entre %s et %s" 264 257 265 #: _public.php: 54258 #: _public.php:60 266 259 msgid "For the period through %s and %s" 267 260 msgstr "Pour la période passant entre %s et %s" 268 261 269 #: _services.php:2 5270 #: inc/index.events.php:1 2262 #: _services.php:29 263 #: inc/index.events.php:15 271 264 msgid "No such post ID" 272 265 msgstr "Pas de tel billet" 273 266 274 #: _services.php: 29275 #: inc/class.eventhandler.php:30 1276 #: inc/class.eventhandler.php:3 45267 #: _services.php:33 268 #: inc/class.eventhandler.php:309 269 #: inc/class.eventhandler.php:353 277 270 msgid "No such event ID" 278 271 msgstr "Pas de tel événement" 279 272 280 #: _services.php:4 2273 #: _services.php:46 281 274 msgid "Event successfully removed from post" 282 275 msgstr "Événements retirés avec succès" 283 276 284 #: _widgets.php:47 285 #: _widgets.php:92 277 #: _widgets.php:49 278 #: _widgets.php:99 279 #: _widgets.php:182 286 280 msgid "All periods" 287 281 msgstr "Toutes les périodes" 288 282 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 292 287 msgid "Not started" 293 288 msgstr "Non débuté" 294 289 295 #: _widgets.php: 57290 #: _widgets.php:64 296 291 msgid "Next events" 297 292 msgstr "Événements à venir" 298 293 299 #: _widgets.php:6 2294 #: _widgets.php:69 300 295 msgid "Selected entries only" 301 296 msgstr "Billets séléctionnés seulement" 302 297 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 306 302 msgid "Period:" 307 303 msgstr "Période :" 308 304 309 #: _widgets.php: 64305 #: _widgets.php:71 310 306 msgid "Date format of events:" 311 307 msgstr "Format de date des événements :" 312 308 313 #: _widgets.php: 65309 #: _widgets.php:72 314 310 msgid "Time format of events:" 315 311 msgstr "Format d'heure des événements :" 316 312 317 #: _widgets.php:67 318 #: _widgets.php:142 319 #: _widgets.php:166 320 #: _widgets.php:183 313 #: _widgets.php:73 314 msgid "Show category" 315 msgstr "Afficher la catégorie" 316 317 #: _widgets.php:74 318 #: _widgets.php:155 319 #: _widgets.php:206 320 #: _widgets.php:226 321 321 msgid "Add link to events page" 322 322 msgstr "Ajouter le lien vers la page des événements" 323 323 324 #: _widgets.php:10 1324 #: _widgets.php:108 325 325 msgid "Events of an entry" 326 326 msgstr "Événements d'un billet" 327 327 328 #: _widgets.php:10 2328 #: _widgets.php:109 329 329 msgid "Related events" 330 330 msgstr "Événements liés" 331 331 332 #: _widgets.php:1 29332 #: _widgets.php:136 333 333 msgid "Entries of an event" 334 334 msgstr "Billets d'un événement" 335 335 336 #: _widgets.php:13 0337 #: inc/index.event.php:1 2336 #: _widgets.php:137 337 #: inc/index.event.php:15 338 338 msgid "Related entries" 339 339 msgstr "Billets liés" 340 340 341 #: _widgets.php:1 39341 #: _widgets.php:152 342 342 msgid "Events categories" 343 343 msgstr "Catégories d'événements" 344 344 345 #: _widgets.php:1 40345 #: _widgets.php:153 346 346 msgid "Events by categories" 347 347 msgstr "Événements par catégorie" 348 348 349 #: _widgets.php:1 41349 #: _widgets.php:154 350 350 msgid "With events counts" 351 351 msgstr "Avec le nombre d'événements" 352 352 353 #: _widgets.php:1 53354 #: inc/index.settings.php:1 2353 #: _widgets.php:166 354 #: inc/index.settings.php:15 355 355 msgid "road map" 356 356 msgstr "route" 357 357 358 #: _widgets.php:1 54359 #: inc/index.settings.php:1 2358 #: _widgets.php:167 359 #: inc/index.settings.php:15 360 360 msgid "satellite" 361 361 msgstr "satellite" 362 362 363 #: _widgets.php:1 55364 #: inc/index.settings.php:1 2363 #: _widgets.php:168 364 #: inc/index.settings.php:15 365 365 msgid "hybrid" 366 366 msgstr "hybride" 367 367 368 #: _widgets.php:1 56369 #: inc/index.settings.php:1 2368 #: _widgets.php:169 369 #: inc/index.settings.php:15 370 370 msgid "terrain" 371 371 msgstr "terrain" 372 372 373 #: _widgets.php:1 59373 #: _widgets.php:196 374 374 msgid "Events map" 375 375 msgstr "Carte des événements" 376 376 377 #: _widgets.php:1 60377 #: _widgets.php:197 378 378 msgid "Events on map" 379 379 msgstr "Événements sur une carte" 380 380 381 #: _widgets.php:1 61382 #: inc/index.settings.php:1 2381 #: _widgets.php:198 382 #: inc/index.settings.php:15 383 383 msgid "Default zoom on map:" 384 384 msgstr "Zoom par défaut de la carte :" 385 385 386 #: _widgets.php:1 62387 #: inc/index.settings.php:1 2386 #: _widgets.php:199 387 #: inc/index.settings.php:15 388 388 msgid "Default type of map:" 389 389 msgstr "Type par défaut de la carte :" 390 390 391 #: _widgets.php: 163391 #: _widgets.php:200 392 392 msgid "Width of map: (with unit as % or px)" 393 393 msgstr "Largeur de la carte : (avec les unités telles que % ou px)" 394 394 395 #: _widgets.php: 164395 #: _widgets.php:201 396 396 msgid "Height of map: (with unit as % or px)" 397 397 msgstr "Hauteur de la carte : (avec les unités telles que % ou px)" 398 398 399 #: _widgets.php: 165399 #: _widgets.php:202 400 400 msgid "Add tooltips" 401 401 msgstr "Ajouter les info-bulles" 402 402 403 #: _widgets.php: 179404 #: _widgets.php: 180403 #: _widgets.php:222 404 #: _widgets.php:223 405 405 msgid "Events calendar" 406 406 msgstr "Calendrier des événements" 407 407 408 #: _widgets.php: 181408 #: _widgets.php:224 409 409 msgid "First day of week:" 410 410 msgstr "Premier jour de la semaine :" 411 411 412 #: _widgets.php: 182412 #: _widgets.php:225 413 413 msgid "Show only start date of events" 414 414 msgstr "Afficher seulement la date de début des événements" 415 415 416 #: _widgets.php: 266417 #: _widgets.php: 383416 #: _widgets.php:313 417 #: _widgets.php:430 418 418 msgid "On %sd from %st to %et" 419 419 msgstr "Le %sd de %st à %et" 420 420 421 #: _widgets.php: 269422 #: _widgets.php: 387421 #: _widgets.php:316 422 #: _widgets.php:434 423 423 msgid "From %sd, %st to %ed, %et" 424 424 msgstr "Du %sd, %st au %ed, %et" 425 425 426 #: _widgets.php: 287426 #: _widgets.php:334 427 427 msgid "go to this category" 428 428 msgstr "aller à cette catégorie" … … 567 567 #: exemple-templates/default-basic/tpl/eventhandler-single.html:108 568 568 #: exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 569 #: inc/index.event.php:1 2569 #: inc/index.event.php:15 570 570 msgid "Latitude:" 571 571 msgstr "Latitude :" … … 574 574 #: exemple-templates/default-basic/tpl/eventhandler-single.html:108 575 575 #: exemple-templates/noviny-basic/tpl/eventhandler-single.html:123 576 #: inc/index.event.php:1 2576 #: inc/index.event.php:15 577 577 msgid "Longitude:" 578 578 msgstr "Longitude :" … … 590 590 msgstr "Afficher cet événement au format hCalendar" 591 591 592 #: inc/class.eventhandler.php:26 0592 #: inc/class.eventhandler.php:268 593 593 msgid "You are not allowed to create an event" 594 594 msgstr "Vous n'êtes pas autorisé à créer un événement" 595 595 596 #: inc/class.eventhandler.php: 294596 #: inc/class.eventhandler.php:302 597 597 msgid "You are not allowed to update events" 598 598 msgstr "Vous n'êtes pas autorisé à mettre à jour les événements" 599 599 600 #: inc/class.eventhandler.php:3 38600 #: inc/class.eventhandler.php:346 601 601 msgid "You are not allowed to delete events" 602 602 msgstr "Vous n'êtes pas autorisé à supprimer des événements" 603 603 604 #: inc/class.eventhandler.php:3 65604 #: inc/class.eventhandler.php:373 605 605 msgid "No event start date" 606 606 msgstr "pas de date de début" 607 607 608 #: inc/class.eventhandler.php:37 0608 #: inc/class.eventhandler.php:378 609 609 msgid "No event end date" 610 610 msgstr "pas de date de fin" 611 611 612 #: inc/class.eventhandler.php:3 75612 #: inc/class.eventhandler.php:383 613 613 msgid "Start date greater than end date" 614 614 msgstr "date de début plus récente qu la date de fin" 615 615 616 #: inc/class.eventhandler.php:38 1616 #: inc/class.eventhandler.php:389 617 617 msgid "Not full coordinate" 618 618 msgstr "coordonnées incomplètes" 619 619 620 #: inc/class.eventhandler.php:388621 620 #: inc/class.eventhandler.php:396 621 #: inc/class.eventhandler.php:404 622 622 msgid "Wrong format of coordinate" 623 623 msgstr "mauvais format de coordonnée" 624 624 625 #: inc/class.eventhandler.php:43 1625 #: inc/class.eventhandler.php:439 626 626 msgid "%s days" 627 627 msgstr "%s jours" 628 628 629 #: inc/class.eventhandler.php:4 32629 #: inc/class.eventhandler.php:440 630 630 msgid "one day" 631 631 msgstr "un jour" 632 632 633 #: inc/class.eventhandler.php:4 33633 #: inc/class.eventhandler.php:441 634 634 msgid "%s hours" 635 635 msgstr "%s heures" 636 636 637 #: inc/class.eventhandler.php:4 34637 #: inc/class.eventhandler.php:442 638 638 msgid "one hour" 639 639 msgstr "une heure" 640 640 641 #: inc/class.eventhandler.php:4 35641 #: inc/class.eventhandler.php:443 642 642 msgid "%s minutes" 643 643 msgstr "%s minutes" 644 644 645 #: inc/class.eventhandler.php:4 36645 #: inc/class.eventhandler.php:444 646 646 msgid "one minute" 647 647 msgstr "une minute" 648 648 649 #: inc/class.eventhandler.php:460 649 #: inc/class.eventhandler.php:445 650 msgid "instantaneous" 651 msgstr "instantané" 652 653 #: inc/class.eventhandler.php:468 650 654 msgid "Please wait, try to create map..." 651 655 msgstr "Veulliez patienter, construction de la carte..." 652 656 653 #: inc/index.event.php:1 2654 #: inc/index.event.php:1 2655 #: inc/index.events.php:1 2656 #: inc/index.events.php:1 2657 #: inc/index.settings.php:1 2657 #: 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 658 662 msgid "New event" 659 663 msgstr "Nouvel événement" 660 664 661 #: inc/index.event.php:1 2665 #: inc/index.event.php:15 662 666 msgid "This event does not exist." 663 667 msgstr "Cette événement n'existe pas" 664 668 665 #: inc/index.event.php:1 2669 #: inc/index.event.php:15 666 670 msgid "Change entry into event" 667 671 msgstr "Changer un billet en événement" 668 672 669 #: inc/index.event.php:1 2670 #: inc/index.event.php:1 2673 #: inc/index.event.php:15 674 #: inc/index.event.php:15 671 675 msgid "Edit event" 672 676 msgstr "Modifier un événement" 673 677 674 #: inc/index.event.php:1 2678 #: inc/index.event.php:15 675 679 msgid "next event" 676 680 msgstr "Événements suivant" 677 681 678 #: inc/index.event.php:1 2682 #: inc/index.event.php:15 679 683 msgid "previous event" 680 684 msgstr "Événements précédent" 681 685 682 #: inc/index.event.php:1 2686 #: inc/index.event.php:15 683 687 msgid "View event" 684 688 msgstr "Voir l'événement" 685 689 686 #: inc/index.event.php:1 2690 #: inc/index.event.php:15 687 691 msgid "Preview event" 688 692 msgstr "Prévisualier l'événement" 689 693 690 #: inc/index.event.php:12 694 #: inc/index.event.php:15 695 #: inc/lib.eventhandler.rs.extension.php:231 696 msgid "Start date:" 697 msgstr "Date de début :" 698 699 #: inc/index.event.php:15 700 #: inc/lib.eventhandler.rs.extension.php:232 701 msgid "End date:" 702 msgstr "Date de fin :" 703 704 #: inc/index.event.php:15 705 msgid "Localization:" 706 msgstr "Localisation :" 707 708 #: inc/index.event.php:15 709 #: inc/lib.eventhandler.rs.extension.php:235 710 msgid "Address:" 711 msgstr "Adresse :" 712 713 #: inc/index.event.php:15 714 #: inc/index.settings.php:15 715 msgid "Maps" 716 msgstr "Cartes" 717 718 #: inc/index.event.php:15 719 msgid "If you want to use maps, you must enter an address as precise as possible (number, street, city, country)" 720 msgstr "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 723 msgid "Find coordinates on googleMap" 724 msgstr "Trouver les coordonnées sur GoogleMaps" 725 726 #: inc/index.event.php:15 727 msgid "You must save event before adding entries" 728 msgstr "Vous devez sauvegarder l'événement avant d'ajouter des billets" 729 730 #: inc/index.events.php:15 731 msgid "Localization" 732 msgstr "Localisation" 733 734 #: inc/index.events.php:15 735 msgid "Unbind related entries" 736 msgstr "Séparer les entrées liées" 737 738 #: inc/index.events.php:15 739 msgid "Bind an event" 740 msgstr "Lier un événement" 741 742 #: inc/index.events.php:15 743 msgid "Attach selected events" 744 msgstr "Lier les événements selectionnés" 745 746 #: inc/index.settings.php:15 747 msgid "before content" 748 msgstr "avant le contenu" 749 750 #: inc/index.settings.php:15 751 msgid "after content" 752 msgstr "après le contenu" 753 754 #: inc/index.settings.php:15 755 #: inc/index.settings.php:15 756 #: index.php:49 757 msgid "Settings" 758 msgstr "Paramètres" 759 760 #: inc/index.settings.php:15 761 msgid "Activation" 762 msgstr "Activation" 763 764 #: inc/index.settings.php:15 765 msgid "Enable extension" 766 msgstr "Activer l'extension" 767 768 #: inc/index.settings.php:15 769 msgid "Additionnal style sheet:" 770 msgstr "Feuille de style additionnelle" 771 772 #: inc/index.settings.php:15 773 msgid "Show related entries on event:" 774 msgstr "Afficher les billets liés sur un événement :" 775 776 #: inc/index.settings.php:15 777 msgid "Show related events on entry:" 778 msgstr "Afficher les événement liés sur un billet :" 779 780 #: inc/index.settings.php:15 781 msgid "When an event has an hidden category, it will only display on its category page." 782 msgstr "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 785 msgid "Level" 786 msgstr "Niveau" 787 788 #: inc/index.settings.php:15 789 msgid "List of events related to this category" 790 msgstr "Liste des événements liés à cette catégorie" 791 792 #: inc/index.settings.php:15 793 msgid "List of entries related to this category" 794 msgstr "Liste des billets liés à cette catégorie" 795 796 #: inc/index.settings.php:15 797 msgid "Edit this category" 798 msgstr "Modifier cette catégorie" 799 800 #: inc/index.settings.php:15 801 msgid "Events from eventdata successfully imported" 802 msgstr "Événements importés avec succès depuis eventdata" 803 804 #: inc/index.settings.php:15 805 msgid "Records of eventdata have been imported for this blog." 806 msgstr "Les enregistrements de eventdata ont déjà été importé pour ce blog." 807 808 #: inc/index.settings.php:15 809 msgid "Import eventdata records" 810 msgstr "Importer les enregistrements de eventdata" 811 812 #: inc/lib.eventhandler.calendar.php:121 813 msgid "Calendar" 814 msgstr "Calendrier" 815 816 #: inc/lib.eventhandler.calendar.php:195 817 msgid "one event" 818 msgstr "un événement" 819 820 #: inc/lib.eventhandler.calendar.php:195 821 msgid "%s events" 822 msgstr "%s événements" 823 824 #: inc/lib.eventhandler.rs.extension.php:239 825 msgid "Location:" 826 msgstr "Lieu :" 827 828 #: inc/lib.eventhandler.rs.extension.php:239 829 msgid "latitude:" 830 msgstr "latitude :" 831 832 #: inc/lib.eventhandler.rs.extension.php:239 833 msgid "longitude:" 834 msgstr "longitude :" 835 836 #: inc/lib.eventhandler.rs.extension.php:248 837 msgid "Read more" 838 msgstr "Lire la suite" 839 840 #: index.php:58 841 msgid "Configuration successfully saved" 842 msgstr "Configuration sauvegardée avec succès" 843 844 #: index.php:59 845 msgid "Records succesfully deleted" 846 msgstr "Enregistrements effacés avec succès" 847 691 848 msgid "Start date of the event :" 692 849 msgstr "Date de début de l'événement :" 693 850 694 #: inc/index.event.php:12695 851 msgid "End date of the event:" 696 852 msgstr "Date de fin de l'événement :" 697 853 698 #: inc/index.event.php:12699 msgid "Localization:"700 msgstr "Localisation :"701 702 #: inc/index.event.php:12703 #: inc/lib.eventhandler.rs.extension.php:233704 msgid "Address:"705 msgstr "Adresse :"706 707 #: inc/index.event.php:12708 #: inc/index.settings.php:12709 msgid "Maps"710 msgstr "Cartes"711 712 #: inc/index.event.php:12713 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:12717 msgid "Find coordinates on googleMap"718 msgstr "Trouver les coordonnées sur GoogleMaps"719 720 #: inc/index.event.php:12721 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:12725 msgid "Localization"726 msgstr "Localisation"727 728 #: inc/index.events.php:12729 msgid "Unbind related entries"730 msgstr "Séparer les entrées liées"731 732 #: inc/index.events.php:12733 msgid "Bind an event"734 msgstr "Lier un événement"735 736 #: inc/index.events.php:12737 msgid "Attach selected events"738 msgstr "Lier les événements selectionnés"739 740 #: inc/index.settings.php:12741 msgid "before content"742 msgstr "avant le contenu"743 744 #: inc/index.settings.php:12745 msgid "after content"746 msgstr "après le contenu"747 748 #: inc/index.settings.php:12749 #: inc/index.settings.php:12750 #: index.php:47751 msgid "Settings"752 msgstr "Paramètres"753 754 #: inc/index.settings.php:12755 msgid "Activation"756 msgstr "Activation"757 758 #: inc/index.settings.php:12759 msgid "Enable extension"760 msgstr "Activer l'extension"761 762 #: inc/index.settings.php:12763 msgid "Additionnal style sheet:"764 msgstr "Feuille de style additionnelle"765 766 #: inc/index.settings.php:12767 msgid "Show related entries on event:"768 msgstr "Afficher les billets liés sur un événement :"769 770 #: inc/index.settings.php:12771 msgid "Show related events on entry:"772 msgstr "Afficher les événement liés sur un billet :"773 774 #: inc/index.settings.php:12775 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:12779 msgid "Hide"780 msgstr "Cacher"781 782 #: inc/index.settings.php:12783 msgid "Level"784 msgstr "Niveau"785 786 #: inc/index.settings.php:12787 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:12791 msgid "List of entries related to this category"792 msgstr "Liste des billets liés à cette catégorie"793 794 #: inc/index.settings.php:12795 msgid "Edit this category"796 msgstr "Modifier cette catégorie"797 798 #: inc/index.settings.php:12799 msgid "Events from eventdata successfully imported"800 msgstr "Événements importés avec succès depuis eventdata"801 802 #: inc/index.settings.php:12803 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:12807 msgid "Import eventdata records"808 msgstr "Importer les enregistrements de eventdata"809 810 #: inc/lib.eventhandler.calendar.php:119811 msgid "Calendar"812 msgstr "Calendrier"813 814 #: inc/lib.eventhandler.calendar.php:193815 msgid "one event"816 msgstr "un événement"817 818 #: inc/lib.eventhandler.calendar.php:193819 msgid "%s events"820 msgstr "%s événements"821 822 #: inc/lib.eventhandler.rs.extension.php:229823 msgid "Start date:"824 msgstr "Date de début :"825 826 #: inc/lib.eventhandler.rs.extension.php:230827 msgid "End date:"828 msgstr "Date de fin :"829 830 #: inc/lib.eventhandler.rs.extension.php:237831 msgid "Location:"832 msgstr "Lieu :"833 834 #: inc/lib.eventhandler.rs.extension.php:237835 msgid "latitude:"836 msgstr "latitude :"837 838 #: inc/lib.eventhandler.rs.extension.php:237839 msgid "longitude:"840 msgstr "longitude :"841 842 #: inc/lib.eventhandler.rs.extension.php:246843 msgid "Read more"844 msgstr "Lire la suite"845 846 #: index.php:56847 msgid "Configuration successfully saved"848 msgstr "Configuration sauvegardée avec succès"849 850 #: index.php:57851 msgid "Records succesfully deleted"852 msgstr "Enregistrements effacés avec succès"853 854 854 msgid "%Y-%m-%d" 855 855 msgstr "%d/%m/%Y" -
plugins/eventHandler/release.txt
r3059 r3141 5 5 * quick add on post entry (copy post content) 6 6 * manage sub categories 7 8 2013.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 7 14 8 15 1.0-RC4 20110102
Note: See TracChangeset
for help on using the changeset viewer.