Make WordPress Core

Ticket #35313: 35313.patch

File 35313.patch, 5.6 KB (added by afercia, 9 years ago)
  • src/wp-admin/includes/class-wp-posts-list-table.php

     
    538538
    539539                $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all';
    540540                if ( post_type_supports( $post_type, 'comments' ) && !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) )
    541                         $posts_columns['comments'] = '<span class="vers comment-grey-bubble" title="' . esc_attr__( 'Comments' ) . '"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>';
     541                        $posts_columns['comments'] = '<span class="vers comment-grey-bubble"><span class="screen-reader-text">' . __( 'Comments' ) . '</span></span>';
    542542
    543543                $posts_columns['date'] = __( 'Date' );
    544544
     
    878878
    879879                if ( $can_edit_post && $post->post_status != 'trash' ) {
    880880                        $edit_link = get_edit_post_link( $post->ID );
    881                         echo '<a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . $pad . $title . '</a>';
     881                        echo '<a class="row-title" href="' . $edit_link . '" aria-label="' . esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $title ) ) . '">' . $pad . $title . '</a>';
    882882                } else {
    883883                        echo $pad . $title;
    884884                }
     
    11691169                $post_type_object = get_post_type_object( $post->post_type );
    11701170                $can_edit_post = current_user_can( 'edit_post', $post->ID );
    11711171                $actions = array();
     1172                $title = _draft_or_post_title();
    11721173
    11731174                if ( $can_edit_post && 'trash' != $post->post_status ) {
    1174                         $actions['edit'] = '<a href="' . get_edit_post_link( $post->ID ) . '" title="' . esc_attr__( 'Edit this item' ) . '">' . __( 'Edit' ) . '</a>';
    1175                         $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr__( 'Edit this item inline' ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
     1175                        $actions['edit'] = '<a href="' . get_edit_post_link( $post->ID ) . '" aria-label="' .
     1176                                /* translators: %s: post title */
     1177                                esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $title ) ) . '">' . __( 'Edit' ) . '</a>';
     1178                        $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" aria-label="' .
     1179                                /* translators: %s: post title */
     1180                                esc_attr( sprintf( __( 'Quick edit &#8220;%s&#8221; inline' ), $title ) ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
    11761181                }
    11771182
    11781183                if ( current_user_can( 'delete_post', $post->ID ) ) {
    1179                         if ( 'trash' === $post->post_status )
    1180                                 $actions['untrash'] = "<a title='" . esc_attr__( 'Restore this item from the Trash' ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
    1181                         elseif ( EMPTY_TRASH_DAYS )
    1182                                 $actions['trash'] = "<a class='submitdelete' title='" . esc_attr__( 'Move this item to the Trash' ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . _x( 'Trash', 'verb' ) . "</a>";
    1183                         if ( 'trash' === $post->post_status || !EMPTY_TRASH_DAYS )
    1184                                 $actions['delete'] = "<a class='submitdelete' title='" . esc_attr__( 'Delete this item permanently' ) . "' href='" . get_delete_post_link( $post->ID, '', true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
     1184                        if ( 'trash' === $post->post_status ) {
     1185                                $actions['untrash'] = "<a href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link .
     1186                                        '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'  aria-label='" .
     1187                                        /* translators: %s: post title */
     1188                                        esc_attr__( sprintf( __( 'Restore &#8220;%s&#8221; from the Trash' ), $title ) ) . "'>" . __( 'Restore' ) . "</a>";
     1189                        } elseif ( EMPTY_TRASH_DAYS ) {
     1190                                $actions['trash'] = "<a href='" . get_delete_post_link( $post->ID ) . "' class='submitdelete' aria-label='" .
     1191                                        /* translators: %s: post title */
     1192                                        esc_attr__( sprintf( __( 'Move &#8220;%s&#8221; to the Trash' ), $title ) ) . "'>" . _x( 'Trash', 'verb' ) . "</a>";
     1193                        }
     1194                        if ( 'trash' === $post->post_status || ! EMPTY_TRASH_DAYS ) {
     1195                                $actions['delete'] = "<a href='" . get_delete_post_link( $post->ID, '', true ) . "' class='submitdelete' aria-label='" .
     1196                                        /* translators: %s: post title */
     1197                                        esc_attr__( sprintf( __( 'Delete &#8220;%s&#8221; permanently' ), $title ) ) . "'>" . __( 'Delete Permanently' ) . "</a>";
     1198                        }
    11851199                }
    11861200
    11871201                if ( is_post_type_viewable( $post_type_object ) ) {
    1188                         $title = _draft_or_post_title();
    11891202                        if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) {
    11901203                                if ( $can_edit_post ) {
    11911204                                        $unpublished_link = set_url_scheme( get_permalink( $post ) );
    11921205                                        $preview_link = get_preview_post_link( $post, array(), $unpublished_link );
    1193                                         $actions['view'] = '<a href="' . esc_url( $preview_link ) . '" title="' . esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>';
     1206                                        $actions['view'] = '<a href="' . esc_url( $preview_link ) . '" rel="permalink" aria-label="' .
     1207                                                /* translators: %s: post title */
     1208                                                esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '">' . __( 'Preview' ) . '</a>';
    11941209                                }
    11951210                        } elseif ( 'trash' != $post->post_status ) {
    1196                                 $actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
     1211                                $actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" rel="permalink" aria-label="' .
     1212                                        /* translators: %s: post title */
     1213                                        esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '">' . __( 'View' ) . '</a>';
    11971214                        }
    11981215                }
    11991216