Make WordPress Core

Changeset 34486


Ignore:
Timestamp:
09/24/2015 08:53:21 AM (9 years ago)
Author:
ocean90
Message:

Edit Post: Add missing periods.

See #31858.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-advanced.php

    r34473 r34486  
    140140     4 => __( 'Post updated.' ),
    141141    /* translators: %s: date and time of the revision */
    142      5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
     142     5 => isset($_GET['revision']) ? sprintf( __( 'Post restored to revision from %s.' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
    143143     6 => __( 'Post published.' ) . $view_post_link_html,
    144144     7 => __( 'Post saved.' ),
     
    154154     4 => __( 'Page updated.' ),
    155155    /* translators: %s: date and time of the revision */
    156      5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
     156     5 => isset($_GET['revision']) ? sprintf( __( 'Page restored to revision from %s.' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
    157157     6 => __( 'Page published.' ) . $view_page_link_html,
    158158     7 => __( 'Page saved.' ),
Note: See TracChangeset for help on using the changeset viewer.