Code

Updated string
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Mar 2008 13:54:38 +0000 (13:54 +0000)
committerhickert <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

index 8e4c072bef68e7df71aaee0051817d7459b60710..22aea93b6986d3ce3a04fdef41151b5afd080ab6 100644 (file)
@@ -12,9 +12,9 @@ class msgPool
   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));
     }
 
   }