diff --git a/lam/templates/profedit/profiledelete.php b/lam/templates/profedit/profiledelete.php index 25f88a89..18d14c54 100644 --- a/lam/templates/profedit/profiledelete.php +++ b/lam/templates/profedit/profiledelete.php @@ -60,7 +60,7 @@ if ($_POST['submit']) { StatusMessage("ERROR", _("Unable to delete profile!"), $_POST['del'] . "." . $_POST['type']); } else StatusMessage("INFO", _("Deleted profile:"), $_POST['del'] . "." . $_POST['type']); - echo ("
" . _("Back to Profile Editor") . ""); + echo ("
" . _("Back to profile editor") . ""); echo ("\n"); exit; } @@ -68,7 +68,7 @@ if ($_POST['submit']) { // check if admin has aborted delete operation if ($_POST['abort']) { StatusMessage("INFO", "", _("Delete operation canceled.")); - echo ("
" . _("Back to Profile Editor") . ""); + echo ("
" . _("Back to profile editor") . ""); echo ("\n"); exit; } @@ -90,5 +90,5 @@ if (($type == "user") || ($type == "host") || ($type == "group")) { else{ // no valid profile type StatusMessage("ERROR", "", _("Wrong or missing type!") . " " . $type); - echo ("" . _("Back to Profile Editor") . ""); + echo ("" . _("Back to profile editor") . ""); } diff --git a/lam/templates/profedit/profilepage.php b/lam/templates/profedit/profilepage.php index 84c4cadc..657fec78 100644 --- a/lam/templates/profedit/profilepage.php +++ b/lam/templates/profedit/profilepage.php @@ -117,7 +117,7 @@ if ($_POST['save']) { // save profile if (saveAccountProfile($options, $_POST['profname'], $_POST['accounttype'])) { echo StatusMessage("INFO", _("Profile was saved."), $_POST['profname']); - echo ("

" . _("Back to Profile Editor") . "

"); + echo ("

" . _("Back to profile editor") . "

"); echo ""; exit(); }