Make WordPress Core


Ignore:
Timestamp:
12/04/2014 10:56:31 PM (11 years ago)
Author:
iandstewart
Message:

Twenty Fifteen: updating customizer label text for more clarity.

Props iamtakashi, fixes #30545.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfifteen/inc/customizer.php

    r30728 r30741  
    5050    $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'sidebar_textcolor', array(
    5151        'label'       => esc_html__( 'Header and Sidebar Text Color', 'twentyfifteen' ),
    52         'description' => esc_html__( 'Only applied to the sidebar on wider screens. On small screens the sidebar will become the header.', 'twentyfifteen' ),
     52        'description' => esc_html__( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ),
    5353        'section'     => 'colors',
    5454    ) ) );
     
    6666    $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_background_color', array(
    6767        'label'       => esc_html__( 'Header and Sidebar Background Color', 'twentyfifteen' ),
    68         'description' => esc_html__( 'Only applied to the sidebar on wider screens. On small screens the sidebar will become the header.', 'twentyfifteen' ),
     68        'description' => esc_html__( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ),
    6969        'section'     => 'colors',
    7070    ) ) );
    7171
    7272    // Add an additional description to the header image section.
    73     $wp_customize->get_section( 'header_image' )->description = esc_html__( 'Only applied to the sidebar on wide screens. On small screens it will be applied to the header.', 'twentyfifteen' );
     73    $wp_customize->get_section( 'header_image' )->description = esc_html__( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' );
    7474}
    7575add_action( 'customize_register', 'twentyfifteen_customize_register', 11 );
Note: See TracChangeset for help on using the changeset viewer.