From 0236fd226ea4dce1c9cd09a8100a1d374e482a60 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 27 Nov 2017 03:53:40 +0000 Subject: [PATCH] Theme Editor: Translate the URL to the Child Themes Codex page. Props odysseygate, johnpgreen. Merges [42247] to the 4.9 branch. Fixes #42454. Built from https://develop.svn.wordpress.org/branches/4.9@42248 git-svn-id: http://core.svn.wordpress.org/branches/4.9@42077 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/theme-editor.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/theme-editor.php b/wp-admin/theme-editor.php index 22c201e01e..f025c035d0 100644 --- a/wp-admin/theme-editor.php +++ b/wp-admin/theme-editor.php @@ -322,7 +322,7 @@ if ( ! in_array( 'theme_editor_notice', $dismissed_pointers, true ) ) : echo sprintf( /* translators: %s: Codex URL */ __( 'You appear to be making direct edits to your theme in the WordPress dashboard. We recommend that you don’t! Editing your theme directly could break your site and your changes may be lost in future updates. If you need to tweak more than your theme’s CSS, you might want to try making a child theme.' ), - esc_url( 'https://codex.wordpress.org/Child_Themes' ) + esc_url( __( 'https://codex.wordpress.org/Child_Themes' ) ) ); ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index b1a5c06c7a..74b93b80e5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9.1-alpha-42245'; +$wp_version = '4.9.1-alpha-42248'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.