Make WordPress Core


Ignore:
Timestamp:
11/18/2009 10:45:24 PM (14 years ago)
Author:
westi
Message:

First pass first post improvements. See #11008 props demetris.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/upgrade.php

    r11958 r12212  
    163163                                'post_date' => $now,
    164164                                'post_date_gmt' => $now_gmt,
    165                                 'post_content' => __('Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!'),
     165                                'post_content' => sprintf(__('
     166<p>Welcome to WordPress!  This post contains important information.  After you read it, you can make it private to hide it from visitors but still have the information handy for future reference.</p>
     167<p>First things first:</p>
     168<ul>
     169<li><a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Subscribe to the WordPress mailing list for release notifications</a></li>
     170</ul>
     171<p>As a subscriber, you will receive an email every time an update is available (and only then).  This will make it easier to keep your site up to date, and secure from evildoers.
     172When a new version is released, <a href="%2$s" title="If you are already logged in, this will take you directly to the Dashboard">log in to the Dashboard</a> and follow the instructions.
     173Upgrading is a couple of clicks!</p>
     174<p>Then you can start enjoying the WordPress experience:</p>
     175<ul>
     176<li>Edit your personal information at <a href="%3$s" title="Edit settings like your password, your display name and your contact information">Users &#8250; Your Profile</a></li>
     177<li>Start publishing at <a href="%4$s" title="Create a new post">Posts &#8250; Add New</a> and at <a href="%5$s" title="Create a new page">Pages &#8250; Add New</a></li>
     178<li>Browse and install plugins at <a href="%6$s" title="Browse and install plugins at the official WordPress repository directly from your Dashboard">Plugins &#8250; Add New</a></li>
     179<li>Browse and install themes at <a href="%7$s" title="Browse and install themes at the official WordPress repository directly from your Dashboard">Appearance &#8250; Add New Themes</a></li>
     180<li>Modify and prettify your website&#8217;s links at <a href="%8$s" title="For example, select a link structure like: http://example.com/1999/12/post-name">Settings &#8250; Permalinks</a></li>
     181<li>Import content from another system or WordPress site at <a href="%9$s" title="WordPress comes with importers for the most common publishing systems">Tools &#8250; Import</a></li>
     182<li>Find answers to your questions at the <a href="%10$s" title="The official WordPress documentation, maintained by the WordPress community">WordPress Codex</a></li>
     183</ul>
     184<p>To keep this post for reference, <a href="%11$s" title="Click to edit the content and settings of this post">click to edit it</a>, go to the Publish box and change its Visibility from Public to Private.</p>
     185<p>Thank you for selecting WordPress.  We wish you happy publishing!</p>
     186<p>PS.  Not yet subscribed for update notifications?  <a href="%1$s" title="Subscribe to the WordPress mailing list for Release Notifications">Do it now!</a></p>
     187'), _c('http://wordpress.org/download/','url for release notification mailing list subscription.'), admin_url(''), admin_url('profile.php'), admin_url('post-new.php'), admin_url('page-new.php'),
     188admin_url('plugin-install.php'), admin_url('theme-install.php'), admin_url('options-permalink.php'), admin_url('import.php'), _c('http://codex.wordpress.org','url for codex documentation.'), admin_url('post.php?action=edit&post=1')),
    166189                                'post_excerpt' => '',
    167                                 'post_title' => __('Hello world!'),
     190                                'post_title' => __('Welcome!'),
    168191                                /* translators: Default post slug */
    169                                 'post_name' => _x('hello-world', 'Default post slug'),
     192                                'post_name' => _x('welcome', 'Default post slug'),
    170193                                'post_modified' => $now,
    171194                                'post_modified_gmt' => $now_gmt,
Note: See TracChangeset for help on using the changeset viewer.