mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-10 12:50:18 +01:00
Allow bundled plugin headers to be translated. see #19597.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8fee574c32
commit
4a9e14a011
@ -109,14 +109,19 @@ function get_plugin_data( $plugin_file, $markup = true, $translate = true ) {
|
||||
function _get_plugin_data_markup_translate($plugin_file, $plugin_data, $markup = true, $translate = true) {
|
||||
|
||||
//Translate fields
|
||||
if ( $translate && ! empty($plugin_data['TextDomain']) ) {
|
||||
if ( ! empty( $plugin_data['DomainPath'] ) )
|
||||
load_plugin_textdomain($plugin_data['TextDomain'], false, dirname($plugin_file). $plugin_data['DomainPath']);
|
||||
else
|
||||
load_plugin_textdomain($plugin_data['TextDomain'], false, dirname($plugin_file));
|
||||
|
||||
foreach ( array('Name', 'PluginURI', 'Description', 'Author', 'AuthorURI', 'Version') as $field )
|
||||
$plugin_data[ $field ] = translate($plugin_data[ $field ], $plugin_data['TextDomain']);
|
||||
if ( $translate ) {
|
||||
if ( $textdomain = $plugin_data['TextDomain'] ) {
|
||||
if ( ! empty( $plugin_data['DomainPath'] ) )
|
||||
load_plugin_textdomain( $textdomain, false, dirname( $plugin_file ) . $plugin_data['DomainPath'] );
|
||||
else
|
||||
load_plugin_textdomain( $textdomain, false, dirname( $plugin_file ) );
|
||||
} elseif ( in_array( basename( $plugin_file ), array( 'hello.php', 'akismet.php' ) ) ) {
|
||||
$textdomain = 'default';
|
||||
}
|
||||
if ( $textdomain ) {
|
||||
foreach ( array( 'Name', 'PluginURI', 'Description', 'Author', 'AuthorURI', 'Version' ) as $field )
|
||||
$plugin_data[ $field ] = translate( $plugin_data[ $field ], $textdomain );
|
||||
}
|
||||
}
|
||||
|
||||
$plugins_allowedtags = array(
|
||||
|
Loading…
Reference in New Issue
Block a user