Changeset 45932 for trunk/src/wp-admin/site-health.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/site-health.php
r45507 r45932 54 54 <a href="<?php echo esc_url( admin_url( 'site-health.php' ) ); ?>" class="health-check-tab active" aria-current="true"> 55 55 <?php 56 /* translators: tab heading for Site Health Status page*/56 /* translators: Tab heading for Site Health Status page. */ 57 57 _ex( 'Status', 'Site Health' ); 58 58 ?> … … 61 61 <a href="<?php echo esc_url( admin_url( 'site-health.php?tab=debug' ) ); ?>" class="health-check-tab"> 62 62 <?php 63 /* translators: tab heading for Site Health Info page*/63 /* translators: Tab heading for Site Health Info page. */ 64 64 _ex( 'Info', 'Site Health' ); 65 65 ?> … … 99 99 <h3 class="site-health-issue-count-title"> 100 100 <?php 101 /* translators: %s: number of critical issues found*/101 /* translators: %s: Number of critical issues found. */ 102 102 printf( _n( '%s Critical issue', '%s Critical issues', 0 ), '<span class="issue-count">0</span>' ); 103 103 ?> … … 110 110 <h3 class="site-health-issue-count-title"> 111 111 <?php 112 /* translators: %s: number of recommended improvements*/112 /* translators: %s: Number of recommended improvements. */ 113 113 printf( _n( '%s Recommended improvement', '%s Recommended improvements', 0 ), '<span class="issue-count">0</span>' ); 114 114 ?> … … 129 129 <h3 class="site-health-issue-count-title"> 130 130 <?php 131 /* translators: %s: number of items with no issues*/131 /* translators: %s: Number of items with no issues. */ 132 132 printf( _n( '%s Item with no issues detected', '%s Items with no issues detected', 0 ), '<span class="issue-count">0</span>' ); 133 133 ?>
Note: See TracChangeset
for help on using the changeset viewer.