Changeset 44455
- Timestamp:
- 01/08/2019 04:29:06 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/readme.html
r42358 r44455 27 27 </ol> 28 28 </li> 29 <li>Once the configuration file is set up, the installer will set up the tables needed for your blog. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="https://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li>29 <li>Once the configuration file is set up, the installer will set up the tables needed for your site. If there is an error, double check your <code>wp-config.php</code> file, and try again. If it fails again, please go to the <a href="https://wordpress.org/support/" title="WordPress support">support forums</a> with as much data as you can gather.</li> 30 30 <li><strong>If you did not enter a password, note the password given to you.</strong> If you did not provide a username, it will be <code>admin</code>.</li> 31 31 <li>The installer should then send you to the <a href="wp-login.php">login page</a>. Sign in with the username and password you chose during the installation. If a password was generated for you, you can then click on “Profile” to change the password.</li> -
trunk/src/wp-admin/includes/network.php
r43571 r44455 467 467 <?php 468 468 printf( 469 /* translators: 1: wp-config.php, 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy blogging." */469 /* translators: 1: wp-config.php, 2: location of wp-config file, 3: translated version of "That's all, stop editing! Happy publishing." */ 470 470 __( 'Add the following to your %1$s file in %2$s <strong>above</strong> the line reading %3$s:' ), 471 471 '<code>wp-config.php</code>', … … 476 476 * https://i18n.svn.wordpress.org/<locale code>/branches/<wp version>/dist/wp-config-sample.php 477 477 */ 478 '<code>/* ' . __( 'That’s all, stop editing! Happy blogging.' ) . ' */</code>'478 '<code>/* ' . __( 'That’s all, stop editing! Happy publishing.' ) . ' */</code>' 479 479 ); 480 480 ?> -
trunk/src/wp-admin/includes/schema.php
r44450 r44455 1253 1253 'welcome_email' => $welcome_email, 1254 1254 /* translators: %s: site link */ 1255 'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start blogging!' ),1255 'first_post' => __( 'Welcome to %s. This is your first post. Edit or delete it, then start writing!' ), 1256 1256 // @todo - network admins should have a method of editing the network siteurl (used for cookie hash) 1257 1257 'siteurl' => get_option( 'siteurl' ) . '/', -
trunk/src/wp-admin/includes/upgrade.php
r44264 r44455 64 64 update_option( 'siteurl', $guessurl ); 65 65 66 // If not a public blog, don't ping.66 // If not a public site, don't ping. 67 67 if ( ! $public ) { 68 68 update_option( 'default_pingback_flag', 0 ); -
trunk/wp-config-sample.php
r42343 r44455 80 80 define( 'WP_DEBUG', false ); 81 81 82 /* That's all, stop editing! Happy blogging. */82 /* That's all, stop editing! Happy publishing. */ 83 83 84 84 /** Absolute path to the WordPress directory. */
Note: See TracChangeset
for help on using the changeset viewer.