Make WordPress Core

Changeset 27610


Ignore:
Timestamp:
03/19/2014 05:41:13 AM (11 years ago)
Author:
nacin
Message:

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

see #27453, #27055.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/theme-install.php

    r27499 r27610  
    5050        'upload' => __( 'Upload Theme' ),
    5151        'back'   => __( 'Back' ),
    52         'error'  => __( 'There was a problem trying to load the themes. Please, try again.' ),
     52        'error'  => ( 'There was a problem trying to load the themes. Please, try again.' ), // @todo improve
    5353    ),
    5454    'browse' => array(
     
    114114    <div class="theme-navigation">
    115115        <span class="theme-count"></span>
    116         <span class="theme-section current" data-sort="featured"><?php esc_html_e( 'Featured' ); ?></span>
    117         <span class="theme-section" data-sort="popular"><?php esc_html_e( 'Popular' ); ?></span>
    118         <span class="theme-section" data-sort="new"><?php esc_html_e( 'Latest' ); ?></span>
     116        <span class="theme-section current" data-sort="featured"><?php _ex( 'Featured', 'themes' ); ?></span>
     117        <span class="theme-section" data-sort="popular"><?php _ex( 'Popular', 'themes' ); ?></span>
     118        <span class="theme-section" data-sort="new"><?php _ex( 'Latest', 'themes' ); ?></span>
    119119        <div class="theme-top-filters">
    120120            <span class="theme-filter" data-filter="photoblogging">Photography</span>
Note: See TracChangeset for help on using the changeset viewer.