Mark strings for translation.
git-svn-id: http://svn.automattic.com/wordpress/trunk@1163 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1890dffb57
commit
51ee7548bc
|
@ -1,5 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
$title = 'Moderate comments';
|
require_once('../wp-includes/wp-l10n.php');
|
||||||
|
|
||||||
|
$title = __('Moderate comments');
|
||||||
$parent_file = 'edit.php';
|
$parent_file = 'edit.php';
|
||||||
/* <Moderation> */
|
/* <Moderation> */
|
||||||
|
|
||||||
|
@ -51,7 +53,7 @@ case 'update':
|
||||||
require_once('admin-header.php');
|
require_once('admin-header.php');
|
||||||
|
|
||||||
if ($user_level < 3) {
|
if ($user_level < 3) {
|
||||||
die('<p>Your level is not high enough to moderate comments.</p>');
|
die(__('<p>Your level is not high enough to moderate comments.</p>'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$item_ignored = 0;
|
$item_ignored = 0;
|
||||||
|
@ -92,13 +94,13 @@ default:
|
||||||
require_once('admin-header.php');
|
require_once('admin-header.php');
|
||||||
|
|
||||||
if ($user_level <= 3) {
|
if ($user_level <= 3) {
|
||||||
die('<p>Your level is not high enough to moderate comments.</p>');
|
die(__('<p>Your level is not high enough to moderate comments.</p>'));
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<ul id="adminmenu2">
|
<ul id="adminmenu2">
|
||||||
<li><a href="edit.php"> Posts</a></li>
|
<li><a href="edit.php"> <?php _e('Posts') ?></a></li>
|
||||||
<li><a href="edit-comments.php"> Comments</a></li>
|
<li><a href="edit-comments.php"> <?php _e('Comments') ?></a></li>
|
||||||
<li class="last"><a href="moderation.php" class="current">Awaiting Moderation</a></li>
|
<li class="last"><a href="moderation.php" class="current"><?php _e('Awaiting Moderation') ?></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<?php
|
<?php
|
||||||
$ignored = $_GET['ignored'];
|
$ignored = $_GET['ignored'];
|
||||||
|
@ -109,23 +111,23 @@ if (($deleted) || ($approved) || ($ignored)) {
|
||||||
echo "<div class='updated'>\n<p>";
|
echo "<div class='updated'>\n<p>";
|
||||||
if ($approved) {
|
if ($approved) {
|
||||||
if ('1' == $approved) {
|
if ('1' == $approved) {
|
||||||
echo "1 comment approved <br />\n";
|
echo __("1 comment approved <br />") . "\n";
|
||||||
} else {
|
} else {
|
||||||
echo "$approved comments approved <br />\n";
|
echo sprintf(__("%s comments approved <br />"), $approved) . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($deleted) {
|
if ($deleted) {
|
||||||
if ('1' == $deleted) {
|
if ('1' == $deleted) {
|
||||||
echo "1 comment deleted <br />\n";
|
echo __("1 comment deleted <br />") . "\n";
|
||||||
} else {
|
} else {
|
||||||
echo "$deleted comments deleted <br />\n";
|
echo sprintf(__("%s comments deleted <br />"), $deleted) . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($ignored) {
|
if ($ignored) {
|
||||||
if ('1' == $ignored) {
|
if ('1' == $ignored) {
|
||||||
echo "1 comment unchanged <br />\n";
|
echo __("1 comment unchanged <br />") . "\n";
|
||||||
} else {
|
} else {
|
||||||
echo "$ignored comments unchanged <br />\n";
|
echo sprintf(__("%s comments unchanged <br />"), $ignored) . "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo "</p></div>\n";
|
echo "</p></div>\n";
|
||||||
|
@ -141,7 +143,7 @@ if ($comments) {
|
||||||
// list all comments that are waiting for approval
|
// list all comments that are waiting for approval
|
||||||
$file = basename(__FILE__);
|
$file = basename(__FILE__);
|
||||||
?>
|
?>
|
||||||
<p>The following comments are in the moderation queue:</p>
|
<?php _e('<p>The following comments are in the moderation queue:</p>') ?>
|
||||||
<form name="approval" action="moderation.php" method="post">
|
<form name="approval" action="moderation.php" method="post">
|
||||||
<input type="hidden" name="action" value="update" />
|
<input type="hidden" name="action" value="update" />
|
||||||
<ol id="comments">
|
<ol id="comments">
|
||||||
|
@ -152,26 +154,26 @@ if ($comments) {
|
||||||
|
|
||||||
echo "\n\t<li id='comment-$comment->comment_ID'>";
|
echo "\n\t<li id='comment-$comment->comment_ID'>";
|
||||||
?>
|
?>
|
||||||
<p><strong>Name:</strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong>Email:</strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_email) { ?> | <strong>URI:</strong> <?php comment_author_url_link() ?> <?php } ?>| <strong>IP:</strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
|
<p><strong><?php _e('Name:') ?></strong> <?php comment_author() ?> <?php if ($comment->comment_author_email) { ?>| <strong><?php _e('Email:') ?></strong> <?php comment_author_email_link() ?> <?php } if ($comment->comment_author_email) { ?> | <strong><?php _e('URI:') ?></strong> <?php comment_author_url_link() ?> <?php } ?>| <strong><?php _e('IP:') ?></strong> <a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput=<?php comment_author_IP() ?>"><?php comment_author_IP() ?></a></p>
|
||||||
<?php comment_text() ?>
|
<?php comment_text() ?>
|
||||||
<p><?php
|
<p><?php
|
||||||
echo "<a href=\"post.php?action=editcomment&comment=".$comment->comment_ID."\">Edit</a>";
|
echo "<a href=\"post.php?action=editcomment&comment=".$comment->comment_ID."\">" . __('Edit') . "</a>";
|
||||||
echo " | <a href=\"post.php?action=deletecomment&p=".$comment->comment_post_ID."&comment=".$comment->comment_ID."\" onclick=\"return confirm('You are about to delete this comment by \'".$comment->comment_author."\'\\n \'Cancel\' to stop, \'OK\' to delete.')\">Delete just this comment</a> | "; ?>Bulk action:
|
echo " | <a href=\"post.php?action=deletecomment&p=".$comment->comment_post_ID."&comment=".$comment->comment_ID."\" onclick=\"return confirm('" . sprintf(__("You are about to delete this comment by \'%s\'\\n \'Cancel\' to stop, \'OK\' to delete."), $comment->comment_author) . "')\">" . __('Delete just this comment') . "</a> | "; ?><?php _e('Bulk action:') ?>
|
||||||
<input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-approve" value="approve" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-approve">Approve</label>
|
<input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-approve" value="approve" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-approve"><?php _e('Approve') ?></label>
|
||||||
<input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-delete" value="delete" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-delete">Delete</label>
|
<input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-delete" value="delete" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-delete"><?php _e('Delete') ?></label>
|
||||||
<input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-nothing" value="later" checked="checked" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-nothing">Do nothing</label>
|
<input type="radio" name="comment[<?php echo $comment->comment_ID; ?>]" id="comment[<?php echo $comment->comment_ID; ?>]-nothing" value="later" checked="checked" /> <label for="comment[<?php echo $comment->comment_ID; ?>]-nothing"><?php _e('Do nothing') ?></label>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</ol>
|
</ol>
|
||||||
<p class="submit"><input type="submit" name="submit" value="Moderate Comments »" /></p>
|
<p class="submit"><input type="submit" name="submit" value="<?php _e('Moderate Comments »') ?>" /></p>
|
||||||
</form>
|
</form>
|
||||||
<?php
|
<?php
|
||||||
} else {
|
} else {
|
||||||
// nothing to approve
|
// nothing to approve
|
||||||
echo "<p>Currently there are no comments to be approved.</p>\n";
|
echo __("<p>Currently there are no comments to be approved.</p>") . "\n";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue