Changeset 1312:9b954dbdf09a for admin
- Timestamp:
- 08/08/13 21:29:17 (12 years ago)
- Branch:
- default
- Parents:
- 1311:b57043a88153 (diff), 1290:de23a6996243 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Location:
- admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog.php
r1280 r1312 70 70 71 71 echo 72 '<h2> <a href="blogs.php">'.__('Blogs').'</a> › <span class="page-title">'.__('New blog').'</span></h2>'.72 '<h2>'.__('System').' › <a href="blogs.php">'.__('Blogs').'</a> › <span class="page-title">'.__('New blog').'</span></h2>'. 73 73 74 74 '<form action="blog.php" method="post" id="blog-form" class="fieldset">'. -
admin/plugins.php
r1280 r1312 195 195 196 196 echo 197 '<h2 class="page-title">'.__('Plugins management').'</h2>';197 '<h2>'.__('System').' › <span class="page-title">'.__('Plugins management').'</span></h2>'; 198 198 199 199 if (!empty($_GET['removed'])) { -
admin/post.php
r1288 r1312 386 386 if ($can_edit_post) 387 387 { 388 echo '<div class="multi-part" title="'. __('Edit entry').'" id="edit-entry">';388 echo '<div class="multi-part" title="'.($post_id ? __('Edit entry') : __('New entry')).'" id="edit-entry">'; 389 389 echo '<form action="post.php" method="post" id="entry-form">'; 390 390 echo '<div id="entry-wrapper">'; … … 392 392 393 393 echo 394 '<p class="col"><label class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:'). 394 '<p class="col"><label class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Title:').'</label>'. 395 395 form::field('post_title',20,255,html::escapeHTML($post_title),'maximal'). 396 '</ label></p>'.396 '</p>'. 397 397 398 398 '<p class="area" id="excerpt-area"><label for="post_excerpt">'.__('Excerpt:').'</label> '. … … 405 405 '</p>'. 406 406 407 '<p class="area" id="notes-area"><label for="post_notes">'.__(' Notes:').'</label>'.407 '<p class="area" id="notes-area"><label for="post_notes">'.__('Personal notes:').'</label>'. 408 408 form::textarea('post_notes',50,5,html::escapeHTML($post_notes)). 409 409 '</p>'; -
admin/post.php
r1311 r1312 334 334 } 335 335 336 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">' .$page_title;336 echo '<h2>'.html::escapeHTML($core->blog->name).' › '.'<a href="posts.php">'.__('Entries').'</a> › <span class="page-title">'; 337 337 if ($post_id) { 338 338 switch ($post_status) { … … 352 352 $img_status = ''; 353 353 } 354 echo ' “'.$post_title.'”'.' '.$img_status; 354 $edit_entry_str = __('Edit entry “%s”'); 355 echo sprintf($edit_entry_str, html::escapeHTML($post_title)).' '.$img_status; 356 } else { 357 echo $page_title; 355 358 } 356 359 echo '</span></h2>'; -
admin/users.php
r1280 r1312 106 106 107 107 echo 108 '<h2 class="post-title">'.__('Users').'</h2>'.108 '<h2>'.__('System').' › <span class="page-title">'.__('Users').'</span></h2>'. 109 109 '<p class="top-add"><strong><a class="button add" href="user.php">'.__('Create a new user').'</a></strong></p>'; 110 110
Note: See TracChangeset
for help on using the changeset viewer.