Skip to content

Commit c9ea1de

Browse files
committed
Updates: Translate plugin data on the Updates screen.
Built from https://develop.svn.wordpress.org/trunk@39808 git-svn-id: http://core.svn.wordpress.org/trunk@39746 1a063a9b-81f0-0310-95a4-ce76da25c4cd
1 parent ce7fb29 commit c9ea1de

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: wp-admin/update-core.php

+2
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,8 @@ function list_plugin_updates() {
250250
<tbody class="plugins">
251251
<?php
252252
foreach ( (array) $plugins as $plugin_file => $plugin_data ) {
253+
$plugin_data = (object) _get_plugin_data_markup_translate( $plugin_file, (array) $plugin_data, false, true );
254+
253255
// Get plugin compat for running version of WordPress.
254256
if ( isset($plugin_data->update->tested) && version_compare($plugin_data->update->tested, $cur_wp_version, '>=') ) {
255257
$compat = '<br />' . sprintf(__('Compatibility with WordPress %1$s: 100%% (according to its author)'), $cur_wp_version);

Diff for: wp-includes/version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* @global string $wp_version
66
*/
7-
$wp_version = '4.8-alpha-39807';
7+
$wp_version = '4.8-alpha-39808';
88

99
/**
1010
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

0 commit comments

Comments
 (0)