Context for theme install strings. Untranslate an error message until it can be cleaned up.
see #27453, #27055. Built from https://develop.svn.wordpress.org/trunk@27610 git-svn-id: http://core.svn.wordpress.org/trunk@27453 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a17dd704c4
commit
722bdc353f
|
@ -49,7 +49,7 @@ wp_localize_script( 'theme', '_wpThemeSettings', array(
|
||||||
'searchPlaceholder' => __( 'Search themes...' ),
|
'searchPlaceholder' => __( 'Search themes...' ),
|
||||||
'upload' => __( 'Upload Theme' ),
|
'upload' => __( 'Upload Theme' ),
|
||||||
'back' => __( 'Back' ),
|
'back' => __( 'Back' ),
|
||||||
'error' => __( 'There was a problem trying to load the themes. Please, try again.' ),
|
'error' => ( 'There was a problem trying to load the themes. Please, try again.' ), // @todo improve
|
||||||
),
|
),
|
||||||
'browse' => array(
|
'browse' => array(
|
||||||
'sections' => $sections,
|
'sections' => $sections,
|
||||||
|
@ -113,9 +113,9 @@ include(ABSPATH . 'wp-admin/admin-header.php');
|
||||||
|
|
||||||
<div class="theme-navigation">
|
<div class="theme-navigation">
|
||||||
<span class="theme-count"></span>
|
<span class="theme-count"></span>
|
||||||
<span class="theme-section current" data-sort="featured"><?php esc_html_e( 'Featured' ); ?></span>
|
<span class="theme-section current" data-sort="featured"><?php _ex( 'Featured', 'themes' ); ?></span>
|
||||||
<span class="theme-section" data-sort="popular"><?php esc_html_e( 'Popular' ); ?></span>
|
<span class="theme-section" data-sort="popular"><?php _ex( 'Popular', 'themes' ); ?></span>
|
||||||
<span class="theme-section" data-sort="new"><?php esc_html_e( 'Latest' ); ?></span>
|
<span class="theme-section" data-sort="new"><?php _ex( 'Latest', 'themes' ); ?></span>
|
||||||
<div class="theme-top-filters">
|
<div class="theme-top-filters">
|
||||||
<span class="theme-filter" data-filter="photoblogging">Photography</span>
|
<span class="theme-filter" data-filter="photoblogging">Photography</span>
|
||||||
<span class="theme-filter" data-filter="responsive-layout">Responsive</span>
|
<span class="theme-filter" data-filter="responsive-layout">Responsive</span>
|
||||||
|
|
Loading…
Reference in New Issue