Changeset 41878
- Timestamp:
- 10/16/2017 06:13:50 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r41683 r41878 271 271 echo '<div class="inline error"><p>' . $this->error->get_error_message() . '</p><p class="hide-if-no-js"><button class="button try-again">' . __( 'Try Again' ) . '</button></p></div>'; 272 272 } else { 273 echo '<div class="no-plugin-results">' . __( 'No plugins found. Try a different search query.' ) . '</div>';273 echo '<div class="no-plugin-results">' . __( 'No plugins found. Try a different search.' ) . '</div>'; 274 274 } 275 275 } -
trunk/src/wp-admin/theme-install.php
r41608 r41878 61 61 'tryAgain' => __( 'Try Again' ), 62 62 'themesFound' => __( 'Number of Themes found: %d' ), 63 'noThemesFound' => __( 'No themes found. Try a different search query.' ),63 'noThemesFound' => __( 'No themes found. Try a different search.' ), 64 64 'collapseSidebar' => __( 'Collapse Sidebar' ), 65 65 'expandSidebar' => __( 'Expand Sidebar' ), … … 229 229 <div class="theme-install-overlay wp-full-overlay expanded"></div> 230 230 231 <p class="no-themes"><?php _e( 'No themes found. Try a different search query.' ); ?></p>231 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> 232 232 <span class="spinner"></span> 233 233 -
trunk/src/wp-admin/themes.php
r41797 r41878 140 140 'searchPlaceholder' => __( 'Search installed themes...' ), // placeholder (no ellipsis) 141 141 'themesFound' => __( 'Number of Themes found: %d' ), 142 'noThemesFound' => __( 'No themes found. Try a different search query.' ),142 'noThemesFound' => __( 'No themes found. Try a different search.' ), 143 143 ), 144 144 ) ); … … 309 309 <div class="theme-overlay" tabindex="0" role="dialog" aria-label="<?php esc_attr_e( 'Theme Details' ); ?>"></div> 310 310 311 <p class="no-themes"><?php _e( 'No themes found. Try a different search query.' ); ?></p>311 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> 312 312 313 313 <?php -
trunk/src/wp-includes/script-loader.php
r41877 r41878 828 828 'nonceError' => __( 'An error has occurred. Please reload the page and try again.' ), 829 829 'pluginsFound' => __( 'Number of plugins found: %d' ), 830 'noPluginsFound' => __( 'No plugins found. Try a different search query.' ),830 'noPluginsFound' => __( 'No plugins found. Try a different search.' ), 831 831 ), 832 832 ) );
Note: See TracChangeset
for help on using the changeset viewer.