Changeset 1211
- Timestamp:
- 06/15/09 14:33:24 (14 years ago)
- 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. 1 eventdata 0.5.4 (2009/06/15) plugin for Dotclear 2 15 2 16 3 I. Licence: -
plugins/eventdata/_admin.php
r1049 r1211 26 26 $_menu[($core->blog->settings->eventdata_option_menu ? 'Blog' : 'Plugins')]->addItem( 27 27 __('Events'), 28 'plugin.php?p=eventdata', DC_ADMIN_URL.'?pf=eventdata/icon.png',28 'plugin.php?p=eventdata','index.php?pf=eventdata/icon.png', 29 29 preg_match('/plugin.php\?p=eventdata(&.*)?$/',$_SERVER['REQUEST_URI']), 30 30 $core->auth->check('usage,contentadmin',$core->blog->id)); … … 70 70 return 71 71 ($post_page ? 72 dcPage::jsLoad( DC_ADMIN_URL.'?pf=eventdata/js/post.js').72 dcPage::jsLoad('index.php?pf=eventdata/js/post.js'). 73 73 '<script type="text/javascript">'."\n". 74 74 "//<![CDATA[\n". … … 82 82 "</script>\n" 83 83 : 84 dcPage::jsLoad( DC_ADMIN_URL.'?pf=eventdata/js/admin.js')84 dcPage::jsLoad('index.php?pf=eventdata/js/admin.js') 85 85 ). 86 dcPage::jsLoad( DC_ADMIN_URL.'?pf=eventdata/js/datepickerBC.js').86 dcPage::jsLoad('index.php?pf=eventdata/js/datepickerBC.js'). 87 87 '<script type="text/javascript">'."\n". 88 88 "//<![CDATA[\n". … … 111 111 "\n//]]>\n". 112 112 "</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" />'; 114 114 } 115 115 # Sidebar for post.php … … 123 123 '<div id="new-eventdata">'. 124 124 '<h3>'.__('Add event').'</h3>'. 125 '<p>'.126 125 '<label for="eventdata_start">'.__('Event start:').'</label>'. 127 126 '<div class="p" id="eventdata-edit-start">'.form::textarea('eventdata_start',20,1,$start,'',9).'</div>'. … … 130 129 '<label for="eventdata_location">'.__('Event location:').'</label>'. 131 130 '<div class="p" id="eventdata-edit-location">'.form::textarea('eventdata_location',20,1,$location,'',10).'</div>'. 132 '</p>'.133 131 '</div>'; 134 132 … … 146 144 '<div class="eventdatas-list">'. 147 145 '<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').'"'). 149 147 '</span>'. 150 '<a class="eventdata-action-edit" href="plugin.php?p=eventdata& eventdata='.148 '<a class="eventdata-action-edit" href="plugin.php?p=eventdata&eventdata='. 151 149 dcEventdata::serializeURL('eventdata',$eventdatas->post_id,$eventdatas->eventdata_start,$eventdatas->eventdata_end,$eventdatas->eventdata_location). 152 150 '">[v]</a>'. … … 315 313 '<div id="edit-eventdata">'. 316 314 '<h3>'.__('Add event').'</h3>'. 317 '<form action="posts_actions.php" method="post">'. 318 '<p>'. 315 '<form action="posts_actions.php" method="post"><div>'. 319 316 '<label for="eventdata_start">'.__('Event start:').'</label>'. 320 317 '<div class="p" id="eventdata-edit-start">'.form::field('eventdata_start',16,16,$start,'eventdata-date-start',9).'</div>'. … … 323 320 '<label for="eventdata_location">'.__('Event location:').'</label>'. 324 321 '<div class="p" id="eventdata-edit-location">'.form::field('eventdata_location',20,200,$location,'eventdata-date-location',10).'</div>'. 325 '< /p>'.322 '<p>'. 326 323 $hidden_fields. 327 324 $core->formNonce(). 328 325 form::hidden(array('action'),'eventdata_add'). 329 326 '<input type="submit" value="'.__('Save').'" /></p>'. 330 '</ form>'.327 '</div></form>'. 331 328 '</div>'; 332 329 } -
plugins/eventdata/_define.php
r1029 r1211 17 17 /* Description*/ "Add period to your posts", 18 18 /* Author */ "JC Denis", 19 /* Version */ '0.5. 3',19 /* Version */ '0.5.4', 20 20 /* Permissions */ 'usage,contentadmin' 21 21 ); 22 /* date */ #20090 41522 /* date */ #20090615 23 23 ?> -
plugins/eventdata/inc/class.eventdata.php
r1017 r1211 65 65 if ($hou>1) $time .= sprintf(__('%s hours'),$hou).' '; 66 66 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').' '; 69 69 if (!$day && !$min && !$day && !$hou) $time .= __('instantaneous'); 70 70 -
plugins/eventdata/inc/lib.eventdata.list.php
r1029 r1211 148 148 # Edit 149 149 (!$this->rs->isEditable() ? ' ' : 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&eventdata='. 151 151 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" />'. 153 153 '</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&eventdata='. 155 155 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" /> 157 157 </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&a=del&eventdata='. 159 159 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" /> 161 161 </a>' 162 162 ) => 'class="nowrap"', … … 178 178 $img_status.' '.$selected.' '.$protected.' '.$attach => 'class="nowrap status"' 179 179 ), 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.'"' 181 181 ); 182 182 } -
plugins/eventdata/index.php
r1029 r1211 20 20 # General 21 21 $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" />'; 26 26 27 27 # Menu … … 247 247 ' </head>'. 248 248 ' <body>'. 249 ' <h2>'.html::escapeHTML($core->blog->name).' & gt; '.__('Events').' > '.$tab[$request_tab].'</h2>'.249 ' <h2>'.html::escapeHTML($core->blog->name).' › '.__('Events').' › '.$tab[$request_tab].'</h2>'. 250 250 (!empty($msg) ? '<p class="message">'.$msg.'</p>' : ''); 251 251 … … 341 341 </div> 342 342 </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> 348 348 </form>'; 349 349 # Edited list … … 351 351 echo 352 352 '<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.'&t=pst">'.__('Back to list of all events').'</a></p>'. 354 354 '<link rel="stylesheet" type="text/css" href="style/date-picker.css" />'."\n"; 355 355 … … 384 384 } 385 385 echo 386 form::hidden( 'p','eventdata').387 form::hidden( 't','pst').386 form::hidden(array('p'),'eventdata'). 387 form::hidden(aray('t'),'pst'). 388 388 $core->formNonce(). 389 389 ($counter->f(0) == 1 ? form::hidden('post_id',$posts->post_id) : ''). … … 391 391 form::hidden('old_eventdata_end',$posts->eventdata_end). 392 392 form::hidden('old_eventdata_location',$posts->eventdata_location). 393 form::hidden(array('redir'),$E->url.'& t=pst').393 form::hidden(array('redir'),$E->url.'&t=pst'). 394 394 '</form>'. 395 395 '</div>'; … … 397 397 398 398 $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">'. 400 400 '%s'. 401 401 '<div class="two-cols">'. 402 402 '<p class="col checkboxes-helpers"></p>'. 403 403 '<p class="col right">'.__('Selected entries action:').' '. 404 form::combo( 'action',$combo_action).404 form::combo(array('action'),$combo_action). 405 405 '<input type="submit" value="'.__('ok').'" /></p>'. 406 406 form::hidden(array('cat_id'),$cat_id). … … 411 411 form::hidden(array('page'),$page). 412 412 form::hidden(array('nb'),$nb_per_page). 413 form::hidden(array('redir'),$E->url.'& t=pst').413 form::hidden(array('redir'),$E->url.'&t=pst'). 414 414 $core->formNonce(). 415 415 '</div>'. … … 452 452 <div class="multi-part" id="cat" title="'.$tab['cat'].'"> 453 453 <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"> 455 455 <table class="clear"><tr> 456 456 <th colspan="2">'.__('Title').'</th> … … 465 465 '<tr class="line">'. 466 466 '<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.'&t=pst&cat_id='.$categories->cat_id.'"> 468 468 '.html::escapeHTML($categories->cat_title).'</a></td>'. 469 469 '<td class="nowrap">'.$categories->cat_id.'</td>'. … … 483 483 <p class="col checkboxes-helpers"></p> 484 484 <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'). 489 489 $core->formNonce().' 490 490 </p> … … 521 521 <p class="col"><label class=" classic">'. 522 522 __('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').' 524 524 </label></p> 525 525 <p class="area"><label class=" classic">'. 526 526 __('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)).' 528 528 </label></p> 529 529 <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> '.$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> 537 537 <p><label class=" classic">'. 538 538 __('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)).' 540 540 </label></p> 541 541 <p><label class=" classic">'. 542 542 __('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).' 544 544 </label></p> 545 545 <p><label class=" classic">'. 546 546 __('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'). 551 552 $core->formNonce().' 552 <input type="submit" name="save[tpl]" value="'.__('Save').'" /> 553 <input type="submit" name="save[tpl]" value="'.__('Save').'" /></p> 553 554 </form> 554 555 </div>'; … … 579 580 <form method="post" action="'.$E->url.'"> 580 581 <h2>'.__('General').'</h2> 581 <p>582 582 <table class="clear"><tr class="line"> 583 583 <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> 586 586 </tr><tr class="line"> 587 587 <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> 590 590 </tr><tr class="line"> 591 591 <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></td594 </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> 595 595 <h2>'.__('Permissions').'</h2> 596 <p>597 596 <table class="clear"><tr class="line"> 598 597 <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> 601 600 </tr><tr class="line"> 602 601 <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> 605 604 </tr><tr class="line"> 606 605 <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> 609 608 </tr><tr class="line"> 610 609 <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> 614 613 <p>'. 615 form::hidden( 'p','eventdata').616 form::hidden( 't','adm').614 form::hidden(array('p'),'eventdata'). 615 form::hidden(array('t'),'adm'). 617 616 $core->formNonce().' 618 617 <input type="submit" name="save[adm]" value="'.__('Save').'" /></p> … … 628 627 629 628 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.4632 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 }719 629 720 630 # Save admin options … … 760 670 <label class=" classic">'.sprintf(($delete_settings ? $img_green : $img_red),'-'). 761 671 __('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). 769 680 $core->formNonce().' 770 681 <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> 772 683 </form>'; 773 684 … … 782 693 <h2>'.__('Uninstall "eventdata" plugin').'</h2> 783 694 <p> 784 <label class=" classic">'.form::checkbox( 's[understand]',1,$understand).695 <label class=" classic">'.form::checkbox(array('s[understand]'),1,$understand). 785 696 __('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). 787 698 __('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). 789 700 __('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). 791 702 __('Delete plugin settings').'</label><br /> 792 </p> '.703 </p><p>'. 793 704 form::hidden('p','eventdata'). 794 705 form::hidden('t','uninstall'). 795 706 $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> 811 708 </form>'; 812 709 } … … 841 738 <a href="http://creativecommons.org/licenses/by/2.5/">http://creativecommons.org/licenses/by/2.5/</a>.</p> 842 739 <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> 844 741 </div> 845 742 '.dcPage::helpBlock('eventdata').' -
plugins/eventdata/js/post.js
r1025 r1211 4 4 if(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;}} 5 5 if(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;}}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;}} 7 7 this.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};} 8 8 $.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 1 1 <?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 :'; 375 325 376 326 ?> -
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 3 6 4 7 msgid "" 5 8 msgstr "Content-Type: text/plain; charset=UTF-8\n" 6 9 7 #: _admin.php:278 #: _public.php:179 #: _widgets.php:2610 #: _widgets.php:3011 #: index.php:24412 10 #: index.php:249 13 11 msgid "Events" … … 34 32 msgstr "Ajouter cet événement" 35 33 36 #: _admin.php:8037 34 #: _widgets.php:168 38 35 msgid "Linked events" 39 36 msgstr "Événements liés" 40 37 41 #: _admin.php:124 42 #: _admin.php:316 38 #: _admin.php:314 43 39 msgid "Add event" 44 40 msgstr "Ajouter un événement" 45 41 46 #: _admin.php:12647 #: _admin.php:31948 42 #: index.php:367 49 43 msgid "Event start:" 50 44 msgstr "Début d'événement :" 51 45 52 #: _admin.php:12853 #: _admin.php:32154 46 #: index.php:369 55 47 msgid "Event end:" 56 48 msgstr "Fin d'événement :" 57 49 58 #: _admin.php:13059 #: _admin.php:32360 50 #: index.php:371 61 51 msgid "Event location:" 62 52 msgstr "Lieu de l'événement :" 63 53 64 #: _admin.php:14 254 #: _admin.php:140 65 55 msgid "Linked events:" 66 56 msgstr "Événements liés :" 67 57 68 #: _admin.php:14 858 #: _admin.php:146 69 59 msgid "Check to delete" 70 60 msgstr "Cocher pour supprimer" 71 61 72 #: _admin.php:25573 62 #: index.php:77 74 63 msgid "add event" 75 64 msgstr "ajouter un événement" 76 65 77 #: _admin.php:25678 66 #: index.php:74 79 67 msgid "remove events" … … 88 76 msgstr "Dates d'événements" 89 77 90 #: _public.php:2091 #: _public.php:32992 78 #: inc/lib.eventdata.list.php:141 93 79 msgid "ongoing" … … 110 96 msgstr "non terminé" 111 97 112 #: _public.php:26113 #: _public.php:331114 98 #: inc/lib.eventdata.list.php:139 115 99 msgid "finished" 116 100 msgstr "terminé" 117 101 118 #: _public.php:27119 #: _public.php:256120 #: _widgets.php:75121 102 #: _widgets.php:176 122 103 msgid "From %S to %E" … … 127 108 msgstr "Tous" 128 109 129 #: _public.php:384130 #: _widgets.php:65131 110 #: index.php:154 132 111 msgid "Ongoing" 133 112 msgstr "En cours" 134 113 135 #: _public.php:385136 #: _widgets.php:66137 114 #: index.php:155 138 115 msgid "Outgoing" 139 116 msgstr "Pas en cours" 140 117 141 #: _public.php:386142 #: _widgets.php:61143 118 #: index.php:150 144 119 msgid "Not started" … … 149 124 msgstr "Programmé" 150 125 151 #: _public.php:388152 #: _widgets.php:62153 126 #: index.php:151 154 127 msgid "Started" 155 128 msgstr "Débuté" 156 129 157 #: _public.php:389158 #: _widgets.php:64159 130 #: index.php:153 160 131 msgid "Not finished" 161 132 msgstr "Non fini" 162 133 163 #: _public.php:390164 #: _widgets.php:63165 134 #: index.php:152 166 135 msgid "Finished" 167 136 msgstr "Fini" 168 137 169 #: _widgets.php:50170 138 #: index.php:131 171 139 msgid "Event start" 172 140 msgstr "Début d'événement" 173 141 174 #: _widgets.php:51175 142 #: index.php:132 176 143 msgid "Event end" … … 181 148 msgstr "Billets sélectionnés seulement" 182 149 183 #: _widgets.php:59184 150 #: index.php:338 185 151 msgid "Period:" 186 152 msgstr "Période :" 187 153 188 #: _widgets.php:68189 154 #: _widgets.php:172 190 155 msgid "Date format of items:" 191 156 msgstr "Format de date des billets :" 192 157 193 #: _widgets.php:71194 158 #: _widgets.php:175 195 159 msgid "Text format of items:" … … 222 186 #: inc/class.eventdata.php:67 223 187 msgid "%s minutes" 224 msgstr "% minutes"188 msgstr "%s minutes" 225 189 226 190 #: inc/class.eventdata.php:68 … … 252 216 msgstr "Période" 253 217 254 #: inc/lib.eventdata.list.php:150255 218 #: index.php:363 256 219 msgid "Edit this event for all entries" 257 220 msgstr "Modifier cet événement pour tous les billets" 258 221 259 #: inc/lib.eventdata.list.php:154260 222 #: index.php:362 261 223 msgid "Edit this event for this entry" … … 270 232 msgstr "Configuration enregistrée" 271 233 272 #: index.php:28273 234 #: index.php:823 274 235 msgid "About" … … 283 244 msgstr "Administration" 284 245 285 #: index.php:33286 #: index.php:770287 246 #: index.php:796 288 247 msgid "Uninstall" … … 337 296 msgstr "Niveau" 338 297 339 #: index.php:460340 298 #: index.php:473 341 299 msgid "Reordered" 342 300 msgstr "Réordonné" 343 301 344 #: index.php:461345 302 #: index.php:476 346 303 msgid "Unlisted" 347 304 msgstr "Caché" 348 305 349 #: index.php:473350 306 #: index.php:476 351 307 msgid "Normal" … … 400 356 msgstr "Désactiver la liste des dates d'événements d'un billet" 401 357 402 #: index.php:57 8358 #: index.php:579 403 359 msgid "Plugin admistration options on this blog" 404 360 msgstr "Administration de l'extension sur ce blog" … … 416 372 msgstr "Activer la page publique" 417 373 418 #: index.php:59 8374 #: index.php:597 419 375 msgid "Manage events dates on entries" 420 376 msgstr "Gèrer les dates des billets" 421 377 422 #: index.php:60 2378 #: index.php:601 423 379 msgid "Manage list of reordered categories" 424 380 msgstr "Gérer la liste des catégories réordonnées" 425 381 426 #: index.php:60 6382 #: index.php:605 427 383 msgid "Manage public page" 428 384 msgstr "Gérer la page publique" 429 385 430 #: index.php:6 10386 #: index.php:609 431 387 msgid "Manage plugin" 432 388 msgstr "Gérer l'extension" 433 389 434 #: index.php:724435 390 #: index.php:777 436 391 msgid "You must check warning in order to delete plugin." 437 392 msgstr "Vous devez vérifier la mise en garde en vue de supprimer l'extension" 438 393 439 #: index.php:748440 394 #: index.php:780 441 395 msgid "In order to properly uninstall this plugin, you must specify the actions to perform" 442 396 msgstr "Dans le but de désintaller proprement l'extension, vous devez spécifier les actions à effectuer" 443 397 444 #: index.php:7 50398 #: index.php:749 445 399 msgid "Validate" 446 400 msgstr "Valider" 447 401 448 #: index.php:753449 402 #: index.php:785 450 403 msgid "You understand that if you delete this plugin, the other plugins that use there table and class will no longer work." 451 404 msgstr "Vous comprenez que si vous supprimez cette extension, les autres extensions qui utilisent ces table et classes ne fonctionneront plus." 452 405 453 #: index.php:75 5406 #: index.php:754 454 407 msgid "Delete plugin files" 455 408 msgstr "Supprimer les fichiers de l'extension" 456 409 457 #: index.php:757458 410 #: index.php:787 459 411 msgid "Delete plugin database table" 460 412 msgstr "Supprimer la table de l'extension dans la base de donnée" 461 413 462 #: index.php:759463 414 #: index.php:789 464 415 msgid "Delete plugin public templates" 465 416 msgstr "Suprimer les modèles de l'extension" 466 417 467 #: index.php:761468 418 #: index.php:791 469 419 msgid "Delete plugin settings"
Note: See TracChangeset
for help on using the changeset viewer.