diff --git a/install/install.php b/install/install.php
index 684e1c9d10da4dc6ab4673c79617ed06d022522c..447d79345839d72dcba75afe7567b20ade34061d 100644
--- a/install/install.php
+++ b/install/install.php
@@ -458,9 +458,9 @@ if($install_mode == 'standard') {
 		$check = false;
 		do {
 			unset($temp_password);
-			$temp_password = $inst->free_query('Re-enter Admin password', '');
+			$temp_password = $inst->free_query('Re-enter admin password', '');
 			$check = @($temp_password == $conf['interface_password'])?true:false;
-			if(!$check) swriteln('Passwords do noz match.');
+			if(!$check) swriteln('Passwords do not match.');
 		} while (!$check);
 	}
 	unset($check);
@@ -809,9 +809,9 @@ if($install_mode == 'standard') {
 			$check = false;
 			do {
 				unset($temp_password);
-				$temp_password = $inst->free_query('Re-enter Admin password', '');
+				$temp_password = $inst->free_query('Re-enter admin password', '');
 				$check = @($temp_password == $conf['interface_password'])?true:false;
-				if(!$check) swriteln('Passwords do noz match.');
+				if(!$check) swriteln('Passwords do not match.');
 			} while (!$check);
 		}
 		unset($check);
@@ -861,4 +861,4 @@ chmod($md5_filename,0700);
 echo "Installation completed.\n";
 
 
-?>
+?>
\ No newline at end of file