From 50d4d4a9568f26c367b364ea5d5f8c3d02112e48 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 29 Aug 2015 01:40:21 +0000 Subject: [PATCH] Make a period translatable. props mako09. fixes #33594. Built from https://develop.svn.wordpress.org/trunk@33802 git-svn-id: http://core.svn.wordpress.org/trunk@33770 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/update-core.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/update-core.php b/wp-admin/update-core.php index 0409c72f29..235b09c16e 100644 --- a/wp-admin/update-core.php +++ b/wp-admin/update-core.php @@ -284,8 +284,8 @@ function list_plugin_updates() { } $details_url = self_admin_url('plugin-install.php?tab=plugin-information&plugin=' . $plugin_data->update->slug . '§ion=changelog&TB_iframe=true&width=640&height=662'); - $details_text = sprintf(__('View version %1$s details'), $plugin_data->update->new_version); - $details = sprintf('%3$s.', esc_url($details_url), esc_attr($plugin_data->Name), $details_text); + $details_text = sprintf(__('View version %1$s details.'), $plugin_data->update->new_version); + $details = sprintf('%3$s', esc_url($details_url), esc_attr($plugin_data->Name), $details_text); echo " diff --git a/wp-includes/version.php b/wp-includes/version.php index 3af857865e..03a868bdf7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33801'; +$wp_version = '4.4-alpha-33802'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.