Make WordPress Core

Ticket #11651: 11651.remove-periods.diff

File 11651.remove-periods.diff, 2.3 KB (added by sbressler, 12 years ago)

Remove the periods after the links in the welcome panel

  • wp-admin/includes/dashboard.php

     
    12881288                        <ul>
    12891289                                <li>
    12901290                                        <?php echo sprintf(
    1291                                                 __( '<a href="%s">Fill in your profile</a>.' ),
     1291                                                __( '<a href="%s">Fill in your profile</a>' ),
    12921292                                                esc_url( admin_url('profile.php') )
    12931293                                        ); ?>
    12941294                                </li>
    12951295                                <li>
    12961296                                        <?php echo sprintf(
    1297                                                 __( '<a href="%s">Choose comment settings</a>.' ),
     1297                                                __( '<a href="%s">Choose comment settings</a>' ),
    12981298                                                esc_url( admin_url('options-discussion.php') )
    12991299                                        ); ?>
    13001300                                </li>
    13011301                                <li>
    13021302                                        <?php echo sprintf(
    1303                                                 __( '<a href="%s">Set your time zone</a>.' ),
     1303                                                __( '<a href="%s">Set your time zone</a>' ),
    13041304                                                esc_url( admin_url('options-general.php') )
    13051305                                        ); ?>
    13061306                                </li>
     
    13101310                        <ul>
    13111311                                <li>
    13121312                                        <?php echo sprintf(
    1313                                                 __( '<a href="%s">Edit your site tagline</a>.' ),
     1313                                                __( '<a href="%s">Edit your site tagline</a>' ),
    13141314                                                esc_url( admin_url('options-general.php') )
    13151315                                        ); ?>
    13161316                                </li>
    13171317                                <li>
    13181318                                        <?php echo sprintf(
    1319                                                 __( '<a href="%s">Choose a theme</a>.' ),
     1319                                                __( '<a href="%s">Choose a theme</a>' ),
    13201320                                                esc_url( admin_url('themes.php') )
    13211321                                        ); ?>
    13221322                                </li>
    13231323                                <li>
    13241324                                        <?php echo sprintf(
    1325                                                 __( '<a href="%s">Add some widgets</a>.' ),
     1325                                                __( '<a href="%s">Add some widgets</a>' ),
    13261326                                                esc_url( admin_url('widgets.php') )
    13271327                                        ); ?>
    13281328                                </li>
     
    13321332                        <ul>
    13331333                                <li>
    13341334                                        <?php echo sprintf(
    1335                                                 __( 'Delete the default <a href="%1$s">post</a> and <a href="%2$s">comment</a>.' ),
     1335                                                __( 'Delete the default <a href="%1$s">post</a> and <a href="%2$s">comment</a>' ),
    13361336                                                esc_url( admin_url('edit.php') ),
    13371337                                                esc_url( admin_url('edit-comments.php') )
    13381338                                        ); ?>
    13391339                                </li>
    13401340                                <li>
    13411341                                        <?php echo sprintf(
    1342                                                 __( '<a href="%s">Create your first post</a>.' ),
     1342                                                __( '<a href="%s">Create your first post</a>' ),
    13431343                                                esc_url( admin_url('post-new.php') )
    13441344                                        ); ?>
    13451345                                </li>
    13461346                                <li>
    13471347                                        <?php echo sprintf(
    1348                                                 __( '<a href="%s">Edit the sample page</a> to be about you.' ),
     1348                                                __( '<a href="%s">Edit the sample page</a> to be about you' ),
    13491349                                                esc_url( admin_url('edit.php?post_type=page') )
    13501350                                        ); ?>
    13511351                                </li>