i18n fix from pandem. fixes #2292

git-svn-id: https://develop.svn.wordpress.org/trunk@3438 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-01-15 22:04:21 +00:00
parent f08416af58
commit 6a0ee8785c
1 changed files with 1 additions and 1 deletions

View File

@ -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;