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
This commit is contained in:
Gary Pendergast 2018-07-24 02:52:29 +00:00
parent 67256370f1
commit a9ea4a1f7d
2 changed files with 3 additions and 3 deletions

View File

@ -1701,7 +1701,7 @@ function wp_try_gutenberg_panel() {
printf(
/* translators: Link to https://wordpress.org/gutenberg/ */
__( '<a href="%s">Learn more about Gutenberg</a>' ),
'https://wordpress.org/gutenberg/'
__( 'https://wordpress.org/gutenberg/' )
);
?>
</p>
@ -1719,7 +1719,7 @@ function wp_try_gutenberg_panel() {
printf(
/* translators: Link to the Classic Editor plugin page */
__( 'Install the <a href="%s">Classic Editor plugin</a> to keep using the current editor until youre ready to make the switch.' ),
'http://wordpress.org/plugins/classic-editor'
__( 'https://wordpress.org/plugins/classic-editor' )
);
?>
</p>

View File

@ -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.