summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b7ff5a9)
raw | patch | inline | side by side (parent: b7ff5a9)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 8 Jun 2006 03:48:54 +0000 (03:48 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 8 Jun 2006 03:48:54 +0000 (03:48 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3681 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/admin/systems/class_divListSystemService.inc | patch | blob | history |
diff --git a/plugins/admin/systems/class_divListSystemService.inc b/plugins/admin/systems/class_divListSystemService.inc
index 426b97b15f7e5f65f6b4736b46c4757009076058..7ba7bcf447fb5db29ff086e0d895df0cf4a8f670 100644 (file)
$actions ="";
if($entry['AllowStart']){
- $actions .= " <input type='image' name='StartSingleService_".$name."' src='images/status_start.png'>";
+ $actions .= " <input type='image' name='StartSingleService_".$name."' src='images/status_start.png'
+ title='"._("Start service")."'>";
}else{
$actions .= " <img src='images/empty' width='16' alt=''>";
}
if($entry['AllowStart']){
- $actions .= " <input type='image' name='StopSingleService_".$name."' src='images/status_stop.png'>";
+ $actions .= " <input type='image' name='StopSingleService_".$name."' src='images/status_stop.png'
+ title='"._("Stop service")."'>";
}else{
$actions .= " <img src='images/empty' width='16' alt=''>";
}
if($entry['AllowStart']){
- $actions .= " <input type='image' name='RestartSingleService_".$name."' src='images/status_restart.png'>";
+ $actions .= " <input type='image' name='RestartSingleService_".$name."' src='images/status_restart.png'
+ title='"._("Restart service")."'>";
}else{
$actions .= " <img src='images/empty' width='16' alt=''>";
}
if($entry['AllowEdit']){
- $actions .= " <input type='image' name='EditSingleService_".$name."' src='images/edit.png'>";
+ $actions .= " <input type='image' name='EditSingleService_".$name."' src='images/edit.png'
+ title='"._("Edit service")."'>";
}else{
$actions .= " <img src='images/empty' width='16' alt=''>";
}
if($entry['AllowRemove']){
- $actions .= " <input type='image' name='RemoveSingleService_".$name."' src='images/edittrash.png'>";
+ $actions .= " <input type='image' name='RemoveSingleService_".$name."' src='images/edittrash.png'
+ title='"._("Remove service")."'>";
}else{
$actions .= " <img src='images/empty' width='16' alt=''>";
}