Changeset 47894
- Timestamp:
- 06/03/2020 10:49:45 AM (11 months ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/js/_enqueues/wp/updates.js
r47884 r47894 942 942 943 943 if ( ! $form.find( 'tr.no-items' ).length ) { 944 $form.find( '#the-list' ).append( '<tr class="no-items"><td class="colspanchange" colspan="' + columnCount + '">' + __( ' You do not appear to have any plugins available at this time.' ) + '</td></tr>' );944 $form.find( '#the-list' ).append( '<tr class="no-items"><td class="colspanchange" colspan="' + columnCount + '">' + __( 'No plugins are currently available.' ) + '</td></tr>' ); 945 945 } 946 946 } -
trunk/src/wp-admin/includes/class-wp-ms-themes-list-table.php
r47835 r47894 277 277 _e( 'No themes found.' ); 278 278 } else { 279 _e( ' You do not appear to have any themes available at this time.' );279 _e( 'No themes are currently available.' ); 280 280 } 281 281 } -
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r47835 r47894 385 385 _e( 'No plugins found.' ); 386 386 } else { 387 _e( ' You do not appear to have any plugins available at this time.' );387 _e( 'No plugins are currently available.' ); 388 388 } 389 389 } -
trunk/src/wp-admin/plugin-editor.php
r47855 r47894 29 29 <div class="wrap"> 30 30 <h1><?php echo esc_html( $title ); ?></h1> 31 <div id="message" class="error"><p><?php _e( ' You do not appear to have any plugins available at this time.' ); ?></p></div>31 <div id="message" class="error"><p><?php _e( 'No plugins are currently available.' ); ?></p></div> 32 32 </div> 33 33 <?php
Note: See TracChangeset
for help on using the changeset viewer.