Use profile->getBestName() instead of more complex i18n unfriendly construction.

Update translator documentation.
Number parameters where more than one is used.
L10n updates.
Update README file to break lines at or just before 80 characters.
Remove PHP4-ism "?>"
Update indentation.
Update whitespace.
This commit is contained in:
Siebrand Mazeland
2011-04-25 19:12:26 +02:00
parent a2e4a1803c
commit 3bcff2fa86
14 changed files with 62 additions and 43 deletions

View File

@@ -176,6 +176,7 @@ class MinifyPlugin extends Plugin
'author' => 'Craig Andrews',
'homepage' => 'http://status.net/wiki/Plugin:Minify',
'rawdescription' =>
// TRANS: Plugin description.
_m('The Minify plugin minifies StatusNet\'s CSS and JavaScript, removing whitespace and comments.'));
return true;
}

View File

@@ -1,4 +1,5 @@
The Minify plugin minifies your CSS and Javascript, removing whitespace and comments.
The Minify plugin minifies your CSS and Javascript, removing whitespace and
comments.
Note that if enabled this plugin and use a theme server,
(if any of $config['theme']['server'], $config['theme']['path'],
@@ -31,4 +32,3 @@ Example
=======
addPlugin('minify', array());

View File

@@ -46,16 +46,18 @@ class MinifyAction extends Action
if(file_exists($this->file)) {
return true;
} else {
// TRANS: Client error displayed when not providing a valid path in parameter "f".
$this->clientError(_m('The parameter "f" is not a valid path.'),404);
return false;
}
}else{
// TRANS: Client error displayed when not providing parameter "f".
$this->clientError(_m('The parameter "f" is required but missing.'),500);
return false;
}
}
function etag()
function etag()
{
if(isset($this->v)) {
return "\"" . crc32($this->file . $this->v) . "\"";
@@ -73,7 +75,7 @@ class MinifyAction extends Action
function handle($args)
{
parent::handle($args);
$c = Cache::instance();
if (!empty($c)) {
$cacheKey = Cache::key(MinifyPlugin::cacheKey . ':' . $this->file . '?v=' . empty($this->v)?'':$this->v);
@@ -108,6 +110,7 @@ class MinifyAction extends Action
header('Content-Type: ' . self::TYPE_CSS);
break;
default:
// TRANS: Client error displayed when trying to minify an unsupported file type.
$this->clientError(_m('File type not supported.'),500);
return false;
}