Changeset 2411
- Timestamp:
- 03/05/2005 06:31:59 PM (20 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r2377 r2411 55 55 <?php 56 56 foreach ($comments as $comment) { 57 echo '<li>' . sprintf( '%s on %s', get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>');57 echo '<li>' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="'. get_permalink($comment->comment_post_ID) . '#comment-' . $comment->comment_ID . '">' . get_the_title($comment->comment_post_ID) . '</a>'); 58 58 edit_comment_link(__("Edit"), ' <small>(', ')</small>'); 59 59 echo '</li>'; -
trunk/wp-admin/templates.php
r2121 r2411 136 136 </div> 137 137 <div class="wrap"> 138 <h2> Other Files</h2>138 <h2><?php _e('Other Files') ?></h2> 139 139 140 140 <p><?php _e('To edit a file, type its name here. You can edit any file <a href="http://wiki.wordpress.org/index.php/MakeWritable" title="Read more about making files writable">writable by the server</a>, e.g. CHMOD 666.') ?></p>
Note: See TracChangeset
for help on using the changeset viewer.