From 0ac9a442447c9efb4a5c348306406fa93a427de1 Mon Sep 17 00:00:00 2001 From: Ian Stewart Date: Wed, 12 Nov 2014 23:00:28 +0000 Subject: [PATCH] Twenty Fifteen: since color schemes can be customized let's call them base color schemes instead of just color schemes. Props celloexpressions, iandstewart, fixes #30316 git-svn-id: https://develop.svn.wordpress.org/trunk@30315 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfifteen/inc/customizer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentyfifteen/inc/customizer.php b/src/wp-content/themes/twentyfifteen/inc/customizer.php index 7c4b401e1a..ad03a6cef1 100644 --- a/src/wp-content/themes/twentyfifteen/inc/customizer.php +++ b/src/wp-content/themes/twentyfifteen/inc/customizer.php @@ -34,7 +34,7 @@ function twentyfifteen_customize_register( $wp_customize ) { ) ); $wp_customize->add_control( 'color_scheme', array( - 'label' => esc_html__( 'Color Scheme', 'twentyfifteen' ), + 'label' => esc_html__( 'Base Color Scheme', 'twentyfifteen' ), 'section' => 'colors', 'type' => 'select', 'choices' => twentyfifteen_get_color_scheme_choices(),