Make WordPress Core


Ignore:
Timestamp:
05/08/2013 09:27:31 PM (11 years ago)
Author:
SergeyBiryukov
Message:

Use ellipsis instead of three dots. props tjsingleton, jordie23, wojtek.szkutnik, DrewAPicture, SergeyBiryukov. see #8714.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/upload.php

    r23567 r24207  
    100100
    101101                if ( !wp_trash_post( $post_id ) )
    102                     wp_die( __( 'Error in moving to trash...' ) );
     102                    wp_die( __( 'Error in moving to trash.' ) );
    103103            }
    104104            $location = add_query_arg( array( 'trashed' => count( $post_ids ), 'ids' => join( ',', $post_ids ) ), $location );
     
    112112
    113113                if ( !wp_untrash_post( $post_id ) )
    114                     wp_die( __( 'Error in restoring from trash...' ) );
     114                    wp_die( __( 'Error in restoring from trash.' ) );
    115115            }
    116116            $location = add_query_arg( 'untrashed', count( $post_ids ), $location );
     
    124124
    125125                if ( !wp_delete_attachment( $post_id_del ) )
    126                     wp_die( __( 'Error in deleting...' ) );
     126                    wp_die( __( 'Error in deleting.' ) );
    127127            }
    128128            $location = add_query_arg( 'deleted', count( $post_ids ), $location );
Note: See TracChangeset for help on using the changeset viewer.