Changeset 2350
- Timestamp:
- 08/24/08 15:19:51 (3 months ago)
- Location:
- trunk/htdocs/system/admin
- Files:
-
- 9 modified
-
comments.php (modified) (1 diff)
-
comments_items.php (modified) (2 diffs)
-
css/admin.css (modified) (4 diffs)
-
import.php (modified) (1 diff)
-
login.php (modified) (1 diff)
-
plugins.php (modified) (1 diff)
-
posts.php (modified) (1 diff)
-
posts_items.php (modified) (1 diff)
-
tags.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/admin/comments.php
r2344 r2350 10 10 <ul class="dropbutton special_search"> 11 11 <?php foreach($special_searches as $text => $term): ?> 12 <li><a href="#<?php echo $term; ?>" ><?php echo $text; ?></a></li>12 <li><a href="#<?php echo $term; ?>" title="<?php printf( _t('Filter results for \'%s\''), $text ); ?>"><?php echo $text; ?></a></li> 13 13 <?php endforeach; ?> 14 14 </ul> -
trunk/htdocs/system/admin/comments_items.php
r2348 r2350 43 43 </ul> 44 44 <?php if ( $comment->status == Comment::STATUS_SPAM ) :?> 45 <p> Marked as spam</p>45 <p><?php e_('Marked as spam'); ?></p> 46 46 <?php endif; ?> 47 47 … … 54 54 else : ?> 55 55 <div class="message none"> 56 <p><?php echo _t('No comments could be found to match the query criteria.'); ?></p>56 <p><?php _e('No comments could be found to match the query criteria.'); ?></p> 57 57 </div> 58 58 <?php endif; ?> -
trunk/htdocs/system/admin/css/admin.css
r2349 r2350 1 A/*1 /* 2 2 * Name: Habari Admin Stylesheet 3 3 * Author: Habari Community … … 440 440 font-weight: normal; 441 441 position: absolute; 442 margin: 1px 0 0 1px !important;443 442 width: auto !important; 444 443 cursor: text; 445 444 -webkit-box-shadow: none !important; 446 opacity: .5;447 445 } 448 446 … … 778 776 border-color: #333; 779 777 width: 100%; 780 background d: #303030;778 background: #303030; 781 779 } 782 780 … … 1147 1145 width: 140px; 1148 1146 } 1147 1148 .addnewuser label.overcontent { 1149 margin: 1px 0 0 1px !important; 1150 color: #ccc !important; 1151 } 1149 1152 1150 1153 .addnewuser input[type=submit] { -
trunk/htdocs/system/admin/import.php
r2309 r2350 12 12 ?> 13 13 <p><?php _e('You do not currently have any import plugins installed.'); ?></p> 14 <p><?php _e('Please '); ?><a href="<?php URL::out('admin', 'page=plugins'); ?>"><?php _e('activate an import plugin</a> to enable importing.'); ?></p>14 <p><?php printf( _t('Please <a href="%1$s">activate an import plugin</a> to enable importing.'), URL::get('admin', 'page=plugins') ); ?></p> 15 15 <?php else: ?> 16 16 <p><?php _e('Please choose the type of import to perform:'); ?></p> -
trunk/htdocs/system/admin/login.php
r2301 r2350 2 2 <html> 3 3 <head> 4 <title><?php _e('Login to '); ?><?php Options::out( 'title'); ?></title>5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">4 <title><?php printf( _t('Login to %s'), Options::get( 'title' ) ); ?></title> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 6 6 7 7 <link rel="stylesheet" href="<?php Site::out_url('habari'); ?>/3rdparty/blueprint/screen.css" type="text/css" media="screen"> -
trunk/htdocs/system/admin/plugins.php
r2282 r2350 10 10 <div class="item clear"> 11 11 <div class="head"> 12 <p><?php echo _t('The plugin file ') . $plugin['file'] . _t(' had syntax errors and could not load.'); ?></p>12 <p><?php printf( _t('The plugin file %s had syntax errors and could not load.'), $plugin['file'] ); ?></p> 13 13 <div style="display:none;" id="error_<?php echo $plugin['plugin_id']; ?>"><?php echo $plugin['error']; ?></div> 14 14 <ul class="dropbutton"> -
trunk/htdocs/system/admin/posts.php
r2344 r2350 11 11 <ul class="dropbutton special_search"> 12 12 <?php foreach($special_searches as $text => $term): ?> 13 <li><a href="#<?php echo $term; ?>" title=" Filter results for '<?php echo $text; ?>'"><?php echo $text; ?></a></li>13 <li><a href="#<?php echo $term; ?>" title="<?php printf( _t('Filter results for \'%s\''), $text ); ?>"><?php echo $text; ?></a></li> 14 14 <?php endforeach; ?> 15 15 </ul> -
trunk/htdocs/system/admin/posts_items.php
r2304 r2350 26 26 else : ?> 27 27 <div class="message none"> 28 <p><?php echo _t('No posts could be found to match the query criteria.'); ?></p>28 <p><?php _e('No posts could be found to match the query criteria.'); ?></p> 29 29 </div> 30 30 <?php endif; ?> -
trunk/htdocs/system/admin/tags.php
r2349 r2350 5 5 </div> 6 6 7 < div class="instructions"><span>Click to select</span> · <span>Double-click to open</span></div>7 <!--<div class="instructions"><span>Click to select</span> · <span>Double-click to open</span></div>--> 8 8 9 9 <div id="tag_collection" class="container">
