From 58a904e89376cab7fb92b84a2f8ce6809469bb08 Mon Sep 17 00:00:00 2001 From: Dion Hulse Date: Mon, 27 Nov 2017 03:52:47 +0000 Subject: [PATCH] Theme Editor: Translate the URL to the Child Themes Codex page. Props odysseygate, johnpgreen. Fixes #42454. Built from https://develop.svn.wordpress.org/trunk@42247 git-svn-id: http://core.svn.wordpress.org/trunk@42076 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 7f658848d4..5d0f2c6499 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 14dcaa25ee..8c46d265b9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-42246'; +$wp_version = '5.0-alpha-42247'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.