Code

Changed ACL grant text
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 1 Jul 2010 08:08:13 +0000 (08:08 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 1 Jul 2010 08:08:13 +0000 (08:08 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@18899 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_acl.inc
gosa-core/plugins/generic/references/class_aclResolver.inc

index 0a325f1b5892bfd97c8c7ca45a5b43caea1eaf71..82cbdff1827918929fcf711281282e1d8af26c33 100644 (file)
@@ -816,7 +816,7 @@ class acl extends plugin
       $options.= $this->mkchkbx($key."_0_m", _("Move objects"), preg_match('/m/', $overall_acl)).$spc;
       $options.= $this->mkchkbx($key."_0_d", _("Remove objects"), preg_match('/d/', $overall_acl)).$spc;
       if ($plist[preg_replace('%^.*/%', '', $key)]['plSelfModify']){
-        $options.= $this->mkchkbx($key."_0_s", _("Grant permission to owner"), preg_match('/s/', $overall_acl)).$spc;
+        $options.= $this->mkchkbx($key."_0_s", _("Restrict changes to user's own object"), preg_match('/s/', $overall_acl)).$spc;
       }
 
       /* Global options */
index f33185614996f9d8e2d8e49e346876ef4967f76f..51d05a510ddd1482c628245949a72e090263725d 100644 (file)
@@ -292,7 +292,7 @@ class aclResolver
             $str .= "<li><i>".$name.":</i> ";
             $str .= "<ul class='acl-list'>";
             if(preg_match("/s/", $acl)){
-                $str.="<li><u>"._("Grant permission to owner").'</u></li>'; 
+                $str.="<li><u>"._("Restrict changes to user's own object").'</u></li>'; 
             }
             if(preg_match("/r/", $acl)) $str.="<li>"._("read").'</li>'; 
             if(preg_match("/w/", $acl)) $str.="<li>"._("write").'</li>';