From a9ea4a1f7dd89ae211a9bb5c7ff27e3f20f82946 Mon Sep 17 00:00:00 2001
From: Gary Pendergast
Date: Tue, 24 Jul 2018 02:52:29 +0000
Subject: [PATCH] Dashboard: Make some of the "Try Gutenberg" links
translatable.
Some of the links in the "Try Gutenberg" callout go to wordpress.org, so would potentially be better served by localised site.
Props dimadin.
See #41316.
Built from https://develop.svn.wordpress.org/branches/4.9@43522
git-svn-id: http://core.svn.wordpress.org/branches/4.9@43351 1a063a9b-81f0-0310-95a4-ce76da25c4cd
---
wp-admin/includes/dashboard.php | 4 ++--
wp-includes/version.php | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php
index 1c15846997..b4487afa9e 100644
--- a/wp-admin/includes/dashboard.php
+++ b/wp-admin/includes/dashboard.php
@@ -1701,7 +1701,7 @@ function wp_try_gutenberg_panel() {
printf(
/* translators: Link to https://wordpress.org/gutenberg/ */
__( 'Learn more about Gutenberg' ),
- 'https://wordpress.org/gutenberg/'
+ __( 'https://wordpress.org/gutenberg/' )
);
?>
@@ -1719,7 +1719,7 @@ function wp_try_gutenberg_panel() {
printf(
/* translators: Link to the Classic Editor plugin page */
__( 'Install the Classic Editor plugin to keep using the current editor until you’re ready to make the switch.' ),
- 'http://wordpress.org/plugins/classic-editor'
+ __( 'https://wordpress.org/plugins/classic-editor' )
);
?>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index b424b1aac5..02d767e814 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.9.8-beta2-43516';
+$wp_version = '4.9.8-beta2-43522';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.