Changeset 45932 for trunk/src/wp-admin/includes/schema.php
- Timestamp:
- 09/03/2019 12:39:13 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/schema.php
r45910 r45932 416 416 'home' => $guessurl, 417 417 'blogname' => __( 'My Site' ), 418 /* translators: site tagline*/418 /* translators: Site tagline. */ 419 419 'blogdescription' => __( 'Just another WordPress site' ), 420 420 'users_can_register' => 0, 421 421 'admin_email' => 'you@example.com', 422 /* translators: default start of the week. 0 = Sunday, 1 = Monday*/422 /* translators: Default start of the week. 0 = Sunday, 1 = Monday. */ 423 423 'start_of_week' => _x( '1', 'start of week' ), 424 424 'use_balanceTags' => 0, … … 437 437 'default_pingback_flag' => 1, 438 438 'posts_per_page' => 10, 439 /* translators: default date format, see https://secure.php.net/date */439 /* translators: Default date format, see https://secure.php.net/date */ 440 440 'date_format' => __( 'F j, Y' ), 441 /* translators: default time format, see https://secure.php.net/date */441 /* translators: Default time format, see https://secure.php.net/date */ 442 442 'time_format' => __( 'g:i a' ), 443 /* translators: links last updated date format, see https://secure.php.net/date */443 /* translators: Links last updated date format, see https://secure.php.net/date */ 444 444 'links_updated_date_format' => __( 'F j, Y g:i a' ), 445 445 'comment_moderation' => 0, … … 557 557 // 3.0 multisite 558 558 if ( is_multisite() ) { 559 /* translators: site tagline*/559 /* translators: %s: Network title. */ 560 560 $defaults['blogdescription'] = sprintf( __( 'Just another %s site' ), get_network()->site_name ); 561 561 $defaults['permalink_structure'] = '/%year%/%monthnum%/%day%/%postname%/'; … … 1086 1086 1087 1087 $msg .= '<p>' . sprintf( 1088 /* translators: %s: host name*/1088 /* translators: %s: Host name. */ 1089 1089 __( 'The installer attempted to contact a random hostname (%s) on your domain.' ), 1090 1090 '<code>' . $hostname . '</code>' 1091 1091 ); 1092 1092 if ( ! empty( $errstr ) ) { 1093 /* translators: %s: error message*/1093 /* translators: %s: Error message. */ 1094 1094 $msg .= ' ' . sprintf( __( 'This resulted in an error message: %s' ), '<code>' . $errstr . '</code>' ); 1095 1095 } … … 1097 1097 1098 1098 $msg .= '<p>' . sprintf( 1099 /* translators: %s: asterisk symbol (*)*/1099 /* translators: %s: Asterisk symbol (*). */ 1100 1100 __( 'To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool.' ), 1101 1101 '<code>*</code>' … … 1250 1250 'wpmu_upgrade_site' => $wp_db_version, 1251 1251 'welcome_email' => $welcome_email, 1252 /* translators: %s: site link*/1252 /* translators: %s: Site link. */ 1253 1253 'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start writing!' ), 1254 1254 // @todo - network admins should have a method of editing the network siteurl (used for cookie hash)
Note: See TracChangeset
for help on using the changeset viewer.