Code

Added comments and translation tags to connectivity plinfo functions
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 13 Jul 2006 06:41:09 +0000 (06:41 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 13 Jul 2006 06:41:09 +0000 (06:41 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4135 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/personal/connectivity/class_intranetAccount.inc
plugins/personal/connectivity/class_kolabAccount.inc
plugins/personal/connectivity/class_opengwAccount.inc
plugins/personal/connectivity/class_oxchangeAccount.inc
plugins/personal/connectivity/class_phpgwAccount.inc
plugins/personal/connectivity/class_phpscheduleitAccount.inc
plugins/personal/connectivity/class_pptpAccount.inc
plugins/personal/connectivity/class_proxyAccount.inc
plugins/personal/connectivity/class_pureftpdAccount.inc
plugins/personal/connectivity/class_webdavAccount.inc

index ca01a66bf521c7e27ebd955797c819e9e1d98a58..0c596bfa0de12c11150ee3a24083e798df1d3e5c 100644 (file)
@@ -154,13 +154,16 @@ class intranetAccount extends plugin
          }
   }
 
-       
+
+  /* Return pluign informations for acl handling 
+      #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */  
   function plInfo()
   {
-    return (array(     "plDescription"   => _("Intranet account settings"),
-          "plSelfModify"    => TRUE,
-          "plDepends"       => array("objectClass" => "gosaAccount"),
-          "gosaIntranetAccount" => "GOsa intranet account"));
+    return (array(     
+          "plDescription"       => _("Intranet account settings"),
+          "plSelfModify"        => TRUE,
+          "plDepends"           => array("objectClass" => "gosaAccount"),
+          "gosaIntranetAccount" => "!!! FIME "._("GOsa intranet account")));
   }
 }
 
index a889eb0a4be2a48496ba1fd22e8582d14dbabf0f..e2d7c641c06420a79cbb3296623f855a1d45ab6b 100644 (file)
@@ -402,11 +402,13 @@ class kolabAccount extends plugin
   }
 
 
+  /* Return pluign informations for acl handling  */
   function plInfo()
   {
-    return (array(     "plDescription"   => _("Koalb account settings"),
-          "plSelfModify"    => TRUE,
-          "plDepends"       => array("objectClass" => "gosaAccount"),
+    return (array(     
+          "plDescription"         => _("Koalb account settings"),
+          "plSelfModify"          => TRUE,
+          "plDepends"             => array("objectClass" => "gosaAccount"),
           "kolabFreeBusyFuture"   => _("Free busy future"),
           "unrestrictedMailSize"  => _("Mail size restriction"),
           "calFBURL"              => _("Free busy information"),
index a2b2091a11e65fb7fa6886a547149a01fb66eae3..1585fe4b1bce7c21de5f60a05343d1998873eaab 100644 (file)
@@ -327,12 +327,15 @@ class opengwAccount extends plugin
   }
 
 
+ /* Return pluign informations for acl handling 
+      #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */  
   function plInfo()
   {
-    return (array(     "plDescription"   => _("Open groupware account settings"),
+    return (array(     
+          "plDescription"   => _("Open groupware account settings"),
           "plSelfModify"    => TRUE,
           "plDepends"       => array("objectClass" => "gosaAccount"),
-          "opengwAccount"   => "Open groupware account"));
+          "opengwAccount"   => "!!! FIXME "._("Open groupware account")));
   }
   
 }
index 6b2342b61ec44183630af1e5019c416198a2e53d..a702cb4c65761f116834d602fa1da0df5a5a3902 100644 (file)
@@ -872,16 +872,19 @@ class oxchangeAccount extends plugin
   }
 
 
+  /* Return pluign informations for acl handling
+    #FIXME ACL attributes aren't translated yet.       */
   function plInfo()
   {
-    return (array("plDescription"   => _("Open xchange account settings"),
-          "plSelfModify"    => TRUE,
-          "plDepends"       => array("objectClass" => _("gosaAccount")),
-          "OXAppointmentDays"   => "#FIXEME attributes arn't translated"._("OXAppointmentDays"),
-          "OXTaskDays"         => _("OXTaskDays"),
-          "mailEnabled"        => _("mailEnabled"),
-          "OXTimeZone"         => _("OXTimeZone")));
+    return (
+    array("plDescription"     => _("Open xchange account settings"),
+          "plSelfModify"      => TRUE,
+          "plDepends"         => array("objectClass" => _("gosaAccount")),
+          "OXAppointmentDays" => "!!! FIXME "._("OXAppointmentDays"),
+          "OXTaskDays"             => _("OXTaskDays"),
+          "mailEnabled"          => _("mailEnabled"),
+          "OXTimeZone"             => _("OXTimeZone")));
   }
 }
-
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
 ?>
index 4e75efbb0e7cb359c2af8345b7d59abbd81ae567..1941301c3e3a5bf987f9909e9e5e4a2c6c532aa7 100644 (file)
@@ -121,12 +121,14 @@ class phpgwAccount extends plugin
   }
 
 
+  /* Return pluign informations for acl handling 
+    #FIME ACL attributes arn't translated yet */
   function plInfo()
   {
     return (array(  "plDescription"   => _("Intranet account settings"),
           "plSelfModify"    => TRUE,
           "plDepends"       => array("objectClass" => "gosaAccount"),
-          "phpgwAccountExpires" =>"#FIXME not translated"._("phpgwAccountExpires"),
+          "phpgwAccountExpires" =>"!!! FIXME "._("phpgwAccountExpires"),
           "phpgwAccountStatus"  =>_("phpgwAccountStatus"),
           "phpgwAccountType"    =>_("phpgwAccountType")));
   }
index 4e1f48e441e76d496022f99111c590b8d52e5e4a..23f7f2a77da4aa2bec9ebb6707109b4c69c1852c 100644 (file)
@@ -129,12 +129,15 @@ class phpscheduleitAccount extends plugin
 
   }
 
+
+  /* Return pluign informations for acl handling 
+      #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */
   function plInfo()
   {
     return (array(  "plDescription"   => _("PHPscheduleit account"),
           "plSelfModify"    => TRUE,
           "plDepends"       => array("objectClass" => "gosaAccount"),
-          "phpscheduleitAccount" => "PHPscheduleit account"));
+          "phpscheduleitAccount" => "!!! FIXME "._("PHPscheduleit account")));
   }
 
 
index cb89648982fbbeccd10fb9423928d4fa6d45e7e1..c772d322bc646f663828aa5b2169e7e9b4de0bb4 100644 (file)
@@ -132,12 +132,16 @@ class pptpAccount extends plugin
     }
   }
 
+
+  /* Return pluign informations for acl handling 
+      #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */ 
   function plInfo()
   {
-    return (array(  "plDescription"   => _("PPTP account"),
-          "plSelfModify"    => TRUE,
-          "plDepends"       => array("objectClass" => "gosaAccount"),
-          "pptpServerAccount" => "PPTP account"));
+    return (array(  
+          "plDescription"     => _("PPTP account"),
+          "plSelfModify"      => TRUE,
+          "plDepends"         => array("objectClass" => "gosaAccount"),
+          "pptpServerAccount" => "!!! FIXME "._("PPTP account")));
   }
 
 
index 76e28e1a7997fc180da5e3d76e05b13c7213a500..42bf2b0f80daf8b2033dab6301010e7e6aa3decf 100644 (file)
@@ -267,14 +267,15 @@ class proxyAccount extends plugin
 
   }
 
-
+  /* Return pluign informations for acl handling 
+      #FIME There possibly some attributes that can be combined to one acl. */
   function plInfo()
   {
     return (array(  "plDescription"   => _("Intranet account settings"),
           "plSelfModify"    => TRUE,
           "plDepends"       => array("objectClass" => "gosaAccount"),
 
-          "gosaProxyID"           => _("gosaProxyID"),
+          "gosaProxyID"           => "!!! FIXME "._("gosaProxyID"),
     
           "gosaProxyFlag_F"   => _("Filter unwanted content"), 
           "gosaProxyFlag_T"   => _("Limit proxy access"),
index 130037bf0a55e4c6ce27ceec099b9f71f06e8ffc..c2aae12409660d498cdccca056818142c71bf675 100644 (file)
@@ -181,15 +181,16 @@ class pureftpdAccount extends plugin
   }
 
 
+  /* Return pluign informations for acl handling
+  #FIME There possibly some attributes that can be combined to one acl. */
   function plInfo()
   {
-
-    # FIXME We should combine some of the attributes liste below..
-    return (array(  "plDescription"   => _("Intranet account settings"),
+    return (array(  
+          "plDescription"   => _("Intranet account settings"),
           "plSelfModify"    => TRUE,
           "plDepends"       => array("objectClass" => "gosaAccount"),
 
-          "FTPQuotaFiles"         => _("Quota files"),
+          "FTPQuotaFiles"         => "!!! FIXME "._("Quota files"),
           "FTPUploadRatio"        => _("Upload ratio"),
           "FTPQuotaMBytes"        => _("Quota MBytes"),
           "FTPDownloadRatio"      => _("Download ratio"),
index 4c449d8e0a881b10cb9d44d38f7260aaa9a625c7..7ed382c7d2f50ff173ce9276d71ed0d47932d9d4 100644 (file)
@@ -116,12 +116,15 @@ class webdavAccount extends plugin
     }
   }
 
+  /* Return pluign informations for acl handling
+      #FIXME This is only an enable/disable checkbox for this account, there is possibly a better solution available later */
   function plInfo()
   {
-    return (array(  "plDescription"   => _("Intranet account settings"),
+    return (array(  
+          "plDescription"     => _("Intranet account settings"),
           "plSelfModify"      => TRUE,
           "plDepends"         => array("objectClass" => "gosaAccount"),
-          "gosaWebdavAccount" => "WebDAV account"));
+          "gosaWebdavAccount" => "!!! FIXME "._("WebDAV account")));
   }
 }