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:
parent
67256370f1
commit
a9ea4a1f7d
|
@ -1701,7 +1701,7 @@ function wp_try_gutenberg_panel() {
|
||||||
printf(
|
printf(
|
||||||
/* translators: Link to https://wordpress.org/gutenberg/ */
|
/* translators: Link to https://wordpress.org/gutenberg/ */
|
||||||
__( '<a href="%s">Learn more about Gutenberg</a>' ),
|
__( '<a href="%s">Learn more about Gutenberg</a>' ),
|
||||||
'https://wordpress.org/gutenberg/'
|
__( 'https://wordpress.org/gutenberg/' )
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
|
@ -1719,7 +1719,7 @@ function wp_try_gutenberg_panel() {
|
||||||
printf(
|
printf(
|
||||||
/* translators: Link to the Classic Editor plugin page */
|
/* translators: Link to the Classic Editor plugin page */
|
||||||
__( 'Install the <a href="%s">Classic Editor plugin</a> to keep using the current editor until you’re ready to make the switch.' ),
|
__( 'Install the <a href="%s">Classic Editor plugin</a> 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' )
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue