diff --git a/wp-admin/freedoms.php b/wp-admin/freedoms.php index b47465d73a..811777b07b 100644 --- a/wp-admin/freedoms.php +++ b/wp-admin/freedoms.php @@ -42,8 +42,8 @@ include( ABSPATH . 'wp-admin/admin-header.php' );

plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they don’t respect the WordPress license, we don’t recommend them.' ), $plugins_url, $themes_url, 'https://wordpress.org/about/license/' ); ?>

diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index 4d558cf0ee..7c5df8447f 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -210,7 +210,7 @@ function install_popular_tags( $args = array() ) { */ function install_dashboard() { ?> -

WordPress Plugin Directory or upload a plugin in .zip format by clicking the button at the top of this page.' ), 'https://wordpress.org/plugins/' ); ?>

+

WordPress Plugin Directory or upload a plugin in .zip format by clicking the button at the top of this page.' ), __( 'https://wordpress.org/plugins/' ) ); ?>

diff --git a/wp-admin/plugin-install.php b/wp-admin/plugin-install.php index 3ea89e4aa0..47ab6812e8 100644 --- a/wp-admin/plugin-install.php +++ b/wp-admin/plugin-install.php @@ -79,7 +79,7 @@ get_current_screen()->add_help_tab( array( 'id' => 'overview', 'title' => __('Overview'), 'content' => - '

' . sprintf( __('Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.' ), 'https://wordpress.org/plugins/' ) . '

' . + '

' . sprintf( __('Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses.' ), __( 'https://wordpress.org/plugins/' ) ) . '

' . '

' . __( 'You can find new plugins to install by searching or browsing the directory right here in your own Plugins section.' ) . ' ' . __( 'The search results will be updated as you type.' ) . '

' ) ); diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index 1d46238193..0e59ed93a1 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -375,7 +375,7 @@ get_current_screen()->add_help_tab( array( '

' . sprintf( /* translators: %s: WordPress Plugin Directory URL */ __( 'If you would like to see more plugins to choose from, click on the “Add New” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!' ), - 'https://wordpress.org/plugins/' + __( 'https://wordpress.org/plugins/' ) ) . '

' ) ); get_current_screen()->add_help_tab( array( diff --git a/wp-admin/themes.php b/wp-admin/themes.php index c601cd555d..d480ce672b 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -89,7 +89,7 @@ if ( current_user_can( 'install_themes' ) ) { if ( is_multisite() ) { $help_install = '

' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '

'; } else { - $help_install = '

' . sprintf( __('If you would like to see more themes to choose from, click on the “Add New” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'), 'https://wordpress.org/themes/' ) . '

'; + $help_install = '

' . sprintf( __('If you would like to see more themes to choose from, click on the “Add New” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!'), __( 'https://wordpress.org/themes/' ) ) . '

'; } get_current_screen()->add_help_tab( array( diff --git a/wp-includes/version.php b/wp-includes/version.php index f802572c42..5a77562a36 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38324'; +$wp_version = '4.7-alpha-38325'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.