Changeset 64 for trunk/wp-content/themes/xpress_default/comments.php
- Timestamp:
- Jan 8, 2009, 9:20:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/xpress_default/comments.php
r1 r64 7 7 ?> 8 8 9 <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', ' kubrick'); ?></p>9 <p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'xpress'); ?></p> 10 10 11 11 <?php … … 21 21 22 22 <?php if ($comments) : ?> 23 <h3 id="xpress_comments"><?php comments_number(__('No Responses', ' kubrick'), __('One Response', 'kubrick'), __('% Responses', 'kubrick'));?> <?php printf(__('to “%s”', 'kubrick'), the_title('', '', false)); ?></h3>23 <h3 id="xpress_comments"><?php comments_number(__('No Responses', 'xpress'), __('One Response', 'xpress'), __('% Responses', 'xpress'));?> <?php printf(__('to “%s”', 'xpress'), the_title('', '', false)); ?></h3> 24 24 <?php if (function_exists('wp_list_comments')) : ?> 25 25 <ol class="xpress_commentlist"> … … 37 37 <li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"> 38 38 <?php if(function_exists('get_avatar')) : ?><?php echo get_avatar( $comment, 32 ); ?><?php endif; ?> 39 <?php printf(__('<cite>%s</cite> Says:', ' kubrick'), get_comment_author_link()); ?>39 <?php printf(__('<cite>%s</cite> Says:', 'xpress'), get_comment_author_link()); ?> 40 40 <?php if ($comment->comment_approved == '0') : ?> 41 <em><?php _e('Your comment is awaiting moderation.', ' kubrick'); ?></em>41 <em><?php _e('Your comment is awaiting moderation.', 'xpress'); ?></em> 42 42 <?php endif; ?> 43 43 <br /> 44 44 45 <small class="xpress_commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php printf(__('%1$s at %2$s', ' kubrick'), get_comment_date(__('F jS, Y', 'kubrick')), get_comment_time()); ?></a> <?php edit_comment_link(__('edit', 'kubrick'),' ',''); ?></small>45 <small class="xpress_commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php printf(__('%1$s at %2$s', 'xpress'), get_comment_date(__('F jS, Y', 'xpress')), get_comment_time()); ?></a> <?php edit_comment_link(__('edit', 'xpress'),' ',''); ?></small> 46 46 47 47 <?php comment_text() ?> … … 65 65 <?php else : // comments are closed ?> 66 66 <!-- If comments are closed. --> 67 <p class="nocomments"><?php _e('Comments are closed.', ' kubrick'); ?></p>67 <p class="nocomments"><?php _e('Comments are closed.', 'xpress'); ?></p> 68 68 69 69 <?php endif; ?> … … 73 73 <?php if ('open' == $post->comment_status) : ?> 74 74 <div id="respond"> 75 <h3><?php _e('Leave a Reply', ' kubrick'); ?></h3>75 <h3><?php _e('Leave a Reply', 'xpress'); ?></h3> 76 76 <?php if ( function_exists('cancel_comment_reply_link') ): ?> 77 77 <div class="cancel-comment-reply"> … … 81 81 82 82 <?php if ( get_option('comment_registration') && !$user_ID ) : ?> 83 <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', ' kubrick'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p>83 <p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'xpress'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p> 84 84 <?php else : ?> 85 85 … … 88 88 <?php if ( $user_ID ) : ?> 89 89 90 <p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', ' kubrick'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account', 'kubrick'); ?>"><?php _e('Log out »', 'kubrick'); ?></a></p>90 <p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', 'xpress'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account', 'xpress'); ?>"><?php _e('Log out »', 'xpress'); ?></a></p> 91 91 92 92 <?php else : ?> 93 93 94 94 <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> 95 <label for="author"><small><?php _e('Name', ' kubrick'); ?> <?php if ($req) _e("(required)", "kubrick"); ?></small></label></p>95 <label for="author"><small><?php _e('Name', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p> 96 96 97 97 <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> 98 <label for="email"><small><?php _e('Mail (will not be published)', ' kubrick'); ?> <?php if ($req) _e("(required)", "kubrick"); ?></small></label></p>98 <label for="email"><small><?php _e('Mail (will not be published)', 'xpress'); ?> <?php if ($req) _e("(required)", "xpress"); ?></small></label></p> 99 99 100 100 <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" /> 101 <label for="url"><small><?php _e('Website', ' kubrick'); ?></small></label></p>101 <label for="url"><small><?php _e('Website', 'xpress'); ?></small></label></p> 102 102 103 103 <?php endif; ?> 104 104 105 <!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', ' kubrick'), allowed_tags()); ?></small></p>-->105 <!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', 'xpress'), allowed_tags()); ?></small></p>--> 106 106 107 107 <p><textarea name="comment" id="xpress_comment" cols="100%" rows="10" tabindex="4"></textarea></p> 108 108 109 <p><input name="submit" type="submit" id="xpress_submit" tabindex="5" value="<?php _e('Submit Comment', ' kubrick'); ?>" />109 <p><input name="submit" type="submit" id="xpress_submit" tabindex="5" value="<?php _e('Submit Comment', 'xpress'); ?>" /> 110 110 <?php if (function_exists('comment_id_fields')) : ?> 111 111 <?php comment_id_fields(); //@since 2.7.0 ?>
Note: See TracChangeset
for help on using the changeset viewer.