Index: trunk/wp-includes/comment-functions.php
===================================================================
--- trunk/wp-includes/comment-functions.php	(revision 3391)
+++ trunk/wp-includes/comment-functions.php	(working copy)
@@ -290,7 +290,7 @@
 	} else {
 		if (!empty($post->post_password)) { // if there's a password
 			if ($_COOKIE['wp-postpass_'.COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
-				echo('Enter your password to view comments');
+				echo(__('Enter your password to view comments'));
 				return;
 			}
 		}
Index: trunk/wp-includes/template-functions-post.php
===================================================================
--- trunk/wp-includes/template-functions-post.php	(revision 3391)
+++ trunk/wp-includes/template-functions-post.php	(working copy)
@@ -3,7 +3,7 @@
 function get_the_password_form() {
 	$output = '<form action="' . get_settings('siteurl') . '/wp-pass.php" method="post">
 	<p>' . __("This post is password protected. To view it please enter your password below:") . '</p>
-	<p><label>' . __("Password:") . ' <input name="post_password" type="password" size="20" /></label> <input type="submit" name="Submit" value="Submit" /></p>
+	<p><label>' . __("Password:") . ' <input name="post_password" type="password" size="20" /></label> <input type="submit" name="' . __("Submit") . '" value="Submit" /></p>
 	</form>
 	';
 	return $output;

