diff --git a/src/wp-includes/theme.php b/src/wp-includes/theme.php
index 865f851a83..66e10b24e8 100644
--- a/src/wp-includes/theme.php
+++ b/src/wp-includes/theme.php
@@ -1795,20 +1795,20 @@ function get_theme_starter_content() {
$core_content = array (
'widgets' => array(
'text_business_info' => array ( 'text', array (
- 'title' => __( 'Find Us' ),
+ 'title' => _x( 'Find Us', 'Theme starter content' ),
'text' => join( '', array (
- '
' . __( 'Address' ) . '
',
- __( '123 Main Street' ) . '
' . __( 'New York, NY 10001' ) . '
',
- '' . __( 'Hours' ) . '
',
- __( 'Monday—Friday: 9:00AM–5:00PM' ) . '
' . __( 'Saturday & Sunday: 11:00AM–3:00PM' ) . '
'
+ '' . _x( 'Address', 'Theme starter content' ) . '
',
+ _x( '123 Main Street', 'Theme starter content' ) . '
' . _x( 'New York, NY 10001', 'Theme starter content' ) . '
',
+ '' . _x( 'Hours', 'Theme starter content' ) . '
',
+ _x( 'Monday—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . '
' . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ) . '
'
) ),
) ),
'search' => array ( 'search', array (
- 'title' => __( 'Site Search' ),
+ 'title' => _x( 'Site Search', 'Theme starter content' ),
) ),
'text_credits' => array ( 'text', array (
- 'title' => __( 'Site Credits' ),
- 'text' => sprintf( __( 'This site was created on %s' ), get_date_from_gmt( current_time( 'mysql', 1 ), 'c' ) ),
+ 'title' => _x( 'Site Credits', 'Theme starter content' ),
+ 'text' => sprintf( _x( 'This site was created on %s', 'Theme starter content' ), get_date_from_gmt( current_time( 'mysql', 1 ), 'c' ) ),
) ),
),
'nav_menus' => array (
@@ -1834,51 +1834,51 @@ function get_theme_starter_content() {
),
'link_yelp' => array(
- 'title' => __( 'Yelp' ),
+ 'title' => _x( 'Yelp', 'Theme starter content' ),
'url' => 'https://www.yelp.com',
),
'link_facebook' => array(
- 'title' => __( 'Facebook' ),
+ 'title' => _x( 'Facebook', 'Theme starter content' ),
'url' => 'https://www.facebook.com/wordpress',
),
'link_twitter' => array(
- 'title' => __( 'Twitter' ),
+ 'title' => _x( 'Twitter', 'Theme starter content' ),
'url' => 'https://twitter.com/wordpress',
),
'link_instagram' => array(
- 'title' => __( 'Instagram' ),
+ 'title' => _x( 'Instagram', 'Theme starter content' ),
'url' => 'https://www.instagram.com/explore/tags/wordcamp/',
),
'link_email' => array(
- 'title' => __( 'Email' ),
+ 'title' => _x( 'Email', 'Theme starter content' ),
'url' => 'mailto:wordpress@example.com',
),
),
'posts' => array(
'home' => array(
'post_type' => 'page',
- 'post_title' => __( 'Homepage' ),
- 'post_content' => __( 'Welcome home.' ),
+ 'post_title' => _x( 'Homepage', 'Theme starter content' ),
+ 'post_content' => _x( 'Welcome home.', 'Theme starter content' ),
),
'about-us' => array(
'post_type' => 'page',
- 'post_title' => __( 'About Us' ),
- 'post_content' => __( 'More than you ever wanted to know.' ),
+ 'post_title' => _x( 'About Us', 'Theme starter content' ),
+ 'post_content' => _x( 'More than you ever wanted to know.', 'Theme starter content' ),
),
'contact-us' => array(
'post_type' => 'page',
- 'post_title' => __( 'Contact Us' ),
- 'post_content' => __( 'Call us at 999-999-9999.' ),
+ 'post_title' => _x( 'Contact Us', 'Theme starter content' ),
+ 'post_content' => _x( 'Call us at 999-999-9999.', 'Theme starter content' ),
),
'blog' => array(
'post_type' => 'page',
- 'post_title' => __( 'Blog' ),
+ 'post_title' => _x( 'Blog', 'Theme starter content' ),
),
'homepage-section' => array(
'post_type' => 'page',
- 'post_title' => __( 'A homepage section' ),
- 'post_content' => __( 'This is an example of a homepage section, which are managed in theme options.' ),
+ 'post_title' => _x( 'A homepage section', 'Theme starter content' ),
+ 'post_content' => _x( 'This is an example of a homepage section, which are managed in theme options.', 'Theme starter content' ),
),
),
);