Changeset 2391 for trunk/wp-admin/upgrade.php
- Timestamp:
- 02/27/2005 11:09:58 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upgrade.php
r1812 r2391 68 68 case 0: 69 69 ?> 70 <p> This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient.</p>71 <h2 class="step"><a href="upgrade.php?step=1">Upgrade WordPress »</a></h2>70 <p><?php _e('This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient.'); ?></p> 71 <h2 class="step"><a href="upgrade.php?step=1"><?php _e('Upgrade WordPress »'); ?></a></h2> 72 72 <?php 73 73 break; … … 77 77 upgrade_all(); 78 78 ?> 79 <h2> Step 1</h2>80 <p>There's actually only one step. So if you see this, you're done. <a href="../">Have fun</a>!</p>79 <h2><?php _e('Step 1'); ?></h2> 80 <p><?php printf(__("There's actually only one step. So if you see this, you're done. <a href='%s'>Have fun</a>!"), '../'); ?></p> 81 81 82 82 <!-- 83 83 <pre> 84 <?php echo $wpdb->num_queries; ?> queries84 <?php printf(__('%s queries'), $wpdb->num_queries); ?> 85 85 86 <?php timer_stop(1); ?> seconds86 <?php printf(__('%s seconds'), timer_stop(0)); ?> 87 87 </pre> 88 88 -->
Note: See TracChangeset
for help on using the changeset viewer.