Changeset 14771 for trunk/wp-includes/theme-compat/comments.php
- Timestamp:
- 05/20/2010 09:53:11 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/theme-compat/comments.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/theme-compat/comments.php
r14366 r14771 13 13 if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) 14 14 die ('Please do not load this page directly. Thanks!'); 15 15 16 16 if ( post_password_required() ) { ?> 17 <p class="nocomments"> This post is password protected. Enter the password to view comments.</p>17 <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.'); ?></p> 18 18 <?php 19 19 return; … … 24 24 25 25 <?php if ( have_comments() ) : ?> 26 <h3 id="comments"><?php comments_number( 'No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3>26 <h3 id="comments"><?php comments_number(__('No Responses'), __('One Response'), __('% Responses'));?> <?php printf(__('to “%s”'), the_title('', '', false)); ?></h3> 27 27 28 28 <div class="navigation"> … … 32 32 33 33 <ol class="commentlist"> 34 <?php wp_list_comments(); ?>34 <?php wp_list_comments();?> 35 35 </ol> 36 36 … … 46 46 <?php else : // comments are closed ?> 47 47 <!-- If comments are closed. --> 48 <p class="nocomments"> Comments are closed.</p>48 <p class="nocomments"><?php _e('Comments are closed.'); ?></p> 49 49 50 50 <?php endif; ?> … … 56 56 <div id="respond"> 57 57 58 <h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s'); ?></h3>58 <h3><?php comment_form_title( __('Leave a Reply'), __('Leave a Reply to %s' ) ); ?></h3> 59 59 60 <div class="cancel-comment-reply">61 <small><?php cancel_comment_reply_link() ;?></small>62 </div> 60 <div id="cancel-comment-reply"> 61 <small><?php cancel_comment_reply_link() ?></small> 62 </div> 63 63 64 64 <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> 65 <p> You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p>65 <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.'), wp_login_url( get_permalink() )); ?></p> 66 66 <?php else : ?> 67 67 … … 70 70 <?php if ( is_user_logged_in() ) : ?> 71 71 72 <p> Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out »</a></p>72 <p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account'); ?>"><?php _e('Log out »'); ?></a></p> 73 73 74 74 <?php else : ?> 75 75 76 76 <p><input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> 77 <label for="author"><small> Name <?php if ($req) echo "(required)"; ?></small></label></p>77 <label for="author"><small><?php _e('Name'); ?> <?php if ($req) _e('(required)'); ?></small></label></p> 78 78 79 79 <p><input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> 80 <label for="email"><small> Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>80 <label for="email"><small><?php _e('Mail (will not be published)'); ?> <?php if ($req) _e('(required)'); ?></small></label></p> 81 81 82 <p><input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" />83 <label for="url"><small> Website</small></label></p>82 <p><input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" /> 83 <label for="url"><small><?php _e('Website'); ?></small></label></p> 84 84 85 85 <?php endif; ?> 86 86 87 <!--<p><small>< strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->87 <!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>'), allowed_tags()); ?></small></p>--> 88 88 89 89 <p><textarea name="comment" id="comment" cols="58" rows="10" tabindex="4"></textarea></p> 90 90 91 <p><input name="submit" type="submit" id="submit" tabindex="5" value=" Submit Comment" />92 <?php comment_id_fields(); ?> 91 <p><input name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment'); ?>" /> 92 <?php comment_id_fields(); ?> 93 93 </p> 94 94 <?php do_action('comment_form', $post->ID); ?>
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)