Changeset 1474:122a77514ce1 for plugins
- Timestamp:
- 08/19/13 15:22:41 (12 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r1358 r1474 86 86 return 87 87 '<tr class="line">'. 88 '<td scope="r aw"><label for="s_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'.88 '<td scope="row"><label for="s_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'. 89 89 '<td>'.$field.'</td>'. 90 90 '<td>'.$s['type'].'</td>'. -
plugins/antispam/_admin.php
r1207 r1474 59 59 if ($ttl != null && $ttl >=0) { 60 60 echo '<p>'.sprintf(__('All spam comments older than %s day(s) will be automatically deleted.'), $ttl).' '. 61 sprintf(__('You can modify this duration in the %s'),'<a href="blog_pref.php#antispam_moderation_ttl"> '.__('Blog preferences').'</a>').61 sprintf(__('You can modify this duration in the %s'),'<a href="blog_pref.php#antispam_moderation_ttl"> '.__('Blog settings').'</a>'). 62 62 '</p>'; 63 63 } -
plugins/antispam/index.php
r1423 r1474 170 170 if ($moderationTTL != null && $moderationTTL >=0) { 171 171 echo '<p>'.sprintf(__('All spam comments older than %s day(s) will be automatically deleted.'), $moderationTTL).' '. 172 sprintf(__('You can modify this duration in the %s'),'<a href="blog_pref.php#antispam_moderation_ttl"> '.__('Blog preferences').'</a>').172 sprintf(__('You can modify this duration in the %s'),'<a href="blog_pref.php#antispam_moderation_ttl"> '.__('Blog settings').'</a>'). 173 173 '</p>'; 174 174 } … … 212 212 '<td class="nowrap">'.form::checkbox(array('filters_active[]'),$fid,$f->active, '', '', false, 'title="'.__('Active').'"').'</td>'. 213 213 '<td class="nowrap">'.form::checkbox(array('filters_auto_del[]'),$fid,$f->auto_delete, '', '', false, 'title="'.__('Auto Del.').'"').'</td>'. 214 '<td class="nowrap" scope="r aw">'.$f->name.'</td>'.214 '<td class="nowrap" scope="row">'.$f->name.'</td>'. 215 215 '<td class="maximal">'.$f->description.'</td>'. 216 216 '<td class="status">'.$gui_link.'</td>'. -
plugins/pages/page.php
r1454 r1474 455 455 456 456 echo 457 '<p><label for="post_status" >'.__('Page status:').'</label> '.457 '<p><label for="post_status" class="ib">'.__('Page status:').'</label> '. 458 458 form::combo('post_status',$status_combo,$post_status,'','',!$can_publish). 459 459 '</p>'. 460 460 461 '<p><label for="post_dt" >'.__('Published on:').'</label>'.461 '<p><label for="post_dt" class="ib">'.__('Published on:').'</label>'. 462 462 form::field('post_dt',16,16,$post_dt,($bad_dt ? 'invalid' : '')).'</p>'. 463 463 464 '<p><label for="post_format" >'.__('Text formating:').'</label>'.464 '<p><label for="post_format" class="ib">'.__('Text formating:').'</label>'. 465 465 form::combo('post_format',$formaters_combo,$post_format). 466 466 ($post_id && $post_format != 'xhtml' ? '<a class="button" href="'.html::escapeURL($redir_url).'&id='.$post_id.'&xconv=1">'.__('Convert to XHTML').'</a>' : ''). … … 493 493 '</p>'. 494 494 495 '<p><label for="post_lang" >'.__('Page lang:').'</label>'.495 '<p><label for="post_lang" class="ib">'.__('Page lang:').'</label>'. 496 496 form::combo('post_lang',$lang_combo,$post_lang).'</p>'. 497 497 498 '<p><label for="post_password" >'.__('Page password:').'</label>'.498 '<p><label for="post_password" class="ib">'.__('Page password:').'</label>'. 499 499 form::field('post_password',10,32,html::escapeHTML($post_password),'maximal'). 500 500 '</p>'. 501 501 502 '<div class="lockable" >'.503 '<p><label for="post_url" >'.__('Basename:').'</label>'.502 '<div class="lockable" class="ib">'. 503 '<p><label for="post_url" class="ib">'.__('Basename:').'</label>'. 504 504 form::field('post_url',10,255,html::escapeHTML($post_url),'maximal'). 505 505 '</p>'. … … 512 512 { 513 513 echo 514 '<h 3 class="clear">'.__('Attachments').'</h3>';514 '<h4 class="clear">'.__('Attachments').'</h4>'; 515 515 foreach ($post_media as $f) 516 516 { … … 541 541 542 542 if (empty($post_media)) { 543 echo '<p >'.__('No attachment.').'</p>';543 echo '<p class="form-note">'.__('No attachment.').'</p>'; 544 544 } 545 545 echo '<p><a class="button" href="media.php?post_id='.$post_id.'">'.__('Add files to this page').'</a></p>'; -
plugins/simpleMenu/index.php
r1358 r1474 233 233 234 234 // All done successfully, return to menu items list 235 http::redirect($p_url.'&a dded=1');235 http::redirect($p_url.'&added=1'); 236 236 } else { 237 237 throw new Exception(__('Label and URL of menu item are mandatory.')); … … 268 268 269 269 // All done successfully, return to menu items list 270 http::redirect($p_url.'& removed=1');270 http::redirect($p_url.'&removed=1'); 271 271 } else { 272 272 throw new Exception(__('No menu items selected.')); … … 302 302 303 303 // All done successfully, return to menu items list 304 http::redirect($p_url.'& updated=1');304 http::redirect($p_url.'&updated=1'); 305 305 } 306 306 catch (Exception $e) { … … 339 339 340 340 // All done successfully, return to menu items list 341 http::redirect($p_url.'& neworder=1');341 http::redirect($p_url.'&neworder=1'); 342 342 } 343 343 catch (Exception $e) { … … 402 402 case 1: 403 403 // Selection du type d'item 404 echo '<form id="additem" action="'.$p_url.'&a dd=2" method="post">';404 echo '<form id="additem" action="'.$p_url.'&add=2" method="post">'; 405 405 echo '<fieldset><legend>'.__('Select type').'</legend>'; 406 406 echo '<p class="field"><label for="item_type" class="classic">'.__('Type of item menu:').'</label>'.form::combo('item_type',$items_combo,'').'</p>'; … … 412 412 if ($items[$item_type][1]) { 413 413 // Choix à faire 414 echo '<form id="additem" action="'.$p_url.'&a dd=3" method="post">';414 echo '<form id="additem" action="'.$p_url.'&add=3" method="post">'; 415 415 echo '<fieldset><legend>'.$item_type_label.'</legend>'; 416 416 switch ($item_type) { … … 449 449 case 3: 450 450 // Libellé et description 451 echo '<form id="additem" action="'.$p_url.'&a dd=4" method="post">';451 echo '<form id="additem" action="'.$p_url.'&add=4" method="post">'; 452 452 echo '<fieldset><legend>'.$item_type_label.($item_select_label != '' ? ' ('.$item_select_label.')' : '').'</legend>'; 453 453 echo '<p class="field"><label for="item_label" class="classic required"><abbr title="'.__('Required field').'">*</abbr> '. … … 467 467 // Liste des items 468 468 if (!$step) { 469 echo '<form id="menuitemsappend" action="'.$p_url.'&a dd=1" method="post">';469 echo '<form id="menuitemsappend" action="'.$p_url.'&add=1" method="post">'; 470 470 echo '<p class="top-add">'.$core->formNonce().'<input class="button add" type="submit" name="appendaction" value="'.__('Add an item').'" /></p>'; 471 471 echo '</form>'; -
plugins/userPref/index.php
r1358 r1474 82 82 return 83 83 '<tr class="line">'. 84 '<td scope="r aw"><label for="s_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'.84 '<td scope="row"><label for="s_'.$id.'">'.sprintf($slabel,html::escapeHTML($id)).'</label></td>'. 85 85 '<td>'.$field.'</td>'. 86 86 '<td>'.$s['type'].'</td>'. -
plugins/widgets/class.widgets.php
r1454 r1474 246 246 '<p><label for="'.$wfid.'">'.$s['title'].'</label> '. 247 247 form::textarea(array($iname,$wfid),30,5,html::escapeHTML($s['value']),'maximal'). 248 '</ label></p>';248 '</p>'; 249 249 break; 250 250 case 'check':
Note: See TracChangeset
for help on using the changeset viewer.