translation update

This commit is contained in:
Roland Gruber 2004-02-20 11:50:22 +00:00
parent 84afed09c6
commit c35d995bbf
3 changed files with 18 additions and 12 deletions

View File

@ -843,10 +843,12 @@ switch ($select_local) {
// Final Settings
echo '<input name="select" type="hidden" value="finish">';
echo "<fieldset class=\"groupedit-bright\"><legend class=\"groupedit-bright\"><b>"._('Note')."</b></legend>\n";
echo _('Group').' ';
echo $account_new->general_username;
if ($account_old) echo ' '._('has been modified').'.';
else echo ' '._('has been created').'.';
if ($account_old) {
printf(_("Group %s has been modified."), $account_new->general_username);
}
else {
printf(_("Group %s has been created."), $account_new->general_username);
}
echo "<br><br>";
if (!$account_old) {
echo '<input name="createagain" type="submit" value="'; echo _('Create another group'); echo '">';

View File

@ -459,10 +459,12 @@ switch ($select_local) {
// Final Settings
echo '<input name="select" type="hidden" value="finish">';
echo "<fieldset class=\"hostedit-bright\"><legend class=\"hostedit-bright\"><b>"._('Note')."</b></legend>\n";
echo _('Host');
echo ' '.$account_new->general_username.' ';
if ($account_old) echo ' '._('has been modified').'.';
else echo ' '._('has been created').'.';
if ($account_old) {
printf(_("Host %s has been modified."), $account_new->general_username);
}
else {
printf(_("Host %s has been created."), $account_new->general_username);
}
echo '<br><br>';
if (!$account_old) {
echo '<input name="createagain" type="submit" value="'; echo _('Create another host'); echo '">';

View File

@ -1564,10 +1564,12 @@ switch ($select_local) {
// Final Settings
echo '<input name="select" type="hidden" value="finish">';
echo "<fieldset class=\"groupedit-bright\"><legend class=\"useredit-bright\"><b>"._('Note')."</b></legend>\n";
echo _('User ');
echo $account_new->general_username;
if ($account_old) echo ' '._('has been modified').'.';
else echo ' '._('has been created').'.';
if ($account_old) {
printf(_("User %s has been modified."), $account_new->general_username);
}
else {
printf(_("User %s has been created."), $account_new->general_username);
}
echo '<br><br>';
if (!$account_old) {
echo '<input name="createagain" type="submit" value="'; echo _('Create another user'); echo '">&nbsp;';