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:
audrasjb 2023-06-24 05:30:21 +00:00
parent 62416ac9ce
commit 6628bb32a3
2 changed files with 8 additions and 8 deletions

View File

@ -78,17 +78,17 @@ require_once ABSPATH . 'wp-admin/admin-header.php';
</tr>
<?php
/* translators: Site tagline. */
$sample_tagline = __( 'Just another WordPress site' );
if ( is_multisite() ) {
if ( ! is_multisite() ) {
/* translators: Site tagline. */
$sample_tagline = __( 'Just another WordPress site' );
} else {
/* translators: %s: Network title. */
$sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name );
}
/* translators: %s: Site tagline example. */
$tagline_description = sprintf(
'%1$s %2$s',
__( 'In a few words, explain what this site is about.' ),
/* translators: %s: Site tagline example. */
sprintf( __( 'Example: &#8220;%s.&#8221;' ), $sample_tagline )
__( 'In a few words, explain what this site is about. Example: &#8220;%s.&#8221;' ),
$sample_tagline
);
?>
<tr>

View File

@ -16,7 +16,7 @@
*
* @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.