Index: wp-admin/upgrade.php
===================================================================
--- wp-admin/upgrade.php	(revision 2390)
+++ wp-admin/upgrade.php	(working copy)
@@ -67,8 +67,8 @@
 
 	case 0:
 ?> 
-<p>This file upgrades you from any previous version of WordPress to the latest. It may take a while though, so be patient.</p> 
-<h2 class="step"><a href="upgrade.php?step=1">Upgrade WordPress &raquo;</a></h2>
+<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> 
+	<h2 class="step"><a href="upgrade.php?step=1"><?php _e('Upgrade WordPress &raquo;'); ?></a></h2>
 <?php
 	break;
 	
@@ -76,14 +76,14 @@
 	make_db_current_silent();
 	upgrade_all();
 ?> 
-<h2>Step 1</h2> 
-<p>There's actually only one step. So if you see this, you're done. <a href="../">Have fun</a>! </p>
+<h2><?php _e('Step 1'); ?></h2> 
+	<p><?php printf(__("There's actually only one step. So if you see this, you're done. <a href='%s'>Have fun</a>!"), '../'); ?></p>
 
 <!--
 <pre>
-<?php echo $wpdb->num_queries; ?> queries
+<?php printf(__('%s queries'), $wpdb->num_queries); ?>
 
-<?php timer_stop(1); ?> seconds
+<?php printf(__('%s seconds'), timer_stop(0)); ?>
 </pre>
 -->
 
Index: wp-admin/upgrade-schema.php
===================================================================
--- wp-admin/upgrade-schema.php	(revision 2390)
+++ wp-admin/upgrade-schema.php	(working copy)
@@ -152,9 +152,9 @@
 	global $wpdb;
 
 	$guessurl = preg_replace('|/wp-admin/.*|i', '', 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
-	add_option('siteurl', $guessurl, 'WordPress web address');
-	add_option('blogname', 'My Weblog', 'Blog title');
-	add_option('blogdescription', 'Just another WordPress weblog', 'Short tagline');
+	add_option('siteurl', $guessurl, __('WordPress web address'));
+	add_option('blogname', 'My Weblog', __('Blog title'));
+	add_option('blogdescription', __('Just another WordPress weblog'), __('Short tagline'));
 	add_option('new_users_can_blog', 0);
 	add_option('users_can_register', 0);
 	add_option('admin_email', 'you@example.com');
@@ -203,7 +203,7 @@
 	add_option('advanced_edit', 0);
 	add_option('comment_max_links', 2);
 	// 1.5
-	add_option('default_email_category', 1, 'Posts by email go to this category');
+	add_option('default_email_category', 1, __('Posts by email go to this category'));
 	add_option('recently_edited');
 	add_option('use_linksupdate', 0);
 	add_option('template', 'default');
@@ -229,4 +229,4 @@
 	endforeach;
 }
 
-?>
\ No newline at end of file
+?>
Index: wp-admin/install.php
===================================================================
--- wp-admin/install.php	(revision 2390)
+++ wp-admin/install.php	(working copy)
@@ -84,30 +84,30 @@
 
 	case 0:
 ?>
-<p>Welcome to WordPress installation. We&#8217;re now going to go through a few steps to get you up and running with the latest in personal publishing platforms. You may want to peruse the <a href="../readme.html">ReadMe documentation</a> at your leisure.</p>
-<h2 class="step"><a href="install.php?step=1">First Step &raquo;</a></h2>
+<p><?php printf(__('Welcome to WordPress installation. We&#8217;re now going to go through a few steps to get you up and running with the latest in personal publishing platforms. You may want to peruse the <a href="%s">ReadMe documentation</a> at your leisure.'), '../readme.html'); ?></p>
+	<h2 class="step"><a href="install.php?step=1"><?php _e('First Step &raquo;'); ?></a></h2>
 <?php
 	break;
 
 	case 1:
 ?>
-<h1>First Step</h1>
-<p>Before we begin we need a little bit of information. Don't worry, you can always change these later. </p>
+<h1><?php _e('First Step'); ?></h1>
+<p><?php _e("Before we begin we need a little bit of information. Don't worry, you can always change these later."); ?></p>
 
 <form id="setup" method="post" action="install.php?step=2">
 <table width="100%">
 <tr>
-<th width="33%">Weblog title:</th>
+<th width="33%"><?php _e('Weblog title:'); ?></th>
 <td><input name="weblog_title" type="text" id="weblog_title" size="25" /></td>
 </tr>
 <tr>
-	<th>Your e-mail:</th>
+<th><?php _e('Your e-mail:'); ?></th>
 	<td><input name="admin_email" type="text" id="admin_email" size="25" /></td>
 </tr>
 </table>
-<p><em>Double-check that email address before continuing.</em></p>
+<p><em><?php _e('Double-check that email address before continuing.'); ?></em></p>
 <h2 class="step">
-	<input type="submit" name="Submit" value="Continue to Second Step &raquo;" />
+<input type="submit" name="Submit" value="<?php _e('Continue to Second Step &raquo;'); ?>" />
 </h2>
 </form>
 
@@ -115,8 +115,8 @@
 	break;
 	case 2:
 ?>
-<h1>Second Step</h1>
-<p>Now we&#8217;re going to create the database tables and fill them with some default data.</p>
+<h1><?php _e('Second Step'); ?></h1>
+<p><?php _e('Now we&#8217;re going to create the database tables and fill them with some default data.'); ?></p>
 
 
 <?php
@@ -163,47 +163,47 @@
 
 $from = 'From: '.$_POST['weblog_title'].' <wordpress@'.$_SERVER['SERVER_NAME'].'>';
 $message_headers = "$from";
-$message = "Your new WordPress blog has been successfully set up at:
+$message = sprintf(__("Your new WordPress blog has been successfully set up at:
 
-$guessurl
+%1\$s
 
 You can log in to the administrator account with the following information:
 
 Username: admin
-Password: $random_password
+Password: %2\$s
 
 We hope you enjoy your new weblog. Thanks!
 
 --The WordPress Team
 http://wordpress.org/
-";
+"), $guessurl, $random_password);
 
-@mail($admin_email, 'New WordPress Blog', $message, $message_headers);
+@mail($admin_email, __('New WordPress Blog'), $message, $message_headers);
 
 upgrade_all();
 ?>
 
-<p><em>Finished!</em></p>
+<p><em><?php _e('Finished!'); ?></em></p>
 
-<p>Now you can <a href="../wp-login.php">log in</a> with the <strong>login</strong>
-  "<code>admin</code>" and <strong>password</strong> "<code><?php echo $random_password; ?></code>".</p>
-<p><strong><em>Note that password</em></strong> carefully! It is a <em>random</em>
+<p><?php printf(__('Now you can <a href="%1$s">log in</a> with the <strong>login</strong>
+"<code>admin</code>" and <strong>password</strong> "<code>%2$s</code>".'), '../wp-login.php', $random_password); ?></p>
+<p><?php _e('<strong><em>Note that password</em></strong> carefully! It is a <em>random</em>
   password that was generated just for you. If you lose it, you
-  will have to delete the tables from the database yourself, and re-install WordPress. So to review:
+  will have to delete the tables from the database yourself, and re-install WordPress. So to review:'); ?>
 </p>
 <dl>
-<dt>Login</dt>
+<dt><?php _e('Login'); ?></dt>
 <dd><code>admin</code></dd>
-<dt>Password</dt>
+<dt><?php _e('Password'); ?></dt>
 <dd><code><?php echo $random_password; ?></code></dd>
-<dt>Login address</dt>
+	<dt><?php _e('Login address'); ?></dt>
 <dd><a href="../wp-login.php">wp-login.php</a></dd>
 </dl>
-<p>Were you expecting more steps? Sorry to disappoint. All done! :)</p>
+<p><?php _e('Were you expecting more steps? Sorry to disappoint. All done! :)'); ?></p>
 <?php
 	break;
 }
 ?>
-<p id="footer"><a href="http://wordpress.org/">WordPress</a>, personal publishing platform.</p>
+<p id="footer"><?php _e('<a href="http://wordpress.org/">WordPress</a>, personal publishing platform.'); ?></p>
 </body>
 </html>
Index: wp-settings.php
===================================================================
--- wp-settings.php	(revision 2390)
+++ wp-settings.php	(working copy)
@@ -74,7 +74,7 @@
 		$link = 'install.php';
 	else
 		$link = 'wp-admin/install.php';
-	die("It doesn't look like you've installed WP yet. Try running <a href='$link'>install.php</a>.");
+	die(sprintf(__("It doesn't look like you've installed WP yet. Try running <a href='%s'>install.php</a>."), $link));
 }
 $wpdb->show_errors();
 
@@ -143,4 +143,4 @@
 
 // Everything is loaded.
 do_action('init');
-?>
\ No newline at end of file
+?>

