Changeset 15355 for trunk/wp-includes/comment-template.php
- Timestamp:
- 06/30/2010 12:05:18 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r15148 r15355 679 679 */ 680 680 function comment_type($commenttxt = false, $trackbacktxt = false, $pingbacktxt = false) { 681 682 683 681 if ( false === $commenttxt ) $commenttxt = _x( 'Comment', 'noun' ); 682 if ( false === $trackbacktxt ) $trackbacktxt = __( 'Trackback' ); 683 if ( false === $pingbacktxt ) $pingbacktxt = __( 'Pingback' ); 684 684 $type = get_comment_type(); 685 685 switch( $type ) { … … 947 947 global $id, $wpcommentspopupfile, $wpcommentsjavascript; 948 948 949 950 951 952 949 if ( false === $zero ) $zero = __( 'No Comments' ); 950 if ( false === $one ) $one = __( '1 Comment' ); 951 if ( false === $more ) $more = __( '% Comments' ); 952 if ( false === $none ) $none = __( 'Comments Off' ); 953 953 954 954 $number = get_comments_number( $id );
Note: See TracChangeset
for help on using the changeset viewer.