Fix theme translate

This commit is contained in:
Fabiano Alencar 2018-08-15 10:02:54 -03:00
parent 8f771ddd1b
commit cbc4456c56
1 changed files with 2 additions and 2 deletions

View File

@ -191,7 +191,7 @@ function tainacan_customize_register( $wp_customize ) {
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'main_text_color', array(
'label' => __( 'Main Text Color', 'tainacan' ),
'label' => __( 'Main Text Color', 'tainacan-theme' ),
'section' => 'colors',
) ) );
@ -203,7 +203,7 @@ function tainacan_customize_register( $wp_customize ) {
) );
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'secondary_text_color', array(
'label' => __( 'Secondary Text Color', 'tainacan' ),
'label' => __( 'Secondary Text Color', 'tainacan-theme' ),
'section' => 'colors',
) ) ); */
}