From: hickert Date: Wed, 9 May 2007 09:23:55 +0000 (+0000) Subject: Removed translation tags from debug output X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d470e30ebfc10d19c72acf416c0dd8a3986a574a;p=gosa.git Removed translation tags from debug output git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6316 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/setup/class_setupStep_Migrate.inc b/setup/class_setupStep_Migrate.inc index b7b33514f..8354a765e 100644 --- a/setup/class_setupStep_Migrate.inc +++ b/setup/class_setupStep_Migrate.inc @@ -776,12 +776,12 @@ class Step_Migrate extends setup_step if(isset($ret['objectClass']) && in_array("posixGroup",$ret['objectClass'])){ $found = TRUE; - $username .= _("ACL-Group").": ".$ret['cn'][0]."
"; + $username .= "ACL-Group: ".$ret['cn'][0]."
"; }elseif(isset($ret['objectClass']) && in_array("gosaAccount",$ret['objectClass']) && in_array("organizationalPerson",$ret['objectClass']) && in_array("inetOrgPerson",$ret['objectClass'])){ $found = TRUE; - $username .= _("ACL").": ".$ret['uid'][0]."
"; + $username .= "ACL: ".$ret['uid'][0]."
"; } } }elseif($tmp[1] == "role"){ @@ -809,7 +809,7 @@ class Step_Migrate extends setup_step in_array("organizationalPerson",$ret['objectClass']) && in_array("inetOrgPerson",$ret['objectClass'])){ $found = TRUE; - $username .= _("ACL Role").": ".$ret['uid'][0]."
"; + $username .= "ACL Role: ".$ret['uid'][0]."
"; } } }