Changeset 10680 for trunk/wp-admin/includes/template.php
- Timestamp:
- 03/02/2009 07:20:19 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r10662 r10680 736 736 $posts_columns = array(); 737 737 $posts_columns['cb'] = '<input type="checkbox" />'; 738 $posts_columns['title'] = _c('Post|noun'); 738 /* translators: manage posts column name */ 739 $posts_columns['title'] = _x('Post', 'column name'); 739 740 $posts_columns['author'] = __('Author'); 740 741 $posts_columns['categories'] = __('Categories'); … … 760 761 $posts_columns['cb'] = '<input type="checkbox" />'; 761 762 $posts_columns['icon'] = ''; 762 $posts_columns['media'] = _c('File|media column header'); 763 /* translators: column name */ 764 $posts_columns['media'] = _x('File', 'column name'); 763 765 $posts_columns['author'] = __('Author'); 764 766 //$posts_columns['tags'] = _c('Tags|media column header'); 765 $posts_columns['parent'] = _c('Attached to|media column header'); 767 /* translators: column name */ 768 $posts_columns['parent'] = _x('Attached to', 'column name'); 766 769 $posts_columns['comments'] = '<div class="vers"><img alt="Comments" src="images/comment-grey-bubble.png" /></div>'; 767 770 //$posts_columns['comments'] = __('Comments'); 768 $posts_columns['date'] = _c('Date|media column header'); 771 /* translators: column name */ 772 $posts_columns['date'] = _x('Date', 'column name'); 769 773 $posts_columns = apply_filters('manage_media_columns', $posts_columns); 770 774 … … 824 828 'cb' => '<input type="checkbox" />', 825 829 'author' => __('Author'), 826 'comment' => _c('Comment|noun'), 830 /* translators: column name */ 831 'comment' => _x('Comment', 'column name'), 827 832 //'date' => __('Submitted'), 828 833 'response' => __('In Response To') … … 1061 1066 </label> 1062 1067 1063 <em style="margin:5px 10px 0 0" class="alignleft"><?php echo _c( '–OR–|Between password field and private checkbox on post quick edit interface' ); ?></em> 1064 1068 <em style="margin:5px 10px 0 0" class="alignleft"> 1069 <?php 1070 /* translators: Between password field and private checkbox on post quick edit interface */ 1071 echo __( '–OR–' ); 1072 ?> 1073 </em> 1065 1074 <label class="alignleft inline-edit-private"> 1066 1075 <input type="checkbox" name="keep_private" value="private" /> … … 2105 2114 } 2106 2115 if ( 'spam' != $the_comment_status ) 2107 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . _c( 'Spam|verb' ) . '</a>';2116 $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>'; 2108 2117 $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID delete vim-d vim-destructive'>" . __('Delete') . '</a>'; 2109 2118 $actions['edit'] = "<a href='comment.php?action=editcomment&c={$comment->comment_ID}' title='" . __('Edit comment') . "'>". __('Edit') . '</a>'; … … 2510 2519 $hour = '<input type="text" ' . ( $multi ? '' : 'id="hh" ' ) . 'name="hh" value="' . $hh . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />'; 2511 2520 $minute = '<input type="text" ' . ( $multi ? '' : 'id="mn" ' ) . 'name="mn" value="' . $mn . '" size="2" maxlength="2"' . $tab_index_attribute . ' autocomplete="off" />'; 2512 printf(_c('%1$s%2$s, %3$s @ %4$s : %5$s|1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input'), $month, $day, $year, $hour, $minute); 2521 /* translators: 1: month input, 2: day input, 3: year input, 4: hour input, 5: minute input */ 2522 printf(__('%1$s%2$s, %3$s @ %4$s : %5$s'), $month, $day, $year, $hour, $minute); 2513 2523 2514 2524 echo '<input type="hidden" id="ss" name="ss" value="' . $ss . '" />'; … … 3279 3289 $post_states[] = __('Draft'); 3280 3290 if ( 'pending' == $post->post_status && 'pending' != $post_status ) 3281 $post_states[] = _c('Pending|post state'); 3291 /* translators: post state */ 3292 $post_states[] = _x('Pending', 'post state'); 3282 3293 if ( is_sticky($post->ID) ) 3283 3294 $post_states[] = __('Sticky');
Note: See TracChangeset
for help on using the changeset viewer.