mirror of
git://develop.git.wordpress.org/
synced 2025-03-17 10:29:51 +01:00
Administration: Reduce translation calls after [55969].
Follow-up to [55969]. Props swissspidy, sabernhardt. Fixes #57675. git-svn-id: https://develop.svn.wordpress.org/trunk@56013 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
ef6c0b7e42
commit
e628c736c8
@ -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: “%s.”' ), $sample_tagline )
|
||||
__( 'In a few words, explain what this site is about. Example: “%s.”' ),
|
||||
$sample_tagline
|
||||
);
|
||||
?>
|
||||
<tr>
|
||||
|
Loading…
x
Reference in New Issue
Block a user