瀏覽代碼

Make the customizer message translatable.

Kjell Reigstad 4 年之前
父節點
當前提交
c241b9fd9c
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      blank-canvas/functions.php

+ 1 - 1
blank-canvas/functions.php

@@ -117,7 +117,7 @@ function blank_canvas_remove_customizer_settings( $wp_customize ) {
 	}
 
 	// Add a Customizer message about the site title & tagline options.
-	$wp_customize->get_section( 'title_tagline' )->description = 'This theme is designed to hide the site title and tagline on all single posts and pages.';
+	$wp_customize->get_section( 'title_tagline' )->description = __( 'This theme is designed to hide the site title and tagline on all single posts and pages.', 'blank-canvas' );
 }
 add_action( 'customize_register', 'blank_canvas_remove_customizer_settings', 11 );