Files
dlist/languages/english.lang.php
jim edf251dbec - thumbnail support is fully functional with custom imageThumb class which supports caching and so on, the class is still considered beta (specially the clean_cache() function)
- updated simple template
- added Last Access (atime) to dirlist.lib.php
- updated and fixed loads of other things

git-svn-id: file:///Users/jimeh/Desktop/dlist/trunk@18 a5845835-ea0f-0410-a762-dd0bfe9bfde8
2006-04-09 18:00:39 +00:00

48 lines
993 B
PHP

<?php
class lang {
// Language settings
var $_language = 'english'; // local language name ("svenska" for swedish)...
var $_version = '1.0.5';
// Locale settings
var $_locale = array('eng', 'en_US');
// General strings
var $index_of = 'Index of';
var $parent_dir = 'Parent Directory';
var $name = 'Name';
var $size = 'Size';
var $mtime = 'Date Modified';
var $atime = 'Last Accessed';
var $perms = 'Permissions';
var $chmod = 'CHMOD';
var $owner = 'Owner';
var $group = 'Group';
var $owner_id = 'Owner ID';
var $group_id = 'Group ID';
var $type = 'Type';
var $ext = 'Extension';
var $timer_string = 'Page generated in %s seconds';
var $icons = 'Icons';
var $details = 'Details';
var $powered_by = 'Powered by dList';
// Smart Date
var $sd_tomorrow = 'Tomorrow';
var $sd_today = 'Today';
var $sd_yesterday = 'Yesterday';
var $sd_2_days_ago = '2 days ago';
var $sd_3_days_ago = '3 days ago';
}
?>