mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
I18n: Introduce more translator comments for strings that contain placeholders but don't have an accompanying translator comment.
See #38882 git-svn-id: https://develop.svn.wordpress.org/trunk@39326 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -87,7 +87,10 @@ class WP_Customize_Theme_Control extends WP_Customize_Control {
|
||||
<span class="more-details" id="{{ data.theme.id }}-action"><?php _e( 'Live Preview' ); ?></span>
|
||||
<# } #>
|
||||
|
||||
<div class="theme-author"><?php printf( __( 'By %s' ), '{{ data.theme.author }}' ); ?></div>
|
||||
<div class="theme-author"><?php
|
||||
/* translators: Theme author name */
|
||||
printf( _x( 'By %s', 'theme author' ), '{{ data.theme.author }}' );
|
||||
?></div>
|
||||
|
||||
<# if ( data.theme.isActiveTheme ) { #>
|
||||
<h3 class="theme-name" id="{{ data.theme.id }}-name">
|
||||
|
||||
Reference in New Issue
Block a user