Changeset 56013 for trunk/src/wp-admin/options-general.php
- Timestamp:
- 06/24/2023 05:28:15 AM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/options-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/options-general.php
r55988 r56013 79 79 80 80 <?php 81 /* translators: Site tagline. */ 82 $sample_tagline = __( 'Just another WordPress site' ); 83 if ( is_multisite() ) { 81 if ( ! is_multisite() ) { 82 /* translators: Site tagline. */ 83 $sample_tagline = __( 'Just another WordPress site' ); 84 } else { 84 85 /* translators: %s: Network title. */ 85 86 $sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name ); 86 87 } 88 /* translators: %s: Site tagline example. */ 87 89 $tagline_description = sprintf( 88 '%1$s %2$s', 89 __( 'In a few words, explain what this site is about.' ), 90 /* translators: %s: Site tagline example. */ 91 sprintf( __( 'Example: “%s.”' ), $sample_tagline ) 90 __( 'In a few words, explain what this site is about. Example: “%s.”' ), 91 $sample_tagline 92 92 ); 93 93 ?>
Note: See TracChangeset
for help on using the changeset viewer.