From 442b46dc2f7b6eec90dd83bdc822ef709f472041 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Mon, 17 Jan 2022 15:38:01 +0000 Subject: [PATCH] i18n: Contextualize "light" color translation strings. This change helps translators to distinguish between color and font-family contexts. Props ironprogrammer, audrasjb, tobifjellner, Presskopp, SergeyBiryukov, hellofromTonya. Fixes #54804. Built from https://develop.svn.wordpress.org/trunk@52588 git-svn-id: http://core.svn.wordpress.org/trunk@52176 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-theme.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index 4a36addfbf..9697fb6a5d 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -982,7 +982,7 @@ final class WP_Theme implements ArrayAccess { 'white' => __( 'White' ), 'yellow' => __( 'Yellow' ), 'dark' => __( 'Dark' ), - 'light' => __( 'Light' ), + 'light' => _x( 'Light', 'color' ), 'fixed-layout' => __( 'Fixed Layout' ), 'fluid-layout' => __( 'Fluid Layout' ), 'responsive-layout' => __( 'Responsive Layout' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index b0c9f3d607..3a3a05c726 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.0-alpha-52585'; +$wp_version = '6.0-alpha-52588'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.