| 28 | | global $wp_textdomain_registry; |
| 29 | | if ( isset( $wp_textdomain_registry ) ) { |
| 30 | | $reg_path = $wp_textdomain_registry->get( $domain, $locale ); |
| 31 | | if ( $reg_path ) { |
| 32 | | $reg_path = untrailingslashit( $reg_path ); |
| | 28 | global $wp_textdomain_registry; |
| | 29 | $reg_path = $wp_textdomain_registry->get( $domain, $locale ); |
| | 30 | if ( $reg_path ) { |
| | 31 | $reg_path = untrailingslashit( $reg_path ); |
| | 32 | $translations = load_script_translations( $reg_path . '/' . $md5_filename, $handle, $domain ); |
| | 33 | if ( $translations ) { |
| | 34 | return $translations; |
| | 35 | } |
| | 36 | } |