mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-16 11:35:48 +00:00
Edit Post: Add missing periods.
See #31858. Built from https://develop.svn.wordpress.org/trunk@34486 git-svn-id: http://core.svn.wordpress.org/trunk@34450 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e5e03e787c
commit
340b7a5289
@ -139,7 +139,7 @@ $messages['post'] = array(
|
||||
3 => __( 'Custom field deleted.' ),
|
||||
4 => __( 'Post updated.' ),
|
||||
/* translators: %s: date and time of the revision */
|
||||
5 => isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
||||
5 => isset($_GET['revision']) ? sprintf( __( 'Post restored to revision from %s.' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
||||
6 => __( 'Post published.' ) . $view_post_link_html,
|
||||
7 => __( 'Post saved.' ),
|
||||
8 => __( 'Post submitted.' ) . $preview_post_link_html,
|
||||
@ -153,7 +153,7 @@ $messages['page'] = array(
|
||||
3 => __( 'Custom field deleted.' ),
|
||||
4 => __( 'Page updated.' ),
|
||||
/* translators: %s: date and time of the revision */
|
||||
5 => isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
||||
5 => isset($_GET['revision']) ? sprintf( __( 'Page restored to revision from %s.' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
|
||||
6 => __( 'Page published.' ) . $view_page_link_html,
|
||||
7 => __( 'Page saved.' ),
|
||||
8 => __( 'Page submitted.' ) . $preview_page_link_html,
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34485';
|
||||
$wp_version = '4.4-alpha-34486';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
x
Reference in New Issue
Block a user