mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
i18n: Remove the wp_get_jed_locale_data()
function.
This function was used as a translation workaround in the Gutenberg plugin, it has been replaced in core with the `wp_set_script_translations()` functionality, instead. See #45111. Built from https://develop.svn.wordpress.org/branches/5.0@43910 git-svn-id: http://core.svn.wordpress.org/branches/5.0@43742 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bf1668333f
commit
f2dc6be776
@ -1469,32 +1469,3 @@ function is_locale_switched() {
|
||||
|
||||
return $wp_locale_switcher->is_switched();
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns Jed-formatted localization data.
|
||||
*
|
||||
* @since 5.0.0
|
||||
*
|
||||
* @param string $domain Translation domain.
|
||||
* @return array Jed-formatted localization data.
|
||||
*/
|
||||
function wp_get_jed_locale_data( $domain ) {
|
||||
$translations = get_translations_for_domain( $domain );
|
||||
|
||||
$locale = array(
|
||||
'' => array(
|
||||
'domain' => $domain,
|
||||
'lang' => determine_locale(),
|
||||
),
|
||||
);
|
||||
|
||||
if ( ! empty( $translations->headers['Plural-Forms'] ) ) {
|
||||
$locale['']['plural_forms'] = $translations->headers['Plural-Forms'];
|
||||
}
|
||||
|
||||
foreach ( $translations->entries as $msgid => $entry ) {
|
||||
$locale[ $msgid ] = $entry->translations;
|
||||
}
|
||||
|
||||
return $locale;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-beta5-43909';
|
||||
$wp_version = '5.0-beta5-43910';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user