]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Update i18n/L10n.
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 18 Sep 2010 08:25:13 +0000 (10:25 +0200)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Sat, 18 Sep 2010 08:25:13 +0000 (10:25 +0200)
plugins/Minify/MinifyPlugin.php
plugins/Minify/minify.php

index 13010e75a175f86ffb7db0803bac0ca609ae7699..6c1e49eb93cba610f0a11974a3f3db44bccd967a 100644 (file)
@@ -177,8 +177,7 @@ class MinifyPlugin extends Plugin
                             'author' => 'Craig Andrews',
                             'homepage' => 'http://status.net/wiki/Plugin:Minify',
                             'rawdescription' =>
-                            _m('The Minify plugin minifies your CSS and Javascript, removing whitespace and comments.'));
+                            _m('The Minify plugin minifies StatusNet\'s CSS and JavaScript, removing whitespace and comments.'));
         return true;
     }
 }
-
index 64727f5e7e27b7c4fcfc2233bf02a5cb4baf8fb9..9a59c4223c8ec1f613b995eefc01a66275a748ef 100644 (file)
@@ -46,11 +46,11 @@ class MinifyAction extends Action
             if(file_exists($this->file)) {
                 return true;
             } else {
-                $this->clientError(_('f parameter is not a valid path'),404);
+                $this->clientError(_m('The parameter "f" is not a valid path.'),404);
                 return false;
             }
         }else{
-            $this->clientError(_('f parameter is required'),500);
+            $this->clientError(_m('The parameter "f" is required but missing.'),500);
             return false;
         }
     }
@@ -108,10 +108,9 @@ class MinifyAction extends Action
                 header('Content-Type: ' . self::TYPE_CSS);
                 break;
             default:
-                $this->clientError(_('File type not supported'),500);
+                $this->clientError(_m('File type not supported.'),500);
                 return false;
         }
         return $out;
     }
 }
-