diff --git wp-admin/css/wp-admin-rtl.dev.css wp-admin/css/wp-admin-rtl.dev.css
index adc3a77..541ced5 100644
|
|
|
td.available-theme { |
| 92 | 92 | margin-left: 10px; |
| 93 | 93 | } |
| 94 | 94 | .tablenav a.button-secondary { |
| 95 | | margin: 8px 0 0 8px; |
| | 95 | margin: 3px 0 0 8px; |
| 96 | 96 | } |
| 97 | 97 | .tablenav .tablenav-pages { |
| 98 | 98 | float: left; |
| … |
… |
p.search-box { |
| 366 | 366 | margin-right: 0; |
| 367 | 367 | margin-left: 8px; |
| 368 | 368 | } |
| | 369 | .tablenav .actions { |
| | 370 | padding: 2px 0 0 8px; |
| | 371 | } |
| 369 | 372 | .tablenav .delete { |
| 370 | 373 | margin-right: 0; |
| 371 | 374 | margin-left: 20px; |
| … |
… |
p.search-box { |
| 373 | 376 | td.action-links, th.action-links { |
| 374 | 377 | text-align: left; |
| 375 | 378 | } |
| | 379 | .widefat th a span { |
| | 380 | float:right; |
| | 381 | } |
| | 382 | .sorting-indicator { |
| | 383 | margin:5px 7px 0 0; |
| | 384 | } |
| | 385 | #minor-publishing .ajax-loading { |
| | 386 | float:right; |
| | 387 | padding:3px 4px 0 0; |
| | 388 | } |
| 376 | 389 | /* 2000 - 2300 |
| 377 | 390 | =================================== */ |
| 378 | 391 | .filter .subsubsub { |
diff --git wp-admin/css/wp-admin.dev.css wp-admin/css/wp-admin.dev.css
index b338b4a..9d4c3f0 100644
|
|
|
span.post-state span { |
| 1545 | 1545 | color: #555; |
| 1546 | 1546 | } |
| 1547 | 1547 | |
| 1548 | | |
| 1549 | 1548 | /*------------------------------------------------------------------------------ |
| 1550 | 1549 | 10.1 - Inline Editing |
| 1551 | 1550 | ------------------------------------------------------------------------------*/ |
diff --git wp-admin/includes/class-wp-comments-list-table.php wp-admin/includes/class-wp-comments-list-table.php
index 16b5106..bfc29a3 100644
|
|
|
class WP_Comments_List_Table extends WP_List_Table { |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | 341 | echo '<div class="submitted-on">'; |
| 342 | | /* translators: 2: comment date, 3: comment time */ |
| 343 | | printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url, |
| 344 | | /* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ) ), |
| 345 | | /* translators: comment time format. See http://php.net/date */ get_comment_date( get_option( 'time_format' ) ) ); |
| 346 | | |
| | 342 | $submitted_on = array( |
| | 343 | /* translators: 2: comment date, 3: comment time */ |
| | 344 | sprintf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url, |
| | 345 | /* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ) ), |
| | 346 | /* translators: comment time format. See http://php.net/date */ get_comment_date( get_option( 'time_format' ) ) ), |
| | 347 | ); |
| | 348 | |
| 347 | 349 | if ( $comment->comment_parent ) { |
| 348 | 350 | $parent = get_comment( $comment->comment_parent ); |
| 349 | 351 | $parent_link = esc_url( get_comment_link( $comment->comment_parent ) ); |
| 350 | 352 | $name = get_comment_author( $parent->comment_ID ); |
| 351 | | printf( ' | '.__( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name ); |
| | 353 | $submitted_on[] = ' | '; |
| | 354 | $submitted_on[] = sprintf( __( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name ); |
| | 355 | } |
| | 356 | |
| | 357 | if ( count( $submitted_on ) > 1 && is_rtl() ) { |
| | 358 | $submitted_on = array_reverse( $submitted_on ); |
| 352 | 359 | } |
| | 360 | echo implode( '', $submitted_on ); |
| 353 | 361 | |
| 354 | 362 | echo '</div>'; |
| 355 | 363 | comment_text(); |