* mark all translatable strings with {{{_()}}}
This commit is contained in:
Jan Dittberner 2007-11-26 09:56:48 +00:00
parent 8567a8aaac
commit 83251502e9
3 changed files with 21 additions and 18 deletions

View file

@ -111,7 +111,7 @@ function getDirectoryData($dirname) {
$dir['groups'] = getDirGroupsFromHtaccess($dirname);
list($dir['filecount'], $dir['filesize']) = countFilesRecursive(getFullPath($dirname));
$dir['maydelete'] = ($dir['filecount'] == 0) ? 1 : 0;
$dir['filesize'] = sprintf("%d kBytes", $dir['filesize'] / 1024);
$dir['filesize'] = sprintf(_("%d kBytes"), $dir['filesize'] / 1024);
return $dir;
}