| 
<?php/*
 You may not change or alter any portion of this comment or credits
 of supporting developers from this source code or any supporting source code
 which is considered copyrighted (c) material of the original comment or credit authors.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */
 
 /**
 *  Xoops Language
 *
 * @copyright       (c) 2000-2016 XOOPS Project (www.xoops.org)
 * @license             GNU GPL 2 (http://www.gnu.org/licenses/gpl-2.0.html)
 * @package             kernel
 * @subpackage          Xoops Logger Language
 * @since               2.4.0
 * @author              trabis <[email protected]>
 */
 defined('XOOPS_ROOT_PATH') || exit('Restricted access');
 
 // _LANGCODE: en
 // _CHARSET : UTF-8
 // Translator: XOOPS Translation Team
 define('_LOGGER_DEBUG', 'Debug');
 define('_LOGGER_INCLUDED_FILES', 'Included files');
 define('_LOGGER_FILES', '%s files');
 define('_LOGGER_MEM_USAGE', 'Memory usage');
 define('_LOGGER_MEM_ESTIMATED', '%s [Estimated]');
 define('_LOGGER_NONE', 'None');
 define('_LOGGER_ALL', 'All');
 define('_LOGGER_ERRORS', 'Errors');
 define('_LOGGER_DEPRECATED', 'Deprecated');
 define('_LOGGER_QUERIES', 'Queries');
 define('_LOGGER_BLOCKS', 'Blocks');
 define('_LOGGER_EXTRA', 'Extra');
 define('_LOGGER_TIMERS', 'Timers');
 
 define('_LOGGER_TIMETOLOAD', '%s took %s seconds to load.');
 
 define('_LOGGER_TOTAL', 'Total');
 
 define('_LOGGER_NOT_CACHED', 'Not cached');
 define('_LOGGER_CACHED', 'Cached (regenerates every %s seconds)');
 
 define('_LOGGER_UNKNOWN', 'Unknown');
 define('_LOGGER_E_USER_NOTICE', 'Notice');
 define('_LOGGER_E_USER_WARNING', 'Warning');
 define('_LOGGER_E_USER_ERROR', 'Error');
 define('_LOGGER_E_NOTICE', 'Notice');
 define('_LOGGER_E_WARNING', 'Warning');
 define('_LOGGER_E_STRICT', 'Strict');
 define('_LOGGER_FILELINE', '%s in file %s line %s');
 
 |