summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0618b0a)
raw | patch | inline | side by side (parent: 0618b0a)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 14 Mar 2008 13:54:38 +0000 (13:54 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 14 Mar 2008 13:54:38 +0000 (13:54 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9846 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/include/utils/class_msgPool.inc | patch | blob | history |
index 8e4c072bef68e7df71aaee0051817d7459b60710..22aea93b6986d3ce3a04fdef41151b5afd080ab6 100644 (file)
public static function selectToView($type,$o_type = "")
{
if($o_type == ""){
- return(_("Select to list objects of type '%s'."));
+ return(sprintf(_("Select to list objects of type '%s'."),$type));
}elseif($o_type == "contains"){
- return(_("Select to list objects containig '%s'."));
+ return(sprintf(_("Select to list objects containig '%s'."),$type));
}
}