Context for theme install strings. Untranslate an error message until it can be cleaned up.

see #27453, #27055.


git-svn-id: https://develop.svn.wordpress.org/trunk@27610 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-03-19 05:41:13 +00:00
parent 54c541cfc6
commit a7a53e4417
1 changed files with 4 additions and 4 deletions

View File

@ -49,7 +49,7 @@ wp_localize_script( 'theme', '_wpThemeSettings', array(
'searchPlaceholder' => __( 'Search themes...' ),
'upload' => __( 'Upload Theme' ),
'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(
'sections' => $sections,
@ -113,9 +113,9 @@ include(ABSPATH . 'wp-admin/admin-header.php');
<div class="theme-navigation">
<span class="theme-count"></span>
<span class="theme-section current" data-sort="featured"><?php esc_html_e( 'Featured' ); ?></span>
<span class="theme-section" data-sort="popular"><?php esc_html_e( 'Popular' ); ?></span>
<span class="theme-section" data-sort="new"><?php esc_html_e( 'Latest' ); ?></span>
<span class="theme-section current" data-sort="featured"><?php _ex( 'Featured', 'themes' ); ?></span>
<span class="theme-section" data-sort="popular"><?php _ex( 'Popular', 'themes' ); ?></span>
<span class="theme-section" data-sort="new"><?php _ex( 'Latest', 'themes' ); ?></span>
<div class="theme-top-filters">
<span class="theme-filter" data-filter="photoblogging">Photography</span>
<span class="theme-filter" data-filter="responsive-layout">Responsive</span>