Some wording fixes.
git-svn-id: https://develop.svn.wordpress.org/trunk@1474 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d24b54bed9
commit
bd36060c92
|
@ -250,8 +250,9 @@ default:
|
|||
<th><?php _e('Website') ?></th>
|
||||
<th><?php _e('Level') ?></th>
|
||||
</tr>
|
||||
<?php
|
||||
foreach ($users as $user) {
|
||||
<?php
|
||||
$style = '';
|
||||
foreach ($users as $user) {
|
||||
$user_data = get_userdata($user->ID);
|
||||
$email = $user_data->user_email;
|
||||
$url = $user_data->user_url;
|
||||
|
@ -275,18 +276,17 @@ echo "\n<tr $style>
|
|||
if ($user_level >= 2)
|
||||
echo " <a href=\"users.php?action=promote&id=".$user_data->ID."&prom=up\">+</a> ";
|
||||
echo "</td>\n</tr>\n";
|
||||
}
|
||||
?>
|
||||
}
|
||||
?>
|
||||
|
||||
</table>
|
||||
<?php _e('<p>To delete a user, bring his level to zero, then click on the red X.<br />
|
||||
<strong>Warning:</strong> deleting a user also deletes all posts made by this user.</p>') ?>
|
||||
<p><?php _e('To delete an author or user, bring his level to zero, then click on the red X. <strong>Warning:</strong> Deleting a user also deletes all posts made by this user.') ?></p>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
} ?>
|
||||
<div class="wrap">
|
||||
<h2><?php _e('Add User') ?></h2>
|
||||
<h2><?php _e('Add New User') ?></h2>
|
||||
<?php printf(__('<p>Users can <a href="%s/wp-register.php">register themselves</a> or you can manually create users here.</p>'), get_settings('siteurl')); ?>
|
||||
<form action="" method="post" name="adduser" id="adduser">
|
||||
<table class="editform" width="100%" cellspacing="2" cellpadding="5">
|
||||
|
|
Loading…
Reference in New Issue