Feature #18842 » 8505_fileAdmin_class.file_list.inc.diff
typo3/class.file_list.inc 2008-05-14 23:39:24.000000000 +0200 | ||
---|---|---|
**/
|
||
function getFolderInfo() {
|
||
if($this->counter == 1) {
|
||
$fileLabel = 'File';
|
||
$fileLabel = $GLOBALS['LANG']->getLL('file_upper',1);
|
||
} else {
|
||
$fileLabel = 'Files';
|
||
$fileLabel = $GLOBALS['LANG']->getLL('files_upper',1);
|
||
}
|
||
return $this->counter.' '.$fileLabel.', '.t3lib_div::formatSize($this->totalbytes).'bytes';
|
||
}
|