changed label

This commit is contained in:
Roland Gruber 2017-10-16 19:54:44 +02:00
parent e60aaf1a77
commit 7e450ebdfa
1 changed files with 2 additions and 2 deletions

View File

@ -353,7 +353,7 @@ class user extends baseType {
if ($shadowModule != null) { if ($shadowModule != null) {
$shadowAttrs = $shadowModule->getAttributes(); $shadowAttrs = $shadowModule->getAttributes();
if (shadowAccount::isAccountExpired($shadowAttrs)) { if (shadowAccount::isAccountExpired($shadowAttrs)) {
$expiredLabels[] = _('Shadow'); $expiredLabels[] = _('Shadow') . ': ' . _('Account expiration');
} }
} }
if (!empty($expiredLabels)) { if (!empty($expiredLabels)) {
@ -1014,7 +1014,7 @@ class lamUserList extends lamList {
$tipContent = '<table border=0>'; $tipContent = '<table border=0>';
// Shadow expired // Shadow expired
if ($shadowExpired) { if ($shadowExpired) {
$tipContent .= '<tr><td>' . _('Shadow') . '&nbsp;&nbsp;</td><td><img height=16 width=16 src=&quot;../../graphics/expired.png&quot;></td></tr>'; $tipContent .= '<tr><td>' . _('Shadow') . ': ' . _('Account expiration') . '&nbsp;&nbsp;</td><td><img height=16 width=16 src=&quot;../../graphics/expired.png&quot;></td></tr>';
} }
// Unix // Unix
if ($unixAvailable) { if ($unixAvailable) {