Dotclear

Changeset 1211


Ignore:
Timestamp:
06/15/09 14:33:24 (14 years ago)
Author:
JcDenis
Message:

eventdata 0.5.4 :

  • fixed xhtml validation
Location:
plugins/eventdata
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • plugins/eventdata/README.txt

    r1029 r1211  
    1 eventdata 0.5.3 (2009/04/15) plugin for Dotclear 2 
    2  
    3 Préambule: 
    4 ========== 
    5  
    6 ! Due to a conflict with an older plugin called "icsFeed",  
    7 ! versions of "eventdata" less than 0.3.4 are not compatible with the following versions. 
    8 ! A recovery tool will attempt to transfer the dates in database, see tab "uninstall". 
    9 ! But all changed themes will be updated manually. 
    10 ! The main differences are the changes of names including "Event" to "Eventdata". 
    11 ! (css class names, blocks names, values names) 
    12 ! Events widgets must replaced. 
    13 ! All eventdata settings are losts 
    14 ! Sorry for the inconvenience. 
     1eventdata 0.5.4 (2009/06/15) plugin for Dotclear 2 
    152 
    163I. Licence: 
  • plugins/eventdata/_admin.php

    r1049 r1211  
    2626$_menu[($core->blog->settings->eventdata_option_menu ? 'Blog' : 'Plugins')]->addItem( 
    2727     __('Events'), 
    28      'plugin.php?p=eventdata',DC_ADMIN_URL.'?pf=eventdata/icon.png', 
     28     'plugin.php?p=eventdata','index.php?pf=eventdata/icon.png', 
    2929     preg_match('/plugin.php\?p=eventdata(&.*)?$/',$_SERVER['REQUEST_URI']), 
    3030     $core->auth->check('usage,contentadmin',$core->blog->id)); 
     
    7070          return 
    7171          ($post_page ?  
    72                dcPage::jsLoad(DC_ADMIN_URL.'?pf=eventdata/js/post.js'). 
     72               dcPage::jsLoad('index.php?pf=eventdata/js/post.js'). 
    7373               '<script type="text/javascript">'."\n". 
    7474               "//<![CDATA[\n". 
     
    8282               "</script>\n" 
    8383          :  
    84                dcPage::jsLoad(DC_ADMIN_URL.'?pf=eventdata/js/admin.js') 
     84               dcPage::jsLoad('index.php?pf=eventdata/js/admin.js') 
    8585          ). 
    86           dcPage::jsLoad(DC_ADMIN_URL.'?pf=eventdata/js/datepickerBC.js'). 
     86          dcPage::jsLoad('index.php?pf=eventdata/js/datepickerBC.js'). 
    8787          '<script type="text/javascript">'."\n". 
    8888          "//<![CDATA[\n". 
     
    111111          "\n//]]>\n". 
    112112          "</script>\n". 
    113           '<link rel="stylesheet" type="text/css" href="'.DC_ADMIN_URL.'?pf=eventdata/style.css" />'; 
     113          '<link rel="stylesheet" type="text/css" href="index.php?pf=eventdata/style.css" />'; 
    114114     } 
    115115     # Sidebar for post.php 
     
    123123          '<div id="new-eventdata">'. 
    124124          '<h3>'.__('Add event').'</h3>'. 
    125           '<p>'. 
    126125          '<label for="eventdata_start">'.__('Event start:').'</label>'. 
    127126          '<div class="p" id="eventdata-edit-start">'.form::textarea('eventdata_start',20,1,$start,'',9).'</div>'. 
     
    130129          '<label for="eventdata_location">'.__('Event location:').'</label>'. 
    131130          '<div class="p" id="eventdata-edit-location">'.form::textarea('eventdata_location',20,1,$location,'',10).'</div>'. 
    132           '</p>'. 
    133131          '</div>'; 
    134132 
     
    146144                    '<div class="eventdatas-list">'. 
    147145                    '<span class="eventdata-action-remove">'. 
    148                     form::checkbox('eventdatas[]',$eventdatas->eventdata_start.','.$eventdatas->eventdata_end,'','','',false,' title="'.__('Check to delete').'"'). 
     146                    form::checkbox(array('eventdatas[]'),$eventdatas->eventdata_start.','.$eventdatas->eventdata_end,'','','',false,' title="'.__('Check to delete').'"'). 
    149147                    '</span>'. 
    150                     '<a class="eventdata-action-edit" href="plugin.php?p=eventdata&eventdata='. 
     148                    '<a class="eventdata-action-edit" href="plugin.php?p=eventdata&amp;eventdata='. 
    151149                         dcEventdata::serializeURL('eventdata',$eventdatas->post_id,$eventdatas->eventdata_start,$eventdatas->eventdata_end,$eventdatas->eventdata_location). 
    152150                    '">[v]</a>'. 
     
    315313          '<div id="edit-eventdata">'. 
    316314          '<h3>'.__('Add event').'</h3>'. 
    317           '<form action="posts_actions.php" method="post">'. 
    318           '<p>'. 
     315          '<form action="posts_actions.php" method="post"><div>'. 
    319316          '<label for="eventdata_start">'.__('Event start:').'</label>'. 
    320317          '<div class="p" id="eventdata-edit-start">'.form::field('eventdata_start',16,16,$start,'eventdata-date-start',9).'</div>'. 
     
    323320          '<label for="eventdata_location">'.__('Event location:').'</label>'. 
    324321          '<div class="p" id="eventdata-edit-location">'.form::field('eventdata_location',20,200,$location,'eventdata-date-location',10).'</div>'. 
    325           '</p>'. 
     322          '<p>'. 
    326323          $hidden_fields. 
    327324          $core->formNonce(). 
    328325          form::hidden(array('action'),'eventdata_add'). 
    329326          '<input type="submit" value="'.__('Save').'" /></p>'. 
    330           '</form>'. 
     327          '</div></form>'. 
    331328          '</div>'; 
    332329     } 
  • plugins/eventdata/_define.php

    r1029 r1211  
    1717     /* Description*/         "Add period to your posts", 
    1818     /* Author */             "JC Denis", 
    19      /* Version */            '0.5.3', 
     19     /* Version */            '0.5.4', 
    2020     /* Permissions */        'usage,contentadmin' 
    2121); 
    22      /* date */          #20090415 
     22     /* date */          #20090615 
    2323?> 
  • plugins/eventdata/inc/class.eventdata.php

    r1017 r1211  
    6565         if ($hou>1) $time .= sprintf(__('%s hours'),$hou).' '; 
    6666         if ($hou==1) $time .= __('one hour').' '; 
    67          if ($hou>1) $time .= sprintf(__('%s minutes'),$hou).' '; 
    68          if ($hou==1) $time .= __('one minute').' '; 
     67         if ($min>1) $time .= sprintf(__('%s minutes'),$min).' '; 
     68         if ($min==1) $time .= __('one minute').' '; 
    6969         if (!$day && !$min && !$day && !$hou) $time .= __('instantaneous'); 
    7070 
  • plugins/eventdata/inc/lib.eventdata.list.php

    r1029 r1211  
    148148                    # Edit 
    149149                    (!$this->rs->isEditable() ? '&nbsp;' :  
    150                     '<a title="'.__('Edit this event for all entries').'" href="plugin.php?p=eventdata&eventdata='. 
     150                    '<a title="'.__('Edit this event for all entries').'" href="plugin.php?p=eventdata&amp;eventdata='. 
    151151                         dcEventdata::serializeURL('eventdata',null,$this->rs->eventdata_start,$this->rs->eventdata_end,$this->rs->eventdata_location). 
    152                          '"><img src="index.php?pf=eventdata/inc/img/edit-all.png">'. 
     152                         '"><img alt="edit-all" src="index.php?pf=eventdata/inc/img/edit-all.png" />'. 
    153153                    '</a>  
    154                     <a title="'.__('Edit this event for this entry').'" href="plugin.php?p=eventdata&eventdata='. 
     154                    <a title="'.__('Edit this event for this entry').'" href="plugin.php?p=eventdata&amp;eventdata='. 
    155155                         dcEventdata::serializeURL('eventdata',$this->rs->post_id,$this->rs->eventdata_start,$this->rs->eventdata_end,$this->rs->eventdata_location). 
    156                          '"><img src="index.php?pf=eventdata/inc/img/edit-one.png"> 
     156                         '"><img alt="edit-one" src="index.php?pf=eventdata/inc/img/edit-one.png" /> 
    157157                    </a>  
    158                     <a title="'.__('Delete this event for this entry').'" href="plugin.php?p=eventdata&a=del&eventdata='. 
     158                    <a title="'.__('Delete this event for this entry').'" href="plugin.php?p=eventdata&amp;a=del&amp;eventdata='. 
    159159                         dcEventdata::serializeURL('eventdata',$this->rs->post_id,$this->rs->eventdata_start,$this->rs->eventdata_end,$this->rs->eventdata_location). 
    160                          '"><img src="index.php?pf=eventdata/inc/img/del-one.png"> 
     160                         '"><img alt="del-one" src="index.php?pf=eventdata/inc/img/del-one.png" /> 
    161161                    </a>' 
    162162                    ) => 'class="nowrap"', 
     
    178178                    $img_status.' '.$selected.' '.$protected.' '.$attach => 'class="nowrap status"' 
    179179               ), 
    180                'class="line'.($this->rs->post_status != 1 ? ' offline' : '').'" id="p'.$this->rs->post_id.'"' 
     180               'class="line'.($this->rs->post_status != 1 ? ' offline' : '').'" '//id="p'.$this->rs->post_id.'"' 
    181181          ); 
    182182     } 
  • plugins/eventdata/index.php

    r1029 r1211  
    2020# General 
    2121$msg = isset($_REQUEST['done']) ? __('Configuration saved') : ''; 
    22 $img_green = '<img alt="%s" src="'.DC_ADMIN_URL.'?pf=eventdata/inc/img/green.png" />'; 
    23 $img_red = '<img alt="%s" src="'.DC_ADMIN_URL.'?pf=eventdata/inc/img/red.png" />'; 
    24 $img_orange = '<img alt="%s" src="'.DC_ADMIN_URL.'?pf=eventdata/inc/img/orange.png" />'; 
    25 $img_scheduled = '<img alt="%s" src="'.DC_ADMIN_URL.'?pf=eventdata/inc/img/scheduled.png" />'; 
     22$img_green = '<img alt="%s" src="index.php?pf=eventdata/inc/img/green.png" />'; 
     23$img_red = '<img alt="%s" src="index.php?pf=eventdata/inc/img/red.png" />'; 
     24$img_orange = '<img alt="%s" src="index.php?pf=eventdata/inc/img/orange.png" />'; 
     25$img_scheduled = '<img alt="%s" src="index.php?pf=eventdata/inc/img/scheduled.png" />'; 
    2626 
    2727# Menu 
     
    247247' </head>'. 
    248248' <body>'. 
    249 ' <h2>'.html::escapeHTML($core->blog->name).' &gt; '.__('Events').' &gt; '.$tab[$request_tab].'</h2>'. 
     249' <h2>'.html::escapeHTML($core->blog->name).' &rsaquo; '.__('Events').' &rsaquo; '.$tab[$request_tab].'</h2>'. 
    250250 (!empty($msg) ? '<p class="message">'.$msg.'</p>' : ''); 
    251251 
     
    341341               </div> 
    342342               </div> 
    343                <br class="clear" /> 
    344           </fieldset>'. 
    345           form::hidden('p','eventdata'). 
    346           form::hidden('t','pst'). 
    347           $core->formNonce().' 
     343               <br class="clear" />'. 
     344               form::hidden(array('p'),'eventdata'). 
     345               form::hidden(array('t'),'pst'). 
     346               $core->formNonce().' 
     347          </fieldset> 
    348348          </form>'; 
    349349     # Edited list 
     
    351351          echo  
    352352          '<div class="multi-part" id="pst" title="'.$tab['pst'].'">'. 
    353           '<p><a href="'.$E->url.'&t=pst">'.__('Back to list of all events').'</a></p>'. 
     353          '<p><a href="'.$E->url.'&amp;t=pst">'.__('Back to list of all events').'</a></p>'. 
    354354          '<link rel="stylesheet" type="text/css" href="style/date-picker.css" />'."\n"; 
    355355 
     
    384384          } 
    385385          echo  
    386           form::hidden('p','eventdata'). 
    387           form::hidden('t','pst'). 
     386          form::hidden(array('p'),'eventdata'). 
     387          form::hidden(aray('t'),'pst'). 
    388388          $core->formNonce(). 
    389389          ($counter->f(0) == 1 ? form::hidden('post_id',$posts->post_id) : ''). 
     
    391391          form::hidden('old_eventdata_end',$posts->eventdata_end). 
    392392          form::hidden('old_eventdata_location',$posts->eventdata_location). 
    393           form::hidden(array('redir'),$E->url.'&t=pst'). 
     393          form::hidden(array('redir'),$E->url.'&amp;t=pst'). 
    394394          '</form>'. 
    395395          '</div>'; 
     
    397397 
    398398     $post_list->display($page,$nb_per_page, 
    399           '<form action="posts_actions.php" method="post" id="form-entries">'. 
     399          '<form action="posts_actions.php" method="post" id="form-actions">'. 
    400400          '%s'. 
    401401          '<div class="two-cols">'. 
    402402          '<p class="col checkboxes-helpers"></p>'. 
    403403          '<p class="col right">'.__('Selected entries action:').' '. 
    404           form::combo('action',$combo_action). 
     404          form::combo(array('action'),$combo_action). 
    405405          '<input type="submit" value="'.__('ok').'" /></p>'. 
    406406          form::hidden(array('cat_id'),$cat_id). 
     
    411411          form::hidden(array('page'),$page). 
    412412          form::hidden(array('nb'),$nb_per_page). 
    413           form::hidden(array('redir'),$E->url.'&t=pst'). 
     413          form::hidden(array('redir'),$E->url.'&amp;t=pst'). 
    414414          $core->formNonce(). 
    415415          '</div>'. 
     
    452452     <div class="multi-part" id="cat" title="'.$tab['cat'].'"> 
    453453     <p>'.__('This is a list of all the categories that can be rearranged by dates of events').'</p> 
    454      <form action="'.$E->url.'" method="post" id="form-entries"> 
     454     <form action="'.$E->url.'" method="post" id="form-cats"> 
    455455     <table class="clear"><tr> 
    456456     <th colspan="2">'.__('Title').'</th> 
     
    465465          '<tr class="line">'. 
    466466          '<td class="nowrap">'.form::checkbox(array('entries[]'),$categories->cat_id,'','','',false).'</td>'. 
    467           '<td class="maximal"><a href="'.$E->url.'&t=pst&cat_id='.$categories->cat_id.'"> 
     467          '<td class="maximal"><a href="'.$E->url.'&amp;t=pst&amp;cat_id='.$categories->cat_id.'"> 
    468468               '.html::escapeHTML($categories->cat_title).'</a></td>'. 
    469469          '<td class="nowrap">'.$categories->cat_id.'</td>'. 
     
    483483     <p class="col checkboxes-helpers"></p> 
    484484     <p class="col right">'.__('Selected categories action:').' '. 
    485      form::combo('action',$categories_actions_combo).' 
    486      <input type="submit" name="save[cat]" value="'.__('ok').'" /></p>'. 
    487      form::hidden('p','eventdata'). 
    488      form::hidden('t','cat'). 
     485     form::combo(array('action'),$categories_actions_combo).' 
     486     <input type="submit" name="save[cat]" value="'.__('ok').'" />'. 
     487     form::hidden(array('p'),'eventdata'). 
     488     form::hidden(array('t'),'cat'). 
    489489     $core->formNonce().' 
    490490     </p> 
     
    521521          <p class="col"><label class=" classic">'. 
    522522               __('Title').'<br />'. 
    523                form::field('s[eventdata_tpl_title]', 20,255,html::escapeHTML($E->S->eventdata_tpl_title),'maximal').' 
     523               form::field(array('s[eventdata_tpl_title]'), 20,255,html::escapeHTML($E->S->eventdata_tpl_title),'maximal').' 
    524524          </label></p> 
    525525          <p class="area"><label class=" classic">'. 
    526526               __('Description').'<br />'. 
    527                form::textArea('s[eventdata_tpl_desc]', 50,5,html::escapeHTML($E->S->eventdata_tpl_desc)).' 
     527               form::textArea(array('s[eventdata_tpl_desc]'), 50,5,html::escapeHTML($E->S->eventdata_tpl_desc)).' 
    528528          </label></p> 
    529529     <h2>'.__('Theme').'</h2> 
    530           <p><ul> 
    531           <li>'.__('Current blog theme:').' <strong>'.$default_thm.'</strong></li> 
    532           <li>'.__('Adapted template exists:').' <strong>'.($default_adt ? __('yes') : __('no')).'</strong></li> 
    533           <li>'.__('Template on current theme exists:').' <strong>'.($default_xst ? __('yes') : __('no')).'</strong></li> 
    534           <li>'.__('Alternate template:').' <strong>'.$default_tpl.'</strong></li> 
    535           <li>'.__('Public URL:').' <a href="'.$core->blog->url.$E->S->eventdata_tpl_url.'">'.$core->blog->url.$E->S->eventdata_tpl_url.'</a></li> 
    536           </ul></p> 
     530          <ul> 
     531          <li>'.__('Current blog theme:').'<strong>&nbsp;'.$default_thm.'</strong></li> 
     532          <li>'.__('Adapted template exists:').'<strong>&nbsp;'.($default_adt ? __('yes') : __('no')).'</strong></li> 
     533          <li>'.__('Template on current theme exists:').'<strong>&nbsp;'.($default_xst ? __('yes') : __('no')).'</strong></li> 
     534          <li>'.__('Alternate template:').'<strong>&nbsp;'.$default_tpl.'</strong></li> 
     535          <li>'.__('Public URL:').'&nbsp;<a href="'.$core->blog->url.$E->S->eventdata_tpl_url.'"> '.$core->blog->url.$E->S->eventdata_tpl_url.'</a></li> 
     536          </ul> 
    537537          <p><label class=" classic">'. 
    538538               __('URL prefix:').'<br />'. 
    539                form::field('s[eventdata_tpl_url]', 20,32,html::escapeHTML($E->S->eventdata_tpl_url)).' 
     539               form::field(array('s[eventdata_tpl_url]'), 20,32,html::escapeHTML($E->S->eventdata_tpl_url)).' 
    540540          </label></p> 
    541541          <p><label class=" classic">'. 
    542542               __('Choose predefined page template in case where theme of blog does not have it').'<br />'. 
    543                form::combo('s[eventdata_tpl_theme]',$combo_templates,$default_tpl).' 
     543               form::combo(array('s[eventdata_tpl_theme]'),$combo_templates,$default_tpl).' 
    544544          </label></p> 
    545545          <p><label class=" classic">'. 
    546546               __('Disable list of dates of event on an entry').'<br />'. 
    547                form::combo('s[eventdata_tpl_dis_bhv]',array(__('no')=>'0',__('yes')=>'1'),$E->S->eventdata_tpl_dis_bhv).'  
    548           </label></p>'. 
    549      form::hidden('p','eventdata'). 
    550      form::hidden('t','tpl'). 
     547               form::combo(array('s[eventdata_tpl_dis_bhv]'),array(__('no')=>'0',__('yes')=>'1'),$E->S->eventdata_tpl_dis_bhv).'  
     548          </label></p> 
     549          <p>'. 
     550     form::hidden(array('p'),'eventdata'). 
     551     form::hidden(array('t'),'tpl'). 
    551552     $core->formNonce().' 
    552      <input type="submit" name="save[tpl]" value="'.__('Save').'" /> 
     553     <input type="submit" name="save[tpl]" value="'.__('Save').'" /></p> 
    553554     </form> 
    554555     </div>'; 
     
    579580     <form method="post" action="'.$E->url.'"> 
    580581     <h2>'.__('General').'</h2> 
    581      <p> 
    582582     <table class="clear"><tr class="line"> 
    583583     <th class="nowrap">'.__('Enable plugin').'</th> 
    584      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_option_active]',0, !$E->S->eventdata_option_active).' '.__('no').'</label></td> 
    585      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_option_active]',1, $E->S->eventdata_option_active).' '.__('yes').'</label></td> 
     584     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_option_active]'),0, !$E->S->eventdata_option_active).' '.__('no').'</label></td> 
     585     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_option_active]'),1, $E->S->eventdata_option_active).' '.__('yes').'</label></td> 
    586586     </tr><tr class="line"> 
    587587     <th class="nowrap">'.__('Plugin icon in Blog menu').'</th> 
    588      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_option_menu]',0, !$E->S->eventdata_option_menu).' '.__('no').'</label></td> 
    589      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_option_menu]',1, $E->S->eventdata_option_menu).' '.__('yes').'</label></td> 
     588     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_option_menu]'),0, !$E->S->eventdata_option_menu).' '.__('no').'</label></td> 
     589     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_option_menu]'),1, $E->S->eventdata_option_menu).' '.__('yes').'</label></td> 
    590590     </tr><tr class="line"> 
    591591     <th class="nowrap">'.__('Enable public page').'</th> 
    592      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_option_public]',0, !$E->S->eventdata_option_public).' '.__('no').'</label></td> 
    593      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_option_public]',1, $E->S->eventdata_option_public).' '.__('yes').'</label></td 
    594      </tr></table></p> 
     592     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_option_public]'),0, !$E->S->eventdata_option_public).' '.__('no').'</label></td> 
     593     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_option_public]'),1, $E->S->eventdata_option_public).' '.__('yes').'</label></td> 
     594     </tr></table> 
    595595     <h2>'.__('Permissions').'</h2> 
    596      <p> 
    597596     <table class="clear"><tr class="line"> 
    598597     <th class="nowrap">'.__('Manage events dates on entries').'</th> 
    599      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_pst]',0,!$E->S->eventdata_perm_pst).' '.__('admin').'</label></td> 
    600      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_pst]',1,$E->S->eventdata_perm_pst).' '.__('admin,usage,contentadmin,eventdata').'</label></td> 
     598     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_pst]'),0,!$E->S->eventdata_perm_pst).' '.__('admin').'</label></td> 
     599     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_pst]'),1,$E->S->eventdata_perm_pst).' '.__('admin,usage,contentadmin,eventdata').'</label></td> 
    601600     </tr><tr class="line"> 
    602601     <th class="nowrap">'.__('Manage list of reordered categories').'</th> 
    603      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_cat]',0,!$E->S->eventdata_perm_cat).' '.__('admin').'</label></td> 
    604      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_cat]',1,$E->S->eventdata_perm_cat).' '.__('admin,categories,eventdata').'</label></td> 
     602     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_cat]'),0,!$E->S->eventdata_perm_cat).' '.__('admin').'</label></td> 
     603     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_cat]'),1,$E->S->eventdata_perm_cat).' '.__('admin,categories,eventdata').'</label></td> 
    605604     </tr><tr class="line"> 
    606605     <th class="nowrap">'.__('Manage public page').'</th> 
    607      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_tpl]',0,!$E->S->eventdata_perm_tpl).' '.__('admin').'</label></td> 
    608      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_tpl]',1,$E->S->eventdata_perm_tpl).' '.__('admin,eventdata').'</label></td> 
     606     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_tpl]'),0,!$E->S->eventdata_perm_tpl).' '.__('admin').'</label></td> 
     607     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_tpl]'),1,$E->S->eventdata_perm_tpl).' '.__('admin,eventdata').'</label></td> 
    609608     </tr><tr class="line"> 
    610609     <th class="nowrap">'.__('Manage plugin').'</th> 
    611      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_adm]',0,!$E->S->eventdata_perm_adm).' '.__('admin').'</label></td> 
    612      <td class="nowrap"><label class=" classic">'.form::radio('s[eventdata_perm_adm]',1,$E->S->eventdata_perm_adm).' '.__('admin,eventdata').'</label></td> 
    613      </tr></table></p> 
     610     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_adm]'),0,!$E->S->eventdata_perm_adm).' '.__('admin').'</label></td> 
     611     <td class="nowrap"><label class=" classic">'.form::radio(array('s[eventdata_perm_adm]'),1,$E->S->eventdata_perm_adm).' '.__('admin,eventdata').'</label></td> 
     612     </tr></table> 
    614613     <p>'. 
    615      form::hidden('p','eventdata'). 
    616      form::hidden('t','adm'). 
     614     form::hidden(array('p'),'eventdata'). 
     615     form::hidden(array('t'),'adm'). 
    617616     $core->formNonce().' 
    618617     <input type="submit" name="save[adm]" value="'.__('Save').'" /></p> 
     
    628627 
    629628     echo '<div class="multi-part" id="uninstall" title="'.$tab['uninstall'].'">'; 
    630  
    631      # Move event old table to eventdata new table for plugin version < 0.3.4 
    632      if (!empty($_POST['save']['patch_db'])) { 
    633           try { 
    634                $rs = $core->con->select('SELECT post_id,event_start,event_end,event_type FROM '.$core->prefix.'event '); 
    635                if (!$rs->isEmpty()) 
    636                { 
    637                     $cur_eventdata = $core->con->openCursor($core->prefix.'eventdata'); 
    638                     while ($rs->fetch()) { 
    639                          $cur_eventdata->post_id     = (integer) $rs->post_id; 
    640                          $cur_eventdata->eventdata_start     = (string) $rs->event_start; 
    641                          $cur_eventdata->eventdata_end     = (string) $rs->event_end; 
    642                          $cur_eventdata->eventdata_type     = (string) ($rs->event_type == 'event' ? 'eventdata' : $rs->event_type); 
    643                          $cur_eventdata->insert(); 
    644                     } 
    645                } 
    646           } 
    647           catch (Exception $e) { 
    648                $core->error->add($e->getMessage()); 
    649           } 
    650      } 
    651      if (!empty($_POST['save']['patch_setting'])) { 
    652           try { 
    653                $core->blog->settings->setNameSpace('eventdata'); 
    654                $core->blog->settings->put('eventdata_option_active',$core->blog->settings->event_option_active,'boolean','eventdata plugin enabled',true,false); 
    655                $core->blog->settings->put('eventdata_option_menu',$core->blog->settings->event_option_menu,'boolean','Icon place on admin menu',true,false); 
    656                $core->blog->settings->put('eventdata_option_public',$core->blog->settings->event_option_public,'boolean','eventdata public page enabled',true,false); 
    657                $core->blog->settings->put('eventdata_perm_pst',$core->blog->settings->event_perm_pst,'boolean','Perm to manage events on entries',true,false); 
    658                $core->blog->settings->put('eventdata_perm_cat',$core->blog->settings->event_perm_cat,'boolean','Perm to manage events categories',true,false); 
    659                $core->blog->settings->put('eventdata_perm_tpl',$core->blog->settings->event_perm_tpl,'boolean','Perm to manage events template',true,false); 
    660                $core->blog->settings->put('eventdata_perm_adm',$core->blog->settings->event_perm_adm,'boolean','Perm to manage eventdata plugin',true,false); 
    661                $core->blog->settings->put('eventdata_tpl_title',$core->blog->settings->event_tpl_title,'string','Public page title',true,false); 
    662                $core->blog->settings->put('eventdata_tpl_desc','',$core->blog->settings->event_tpl_desc,'Public page description',true,false); 
    663                $core->blog->settings->put('eventdata_tpl_url',$core->blog->settings->event_tpl_url,'string','Public page default name',true,false); 
    664                $core->blog->settings->put('eventdata_tpl_dis_bhv',$core->blog->settings->event_tpl_dis_bhv,'boolean','Disable public entry behavior',true,false); 
    665                $core->blog->settings->put('eventdata_tpl_theme',$core->blog->settings->event_tpl_theme,'string','Public page template',true,false); 
    666                $core->blog->settings->put('eventdata_tpl_cats',$core->blog->settings->event_tpl_cats,'string','Redirected categories',true,false); 
    667                $core->blog->settings->put('eventdata_no_cats',$core->blog->settings->event_no_cats,'string','Unlisted categories',true,false); 
    668           } 
    669           catch (Exception $e) { 
    670                $core->error->add($e->getMessage()); 
    671           } 
    672      } 
    673      if (!empty($_POST['save']['patch_deldb'])) { 
    674           try {      
    675                $core->con->execute('DELETE FROM '.$core->prefix.'event WHERE event_type = \'event\''); 
    676           } 
    677           catch (Exception $e) { 
    678                $core->error->add($e->getMessage()); 
    679           } 
    680      } 
    681      if (!empty($_POST['save']['patch_delsetting'])) { 
    682           try { 
    683                $set = $core->blog->settings; 
    684                $set->drop('event_option_active'); 
    685                $set->drop('event_option_menu'); 
    686                $set->drop('event_option_public'); 
    687                $set->drop('event_perm_pst'); 
    688                $set->drop('event_perm_cat'); 
    689                $set->drop('event_perm_tpl'); 
    690                $set->drop('event_perm_adm'); 
    691                $set->drop('event_tpl_title'); 
    692                $set->drop('event_tpl_desc'); 
    693                $set->drop('event_tpl_url'); 
    694                $set->drop('event_tpl_dis_bhv'); 
    695                $set->drop('event_tpl_theme'); 
    696                $set->drop('event_tpl_cats'); 
    697                $set->drop('event_no_cats'); 
    698  
    699                $set = new dcSettings($core,null); 
    700                $set->drop('event_option_active'); 
    701                $set->drop('event_option_menu'); 
    702                $set->drop('event_option_public'); 
    703                $set->drop('event_perm_pst'); 
    704                $set->drop('event_perm_cat'); 
    705                $set->drop('event_perm_tpl'); 
    706                $set->drop('event_perm_adm'); 
    707                $set->drop('event_tpl_title'); 
    708                $set->drop('event_tpl_desc'); 
    709                $set->drop('event_tpl_url'); 
    710                $set->drop('event_tpl_dis_bhv'); 
    711                $set->drop('event_tpl_theme'); 
    712                $set->drop('event_tpl_cats'); 
    713                $set->drop('event_no_cats'); 
    714           } 
    715           catch (Exception $e) { 
    716                $core->error->add($e->getMessage()); 
    717           } 
    718      } 
    719629 
    720630     # Save admin options 
     
    760670          <label class=" classic">'.sprintf(($delete_settings ? $img_green : $img_red),'-'). 
    761671               __('Delete plugin settings').'</label><br /> 
    762           </p>'. 
    763           form::hidden('p','eventdata'). 
    764           form::hidden('t','uninstall'). 
    765           form::hidden('s[understand]',$understand). 
    766           form::hidden('s[delete_table]',$delete_table). 
    767           form::hidden('s[delete_templates]',$delete_templates). 
    768           form::hidden('s[delete_settings]',$delete_settings). 
     672          </p> 
     673          <p>'. 
     674          form::hidden(array('p'),'eventdata'). 
     675          form::hidden(array('t'),'uninstall'). 
     676          form::hidden(array('s[understand]'),$understand). 
     677          form::hidden(array('s[delete_table]'),$delete_table). 
     678          form::hidden(array('s[delete_templates]'),$delete_templates). 
     679          form::hidden(array('s[delete_settings]'),$delete_settings). 
    769680          $core->formNonce().' 
    770681          <input type="submit" name="save[validate]" value="'.__('Uninstall').'" /> 
    771           <input type="submit" name="save[back]" value="'.__('Back').'" /> 
     682          <input type="submit" name="save[back]" value="'.__('Back').'" /></p> 
    772683          </form>'; 
    773684 
     
    782693          <h2>'.__('Uninstall "eventdata" plugin').'</h2> 
    783694          <p> 
    784           <label class=" classic">'.form::checkbox('s[understand]',1,$understand). 
     695          <label class=" classic">'.form::checkbox(array('s[understand]'),1,$understand). 
    785696          __('You understand that if you delete this plugin, the other plugins that use there table and class will no longer work.').'</label><br /> 
    786           <label class=" classic">'.form::checkbox('s[delete_table]',1,$delete_table). 
     697          <label class=" classic">'.form::checkbox(array('s[delete_table]'),1,$delete_table). 
    787698          __('Delete plugin database table').'</label><br /> 
    788           <label class=" classic">'.form::checkbox('s[delete_templates]',1,$delete_templates). 
     699          <label class=" classic">'.form::checkbox(array('s[delete_templates]'),1,$delete_templates). 
    789700          __('Delete plugin public templates').'</label><br /> 
    790           <label class=" classic">'.form::checkbox('s[delete_settings]',1,$delete_settings). 
     701          <label class=" classic">'.form::checkbox(array('s[delete_settings]'),1,$delete_settings). 
    791702          __('Delete plugin settings').'</label><br /> 
    792           </p>'. 
     703          </p><p>'. 
    793704          form::hidden('p','eventdata'). 
    794705          form::hidden('t','uninstall'). 
    795706          $core->formNonce().' 
    796           <input type="submit" name="save[uninstall]" value="'.__('Uninstall').'" /> 
    797           </form>'; 
    798            
    799           #path 0.3.4 
    800           echo ' 
    801           <hr /> 
    802           <form method="post" action="'.$E->url.'"> 
    803           <h2>Patch eventdata for version older than 0.3.4</h2>'. 
    804           form::hidden('p','eventdata'). 
    805           form::hidden('t','uninstall'). 
    806           $core->formNonce().' 
    807           <p><input type="submit" name="save[patch_db]" value="Move old db record" /></p>  
    808           <p><input type="submit" name="save[patch_setting]" value="Move old settings" /></p> 
    809           <p><input type="submit" name="save[patch_deldb]" value="Delete old db record" /></p> 
    810           <p><input type="submit" name="save[patch_delsetting]" value="Delete old settings" /></p> 
     707          <input type="submit" name="save[uninstall]" value="'.__('Uninstall').'" /></p> 
    811708          </form>'; 
    812709     } 
     
    841738<a href="http://creativecommons.org/licenses/by/2.5/">http://creativecommons.org/licenses/by/2.5/</a>.</p> 
    842739<br /> 
    843 <p>Traduced with plugin langOmatic,<br />Packaged with plugin Packager.</p> 
     740<p>Traduced with plugin Translater,<br />Packaged with plugin Packager.</p> 
    844741</div> 
    845742'.dcPage::helpBlock('eventdata').' 
  • plugins/eventdata/js/post.js

    r1025 r1211  
    44if(this.post_id==false){var ar_field=this.splitEventdataFields(this.event_field.val(),'[f]');this.new_list.empty();for(var i=0;i<ar_field.length;i++){li=$('<div class="eventdatas-list"></div>');var doit=false;var ar_value=this.splitEventdataFields(ar_field[i],'||');li.append('<span class="eventdata-waiting">'+this.text_status_unsaved+'</span>');for(var j=0;j<ar_value.length;j++){if(ar_value[j]!=''){li.append('<br />').append(ar_value[j]);doit=true;}} 
    55if(doit==true){a_remove=$('<a class="eventdata-action-remove" title="'+this.text_action_remove+'" href="#">[x]</a>');a_remove.get(0).caller=this;a_remove.get(0).new_id=ar_field[i];a_remove.click(function(){this.caller.removeEventdata(this.new_id);return false;});li.prepend(a_remove);this.new_list.append(li);this.new_title.show();}}}else{var This=this;var params={f:'getEventdata',eventdataType:this.type,sortby:'eventdata_start,asc',postId:this.post_id};$.get(this.service_uri,params,function(data){data=$(data);if(data.find('rsp').attr('status')!='ok'){return;} 
    6 This.new_list.empty();data.find('eventdata').each(function(){li=$('<div class="eventdatas-list"></div>');var start=$(this).attr('start');var end=$(this).attr('end');var location=$(this).attr('location');var uri=$(this).attr('serializedURL');var field=start+'||'+end+'||'+location;li.append(start+'<br />'+end+'</br />'+location);li.prepend(' <a class="eventdata-action-edit" title="'+This.text_action_edit+'" href="'+This.url_edit+uri+'">[v]</a>');a_remove=$('<a class="eventdata-action-remove" title="'+This.text_action_remove+'" href="#">[x]</a>');a_remove.get(0).caller=This;a_remove.get(0).new_id=field;a_remove.click(function(){this.caller.removeEventdata(this.new_id);return false;});li.prepend(a_remove);This.new_list.append(li);This.new_title.show();});});}},addEventdataDialog:function(){var This=this;var S=$('<input type="button" title="'+This.text_action_add+'" value="ok" />');S.click(function(){var vs=This.dialog_start.val();var ve=This.dialog_end.val();var vl=This.dialog_location.val();This.addEventdata(vs,ve,vl);return false;});this.target_start.append($('<p></p>').append(this.dialog_start).append(' '));this.target_end.append($('<p></p>').append(this.dialog_end).append(' '));this.target_location.append($('<p></p>').append(this.dialog_location).append(' ').append(S));this.addEventdataDatepickers();},addEventdata:function(str_start,str_end,str_location){var test_str_start=str_start.replace(/^\d\d\d\d-\d\d-\d\d\s\d\d:\d\d$/,'');var test_str_end=str_end.replace(/^\d\d\d\d-\d\d-\d\d\s\d\d:\d\d$/,'');var testb_str_start=str_start.replace(/[-:\s]/g,"");var testb_str_end=str_end.replace(/[-:\s]/g,"");if(test_str_start==''&&test_str_end==''&&testb_str_start<testb_str_end){str=str_start+'||'+str_end+'||'+str_location;if(this.post_id==false){str=this.splitEventdataFields(this.event_field.val()+'[f]'+str);this.event_field.val(str);this.dialog_start.val('');this.dialog_end.val('');this.dialog_location.val('');this.new_list.toggle();this.displayEventdataList();}else{var params={xd_check:dotclear.nonce,f:'setEventdata',postId:this.post_id,eventdataType:this.type,eventdataStart:str_start,eventdataEnd:str_end,eventdataLocation:str_location};var This=this;$.post(this.service_uri,params,function(data){if($(data).find('rsp').attr('status')=='ok'){This.dialog_start.val('');This.dialog_end.val('');This.dialog_location.val('');This.new_list.toggle();This.displayEventdataList();}else{alert($(data).find('message').text());}});}}},removeEventdata:function(event_id){if(this.post_id==false){var field=this.splitEventdataFields(this.event_field.val(),'[f]');for(var i=0;i<field.length;i++){if(field[i]==event_id){field.splice(i,1);break;}} 
     6This.new_list.empty();data.find('eventdata').each(function(){li=$('<div class="eventdatas-list"></div>');var start=$(this).attr('start');var end=$(this).attr('end');var location=$(this).attr('location');var uri=$(this).attr('serializedURL');var field=start+'||'+end+'||'+location;li.append(start+'<br />'+end+'<br />'+location);li.prepend(' <a class="eventdata-action-edit" title="'+This.text_action_edit+'" href="'+This.url_edit+uri+'">[v]</a>');a_remove=$('<a class="eventdata-action-remove" title="'+This.text_action_remove+'" href="#">[x]</a>');a_remove.get(0).caller=This;a_remove.get(0).new_id=field;a_remove.click(function(){this.caller.removeEventdata(this.new_id);return false;});li.prepend(a_remove);This.new_list.append(li);This.new_title.show();});});}},addEventdataDialog:function(){var This=this;var S=$('<input type="button" title="'+This.text_action_add+'" value="ok" />');S.click(function(){var vs=This.dialog_start.val();var ve=This.dialog_end.val();var vl=This.dialog_location.val();This.addEventdata(vs,ve,vl);return false;});this.target_start.append($('<p></p>').append(this.dialog_start).append(' '));this.target_end.append($('<p></p>').append(this.dialog_end).append(' '));this.target_location.append($('<p></p>').append(this.dialog_location).append(' ').append(S));this.addEventdataDatepickers();},addEventdata:function(str_start,str_end,str_location){var test_str_start=str_start.replace(/^\d\d\d\d-\d\d-\d\d\s\d\d:\d\d$/,'');var test_str_end=str_end.replace(/^\d\d\d\d-\d\d-\d\d\s\d\d:\d\d$/,'');var testb_str_start=str_start.replace(/[-:\s]/g,"");var testb_str_end=str_end.replace(/[-:\s]/g,"");if(test_str_start==''&&test_str_end==''&&testb_str_start<testb_str_end){str=str_start+'||'+str_end+'||'+str_location;if(this.post_id==false){str=this.splitEventdataFields(this.event_field.val()+'[f]'+str);this.event_field.val(str);this.dialog_start.val('');this.dialog_end.val('');this.dialog_location.val('');this.new_list.toggle();this.displayEventdataList();}else{var params={xd_check:dotclear.nonce,f:'setEventdata',postId:this.post_id,eventdataType:this.type,eventdataStart:str_start,eventdataEnd:str_end,eventdataLocation:str_location};var This=this;$.post(this.service_uri,params,function(data){if($(data).find('rsp').attr('status')=='ok'){This.dialog_start.val('');This.dialog_end.val('');This.dialog_location.val('');This.new_list.toggle();This.displayEventdataList();}else{alert($(data).find('message').text());}});}}},removeEventdata:function(event_id){if(this.post_id==false){var field=this.splitEventdataFields(this.event_field.val(),'[f]');for(var i=0;i<field.length;i++){if(field[i]==event_id){field.splice(i,1);break;}} 
    77this.event_field.val(field.join('[f]'));this.displayEventdataList();}else{var text_confirm_msg=this.text_confirm_remove.replace(/%s/,this.type);if(window.confirm(text_confirm_msg)){var This=this;var field=This.splitEventdataFields(event_id,'||');if(field[0]==''){var params={xd_check:dotclear.nonce,f:'delEventdata',postId:this.post_id,eventdataStart:field[1],eventdataEnd:field[2],eventdataType:this.type};}else{var params={xd_check:dotclear.nonce,f:'delEventdata',postId:this.post_id,eventdataStart:field[0],eventdataEnd:field[1],eventdataLocation:field[2],eventdataType:this.type};} 
    88$.post(this.service_uri,params,function(data){if($(data).find('rsp').attr('status')=='ok'){This.displayEventdataList();}else{alert($(data).find('message').text());}});}}},splitEventdataFields:function(str,splitter){function inArray(needle,stack){for(var i=0;i<stack.length;i++){if(stack[i]==needle){return true;}} 
  • plugins/eventdata/locales/fr/main.lang.php

    r1029 r1211  
    11<?php 
    2 // Language: français, Module: eventdata 
    3 // File made by l10nEditor. 
    4  
    5 # _admin.php:27 
    6 # _public.php:17 
    7 # _widgets.php:26 
    8 # _widgets.php:30 
    9 # index.php:244 
    10 # index.php:249 
    11 $GLOBALS['__l10n']['Events']='Événements'; 
    12  
    13 # _admin.php:33 
    14 $GLOBALS['__l10n']['manage events']='gérer les événements'; 
    15  
    16 # _admin.php:76 
    17 $GLOBALS['__l10n']['Are you sure you want to remove this event?']='Êtes vous sure de vouloir effacer cet événement'; 
    18  
    19 # _admin.php:77 
    20 $GLOBALS['__l10n']['Edit this event']='Éditer cet événement'; 
    21  
    22 # _admin.php:78 
    23 $GLOBALS['__l10n']['Delete this event']='Effacer cet événement'; 
    24  
    25 # _admin.php:79 
    26 $GLOBALS['__l10n']['Add this event']='Ajouter cet événement'; 
    27  
    28 # _admin.php:80 
    29 # _widgets.php:168 
    30 $GLOBALS['__l10n']['Linked events']='Événements liés'; 
    31  
    32 # _admin.php:124 
    33 # _admin.php:316 
    34 $GLOBALS['__l10n']['Add event']='Ajouter un événement'; 
    35  
    36 # _admin.php:126 
    37 # _admin.php:319 
    38 # index.php:367 
    39 $GLOBALS['__l10n']['Event start:']='Début d\'événement :'; 
    40  
    41 # _admin.php:128 
    42 # _admin.php:321 
    43 # index.php:369 
    44 $GLOBALS['__l10n']['Event end:']='Fin d\'événement :'; 
    45  
    46 # _admin.php:130 
    47 # _admin.php:323 
    48 # index.php:371 
    49 $GLOBALS['__l10n']['Event location:']='Lieu de l\'événement :'; 
    50  
    51 # _admin.php:142 
    52 $GLOBALS['__l10n']['Linked events:']='Événements liés :'; 
    53  
    54 # _admin.php:148 
    55 $GLOBALS['__l10n']['Check to delete']='Cocher pour supprimer'; 
    56  
    57 # _admin.php:255 
    58 # index.php:77 
    59 $GLOBALS['__l10n']['add event']='ajouter un événement'; 
    60  
    61 # _admin.php:256 
    62 # index.php:74 
    63 $GLOBALS['__l10n']['remove events']='supprimer les événements'; 
    64  
    65 # _public.php:16 
    66 $GLOBALS['__l10n']['Event']='Événement'; 
    67  
    68 # _public.php:18 
    69 $GLOBALS['__l10n']['Dates of events']='Dates d\'événements'; 
    70  
    71 # _public.php:20 
    72 # _public.php:329 
    73 # inc/lib.eventdata.list.php:141 
    74 $GLOBALS['__l10n']['ongoing']='en cours'; 
    75  
    76 # _public.php:21 
    77 $GLOBALS['__l10n']['outgoing']='pas en cours'; 
    78  
    79 # _public.php:22 
    80 $GLOBALS['__l10n']['notstarted']='non débuté'; 
    81  
    82 # _public.php:24 
    83 $GLOBALS['__l10n']['started']='débuté'; 
    84  
    85 # _public.php:25 
    86 $GLOBALS['__l10n']['notfinished']='non terminé'; 
    87  
    88 # _public.php:26 
    89 # _public.php:331 
    90 # inc/lib.eventdata.list.php:139 
    91 $GLOBALS['__l10n']['finished']='terminé'; 
    92  
    93 # _public.php:27 
    94 # _public.php:256 
    95 # _widgets.php:75 
    96 # _widgets.php:176 
    97 $GLOBALS['__l10n']['From %S to %E']='Du %S au %E'; 
    98  
    99 # _public.php:383 
    100 $GLOBALS['__l10n']['All']='Tous'; 
    101  
    102 # _public.php:384 
    103 # _widgets.php:65 
    104 # index.php:154 
    105 $GLOBALS['__l10n']['Ongoing']='En cours'; 
    106  
    107 # _public.php:385 
    108 # _widgets.php:66 
    109 # index.php:155 
    110 $GLOBALS['__l10n']['Outgoing']='Pas en cours'; 
    111  
    112 # _public.php:386 
    113 # _widgets.php:61 
    114 # index.php:150 
    115 $GLOBALS['__l10n']['Not started']='Non débuté'; 
    116  
    117 # _public.php:387 
    118 $GLOBALS['__l10n']['Scheduled']='Programmé'; 
    119  
    120 # _public.php:388 
    121 # _widgets.php:62 
    122 # index.php:151 
    123 $GLOBALS['__l10n']['Started']='Débuté'; 
    124  
    125 # _public.php:389 
    126 # _widgets.php:64 
    127 # index.php:153 
    128 $GLOBALS['__l10n']['Not finished']='Non fini'; 
    129  
    130 # _public.php:390 
    131 # _widgets.php:63 
    132 # index.php:152 
    133 $GLOBALS['__l10n']['Finished']='Fini'; 
    134  
    135 # _widgets.php:50 
    136 # index.php:131 
    137 $GLOBALS['__l10n']['Event start']='Début d\'événement'; 
    138  
    139 # _widgets.php:51 
    140 # index.php:132 
    141 $GLOBALS['__l10n']['Event end']='Fin d\'événement'; 
    142  
    143 # _widgets.php:57 
    144 $GLOBALS['__l10n']['Selected entries only']='Billets sélectionnés seulement'; 
    145  
    146 # _widgets.php:59 
    147 # index.php:338 
    148 $GLOBALS['__l10n']['Period:']='Période :'; 
    149  
    150 # _widgets.php:68 
    151 # _widgets.php:172 
    152 $GLOBALS['__l10n']['Date format of items:']='Format de date des billets :'; 
    153  
    154 # _widgets.php:71 
    155 # _widgets.php:175 
    156 $GLOBALS['__l10n']['Text format of items:']='Format du texte des billets :'; 
    157  
    158 # _widgets.php:74 
    159 $GLOBALS['__l10n']['Mouseover format of items:']='Format de texte de surbrillance des billets :'; 
    160  
    161 # _widgets.php:164 
    162 $GLOBALS['__l10n']['Post Events']='Événements d\'un billet'; 
    163  
    164 # inc/class.eventdata.php:63 
    165 $GLOBALS['__l10n']['%s days']='%s jours'; 
    166  
    167 # inc/class.eventdata.php:64 
    168 $GLOBALS['__l10n']['one day']='une journée'; 
    169  
    170 # inc/class.eventdata.php:65 
    171 $GLOBALS['__l10n']['%s hours']='%s heures'; 
    172  
    173 # inc/class.eventdata.php:66 
    174 $GLOBALS['__l10n']['one hour']='une heure'; 
    175  
    176 # inc/class.eventdata.php:67 
    177 $GLOBALS['__l10n']['%s minutes']='% minutes'; 
    178  
    179 # inc/class.eventdata.php:68 
    180 $GLOBALS['__l10n']['one minute']='une minute'; 
    181  
    182 # inc/class.eventdata.php:69 
    183 $GLOBALS['__l10n']['instantaneous']='instantané'; 
    184  
    185 # inc/lib.eventdata.list.php:94 
    186 $GLOBALS['__l10n']['Edit']='Modifier'; 
    187  
    188 # inc/lib.eventdata.list.php:95 
    189 $GLOBALS['__l10n']['Start']='Début'; 
    190  
    191 # inc/lib.eventdata.list.php:96 
    192 $GLOBALS['__l10n']['End']='Fin'; 
    193  
    194 # inc/lib.eventdata.list.php:97 
    195 $GLOBALS['__l10n']['Location']='Lieu'; 
    196  
    197 # inc/lib.eventdata.list.php:98 
    198 $GLOBALS['__l10n']['Period']='Période'; 
    199  
    200 # inc/lib.eventdata.list.php:150 
    201 # index.php:363 
    202 $GLOBALS['__l10n']['Edit this event for all entries']='Modifier cet événement pour tous les billets'; 
    203  
    204 # inc/lib.eventdata.list.php:154 
    205 # index.php:362 
    206 $GLOBALS['__l10n']['Edit this event for this entry']='Modifier cet événement pour ce billet'; 
    207  
    208 # inc/lib.eventdata.list.php:158 
    209 $GLOBALS['__l10n']['Delete this event for this entry']='Effacer cet événement pour ce billet'; 
    210  
    211 # index.php:21 
    212 $GLOBALS['__l10n']['Configuration saved']='Configuration enregistrée'; 
    213  
    214 # index.php:28 
    215 # index.php:823 
    216 $GLOBALS['__l10n']['About']='À propos'; 
    217  
    218 # index.php:31 
    219 $GLOBALS['__l10n']['Templates']='Modèles'; 
    220  
    221 # index.php:32 
    222 $GLOBALS['__l10n']['Administration']='Administration'; 
    223  
    224 # index.php:33 
    225 # index.php:770 
    226 # index.php:796 
    227 $GLOBALS['__l10n']['Uninstall']='Désinstaller'; 
    228  
    229 # index.php:109 
    230 $GLOBALS['__l10n']['Mark as reordered']='Marquer comme réordonné'; 
    231  
    232 # index.php:110 
    233 $GLOBALS['__l10n']['Mark as not reordered']='Marquer comme non réordonné'; 
    234  
    235 # index.php:111 
    236 $GLOBALS['__l10n']['Mark as unlisted']='Marquer comme caché'; 
    237  
    238 # index.php:112 
    239 $GLOBALS['__l10n']['Mark as listed']='Marque comme non caché'; 
    240  
    241 # index.php:133 
    242 $GLOBALS['__l10n']['Event location']='Lieu d\'événement'; 
    243  
    244 # index.php:161 
    245 $GLOBALS['__l10n']['Current blog theme']='Thème courant du blog'; 
    246  
    247 # index.php:320 
    248 $GLOBALS['__l10n']['This is the list of all entries with event']='Ceci est la liste de tous les billets ayant un événement'; 
    249  
    250 # index.php:353 
    251 $GLOBALS['__l10n']['Back to list of all events']='Retour à la liste des événements'; 
    252  
    253 # index.php:378 
    254 $GLOBALS['__l10n']['Are you sure you want to delete this event']='Êtes vous sure de vouloir effacer cet événement'; 
    255  
    256 # index.php:453 
    257 $GLOBALS['__l10n']['This is a list of all the categories that can be rearranged by dates of events']='Ceci est la liste de toutes les catégories qui peuvent être réordonnées par dates d\'événements'; 
    258  
    259 # index.php:457 
    260 $GLOBALS['__l10n']['Id']='Id'; 
    261  
    262 # index.php:458 
    263 $GLOBALS['__l10n']['Level']='Niveau'; 
    264  
    265 # index.php:460 
    266 # index.php:473 
    267 $GLOBALS['__l10n']['Reordered']='Réordonné'; 
    268  
    269 # index.php:461 
    270 # index.php:476 
    271 $GLOBALS['__l10n']['Unlisted']='Caché'; 
    272  
    273 # index.php:473 
    274 # index.php:476 
    275 $GLOBALS['__l10n']['Normal']='Normal'; 
    276  
    277 # index.php:484 
    278 $GLOBALS['__l10n']['Selected categories action:']='Action sur les catégories sélectionnées :'; 
    279  
    280 # index.php:517 
    281 $GLOBALS['__l10n']['This is the management of the public page']='Ceci est la gestion de la page publique'; 
    282  
    283 # index.php:518 
    284 $GLOBALS['__l10n']['Public page is disable']='La page publique est inactive'; 
    285  
    286 # index.php:529 
    287 $GLOBALS['__l10n']['Theme']='Thème'; 
    288  
    289 # index.php:531 
    290 $GLOBALS['__l10n']['Current blog theme:']='Thème courant du blog :'; 
    291  
    292 # index.php:532 
    293 $GLOBALS['__l10n']['Adapted template exists:']='Existence du modèle adapté :'; 
    294  
    295 # index.php:533 
    296 $GLOBALS['__l10n']['Template on current theme exists:']='Existence du modèle dans le thème courant :'; 
    297  
    298 # index.php:534 
    299 $GLOBALS['__l10n']['Alternate template:']='Modèle alternatif :'; 
    300  
    301 # index.php:535 
    302 $GLOBALS['__l10n']['Public URL:']='Lien publique :'; 
    303  
    304 # index.php:538 
    305 $GLOBALS['__l10n']['URL prefix:']='Préfixe du lien :'; 
    306  
    307 # index.php:542 
    308 $GLOBALS['__l10n']['Choose predefined page template in case where theme of blog does not have it']='Choisissez un modèle prédéfini au cas où le thème du blog n\'en aurait pas'; 
    309  
    310 # index.php:546 
    311 $GLOBALS['__l10n']['Disable list of dates of event on an entry']='Désactiver la liste des dates d\'événements d\'un billet'; 
    312  
    313 # index.php:578 
    314 $GLOBALS['__l10n']['Plugin admistration options on this blog']='Administration de l\'extension sur ce blog'; 
    315  
    316 # index.php:583 
    317 $GLOBALS['__l10n']['Enable plugin']='Activer l\'extension'; 
    318  
    319 # index.php:587 
    320 $GLOBALS['__l10n']['Plugin icon in Blog menu']='Icone de l\'extension dans le menu Blog'; 
    321  
    322 # index.php:591 
    323 $GLOBALS['__l10n']['Enable public page']='Activer la page publique'; 
    324  
    325 # index.php:598 
    326 $GLOBALS['__l10n']['Manage events dates on entries']='Gèrer les dates des billets'; 
    327  
    328 # index.php:602 
    329 $GLOBALS['__l10n']['Manage list of reordered categories']='Gérer la liste des catégories réordonnées'; 
    330  
    331 # index.php:606 
    332 $GLOBALS['__l10n']['Manage public page']='Gérer la page publique'; 
    333  
    334 # index.php:610 
    335 $GLOBALS['__l10n']['Manage plugin']='Gérer l\'extension'; 
    336  
    337 # index.php:724 
    338 # index.php:777 
    339 $GLOBALS['__l10n']['You must check warning in order to delete plugin.']='Vous devez vérifier la mise en garde en vue de supprimer l\'extension'; 
    340  
    341 # index.php:748 
    342 # index.php:780 
    343 $GLOBALS['__l10n']['In order to properly uninstall this plugin, you must specify the actions to perform']='Dans le but de désintaller proprement l\'extension, vous devez spécifier les actions à effectuer'; 
    344  
    345 # index.php:750 
    346 $GLOBALS['__l10n']['Validate']='Valider'; 
    347  
    348 # index.php:753 
    349 # index.php:785 
    350 $GLOBALS['__l10n']['You understand that if you delete this plugin, the other plugins that use there table and class will no longer work.']='Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces table et classes ne fonctionneront plus.'; 
    351  
    352 # index.php:755 
    353 $GLOBALS['__l10n']['Delete plugin files']='Supprimer les fichiers de l\'extension'; 
    354  
    355 # index.php:757 
    356 # index.php:787 
    357 $GLOBALS['__l10n']['Delete plugin database table']='Supprimer la table de l\'extension dans la base de donnée'; 
    358  
    359 # index.php:759 
    360 # index.php:789 
    361 $GLOBALS['__l10n']['Delete plugin public templates']='Suprimer les modèles de l\'extension'; 
    362  
    363 # index.php:761 
    364 # index.php:791 
    365 $GLOBALS['__l10n']['Delete plugin settings']='Supprimer les paramètres de l\'extension'; 
    366  
    367 # index.php:824 
    368 $GLOBALS['__l10n']['Version:']='Version :'; 
    369  
    370 # index.php:826 
    371 $GLOBALS['__l10n']['Support:']='Support :'; 
    372  
    373 # index.php:832 
    374 $GLOBALS['__l10n']['Copyrights:']='Droits :'; 
     2// Language: français  
     3// Module: eventdata - 0.5.4 
     4// Date: 2009-06-15 11:58:25  
     5// Author: JC Denis, http://blog.jcdenis.com 
     6// Translated with dcTranslater - 0.2.4  
     7 
     8#index.php:249 
     9$GLOBALS['__l10n']['Events'] = 'Événements'; 
     10 
     11#_admin.php:33 
     12$GLOBALS['__l10n']['manage events'] = 'gérer les événements'; 
     13 
     14#_admin.php:76 
     15$GLOBALS['__l10n']['Are you sure you want to remove this event?'] = 'Êtes vous sure de vouloir effacer cet événement'; 
     16 
     17#_admin.php:77 
     18$GLOBALS['__l10n']['Edit this event'] = 'Éditer cet événement'; 
     19 
     20#_admin.php:78 
     21$GLOBALS['__l10n']['Delete this event'] = 'Effacer cet événement'; 
     22 
     23#_admin.php:79 
     24$GLOBALS['__l10n']['Add this event'] = 'Ajouter cet événement'; 
     25 
     26#_widgets.php:168 
     27$GLOBALS['__l10n']['Linked events'] = 'Événements liés'; 
     28 
     29#_admin.php:314 
     30$GLOBALS['__l10n']['Add event'] = 'Ajouter un événement'; 
     31 
     32#index.php:367 
     33$GLOBALS['__l10n']['Event start:'] = 'Début d\'événement :'; 
     34 
     35#index.php:369 
     36$GLOBALS['__l10n']['Event end:'] = 'Fin d\'événement :'; 
     37 
     38#index.php:371 
     39$GLOBALS['__l10n']['Event location:'] = 'Lieu de l\'événement :'; 
     40 
     41#_admin.php:140 
     42$GLOBALS['__l10n']['Linked events:'] = 'Événements liés :'; 
     43 
     44#_admin.php:146 
     45$GLOBALS['__l10n']['Check to delete'] = 'Cocher pour supprimer'; 
     46 
     47#index.php:77 
     48$GLOBALS['__l10n']['add event'] = 'ajouter un événement'; 
     49 
     50#index.php:74 
     51$GLOBALS['__l10n']['remove events'] = 'supprimer les événements'; 
     52 
     53#_public.php:16 
     54$GLOBALS['__l10n']['Event'] = 'Événement'; 
     55 
     56#_public.php:18 
     57$GLOBALS['__l10n']['Dates of events'] = 'Dates d\'événements'; 
     58 
     59#inc/lib.eventdata.list.php:141 
     60$GLOBALS['__l10n']['ongoing'] = 'en cours'; 
     61 
     62#_public.php:21 
     63$GLOBALS['__l10n']['outgoing'] = 'pas en cours'; 
     64 
     65#_public.php:22 
     66$GLOBALS['__l10n']['notstarted'] = 'non débuté'; 
     67 
     68#_public.php:24 
     69$GLOBALS['__l10n']['started'] = 'débuté'; 
     70 
     71#_public.php:25 
     72$GLOBALS['__l10n']['notfinished'] = 'non terminé'; 
     73 
     74#inc/lib.eventdata.list.php:139 
     75$GLOBALS['__l10n']['finished'] = 'terminé'; 
     76 
     77#_widgets.php:176 
     78$GLOBALS['__l10n']['From %S to %E'] = 'Du %S au %E'; 
     79 
     80#_public.php:383 
     81$GLOBALS['__l10n']['All'] = 'Tous'; 
     82 
     83#index.php:154 
     84$GLOBALS['__l10n']['Ongoing'] = 'En cours'; 
     85 
     86#index.php:155 
     87$GLOBALS['__l10n']['Outgoing'] = 'Pas en cours'; 
     88 
     89#index.php:150 
     90$GLOBALS['__l10n']['Not started'] = 'Non débuté'; 
     91 
     92#_public.php:387 
     93$GLOBALS['__l10n']['Scheduled'] = 'Programmé'; 
     94 
     95#index.php:151 
     96$GLOBALS['__l10n']['Started'] = 'Débuté'; 
     97 
     98#index.php:153 
     99$GLOBALS['__l10n']['Not finished'] = 'Non fini'; 
     100 
     101#index.php:152 
     102$GLOBALS['__l10n']['Finished'] = 'Fini'; 
     103 
     104#index.php:131 
     105$GLOBALS['__l10n']['Event start'] = 'Début d\'événement'; 
     106 
     107#index.php:132 
     108$GLOBALS['__l10n']['Event end'] = 'Fin d\'événement'; 
     109 
     110#_widgets.php:57 
     111$GLOBALS['__l10n']['Selected entries only'] = 'Billets sélectionnés seulement'; 
     112 
     113#index.php:338 
     114$GLOBALS['__l10n']['Period:'] = 'Période :'; 
     115 
     116#_widgets.php:172 
     117$GLOBALS['__l10n']['Date format of items:'] = 'Format de date des billets :'; 
     118 
     119#_widgets.php:175 
     120$GLOBALS['__l10n']['Text format of items:'] = 'Format du texte des billets :'; 
     121 
     122#_widgets.php:74 
     123$GLOBALS['__l10n']['Mouseover format of items:'] = 'Format de texte de surbrillance des billets :'; 
     124 
     125#_widgets.php:164 
     126$GLOBALS['__l10n']['Post Events'] = 'Événements d\'un billet'; 
     127 
     128#inc/class.eventdata.php:63 
     129$GLOBALS['__l10n']['%s days'] = '%s jours'; 
     130 
     131#inc/class.eventdata.php:64 
     132$GLOBALS['__l10n']['one day'] = 'une journée'; 
     133 
     134#inc/class.eventdata.php:65 
     135$GLOBALS['__l10n']['%s hours'] = '%s heures'; 
     136 
     137#inc/class.eventdata.php:66 
     138$GLOBALS['__l10n']['one hour'] = 'une heure'; 
     139 
     140#inc/class.eventdata.php:67 
     141$GLOBALS['__l10n']['%s minutes'] = '%s minutes'; 
     142 
     143#inc/class.eventdata.php:68 
     144$GLOBALS['__l10n']['one minute'] = 'une minute'; 
     145 
     146#inc/class.eventdata.php:69 
     147$GLOBALS['__l10n']['instantaneous'] = 'instantané'; 
     148 
     149#inc/lib.eventdata.list.php:94 
     150$GLOBALS['__l10n']['Edit'] = 'Modifier'; 
     151 
     152#inc/lib.eventdata.list.php:95 
     153$GLOBALS['__l10n']['Start'] = 'Début'; 
     154 
     155#inc/lib.eventdata.list.php:96 
     156$GLOBALS['__l10n']['End'] = 'Fin'; 
     157 
     158#inc/lib.eventdata.list.php:97 
     159$GLOBALS['__l10n']['Location'] = 'Lieu'; 
     160 
     161#inc/lib.eventdata.list.php:98 
     162$GLOBALS['__l10n']['Period'] = 'Période'; 
     163 
     164#index.php:363 
     165$GLOBALS['__l10n']['Edit this event for all entries'] = 'Modifier cet événement pour tous les billets'; 
     166 
     167#index.php:362 
     168$GLOBALS['__l10n']['Edit this event for this entry'] = 'Modifier cet événement pour ce billet'; 
     169 
     170#inc/lib.eventdata.list.php:158 
     171$GLOBALS['__l10n']['Delete this event for this entry'] = 'Effacer cet événement pour ce billet'; 
     172 
     173#index.php:21 
     174$GLOBALS['__l10n']['Configuration saved'] = 'Configuration enregistrée'; 
     175 
     176#index.php:823 
     177$GLOBALS['__l10n']['About'] = 'À propos'; 
     178 
     179#index.php:31 
     180$GLOBALS['__l10n']['Templates'] = 'Modèles'; 
     181 
     182#index.php:32 
     183$GLOBALS['__l10n']['Administration'] = 'Administration'; 
     184 
     185#index.php:796 
     186$GLOBALS['__l10n']['Uninstall'] = 'Désinstaller'; 
     187 
     188#index.php:109 
     189$GLOBALS['__l10n']['Mark as reordered'] = 'Marquer comme réordonné'; 
     190 
     191#index.php:110 
     192$GLOBALS['__l10n']['Mark as not reordered'] = 'Marquer comme non réordonné'; 
     193 
     194#index.php:111 
     195$GLOBALS['__l10n']['Mark as unlisted'] = 'Marquer comme caché'; 
     196 
     197#index.php:112 
     198$GLOBALS['__l10n']['Mark as listed'] = 'Marque comme non caché'; 
     199 
     200#index.php:133 
     201$GLOBALS['__l10n']['Event location'] = 'Lieu d\'événement'; 
     202 
     203#index.php:161 
     204$GLOBALS['__l10n']['Current blog theme'] = 'Thème courant du blog'; 
     205 
     206#index.php:320 
     207$GLOBALS['__l10n']['This is the list of all entries with event'] = 'Ceci est la liste de tous les billets ayant un événement'; 
     208 
     209#index.php:353 
     210$GLOBALS['__l10n']['Back to list of all events'] = 'Retour à la liste des événements'; 
     211 
     212#index.php:378 
     213$GLOBALS['__l10n']['Are you sure you want to delete this event'] = 'Êtes vous sure de vouloir effacer cet événement'; 
     214 
     215#index.php:453 
     216$GLOBALS['__l10n']['This is a list of all the categories that can be rearranged by dates of events'] = 'Ceci est la liste de toutes les catégories qui peuvent être réordonnées par dates d\'événements'; 
     217 
     218#index.php:457 
     219$GLOBALS['__l10n']['Id'] = 'Id'; 
     220 
     221#index.php:458 
     222$GLOBALS['__l10n']['Level'] = 'Niveau'; 
     223 
     224#index.php:473 
     225$GLOBALS['__l10n']['Reordered'] = 'Réordonné'; 
     226 
     227#index.php:476 
     228$GLOBALS['__l10n']['Unlisted'] = 'Caché'; 
     229 
     230#index.php:476 
     231$GLOBALS['__l10n']['Normal'] = 'Normal'; 
     232 
     233#index.php:484 
     234$GLOBALS['__l10n']['Selected categories action:'] = 'Action sur les catégories sélectionnées :'; 
     235 
     236#index.php:517 
     237$GLOBALS['__l10n']['This is the management of the public page'] = 'Ceci est la gestion de la page publique'; 
     238 
     239#index.php:518 
     240$GLOBALS['__l10n']['Public page is disable'] = 'La page publique est inactive'; 
     241 
     242#index.php:529 
     243$GLOBALS['__l10n']['Theme'] = 'Thème'; 
     244 
     245#index.php:531 
     246$GLOBALS['__l10n']['Current blog theme:'] = 'Thème courant du blog :'; 
     247 
     248#index.php:532 
     249$GLOBALS['__l10n']['Adapted template exists:'] = 'Existence du modèle adapté :'; 
     250 
     251#index.php:533 
     252$GLOBALS['__l10n']['Template on current theme exists:'] = 'Existence du modèle dans le thème courant :'; 
     253 
     254#index.php:534 
     255$GLOBALS['__l10n']['Alternate template:'] = 'Modèle alternatif :'; 
     256 
     257#index.php:535 
     258$GLOBALS['__l10n']['Public URL:'] = 'Lien publique :'; 
     259 
     260#index.php:538 
     261$GLOBALS['__l10n']['URL prefix:'] = 'Préfixe du lien :'; 
     262 
     263#index.php:542 
     264$GLOBALS['__l10n']['Choose predefined page template in case where theme of blog does not have it'] = 'Choisissez un modèle prédéfini au cas où le thème du blog n\'en aurait pas'; 
     265 
     266#index.php:546 
     267$GLOBALS['__l10n']['Disable list of dates of event on an entry'] = 'Désactiver la liste des dates d\'événements d\'un billet'; 
     268 
     269#index.php:579 
     270$GLOBALS['__l10n']['Plugin admistration options on this blog'] = 'Administration de l\'extension sur ce blog'; 
     271 
     272#index.php:583 
     273$GLOBALS['__l10n']['Enable plugin'] = 'Activer l\'extension'; 
     274 
     275#index.php:587 
     276$GLOBALS['__l10n']['Plugin icon in Blog menu'] = 'Icone de l\'extension dans le menu Blog'; 
     277 
     278#index.php:591 
     279$GLOBALS['__l10n']['Enable public page'] = 'Activer la page publique'; 
     280 
     281#index.php:597 
     282$GLOBALS['__l10n']['Manage events dates on entries'] = 'Gèrer les dates des billets'; 
     283 
     284#index.php:601 
     285$GLOBALS['__l10n']['Manage list of reordered categories'] = 'Gérer la liste des catégories réordonnées'; 
     286 
     287#index.php:605 
     288$GLOBALS['__l10n']['Manage public page'] = 'Gérer la page publique'; 
     289 
     290#index.php:609 
     291$GLOBALS['__l10n']['Manage plugin'] = 'Gérer l\'extension'; 
     292 
     293#index.php:777 
     294$GLOBALS['__l10n']['You must check warning in order to delete plugin.'] = 'Vous devez vérifier la mise en garde en vue de supprimer l\'extension'; 
     295 
     296#index.php:780 
     297$GLOBALS['__l10n']['In order to properly uninstall this plugin, you must specify the actions to perform'] = 'Dans le but de désintaller proprement l\'extension, vous devez spécifier les actions à effectuer'; 
     298 
     299#index.php:749 
     300$GLOBALS['__l10n']['Validate'] = 'Valider'; 
     301 
     302#index.php:785 
     303$GLOBALS['__l10n']['You understand that if you delete this plugin, the other plugins that use there table and class will no longer work.'] = 'Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces table et classes ne fonctionneront plus.'; 
     304 
     305#index.php:754 
     306$GLOBALS['__l10n']['Delete plugin files'] = 'Supprimer les fichiers de l\'extension'; 
     307 
     308#index.php:787 
     309$GLOBALS['__l10n']['Delete plugin database table'] = 'Supprimer la table de l\'extension dans la base de donnée'; 
     310 
     311#index.php:789 
     312$GLOBALS['__l10n']['Delete plugin public templates'] = 'Suprimer les modèles de l\'extension'; 
     313 
     314#index.php:791 
     315$GLOBALS['__l10n']['Delete plugin settings'] = 'Supprimer les paramètres de l\'extension'; 
     316 
     317#index.php:824 
     318$GLOBALS['__l10n']['Version:'] = 'Version :'; 
     319 
     320#index.php:826 
     321$GLOBALS['__l10n']['Support:'] = 'Support :'; 
     322 
     323#index.php:832 
     324$GLOBALS['__l10n']['Copyrights:'] = 'Droits :'; 
    375325 
    376326?> 
  • plugins/eventdata/locales/fr/main.po

    r1029 r1211  
    1 # Language: français, Module: eventdata 
    2 # File made by l10nEditor. 
     1# Language: français 
     2# Module: eventdata - 0.5.4 
     3# Date: 2009-06-15 11:58:26 
     4# Author: JC Denis, http://blog.jcdenis.com 
     5# Translated with dcTranslater - 0.2.4 
    36 
    47msgid "" 
    58msgstr "Content-Type: text/plain; charset=UTF-8\n" 
    69 
    7 #: _admin.php:27 
    8 #: _public.php:17 
    9 #: _widgets.php:26 
    10 #: _widgets.php:30 
    11 #: index.php:244 
    1210#: index.php:249 
    1311msgid "Events" 
     
    3432msgstr "Ajouter cet événement" 
    3533 
    36 #: _admin.php:80 
    3734#: _widgets.php:168 
    3835msgid "Linked events" 
    3936msgstr "Événements liés" 
    4037 
    41 #: _admin.php:124 
    42 #: _admin.php:316 
     38#: _admin.php:314 
    4339msgid "Add event" 
    4440msgstr "Ajouter un événement" 
    4541 
    46 #: _admin.php:126 
    47 #: _admin.php:319 
    4842#: index.php:367 
    4943msgid "Event start:" 
    5044msgstr "Début d'événement :" 
    5145 
    52 #: _admin.php:128 
    53 #: _admin.php:321 
    5446#: index.php:369 
    5547msgid "Event end:" 
    5648msgstr "Fin d'événement :" 
    5749 
    58 #: _admin.php:130 
    59 #: _admin.php:323 
    6050#: index.php:371 
    6151msgid "Event location:" 
    6252msgstr "Lieu de l'événement :" 
    6353 
    64 #: _admin.php:142 
     54#: _admin.php:140 
    6555msgid "Linked events:" 
    6656msgstr "Événements liés :" 
    6757 
    68 #: _admin.php:148 
     58#: _admin.php:146 
    6959msgid "Check to delete" 
    7060msgstr "Cocher pour supprimer" 
    7161 
    72 #: _admin.php:255 
    7362#: index.php:77 
    7463msgid "add event" 
    7564msgstr "ajouter un événement" 
    7665 
    77 #: _admin.php:256 
    7866#: index.php:74 
    7967msgid "remove events" 
     
    8876msgstr "Dates d'événements" 
    8977 
    90 #: _public.php:20 
    91 #: _public.php:329 
    9278#: inc/lib.eventdata.list.php:141 
    9379msgid "ongoing" 
     
    11096msgstr "non terminé" 
    11197 
    112 #: _public.php:26 
    113 #: _public.php:331 
    11498#: inc/lib.eventdata.list.php:139 
    11599msgid "finished" 
    116100msgstr "terminé" 
    117101 
    118 #: _public.php:27 
    119 #: _public.php:256 
    120 #: _widgets.php:75 
    121102#: _widgets.php:176 
    122103msgid "From %S to %E" 
     
    127108msgstr "Tous" 
    128109 
    129 #: _public.php:384 
    130 #: _widgets.php:65 
    131110#: index.php:154 
    132111msgid "Ongoing" 
    133112msgstr "En cours" 
    134113 
    135 #: _public.php:385 
    136 #: _widgets.php:66 
    137114#: index.php:155 
    138115msgid "Outgoing" 
    139116msgstr "Pas en cours" 
    140117 
    141 #: _public.php:386 
    142 #: _widgets.php:61 
    143118#: index.php:150 
    144119msgid "Not started" 
     
    149124msgstr "Programmé" 
    150125 
    151 #: _public.php:388 
    152 #: _widgets.php:62 
    153126#: index.php:151 
    154127msgid "Started" 
    155128msgstr "Débuté" 
    156129 
    157 #: _public.php:389 
    158 #: _widgets.php:64 
    159130#: index.php:153 
    160131msgid "Not finished" 
    161132msgstr "Non fini" 
    162133 
    163 #: _public.php:390 
    164 #: _widgets.php:63 
    165134#: index.php:152 
    166135msgid "Finished" 
    167136msgstr "Fini" 
    168137 
    169 #: _widgets.php:50 
    170138#: index.php:131 
    171139msgid "Event start" 
    172140msgstr "Début d'événement" 
    173141 
    174 #: _widgets.php:51 
    175142#: index.php:132 
    176143msgid "Event end" 
     
    181148msgstr "Billets sélectionnés seulement" 
    182149 
    183 #: _widgets.php:59 
    184150#: index.php:338 
    185151msgid "Period:" 
    186152msgstr "Période :" 
    187153 
    188 #: _widgets.php:68 
    189154#: _widgets.php:172 
    190155msgid "Date format of items:" 
    191156msgstr "Format de date des billets :" 
    192157 
    193 #: _widgets.php:71 
    194158#: _widgets.php:175 
    195159msgid "Text format of items:" 
     
    222186#: inc/class.eventdata.php:67 
    223187msgid "%s minutes" 
    224 msgstr "% minutes" 
     188msgstr "%s minutes" 
    225189 
    226190#: inc/class.eventdata.php:68 
     
    252216msgstr "Période" 
    253217 
    254 #: inc/lib.eventdata.list.php:150 
    255218#: index.php:363 
    256219msgid "Edit this event for all entries" 
    257220msgstr "Modifier cet événement pour tous les billets" 
    258221 
    259 #: inc/lib.eventdata.list.php:154 
    260222#: index.php:362 
    261223msgid "Edit this event for this entry" 
     
    270232msgstr "Configuration enregistrée" 
    271233 
    272 #: index.php:28 
    273234#: index.php:823 
    274235msgid "About" 
     
    283244msgstr "Administration" 
    284245 
    285 #: index.php:33 
    286 #: index.php:770 
    287246#: index.php:796 
    288247msgid "Uninstall" 
     
    337296msgstr "Niveau" 
    338297 
    339 #: index.php:460 
    340298#: index.php:473 
    341299msgid "Reordered" 
    342300msgstr "Réordonné" 
    343301 
    344 #: index.php:461 
    345302#: index.php:476 
    346303msgid "Unlisted" 
    347304msgstr "Caché" 
    348305 
    349 #: index.php:473 
    350306#: index.php:476 
    351307msgid "Normal" 
     
    400356msgstr "Désactiver la liste des dates d'événements d'un billet" 
    401357 
    402 #: index.php:578 
     358#: index.php:579 
    403359msgid "Plugin admistration options on this blog" 
    404360msgstr "Administration de l'extension sur ce blog" 
     
    416372msgstr "Activer la page publique" 
    417373 
    418 #: index.php:598 
     374#: index.php:597 
    419375msgid "Manage events dates on entries" 
    420376msgstr "Gèrer les dates des billets" 
    421377 
    422 #: index.php:602 
     378#: index.php:601 
    423379msgid "Manage list of reordered categories" 
    424380msgstr "Gérer la liste des catégories réordonnées" 
    425381 
    426 #: index.php:606 
     382#: index.php:605 
    427383msgid "Manage public page" 
    428384msgstr "Gérer la page publique" 
    429385 
    430 #: index.php:610 
     386#: index.php:609 
    431387msgid "Manage plugin" 
    432388msgstr "Gérer l'extension" 
    433389 
    434 #: index.php:724 
    435390#: index.php:777 
    436391msgid "You must check warning in order to delete plugin." 
    437392msgstr "Vous devez vérifier la mise en garde en vue de supprimer l'extension" 
    438393 
    439 #: index.php:748 
    440394#: index.php:780 
    441395msgid "In order to properly uninstall this plugin, you must specify the actions to perform" 
    442396msgstr "Dans le but de désintaller proprement l'extension, vous devez spécifier les actions à effectuer" 
    443397 
    444 #: index.php:750 
     398#: index.php:749 
    445399msgid "Validate" 
    446400msgstr "Valider" 
    447401 
    448 #: index.php:753 
    449402#: index.php:785 
    450403msgid "You understand that if you delete this plugin, the other plugins that use there table and class will no longer work." 
    451404msgstr "Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces table et classes ne fonctionneront plus." 
    452405 
    453 #: index.php:755 
     406#: index.php:754 
    454407msgid "Delete plugin files" 
    455408msgstr "Supprimer les fichiers de l'extension" 
    456409 
    457 #: index.php:757 
    458410#: index.php:787 
    459411msgid "Delete plugin database table" 
    460412msgstr "Supprimer la table de l'extension dans la base de donnée" 
    461413 
    462 #: index.php:759 
    463414#: index.php:789 
    464415msgid "Delete plugin public templates" 
    465416msgstr "Suprimer les modèles de l'extension" 
    466417 
    467 #: index.php:761 
    468418#: index.php:791 
    469419msgid "Delete plugin settings" 
Note: See TracChangeset for help on using the changeset viewer.

Sites map