From 0e41b5d52fdc6af6442816b5f465c9db9f84e126 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 19 Sep 2024 06:51:18 +0200 Subject: Adding upstream version 6.6.1+dfsg1. Signed-off-by: Daniel Baumann --- wp-includes/class-wp-textdomain-registry.php | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'wp-includes/class-wp-textdomain-registry.php') diff --git a/wp-includes/class-wp-textdomain-registry.php b/wp-includes/class-wp-textdomain-registry.php index fe6d04b..7037b2b 100644 --- a/wp-includes/class-wp-textdomain-registry.php +++ b/wp-includes/class-wp-textdomain-registry.php @@ -88,14 +88,21 @@ class WP_Textdomain_Registry { * @param string $domain Text domain. * @param string $locale Locale. * - * @return string|false MO file path or false if there is none available. + * @return string|false Languages directory path or false if there is none available. */ public function get( $domain, $locale ) { - if ( isset( $this->all[ $domain ][ $locale ] ) ) { - return $this->all[ $domain ][ $locale ]; - } + $path = $this->all[ $domain ][ $locale ] ?? $this->get_path_from_lang_dir( $domain, $locale ); - return $this->get_path_from_lang_dir( $domain, $locale ); + /** + * Filters the determined languages directory path for a specific domain and locale. + * + * @since 6.6.0 + * + * @param string|false $path Languages directory path for the given domain and locale. + * @param string $domain Text domain. + * @param string $locale Locale. + */ + return apply_filters( 'lang_dir_for_domain', $path, $domain, $locale ); } /** -- cgit v1.2.3