Code

msgPool
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Mar 2008 09:48:02 +0000 (09:48 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 14 Mar 2008 09:48:02 +0000 (09:48 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9812 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-plugins/samba/admin/systems/samba/class_winGeneric.inc

index 295698d343f3abb5c2523cc2f12a9f808c4426e7..6b202bd38b58cdf4bcead8a01eb33e9d20a2b692 100644 (file)
@@ -88,7 +88,7 @@ class wingeneric extends plugin
     /* Do we represent a valid phone? */
     if (!$this->is_account && $this->parent === NULL){
       $display= "<img alt=\"\" src=\"images/stop.png\" align=middle>&nbsp;<b>".
-        _("This 'dn' has no network features.")."</b>";
+        msgPool::noValidExtension(_("network"))."</b>";
       return($display);
     }
 
@@ -201,7 +201,7 @@ class wingeneric extends plugin
     }
 
     if(!$this->acl_is_createable() && $this->dn == "new"){
-      $message[]= _("You have no permissions to create a component on this 'Base'.");
+      $message[]= msgPool::permCreate();
     }
 
     if ($this->orig_dn != $this->dn){
@@ -214,7 +214,7 @@ class wingeneric extends plugin
             continue;
           }
           if ($attrs['dn'] != $this->orig_dn){
-            $message[]= sprintf (_("There is already an entry '%s' in the base choosen by you"), $this->cn);
+            $message[]= msgPool::duplicated(_("Name"));
             break;
           }
         }