1<?php 2/** 3 * English language file for pagestats plugin 4 */ 5 6$lang['unit_mb'] = 'MB'; 7 8// Statistics output 9$lang['page_stats_count'] = 'Total Pages:'; 10$lang['page_stats_size'] = 'Total Size:'; 11$lang['media_stats_count'] = 'Total Media Files:'; 12$lang['media_stats_size'] = 'Media Size:'; 13 14// Admin interface 15$lang['admin_title'] = 'Page Stats Overview'; 16$lang['admin_intro'] = 'This plugin provides statistics about your DokuWiki installation.'; 17$lang['admin_current_stats'] = 'Current Statistics'; 18$lang['admin_total_pages'] = 'Total Pages'; 19$lang['admin_pages_size'] = 'Pages Size'; 20$lang['admin_total_media'] = 'Total Media Files'; 21$lang['admin_media_size'] = 'Media Size'; 22$lang['admin_usage_title'] = 'Usage Instructions'; 23$lang['admin_usage_text'] = 'You can use the following syntax in any wiki page:'; 24$lang['admin_nocache_note'] = 'Note: To avoid outdated statistics, add <code>~~NOCACHE~~</code> at the beginning of the page.'; 25$lang['admin_cache_title'] = 'Cache Management'; 26$lang['admin_cache_text'] = 'The statistics are cached to improve performance. You can clear the cache if needed:'; 27$lang['admin_clear_cache'] = 'Clear Statistics Cache'; 28$lang['admin_cache_cleared'] = 'PageStats cache cleared successfully'; 29 30// Cache information 31$lang['admin_cache_time'] = 'Cache Lifetime:'; 32$lang['admin_cache_time_seconds'] = 'seconds'; 33$lang['admin_cache_time_hours'] = 'hours'; 34$lang['admin_cache_time_config_hint'] = 'The cache lifetime can be changed in DokuWiki Admin → Configuration.'; 35$lang['admin_cache_disabled'] = 'Cache is currently disabled (cacheTime = 0)'; 36$lang['admin_cache_enable_hint'] = 'The cache can be enabled in DokuWiki Admin → Configuration.';