summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5ff4676)
raw | patch | inline | side by side (parent: 5ff4676)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 6 May 2008 06:30:14 +0000 (06:30 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 6 May 2008 06:30:14 +0000 (06:30 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10776 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/addons/goto/class_gotomasses.inc | patch | blob | history |
diff --git a/gosa-plugins/goto/addons/goto/class_gotomasses.inc b/gosa-plugins/goto/addons/goto/class_gotomasses.inc
index 1e3bf689eaa71cda285d7a1e3b7d43c5b56717b4..ef1efbfb6af798b19cc0b0769a72b31de6ef8a71 100644 (file)
*/
if(in_array($task['STATUS'],array("waiting"))){
$prio_actions.= "<input class='center' type='image' src='images/prio_increase.png'
- title='"._("Move up in execution queue")."' name='prio_up_".$key."'> ";
+ title='"._("Move up")."' name='prio_up_".$key."'> ";
$prio_actions.= "<input class='center' type='image' src='images/prio_decrease.png'
- title='"._("Move down in execution queue")."' name='prio_down_".$key."'> ";
+ title='"._("Move down")."' name='prio_down_".$key."'> ";
}
/* If WAITING add pause action
*/
if(in_array($task['STATUS'],array("paused","waiting"))){
$prio_actions.= "<input class='center' type='image' src='images/rocket.png'
- title='"._("Force execution now!")."' name='execute_process_".$key."'> ";
+ title='"._("Execute now")."' name='execute_process_".$key."'> ";
}
/* Add logview button, currently ever.
*/
if(TRUE){
$action .= "<input type='image' src='images/fai_hook.png' name='log_view_".$key."'
- class='center' alt='"._("Log view")."'> ";
+ class='center' title='"._("View logs")."' alt='"._("Log view")."'> ";
}
/* If PAUSED or WAITING add edit action
*/
if(in_array($task['STATUS'],array("waiting"))){
$action.= "<input type='image' src='images/lists/edit.png' name='edit_task_".$key."'
- class='center' alt='"._("Edit")."'>";
+ class='center' title='"._("Edit")."' alt='"._("Edit")."'>";
}
/* If PROCESSING add abort action
if(in_array($task['STATUS'],array("processing")) && preg_match("/install/",$task['HEADERTAG'])){
$action.= "<img src='images/empty.png'>";
$action.= "<input class='center' type='image' src='images/small_error.png'
- title='"._("Abort execution")."' name='abort_process_".$key."'>";
+ title='"._("Abort job")."' name='abort_process_".$key."'>";
}
/* If WAITING or ERROR add remove action
*/
if( $this->acl_is_removeable() && in_array($task['STATUS'],array("waiting","error","processed"))){
$action.= "<input type='image' src='images/lists/trash.png' name='remove_task_".$key."'
- class='center' alt='"._("Remove")."'>";
+ class='center' title='"._("Remove")."' alt='"._("Remove")."'>";
}
if(in_array($task['STATUS'],array("processing")) && !preg_match("/install/",$task['HEADERTAG'])){
$action.= "<input type='image' src='images/lists/trash.png' name='remove_task_".$key."'
- class='center' alt='"._("Remove")."'>";
+ class='center' title='"._("Remove")."' alt='"._("Remove")."'>";
}
/* Create entry display name and tooltip */