Missing localisation. Closes #445.

This commit is contained in:
Mike Jolley 2012-01-05 10:45:01 +00:00
parent 2327ec3d70
commit 840e41c3e4
1 changed files with 3 additions and 3 deletions

View File

@ -291,15 +291,15 @@ function woocommerce_custom_product_columns($column) {
echo '<abbr title="' . $t_time . '">' . apply_filters( 'post_date_column_time', $h_time, $post ) . '</abbr><br />';
if ( 'publish' == $post->post_status ) :
_e( 'Published' );
_e( 'Published', 'woothemes' );
elseif ( 'future' == $post->post_status ) :
if ( $time_diff > 0 ) :
echo '<strong class="attention">' . __( 'Missed schedule', 'woothemes' ) . '</strong>';
else :
_e( 'Scheduled' );
_e( 'Scheduled', 'woothemes' );
endif;
else :
_e( 'Last Modified' );
_e( 'Last Modified', 'woothemes' );
endif;
if ( $this_data = $product->visibility ) :