Make WordPress Core

Changeset 19327


Ignore:
Timestamp:
11/17/2011 10:54:54 PM (13 years ago)
Author:
ryan
Message:

First pass at Welcome Screen content. Props jane. see #11651

File:
1 edited

Legend:

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

    r19326 r19327  
    12921292        <div class="welcome-panel-content">
    12931293
    1294         <h3><?php _e( 'Welcome to WordPress!' ); ?></h3>
    1295         <p class="about-description"><?php _e( 'Welcome to your new site! Here are some things most people do when they set up a new WordPress site. To get started, use the links below and we&#8217;ll give you some extra help with these tasks:' ); ?></p>
     1294        <h3><?php _e( 'Welcome to your new WordPress site! ' ); ?></h3>
     1295        <p class="about-description"><?php _e( 'If you need help getting started, check out our documentation on <a href="">First Steps with WordPress</a>. If you&#8217;d rather dive right in, here are a few things most people do first when they set up a new WordPress site. If you need help, use the Help tabs in the upper right corner to get information on how to use your current screen and where to go for more assistance.' ); ?></p>
    12961296
    12971297        <div class="welcome-panel-column">
    12981298            <h4>
    12991299                <span class="icon16 icon-settings"></span>
    1300                 <?php _e( 'Customize your site' ); ?>
     1300                <?php _e( 'Basic Settings' ); ?>
    13011301            </h4>
    1302             <p><?php echo ( 'Holy pancakes, filler content! You should customize your site settings!' ); ?></p>
     1302            <p><?php _e( 'Here are a few easy things you can do to get your feet wet. Make sure to click Save on each Settings screen.' ); ?></p>
    13031303            <ul>
    13041304                <li>
    13051305                    <?php echo sprintf(
    1306                         __( '<a href="%s">Fill in your profile</a>.' ),
    1307                         esc_url( admin_url('profile.php') )
     1306                        __( '<a href="%s">Choose your privacy setting</a>.' ),
     1307                        esc_url( admin_url('options-privacy.php') )
    13081308                    ); ?>
    13091309                </li>
    13101310                <li>
    13111311                    <?php echo sprintf(
    1312                         __( '<a href="%s">Choose comment settings</a>.' ),
     1312                        __( '<a href="%s">Select your tagline and time zone</a>.' ),
     1313                        esc_url( admin_url('options-general.php') )
     1314                    ); ?>
     1315                </li>
     1316                <li>
     1317                    <?php echo sprintf(
     1318                        __( '<a href="%s">Turn comments on or off</a>.' ),
    13131319                        esc_url( admin_url('options-discussion.php') )
    13141320                    ); ?>
     
    13161322                <li>
    13171323                    <?php echo sprintf(
    1318                         __( '<a href="%s">Set your time zone and site tagline</a>.' ),
    1319                         esc_url( admin_url('options-general.php') )
    1320                     ); ?>
    1321                 </li>
    1322                 <li>
    1323                     <?php echo sprintf(
    1324                         __( '<a href="%s">Choose a theme</a>.' ),
    1325                         esc_url( admin_url('themes.php') )
     1324                        __( '<a href="%s">Fill in your profile</a>.' ),
     1325                        esc_url( admin_url('profile.php') )
    13261326                    ); ?>
    13271327                </li>
     
    13311331            <h4>
    13321332                <span class="icon16 icon-page"></span>
    1333                 <?php _e( 'Create some content' ); ?>
     1333                <?php _e( 'Add Real Content' ); ?>
    13341334            </h4>
    1335             <p><?php echo ( 'What is a WordPress site without a voice? Publishing brings joy to the web.' ); ?></p>
     1335            <p><?php _e( 'Check out the sample page & post editors to see how it all works, then delete the default content and write your own!' ); ?></p>
    13361336            <ul>
    13371337                <li>
    13381338                    <?php echo sprintf(
    1339                         __( 'Delete the <a href="%1$s">sample post</a> and <a href="%2$s">page</a>.' ),
    1340                         esc_url( admin_url('edit.php') ),
     1339                        __( 'View the <a href="%1$s">sample page</a> and <a href="%2$s">post</a>.' ),
     1340                        esc_url( get_permalink( 2 ) ),
     1341                        esc_url( get_permalink( 1 ) )
     1342                    ); ?>
     1343                </li>
     1344                <li>
     1345                    <?php echo sprintf(
     1346                        __( 'Delete the <a href="%1$s">sample page</a> and <a href="%2$s">post</a>.' ),
     1347                        esc_url( admin_url('edit.php?post_type=page') ),
     1348                        esc_url( admin_url('edit.php') )
     1349                    ); ?>
     1350                </li>
     1351                <li>
     1352                    <?php echo sprintf(
     1353                        __( '<a href="%s">Create an About Me page</a>.' ),
    13411354                        esc_url( admin_url('edit.php?post_type=page') )
    13421355                    ); ?>
     
    13441357                <li>
    13451358                    <?php echo sprintf(
    1346                         __( '<a href="%s">Create your first post</a>.' ),
     1359                        __( '<a href="%s">Write your first post</a>.' ),
    13471360                        esc_url( admin_url('post-new.php') )
     1361                    ); ?>
     1362                </li>
     1363            </ul>
     1364        </div>
     1365        <div class="welcome-panel-column">
     1366            <h4>
     1367                <span class="icon16 icon-appearance"></span>
     1368                <?php _e( 'Customize Your Site' ); ?>
     1369            </h4>
     1370            <p><?php printf( __( 'Use the default theme -- %1$s -- or <a href="%2$s">choose a new one</a>. If you stick with %3$s, here are a few ways to make your site look unique.' ), __( 'Twenty Eleven' ), esc_url( admin_url( 'themes.php' ) ), __( 'Twenty Eleven' ) ); ?></p>
     1371            <ul>
     1372                <li>
     1373                    <?php echo sprintf(
     1374                        __( '<a href="%s">Choose light or dark</a>' ),
     1375                        esc_url( admin_url( 'themes.php?page=theme_options' ) )
    13481376                    ); ?>
    13491377                </li>
    13501378                <li>
    13511379                    <?php echo sprintf(
    1352                         __( '<a href="%s">Create an about page</a>.' ),
    1353                         esc_url( admin_url('edit.php?post_type=page') )
     1380                        __( '<a href="%s">Set a background color</a>' ),
     1381                        esc_url( admin_url( 'themes.php?page=custom-background' ) )
     1382                    ); ?>
     1383                </li>
     1384                <li>
     1385                    <?php echo sprintf(
     1386                        __( '<a href="%s">Select a new header image</a>' ),
     1387                        esc_url( admin_url( 'themes.php?page=custom-header' ) )
     1388                    ); ?>
     1389                </li>
     1390                <li>
     1391                    <?php echo sprintf(
     1392                        __( '<a href="%s">Add some widgets</a>' ),
     1393                        esc_url( admin_url( 'widgets.php' ) )
    13541394                    ); ?>
    13551395                </li>
    13561396            </ul>
    13571397        </div>
     1398        <p><?php printf( __( 'Already know what you&#8217;re doing? <a href="%s">Dismiss this message</a>.' ), '#' ) ?></p>
    13581399        </div>
    13591400    </div>
Note: See TracChangeset for help on using the changeset viewer.