Administration: Reduce translation calls after [55969].
Follow-up to [55969]. Props swissspidy, sabernhardt. Fixes #57675. Built from https://develop.svn.wordpress.org/trunk@56013 git-svn-id: http://core.svn.wordpress.org/trunk@55525 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
62416ac9ce
commit
6628bb32a3
|
@ -78,17 +78,17 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
if ( ! is_multisite() ) {
|
||||||
/* translators: Site tagline. */
|
/* translators: Site tagline. */
|
||||||
$sample_tagline = __( 'Just another WordPress site' );
|
$sample_tagline = __( 'Just another WordPress site' );
|
||||||
if ( is_multisite() ) {
|
} else {
|
||||||
/* translators: %s: Network title. */
|
/* translators: %s: Network title. */
|
||||||
$sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name );
|
$sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name );
|
||||||
}
|
}
|
||||||
$tagline_description = sprintf(
|
|
||||||
'%1$s %2$s',
|
|
||||||
__( 'In a few words, explain what this site is about.' ),
|
|
||||||
/* translators: %s: Site tagline example. */
|
/* translators: %s: Site tagline example. */
|
||||||
sprintf( __( 'Example: “%s.”' ), $sample_tagline )
|
$tagline_description = sprintf(
|
||||||
|
__( 'In a few words, explain what this site is about. Example: “%s.”' ),
|
||||||
|
$sample_tagline
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.3-alpha-56012';
|
$wp_version = '6.3-alpha-56013';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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