Code

Updated strings
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sun, 25 Apr 2010 17:55:50 +0000 (17:55 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Sun, 25 Apr 2010 17:55:50 +0000 (17:55 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17827 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/include/class_socketClient.inc
gosa-core/include/utils/class_msgPool.inc

index 919e6e0374f5d6dedc5e3057183b865500f09198..90e2a6cedde79e6baf98ebc5c14982e294ecf9f5 100644 (file)
@@ -57,7 +57,7 @@ class Socket_Client
   public function setEncryptionKey($key)
   {
     if(!function_exists("mcrypt_get_iv_size")){
-      $this->set_error(_("No PHP mcrypt module found!"));
+      $this->set_error(msgPool::missingext("mcrypt"));
       $this->ckey = "";
       $this->b_encrypt = FALSE;
     }
index 38fea968f16de4cf560c5f7644522a55d1b46fbc..01423f3f33730700012d2a753be4d7d5d30488b8 100644 (file)
@@ -575,7 +575,7 @@ class msgPool
 
   public static function check_base()
   {
-    return _("The supplied base is not valid and has been reset to the previous value!");
+    return _("The supplied base is not valid and has been reset to its previous value!");
   }
 
 }