From: <be...@us...> - 2012-11-21 04:52:14
|
Revision: 10264 http://sourceforge.net/p/xoops/svn/10264 Author: beckmi Date: 2012-11-21 04:52:11 +0000 (Wed, 21 Nov 2012) Log Message: ----------- Updating for compatibility with PHP 5.4 Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/file.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/xoopscache.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/mysqldatabase.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/file/xoopsfile.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/logger/xoopslogger.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/preload.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopslists.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsload.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/protector/preloads/core.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/modulesadmin/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/class/protector.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/file.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/file.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/file.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -137,8 +137,9 @@ * @return boolean True if the data was succesfully cached, false on failure * @access public */ - function write($key, $data = null, $duration = null) + function write($key, $value = null, $duration = null) { + $data = $value; if (!isset($data) || ! $this->init) { return false; } Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/xoopscache.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/xoopscache.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/cache/xoopscache.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -66,7 +66,7 @@ * @return object * @access public */ - function &getInstance() + static function &getInstance() { static $instance; if (!isset($instance)) { @@ -257,7 +257,7 @@ * @return mixed The cached data, or false if the data doesn't exist, has expired, or if there was an error fetching it * @access public */ - function read($key, $config = null) + static function read($key, $config = null) { $key = substr(md5(XOOPS_URL), 0, 8) . '_' . $key; $_this =& XoopsCache::getInstance(); @@ -438,7 +438,7 @@ * @return boolean True if the data was succesfully cached, false on failure * @access public */ - function write($key, &$value, $duration) + function write($key, $value = null, $duration = null) { trigger_error(sprintf(__('Method write() not implemented in %s', true), get_class($this)), E_USER_ERROR); } Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/mysqldatabase.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/mysqldatabase.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/mysqldatabase.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -56,13 +56,13 @@ * @param bool $selectdb select the database now? * @return bool successful? */ - function connect($selectdb = true) + function connect($selectdb = TRUE) { static $db_charset_set; if (!extension_loaded('mysql')) { trigger_error('notrace:mysql extension not loaded', E_USER_ERROR); - return false; + return FALSE; } $this->allowWebChanges = ($_SERVER['REQUEST_METHOD'] != 'GET'); @@ -75,12 +75,12 @@ if (!$this->conn) { $this->logger->addQuery('', $this->error(), $this->errno()); - return false; + return FALSE; } - if ($selectdb != false) { + if ($selectdb != FALSE) { if (!mysql_select_db(XOOPS_DB_NAME)) { $this->logger->addQuery('', $this->error(), $this->errno()); - return false; + return FALSE; } } if (!isset($db_charset_set) && defined('XOOPS_DB_CHARSET') && XOOPS_DB_CHARSET) { @@ -88,7 +88,7 @@ } $db_charset_set = 1; $this->queryF("SET SQL_BIG_SELECTS = 1"); - return true; + return TRUE; } /** @@ -256,13 +256,13 @@ $this->logger->startTime('query_time'); $result = mysql_query($sql, $this->conn); $this->logger->stopTime('query_time'); - $query_time = $this->logger->dumpTime('query_time', true); + $query_time = $this->logger->dumpTime('query_time', TRUE); if ($result) { - $this->logger->addQuery($sql, null, null, $query_time); + $this->logger->addQuery($sql, NULL, NULL, $query_time); return $result; } else { $this->logger->addQuery($sql, $this->error(), $this->errno(), $query_time); - return false; + return FALSE; } } @@ -289,7 +289,7 @@ */ function queryFromFile($file) { - if (false !== ($fp = fopen($file, 'r'))) { + if (FALSE !== ($fp = fopen($file, 'r'))) { include_once XOOPS_ROOT_PATH . '/class/database/sqlutility.php'; $sql_queries = trim(fread($fp, filesize($file))); SqlUtility::splitMySqlFile($pieces, $sql_queries); @@ -297,13 +297,13 @@ // [0] contains the prefixed query // [4] contains unprefixed table name $prefixed_query = SqlUtility::prefixQuery(trim($query), $this->prefix()); - if ($prefixed_query != false) { + if ($prefixed_query != FALSE) { $this->query($prefixed_query[0]); } } - return true; + return TRUE; } - return false; + return FALSE; } /** @@ -395,7 +395,7 @@ $sql = ltrim($sql); if (!$this->allowWebChanges && strtolower(substr($sql, 0, 6)) != 'select') { trigger_error('Database updates are not allowed during processing of a GET request', E_USER_WARNING); - return false; + return FALSE; } return $this->queryF($sql, $limit, $start); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/file/xoopsfile.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/file/xoopsfile.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/file/xoopsfile.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -64,7 +64,7 @@ * @param string $name * @return */ - function load($name = 'file') + static function load($name = 'file') { switch ($name) { case 'folder': @@ -102,7 +102,7 @@ * @param mixed $mode * @return */ - function getHandler($name = 'file', $path = false, $create = false, $mode = null) + static function getHandler($name = 'file', $path = false, $create = false, $mode = null) { $handler = null; XoopsFile::load($name); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/logger/xoopslogger.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/logger/xoopslogger.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/logger/xoopslogger.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -84,7 +84,7 @@ * * @return object XoopsLogger reference to the only instance */ - function &getInstance() + static function &getInstance() { static $instance; if (!isset($instance)) { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/preload.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/preload.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/preload.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -65,7 +65,7 @@ * * @return object */ - function &getInstance() + static function &getInstance() { static $instance = false; if (!$instance) { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopslists.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopslists.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopslists.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -126,7 +126,7 @@ /** * gets list of all files in a directory */ - function getFileListAsArray($dirname, $prefix = '') + static function getFileListAsArray($dirname, $prefix = '') { $filelist = array(); if (substr($dirname, - 1) == '/') { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsload.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsload.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsload.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -24,7 +24,7 @@ //static $loaded; //static $configs; - function load($name, $type = "core") + static function load($name, $type = "core") { static $loaded; static $deprecated; @@ -83,7 +83,7 @@ * * @access private */ - function loadCore($name) + static function loadCore($name) { static $configs; @@ -149,7 +149,7 @@ * * @return */ - function loadCoreConfig() + static function loadCoreConfig() { return $configs = array( 'xoopsuserutility' => XOOPS_ROOT_PATH . '/class/userutility.php', Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -4,39 +4,72 @@ // _CHARSET : UTF-8 // Translator: XOOPS Translation Team // more examples: http://php.net/manual/en/function.date.php - +// +// Revision by TXMod Xoops - Added shot text: 30/06/2012 +// //%%%%% Time Zone %%%% define("_CAL_FORMAT","Y-m-d"); +//%%%%% JQuery Calendar Time Zone %%%% +define("_CAL_JQUERY_FORMAT","yy/mm/dd"); +// Week Mini Text +define("_CAL_MIN_SUNDAY", "Su"); +define("_CAL_MIN_MONDAY", "Mo"); +define("_CAL_MIN_TUESDAY", "Tu"); +define("_CAL_MIN_WEDNESDAY", "We"); +define("_CAL_MIN_THURSDAY", "Th"); +define("_CAL_MIN_FRIDAY", "Fr"); +define("_CAL_MIN_SATURDAY", "Sa"); +// Week Short Text +define("_CAL_SHORT_SUNDAY", "Sun"); +define("_CAL_SHORT_MONDAY", "Mon"); +define("_CAL_SHORT_TUESDAY", "Tue"); +define("_CAL_SHORT_WEDNESDAY", "Wed"); +define("_CAL_SHORT_THURSDAY", "Thu"); +define("_CAL_SHORT_FRIDAY", "Fri"); +define("_CAL_SHORT_SATURDAY", "Sat"); -define("_CAL_SUNDAY","Sunday"); -define("_CAL_MONDAY","Monday"); -define("_CAL_TUESDAY","Tuesday"); -define("_CAL_WEDNESDAY","Wednesday"); -define("_CAL_THURSDAY","Thursday"); -define("_CAL_FRIDAY","Friday"); -define("_CAL_SATURDAY","Saturday"); -define("_CAL_JANUARY","January"); -define("_CAL_FEBRUARY","February"); -define("_CAL_MARCH","March"); -define("_CAL_APRIL","April"); -define("_CAL_MAY","May"); -define("_CAL_JUNE","June"); -define("_CAL_JULY","July"); -define("_CAL_AUGUST","August"); -define("_CAL_SEPTEMBER","September"); -define("_CAL_OCTOBER","October"); -define("_CAL_NOVEMBER","November"); -define("_CAL_DECEMBER","December"); -define("_CAL_TGL1STD","Toggle first day of week"); -define("_CAL_PREVYR","Prev. year (hold for menu)"); -define("_CAL_PREVMNTH","Prev. month (hold for menu)"); -define("_CAL_GOTODAY","Go Today"); -define("_CAL_NXTMNTH","Next month (hold for menu)"); -define("_CAL_NEXTYR","Next year (hold for menu)"); -define("_CAL_SELDATE","Select date"); -define("_CAL_DRAGMOVE","Drag to move"); -define("_CAL_TODAY","Today"); -define("_CAL_DISPM1ST","Display Monday first"); -define("_CAL_DISPS1ST","Display Sunday first"); - +define("_CAL_SHORT_JANUARY", "January"); +define("_CAL_SHORT_FEBRUARY", "February"); +define("_CAL_SHORT_MARCH", "March"); +define("_CAL_SHORT_APRIL", "April"); +define("_CAL_SHORT_MAY", "May"); +define("_CAL_SHORT_JUNE", "June"); +define("_CAL_SHORT_JULY", "July"); +define("_CAL_SHORT_AUGUST", "August"); +define("_CAL_SHORT_SEPTEMBER", "September"); +define("_CAL_SHORT_OCTOBER", "October"); +define("_CAL_SHORT_NOVEMBER", "November"); +define("_CAL_SHORT_DECEMBER", "December"); +// Normal Text +define("_CAL_SUNDAY", "Sunday"); +define("_CAL_MONDAY", "Monday"); +define("_CAL_TUESDAY", "Tuesday"); +define("_CAL_WEDNESDAY", "Wednesday"); +define("_CAL_THURSDAY", "Thursday"); +define("_CAL_FRIDAY", "Friday"); +define("_CAL_SATURDAY", "Saturday"); +define("_CAL_JANUARY", "January"); +define("_CAL_FEBRUARY", "February"); +define("_CAL_MARCH", "March"); +define("_CAL_APRIL", "April"); +define("_CAL_MAY", "May"); +define("_CAL_JUNE", "June"); +define("_CAL_JULY", "July"); +define("_CAL_AUGUST", "August"); +define("_CAL_SEPTEMBER", "September"); +define("_CAL_OCTOBER", "October"); +define("_CAL_NOVEMBER", "November"); +define("_CAL_DECEMBER", "December"); +// Others +define("_CAL_TGL1STD", "Toggle first day of week"); +define("_CAL_PREVYR", "Prev. year (hold for menu)"); +define("_CAL_PREVMNTH", "Prev. month (hold for menu)"); +define("_CAL_GOTODAY", "Go Today"); +define("_CAL_NXTMNTH", "Next month (hold for menu)"); +define("_CAL_NEXTYR", "Next year (hold for menu)"); +define("_CAL_SELDATE", "Select date"); +define("_CAL_DRAGMOVE", "Drag to move"); +define("_CAL_TODAY", "Today"); +define("_CAL_DISPM1ST", "Display Monday first"); +define("_CAL_DISPS1ST", "Display Sunday first"); ?> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/protector/preloads/core.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/protector/preloads/core.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/protector/preloads/core.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -28,7 +28,7 @@ */ class ProtectorCorePreload extends XoopsPreloadItem { - function eventCoreIncludeCommonStart($args) + static function eventCoreIncludeCommonStart($args) { include XOOPS_TRUST_PATH . '/modules/protector/include/precheck.inc.php'; } Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/modulesadmin/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/modulesadmin/main.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/modulesadmin/main.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -806,6 +806,7 @@ $confobj->setVar('conf_title', $config['title'], true); $confobj->setVar('conf_desc', $config['description'], true); $confobj->setVar('conf_formtype', $config['formtype']); + if (isset( $config['valuetype'])) $confobj->setVar('conf_valuetype', $config['valuetype']); if (isset($config_old[$config['name']]['value']) && $config_old[$config['name']]['formtype'] == $config['formtype'] && $config_old[$config['name']]['valuetype'] == $config['valuetype']) { // preserver the old value if any Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/class/protector.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/class/protector.php 2012-11-21 04:40:56 UTC (rev 10263) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/class/protector.php 2012-11-21 04:52:11 UTC (rev 10264) @@ -113,7 +113,7 @@ } -function &getInstance() +static function &getInstance() { static $instance ; if( ! isset( $instance ) ) { |
From: <be...@us...> - 2012-11-21 05:10:10
|
Revision: 10265 http://sourceforge.net/p/xoops/svn/10265 Author: beckmi Date: 2012-11-21 05:10:08 +0000 (Wed, 21 Nov 2012) Log Message: ----------- Updating for compatibility with PHP 5.4, and consistency among modules Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/databasefactory.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsstory.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_footer.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_header.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/menu.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/docs/changelog.txt XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/xoops_version.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_footer.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_header.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/menu.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/jquery.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/users.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/module_icon.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/databasefactory.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/databasefactory.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/database/databasefactory.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -80,7 +80,7 @@ * @staticvar object The only instance of database class * @return object Reference to the only instance of database class */ - function &getDatabase() + static function getDatabase() { static $database; if (!isset($database)) { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -233,7 +233,7 @@ * @static * @staticvar object */ - function &getInstance() + static function getInstance() { static $instance; if (!isset($instance)) { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsstory.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsstory.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopsstory.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -23,7 +23,7 @@ } $GLOBALS['xoopsLogger']->addDeprecated("'/class/xoopstory.php' is deprecated since XOOPS 2.5.4, please create your own class instead."); include_once XOOPS_ROOT_PATH."/class/xoopstopic.php"; -include_once XOOPS_ROOT_PATH."/class/xoopsuser.php"; +include_once XOOPS_ROOT_PATH."/kernel/user.php"; class XoopsStory { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_footer.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_footer.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_footer.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -17,9 +17,11 @@ * @version: $Id $ **/ -global $moduleInfo; - -echo "<div align=\"center\"><a href=\"http://www.xoops.org\" target=\"_blank\"><img src=" . XOOPS_URL ."/". $moduleInfo->getInfo("dirmoduleadmin")."/icons/32/xoopsmicrobutton.gif".' '." alt=\"XOOPS\" title=\"XOOPS\"></a></div>"; -echo "<div class='center smallsmall italic pad5'><strong>" . $xoopsModule->getVar("name") . "</strong> is maintained by the <a class='tooltip' rel='external' href='http://www.xoops.org/' title='Visit XOOPS Community'>XOOPS Community</a></div>"; +echo "<div class='adminfooter'>\n" + ." <div style='text-align: center;'>\n" + ." <a href='http://www.xoops.org' rel='external'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n" + ." </div>\n" + ." " . _AM_MODULEADMIN_ADMIN_FOOTER . "\n" + ."</div>"; xoops_cp_footer(); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_header.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_header.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/admin_header.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -18,27 +18,29 @@ */ -include_once dirname(dirname(dirname(dirname(__FILE__)))) . '/mainfile.php'; -//include_once XOOPS_ROOT_PATH . '/include/cp_functions.php'; -include("../../../include/cp_header.php"); -//require_once XOOPS_ROOT_PATH . '/modules/' . $GLOBALS['xoopsModule']->getVar('dirname') . '/include/functions.php'; +$path = dirname(dirname(dirname(dirname(__FILE__)))); +include_once $path . '/mainfile.php'; +include_once $path . '/include/cp_functions.php'; +require_once $path . '/include/cp_header.php'; -if ( file_exists($GLOBALS['xoops']->path('/Frameworks/moduleclasses/moduleadmin/moduleadmin.php'))){ - include_once $GLOBALS['xoops']->path('/Frameworks/moduleclasses/moduleadmin/moduleadmin.php'); - //return true; - }else{ - redirect_header("../../../admin.php", 5, _AM_MODULEADMIN_MISSING, false); - //return false; - } +global $xoopsModule; -$myts =& MyTextSanitizer::getInstance(); - -$moduleInfo =& $module_handler->get($xoopsModule->getVar('mid')); -$pathIcon16 = XOOPS_URL .'/'. $moduleInfo->getInfo('icons16'); -$pathIcon32 = XOOPS_URL .'/'. $moduleInfo->getInfo('icons32'); +$thisModuleDir = $GLOBALS['xoopsModule']->getVar('dirname'); +//if functions.php file exist +//require_once dirname(dirname(__FILE__)) . '/include/functions.php'; +// Load language files +xoops_loadLanguage('admin', $thisModuleDir); +xoops_loadLanguage('modinfo', $thisModuleDir); +xoops_loadLanguage('main', $thisModuleDir); +$pathIcon16 = '../'.$xoopsModule->getInfo('icons16'); +$pathIcon32 = '../'.$xoopsModule->getInfo('icons32'); +$pathModuleAdmin = $xoopsModule->getInfo('dirmoduleadmin'); + +include_once $GLOBALS['xoops']->path($pathModuleAdmin.'/moduleadmin.php'); + if ($xoopsUser) { $moduleperm_handler =& xoops_gethandler('groupperm'); if (!$moduleperm_handler->checkRight('module_admin', $xoopsModule->getVar('mid'), $xoopsUser->getGroups())) { @@ -55,20 +57,8 @@ $xoopsTpl = new XoopsTpl(); } +//$xoopsTpl->assign('pathIcon16', $pathIcon16); -$xoopsTpl->assign('pathIcon16', $pathIcon16); - -// Load language files -if (!@include_once(XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname")."/language/" . $xoopsConfig['language'] . "/admin.php")) { - include_once(XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname")."/language/english/admin.php"); -} -if (!@include_once(XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname")."/language/" . $xoopsConfig['language'] . "/modinfo.php")) { - include_once(XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname")."/language/english/modinfo.php"); -} -if (!@include_once(XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname")."/language/" . $xoopsConfig['language'] . "/main.php")) { - include_once(XOOPS_ROOT_PATH."/modules/".$xoopsModule->getVar("dirname")."/language/english/main.php"); -} - if (!isset($GLOBALS['xoopsTpl']) || !is_object($GLOBALS['xoopsTpl'])) { include_once XOOPS_ROOT_PATH . '/class/template.php'; $GLOBALS['xoopsTpl'] = new XoopsTpl(); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/menu.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/menu.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/admin/menu.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -17,22 +17,36 @@ * @version $Id$ */ -$module_handler =& xoops_gethandler('module'); -$xoopsModule =& XoopsModule::getByDirname('pm'); -$moduleInfo =& $module_handler->get($xoopsModule->getVar('mid')); -$pathIcon32 = $moduleInfo->getInfo('icons32'); +defined("XOOPS_ROOT_PATH") or die("XOOPS root path not defined"); +$path = dirname(dirname(dirname(dirname(__FILE__)))); +include_once $path . '/mainfile.php'; + +$dirname = basename(dirname(dirname(__FILE__))); +$module_handler = xoops_gethandler('module'); +$module = $module_handler->getByDirname($dirname); +$pathIcon32 = $module->getInfo('icons32'); +$pathModuleAdmin = $module->getInfo('dirmoduleadmin'); +$pathLanguage = $path . $pathModuleAdmin; + + +if (!file_exists($fileinc = $pathLanguage . '/language/' . $GLOBALS['xoopsConfig']['language'] . '/' . 'main.php')) { + $fileinc = $pathLanguage . '/language/english/main.php'; +} + +include_once $fileinc; + $adminmenu = array(); $i = 1; $adminmenu[$i]['title'] = _PM_MI_INDEX; $adminmenu[$i]['link'] = "admin/admin.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/home.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/home.png' ; $i++; $adminmenu[$i]['title'] = _PM_MI_PRUNE; $adminmenu[$i]['link'] = "admin/prune.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/prune.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/prune.png' ; $i++; $adminmenu[$i]['title'] = _PM_MI_ABOUT; $adminmenu[$i]['link'] = 'admin/about.php'; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/about.png'; \ No newline at end of file +$adminmenu[$i]['icon'] = $pathIcon32.'/about.png'; \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/docs/changelog.txt 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/docs/changelog.txt 2012-11-21 05:10:08 UTC (rev 10265) @@ -1,3 +1,7 @@ +Version 1.09 +------------------- +- updated code to make it consistent with other modules (mamba) + Version 1.08 ------------------- - Fixed XSS (Cross Site Scripting) vulnerability in pmlite.php (High-Tech Bridge Security Research Lab/trabis) Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html 2012-11-21 05:10:08 UTC (rev 10265) @@ -7,10 +7,11 @@ <p>No special measures necessary, follow the standard installation process – extract the /pm folder into the ../modules directory. Install the module through Admin -> System Module -> Modules.</p> <p>Detailed instructions on installing modules are available in the <a href="http://goo.gl/adT2i" title="XOOPS Operations Manual">XOOPS Operations Manual</a> </p> <h4 class="odd">Operating instructions</h4> - <ul> + <p class="even">To set up this module you need to:</p> + <ul> <li>You enter your Inbox directly from the front page, or by clicking on the top link "Go to module" in the PM's Admin area.</li> <li>Configure your preferences for the module (see ‘Preferences’) and optionally the PM block if you intend to use it (see ‘Blocks’).</li> - <li>You can do mass deleting of your messages by using the "Prune Messages" tab.</li> + <li>ou can do mass deleting of your messages by using the "Prune Messages" tab.</li> </ul> <h4 class="odd">Tutorial</h4> <p class="even">Tutorial coming soon.</p> Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/xoops_version.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/xoops_version.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/xoops_version.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -26,26 +26,31 @@ $modversion = array(); $modversion['name'] = _PM_MI_NAME; -$modversion['version'] = 1.08; +$modversion['version'] = 1.09; $modversion['description'] = _PM_MI_DESC; $modversion['author'] = "Jan Pedersen, Taiwen Jiang"; $modversion['credits'] = "The XOOPS Project, Wanikoo"; $modversion['help'] = 'page=help'; -$modversion['license'] = 'GNU GPL 2.0'; +$modversion['license'] = 'GNU GPL 2.0 or later'; $modversion['license_url'] = "www.gnu.org/licenses/gpl-2.0.html/"; $modversion['image'] = "images/logo.png"; $modversion['dirname'] = "pm"; -$modversion['dirmoduleadmin'] = 'Frameworks/moduleclasses'; -$modversion['icons16'] = 'Frameworks/moduleclasses/icons/16'; -$modversion['icons32'] = 'Frameworks/moduleclasses/icons/32'; +$modversion['dirmoduleadmin'] = '/Frameworks/moduleclasses/moduleadmin'; +$modversion['icons16'] = '../../Frameworks/moduleclasses/icons/16'; +$modversion['icons32'] = '../../Frameworks/moduleclasses/icons/32'; //about -$modversion['release_date'] = '2011/10/08'; -$modversion["module_website_url"] = "http://www.xoops.org/"; +$modversion['release_date'] = '2012/07/30'; +$modversion["module_website_url"] = "http://www.xoops.org/"; $modversion["module_website_name"] = "XOOPS"; -$modversion["module_status"] = "RC"; -$modversion['min_php']='5.2'; -$modversion['min_xoops']="2.5.0"; +$modversion["module_status"] = "RC"; +$modversion['min_php'] = '5.2'; +$modversion['min_xoops'] = "2.5.5"; +$modversion['min_admin'] = '1.1'; +$modversion['min_db'] = array( + 'mysql' => '5.0.7', + 'mysqli' => '5.0.7' +); // Admin menu // Set to 1 if you want to display menu generated by system module Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_footer.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_footer.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_footer.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -16,7 +16,11 @@ * @author XOOPS Module Team * @version $Id $ **/ -echo "<div align=\"center\"><a href=\"http://www.xoops.org\" target=\"_blank\"><img src=" . XOOPS_URL ."/". $moduleInfo->getInfo("icons32")."/xoopsmicrobutton.gif"." alt=\"XOOPS\" title=\"XOOPS\"></a></div>"; -echo "<div class='center smallsmall italic pad5'><strong>" . $xoopsModule->getVar("name") . "</strong> is maintained by the <a class='tooltip' rel='external' href='http://www.xoops.org/' title='Visit XOOPS Community'>XOOPS Community</a></div>"; +echo "<div class='adminfooter'>\n" + ." <div style='text-align: center;'>\n" + ." <a href='http://www.xoops.org' rel='external'><img src='{$pathIcon32}/xoopsmicrobutton.gif' alt='XOOPS' title='XOOPS'></a>\n" + ." </div>\n" + ." " . _AM_MODULEADMIN_ADMIN_FOOTER . "\n" + ."</div>"; xoops_cp_footer(); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_header.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_header.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/admin_header.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -17,22 +17,27 @@ * @version $Id$ */ -require_once dirname(dirname(dirname(dirname(__FILE__)))) . '/mainfile.php'; -require_once XOOPS_ROOT_PATH . '/include/cp_functions.php'; -require '../../../include/cp_header.php'; +$path = dirname(dirname(dirname(dirname(__FILE__)))); +include_once $path . '/mainfile.php'; +include_once $path . '/include/cp_functions.php'; +require_once $path . '/include/cp_header.php'; -if ( file_exists($GLOBALS['xoops']->path('/Frameworks/moduleclasses/moduleadmin/moduleadmin.php'))){ - include_once $GLOBALS['xoops']->path('/Frameworks/moduleclasses/moduleadmin/moduleadmin.php'); - //return true; - }else{ - echo xoops_error("Error: You don't use the Frameworks \"admin module\". Please install this Frameworks"); - //return false; - } +global $xoopsModule; -$moduleInfo =& $module_handler->get($xoopsModule->getVar('mid')); -$pathIcon16 = XOOPS_URL .'/'. $moduleInfo->getInfo('icons16'); -$pathIcon32 = XOOPS_URL .'/'. $moduleInfo->getInfo('icons32'); +$thisModuleDir = $GLOBALS['xoopsModule']->getVar('dirname'); +//if functions.php file exist +//require_once dirname(dirname(__FILE__)) . '/include/functions.php'; + +// Load language files +xoops_loadLanguage('admin', $thisModuleDir); +xoops_loadLanguage('modinfo', $thisModuleDir); +xoops_loadLanguage('main', $thisModuleDir); + +$pathIcon16 = '../'.$xoopsModule->getInfo('icons16'); +$pathIcon32 = '../'.$xoopsModule->getInfo('icons32'); +$pathModuleAdmin = $xoopsModule->getInfo('dirmoduleadmin'); + $myts =& MyTextSanitizer::getInstance(); if (!isset($xoopsTpl) || !is_object($xoopsTpl)) { @@ -40,41 +45,10 @@ $xoopsTpl = new XoopsTpl(); } -//xoops_cp_header(); +include_once $GLOBALS['xoops']->path($pathModuleAdmin.'/moduleadmin.php'); -//Load languages -if (file_exists( - XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') . "/language/{$xoopsConfig['language']}/admin.php" -) -) { - include_once XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') - . "/language/{$xoopsConfig['language']}/admin.php"; -} else { - include_once XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') . "/language/english/admin.php"; -} -if (file_exists( - XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') . "/language/{$xoopsConfig['language']}/modinfo.php" -) -) { - include_once XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') - . "/language/{$xoopsConfig['language']}/modinfo.php"; -} else { - include_once XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') . "/language/english/modinfo.php"; -} -if (file_exists( - XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') . "/language/{$xoopsConfig['language']}/main.php" -) -) { - include_once XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') - . "/language/{$xoopsConfig['language']}/main.php"; -} else { - include_once XOOPS_ROOT_PATH . "/modules/" . $xoopsModule->getVar('dirname') . "/language/english/main.php"; -} - - xoops_loadLanguage('user'); if ( !isset($GLOBALS['xoopsTpl']) || !is_object($GLOBALS['xoopsTpl']) ) { include_once $GLOBALS['xoops']->path( "/class/template.php" ); $GLOBALS['xoopsTpl'] = new XoopsTpl(); -} -?> \ No newline at end of file +} \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/menu.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/menu.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/admin/menu.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -17,39 +17,53 @@ * @author Taiwen Jiang <ph...@us...> * @version $Id$ */ - -$module_handler =& xoops_gethandler('module'); -$xoopsModule =& XoopsModule::getByDirname('profile'); -$moduleInfo =& $module_handler->get($xoopsModule->getVar('mid')); -$pathIcon32 = $moduleInfo->getInfo('icons32'); +defined("XOOPS_ROOT_PATH") or die("XOOPS root path not defined"); + +$path = dirname(dirname(dirname(dirname(__FILE__)))); +include_once $path . '/mainfile.php'; + +$dirname = basename(dirname(dirname(__FILE__))); +$module_handler = xoops_gethandler('module'); +$module = $module_handler->getByDirname($dirname); +$pathIcon32 = $module->getInfo('icons32'); +$pathModuleAdmin = $module->getInfo('dirmoduleadmin'); +$pathLanguage = $path . $pathModuleAdmin; + + +if (!file_exists($fileinc = $pathLanguage . '/language/' . $GLOBALS['xoopsConfig']['language'] . '/' . 'main.php')) { + $fileinc = $pathLanguage . '/language/english/main.php'; +} + +include_once $fileinc; + $adminmenu = array(); $i = 1; $adminmenu[$i]['title'] = _PROFILE_MI_HOME; $adminmenu[$i]['link'] = "admin/index.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/home.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/home.png' ; $i++; $adminmenu[$i]['title'] = _PROFILE_MI_USERS; $adminmenu[$i]['link'] = "admin/user.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/users.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/users.png' ; $i++; $adminmenu[$i]['title'] = _PROFILE_MI_CATEGORIES; $adminmenu[$i]['link'] = "admin/category.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/category.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/category.png' ; $i++; $adminmenu[$i]['title'] = _PROFILE_MI_FIELDS; $adminmenu[$i]['link'] = "admin/field.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/index.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/index.png' ; $i++; $adminmenu[$i]['title'] = _PROFILE_MI_STEPS; $adminmenu[$i]['link'] = "admin/step.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/stats.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/stats.png' ; $i++; $adminmenu[$i]['title'] = _PROFILE_MI_PERMISSIONS; $adminmenu[$i]['link'] = "admin/permissions.php"; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/permissions.png' ; +$adminmenu[$i]['icon'] = $pathIcon32.'/permissions.png' ; $i++; $adminmenu[$i]['title'] = _PROFILE_MI_ABOUT; $adminmenu[$i]['link'] = 'admin/about.php'; -$adminmenu[$i]['icon'] = '../../'.$pathIcon32.'/about.png'; \ No newline at end of file +$adminmenu[$i]['icon'] = $pathIcon32.'/about.png'; \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt 2012-11-21 05:10:08 UTC (rev 10265) @@ -1,3 +1,7 @@ +Version 1.64 RC +------------------- +- updated code to make it consistent with other modules (mamba) + Version 1.63 RC ------------------- - added "Required" column in Fields with Toggle functionality (mamba) Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -25,26 +25,31 @@ */ $modversion = array(); $modversion['name'] = _PROFILE_MI_NAME; -$modversion['version'] = 1.63; +$modversion['version'] = 1.64; $modversion['description'] = _PROFILE_MI_DESC; $modversion['author'] = "Jan Pedersen, Taiwen Jiang, alfred, Wishcraft"; $modversion['credits'] = "Ackbarr, mboyden, marco, mamba, trabis, etc."; $modversion['help'] = 'page=help'; -$modversion['license'] = 'GNU GPL 2.0'; +$modversion['license'] = 'GNU GPL 2.0 or later'; $modversion['license_url'] = "www.gnu.org/licenses/gpl-2.0.html/"; $modversion['image'] = "images/logo.png"; $modversion['dirname'] = "profile"; -$modversion['dirmoduleadmin'] = 'Frameworks/moduleclasses'; -$modversion['icons16'] = 'Frameworks/moduleclasses/icons/16'; -$modversion['icons32'] = 'Frameworks/moduleclasses/icons/32'; +$modversion['dirmoduleadmin'] = '/Frameworks/moduleclasses/moduleadmin'; +$modversion['icons16'] = '../../Frameworks/moduleclasses/icons/16'; +$modversion['icons32'] = '../../Frameworks/moduleclasses/icons/32'; //about -$modversion['release_date'] = '2011/10/08'; -$modversion["module_website_url"] = "http://www.xoops.org/"; +$modversion['release_date'] = '2012/07/30'; +$modversion["module_website_url"] = "http://www.xoops.org/"; $modversion["module_website_name"] = "XOOPS"; -$modversion["module_status"] = "RC"; -$modversion['min_php']='5.2'; -$modversion['min_xoops']="2.5"; +$modversion["module_status"] = "RC"; +$modversion['min_php'] = '5.2'; +$modversion['min_xoops'] = "2.5.5"; +$modversion['min_admin'] = '1.1'; +$modversion['min_db'] = array( + 'mysql' => '5.0.7', + 'mysqli' => '5.0.7' +); // Admin menu // Set to 1 if you want to display menu generated by system module Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/jquery.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/jquery.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/jquery.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -39,7 +39,7 @@ $GLOBALS['xoopsLogger']->activated = false; include_once XOOPS_ROOT_PATH . '/include/comment_constants.php'; - include_once XOOPS_ROOT_PATH . '/class/xoopsmodule.php'; + include_once XOOPS_ROOT_PATH . '/kernel/module.php'; include_once XOOPS_ROOT_PATH . '/modules/system/include/functions.php'; $tables = array(); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/users.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/users.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/admin/users/users.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -213,7 +213,7 @@ global $xoopsDB; include_once XOOPS_ROOT_PATH . '/include/comment_constants.php'; - include_once(XOOPS_ROOT_PATH."/class/xoopsmodule.php"); + include_once(XOOPS_ROOT_PATH."/kernel/module.php"); $tables = array(); // Count comments (approved only: com_status == XOOPS_COMMENT_ACTIVE) Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/module_icon.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/module_icon.php 2012-11-21 04:52:11 UTC (rev 10264) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/module_icon.php 2012-11-21 05:10:08 UTC (rev 10265) @@ -23,16 +23,7 @@ $file_base = 'module_icon' ; } -// branches by cores -if( defined( 'ICMS_TRUST_PATH' ) ) { - $draw_dirname = false ; - $file_base .= '_icms' ; -} else if( defined( 'XOOPS_CUBE_LEGACY' ) ) { - $draw_dirname = false ; - $file_base .= '_xcl' ; -} else { - $draw_dirname = true ; -} +$draw_dirname = true ; // icon files must be PNG $file = $file_base . '.png' ; |
From: <dh...@us...> - 2013-01-27 17:26:35
|
Revision: 10930 http://sourceforge.net/p/xoops/svn/10930 Author: dhcst Date: 2013-01-27 17:26:18 +0000 (Sun, 27 Jan 2013) Log Message: ----------- fix Path to smilies and ranks Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/commentrenderer.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php XoopsCore/branches/2.5.x/2.5.6/htdocs/misc.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/commentrenderer.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/commentrenderer.php 2013-01-27 15:42:57 UTC (rev 10929) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/commentrenderer.php 2013-01-27 17:26:18 UTC (rev 10930) @@ -372,7 +372,7 @@ if (is_object($com_poster)) { $poster['uname'] = '<a href="' . XOOPS_URL . '/userinfo.php?uid=' . $poster['id'] . '">' . $com_poster->getVar('uname') . '</a>'; $poster_rank = $com_poster->rank(); - $poster['rank_image'] = ($poster_rank['image'] != '') ? $poster_rank['image'] : 'blank.gif'; + $poster['rank_image'] = ($poster_rank['image'] != '') ? 'ranks/' . $poster_rank['image'] : 'ranks/blank.gif'; $poster['rank_title'] = $poster_rank['title']; $poster['avatar'] = $com_poster->getVar('user_avatar'); $poster['regdate'] = formatTimestamp($com_poster->getVar('user_regdate'), 's'); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php 2013-01-27 15:42:57 UTC (rev 10929) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/module.textsanitizer.php 2013-01-27 17:26:18 UTC (rev 10930) @@ -282,7 +282,7 @@ { $smileys = $this->getSmileys(); foreach($smileys as $smile) { - $message = str_replace($smile['code'], '<img class="imgsmile" src="' . XOOPS_UPLOAD_URL . '/' . htmlspecialchars($smile['smile_url']) . '" alt="" />', $message); + $message = str_replace($smile['code'], '<img class="imgsmile" src="' . XOOPS_UPLOAD_URL . '/smilies/' . htmlspecialchars($smile['smile_url']) . '" alt="" />', $message); } return $message; } Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/misc.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/misc.php 2013-01-27 15:42:57 UTC (rev 10929) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/misc.php 2013-01-27 17:26:18 UTC (rev 10930) @@ -51,7 +51,7 @@ if ($smiles = $myts->getSmileys()) { $rcolor = 'even'; foreach ($smiles as $key => $smile) { - echo "<tr class='$rcolor'><td>" . $smile['code'] . "</td><td>" . $smile['emotion'] . "</td><td><img onmouseover='style.cursor=\"hand\"' onclick='doSmilie(\" " . $smile['code'] . " \");' src='" . XOOPS_UPLOAD_URL . "/" . $smile['smile_url'] . "' alt='' /></td></tr>"; + echo "<tr class='$rcolor'><td>" . $smile['code'] . "</td><td>" . $smile['emotion'] . "</td><td><img onmouseover='style.cursor=\"hand\"' onclick='doSmilie(\" " . $smile['code'] . " \");' src='" . XOOPS_UPLOAD_URL . "/smilies/" . $smile['smile_url'] . "' alt='' /></td></tr>"; $rcolor = ($rcolor == 'even') ? 'odd' : 'even'; } } else { |
From: <be...@us...> - 2013-01-28 06:03:00
|
Revision: 10939 http://sourceforge.net/p/xoops/svn/10939 Author: beckmi Date: 2013-01-28 06:02:56 +0000 (Mon, 28 Jan 2013) Log Message: ----------- fix for creating new fields in the table profile_profile (black_beard) Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/textsanitizer/image/config.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/class/field.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/textsanitizer/image/config.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/textsanitizer/image/config.php 2013-01-28 00:24:47 UTC (rev 10938) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/textsanitizer/image/config.php 2013-01-28 06:02:56 UTC (rev 10939) @@ -20,7 +20,7 @@ defined('XOOPS_ROOT_PATH') or die('Restricted access'); return $config = array( - // Click to open an image in a new window in full size using CaricFoto + // Click to open an image in a new window in full size using CaricaFoto 'clickable' => 1, // Resize the image down to max_width set below 'resize' => 1, Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/class/field.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/class/field.php 2013-01-28 00:24:47 UTC (rev 10938) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/class/field.php 2013-01-28 06:02:56 UTC (rev 10939) @@ -510,7 +510,7 @@ $obj->setVar('field_valuetype', XOBJ_DTYPE_TXTBOX); } - if ((!in_array($obj->getVar('field_name'), $this->getUserVars())) && (!isset($_REQUEST['field_required']))) { + if ((!in_array($obj->getVar('field_name'), $this->getUserVars())) && (isset($_REQUEST['field_required']))) { if ($obj->isNew()) { //add column to table $changetype = "ADD"; Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt 2013-01-28 00:24:47 UTC (rev 10938) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/docs/changelog.txt 2013-01-28 06:02:56 UTC (rev 10939) @@ -1,6 +1,7 @@ -Version 1.64 RC +Version 1.64 Final ------------------- - updated code to make it consistent with other modules (mamba) +- create new fields in the table profile_profile (black_beard) Version 1.63 RC ------------------- Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php 2013-01-28 00:24:47 UTC (rev 10938) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/xoops_version.php 2013-01-28 06:02:56 UTC (rev 10939) @@ -57,7 +57,7 @@ // Admin things $modversion['hasAdmin'] = 1; -$modversion['adminindex'] = "admin/user.php"; +$modversion['adminindex'] = "admin/index.php"; $modversion['adminmenu'] = "admin/menu.php"; // Scripts to run upon installation or update |
From: <be...@us...> - 2013-02-05 03:53:57
|
Revision: 10985 http://sourceforge.net/p/xoops/svn/10985 Author: beckmi Date: 2013-02-05 03:53:54 +0000 (Tue, 05 Feb 2013) Log Message: ----------- Adding missing index.html files for better security Added Paths: ----------- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/images/index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/index.html Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/css/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/tinymce/jscripts/tiny_mce/plugins/visualblocks/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/base/minified/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/cupertino/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/redmond/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/smoothness/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/south-street/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-darkness/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/images/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/images/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/images/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file Added: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/index.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/index.html (rev 0) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/css/ui/ui-lightness/index.html 2013-02-05 03:53:54 UTC (rev 10985) @@ -0,0 +1 @@ +<script>history.go(-1);</script> \ No newline at end of file |
From: <ce...@us...> - 2013-04-07 02:20:05
|
Revision: 11354 http://sourceforge.net/p/xoops/svn/11354 Author: cesag Date: 2013-04-07 02:20:00 +0000 (Sun, 07 Apr 2013) Log Message: ----------- Xoops 2.5.6 RC branche english corrections. Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/maintenance.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/modulesadmin.html XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/include/precheck_functions.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html 2013-04-07 01:28:32 UTC (rev 11353) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/help/help.html 2013-04-07 02:20:00 UTC (rev 11354) @@ -9,9 +9,9 @@ <h4 class="odd">Operating instructions</h4> <p class="even">To set up this module you need to:</p> <ul> - <li>You enter your Inbox directly from the front page, or by clicking on the top link "Go to module" in the PM's Admin area.</li> - <li>Configure your preferences for the module (see ‘Preferences’) and optionally the PM block if you intend to use it (see ‘Blocks’).</li> - <li>ou can do mass deleting of your messages by using the "Prune Messages" tab.</li> + <li>You enter your Inbox directly from the front page, or by clicking on the top link “Go to module” in the PM's Admin area.</li> + <li>Configure your preferences for the module (see “Preferences”) and optionally the PM block if you intend to use it (see “Blocks”).</li> + <li>You can do mass deleting of your messages by using the “Prune” Messages" tab.</li> </ul> <h4 class="odd">Tutorial</h4> <p class="even">Tutorial coming soon.</p> Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/maintenance.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/maintenance.html 2013-04-07 01:28:32 UTC (rev 11353) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/maintenance.html 2013-04-07 02:20:00 UTC (rev 11354) @@ -4,7 +4,7 @@ <h4 class="odd">Description</h4> <p class="even"> -Maintenance provides several basic functions to help you in mantaining your XOOPS installation and keep it healthy:<br /><br /> +Maintenance provides several basic functions to help you in maintaining your XOOPS installation and keep it healthy:<br /><br /> - clean cache folder<br /> - empty the session table<br /> Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/modulesadmin.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/modulesadmin.html 2013-04-07 01:28:32 UTC (rev 11353) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/modulesadmin.html 2013-04-07 02:20:00 UTC (rev 11354) @@ -5,7 +5,7 @@ <p class="even"> Modules are the software constructs that, taking advantage of the infrastructure that XOOPS provides, let the webmaster offer the site’s users dynamic or static content generated using a Web interface that more often that not is very easy to use.<br /><br /> -Part of the power of XOOPS resides in the way modules are managed. The webmaster can easily install, uninstall, activate or deactivate any specific module (except the System module, for obvious reasons). It’s also possible to rename modules, and to determine the order in which they will appear to the end user in the site’s menu –if you want them to appear at all–, because you can also provide hidden functionality, defining active modules that have no visible presence to the casual user. For instance, you could define a module as not visible in the menu by disabling the check icon in the Menu column. So for the News module, you could then send a private messages to selected group of your users and tell them to access that directory typing the address in the URL field, something like <em>http://www.yoursite.com/modules/news</em>. <br /><br /> +Part of the power of XOOPS resides in the way modules are managed. The webmaster can easily install, uninstall, activate or deactivate any specific module (except the System module, for obvious reasons). It’s also possible to rename modules, and to determine the order in which they will appear to the end user in the site’s menu (if you want them to appear at all), because you can also provide hidden functionality, defining active modules that have no visible presence to the casual user. For instance, you could define a module as not visible in the menu by disabling the check icon in the Menu column. So for the News module, you could then send a private messages to selected group of your users and tell them to access that directory typing the address in the URL field, something like <em>http://www.yoursite.com/modules/news</em>. <br /><br /> To change order of modules (which will be reflected in the Menu), you just need to drag and drop the modules to the desired placement.<br /><br /> Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/include/precheck_functions.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/include/precheck_functions.php 2013-04-07 01:28:32 UTC (rev 11353) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/include/precheck_functions.php 2013-04-07 02:20:00 UTC (rev 11354) @@ -17,7 +17,7 @@ $bwexpire = $protector->get_bwlimit() ; if( $bwexpire > time() ) { header( 'HTTP/1.0 503 Service unavailable' ) ; - $protector->call_filter( 'precommon_bwlimit' , 'This site is very crowed now. try later.' ) ; + $protector->call_filter( 'precommon_bwlimit' , 'This website is very busy now. Please try later.' ) ; } } Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php 2013-04-07 01:28:32 UTC (rev 11353) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php 2013-04-07 02:20:00 UTC (rev 11354) @@ -1,11 +1,9 @@ <?php - -define('_MD_PROTECTOR_YOUAREBADIP','You are registered as BAD_IP by Protector.<br />'); -define('_MD_PROTECTOR_FMT_JAILINFO','This restriction will be expired on %s'); -define('_MD_PROTECTOR_FMT_JAILTIME','Y-m-j H:i:s'); -define('_MD_PROTECTOR_BANDWIDTHLIMITED','This site is very crowed now. try later.'); -define('_MD_PROTECTOR_TURNJAVASCRIPTON','Turn JavaScript ON'); -define('_MD_PROTECTOR_DENYBYRBL','Protector rejects your post, because your IP is registered in RBL'); -define('_MD_PROTECTOR_FMT_REGISTER_MORATORIUM','Post it again %s minutes later. (for Anti-SPAMMING, sorry)'); - +define('_MD_PROTECTOR_YOUAREBADIP',"You are registered as BAD_IP by Protector.<br />"); +define('_MD_PROTECTOR_FMT_JAILINFO',"This restriction will be expired on %s"); +define('_MD_PROTECTOR_FMT_JAILTIME',"Y-m-j H:i:s"); +define('_MD_PROTECTOR_BANDWIDTHLIMITED',"This website is very busy now. Please try later."); +define('_MD_PROTECTOR_TURNJAVASCRIPTON',"Turn JavaScript ON"); +define('_MD_PROTECTOR_DENYBYRBL',"Protector rejects your post, because your IP is registered in RBL"); +define('_MD_PROTECTOR_FMT_REGISTER_MORATORIUM',"Post it again %s minutes later(for Anti-SPAMMING, sorry)."); ?> \ No newline at end of file |
From: <be...@us...> - 2013-04-07 03:14:34
|
Revision: 11355 http://sourceforge.net/p/xoops/svn/11355 Author: beckmi Date: 2013-04-07 03:14:28 +0000 (Sun, 07 Apr 2013) Log Message: ----------- Few more English updates Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/backend.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/errors.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/global.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/mail.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/notification.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/search.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/timezone.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/uploader.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/modinfo.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/avatars.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/banners.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/blocksadmin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/comments.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/groups.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/images.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/mailusers.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/maintenance.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/modulesadmin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/preferences.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/smilies.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/tplsets.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/userrank.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/users.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/blocks.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/cpanel.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/preferences.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/modinfo.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/modinfo.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -4,7 +4,7 @@ // _CHARSET : UTF-8 // Translator: XOOPS Translation Team -define('_AD_NORIGHT','You don\'t have the right to access this area'); +define('_AD_NORIGHT','You don\'t have the permission to access this area'); define('_AD_ACTION','Action'); define('_AD_EDIT','Edit'); define('_AD_DELETE','Delete'); @@ -14,10 +14,8 @@ define('_AD_AVATAR','Avatar'); define('_AD_REGISTERED','Registered'); //Registered Date // define('_AD_PRESSGEN','This is your first time to enter the administration section. Press the button below to proceed.'); -define('_AD_LOGINADMIN','Loging you in..'); +define('_AD_LOGINADMIN','Logging you in..'); define('_AD_WARNINGINSTALL','WARNING: Directory %s exists on your server. <br />Please remove this directory for security reasons.'); define('_AD_WARNINGWRITEABLE','WARNING: File %s is writeable by the server. <br />Please change the permission of this file for security reasons.<br /> in Unix (444), in Win32 (read-only)'); define('_AD_WARNINGNOTWRITEABLE','WARNING: Folder %s is not writeable by the server. <br />Please change the permission of this folder.<br /> in Unix (777), in Win32 (writable)'); -define('_AD_WARNINGXOOPSLIBINSIDE','WARNING: Folder %s is inside DocumentRoot! <br />For security considerations it is highly suggested to move it out of DocumentRoot.'); - -?> \ No newline at end of file +define('_AD_WARNINGXOOPSLIBINSIDE','WARNING: Folder %s is inside DocumentRoot! <br />For security considerations it is highly suggested to move it out of DocumentRoot.'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -9,7 +9,5 @@ define('_AUTH_LDAP_SERVER_NOT_FOUND',"Can't connect to the server"); define('_AUTH_LDAP_USER_NOT_FOUND',"Member %s not found in the directory server (%s) in %s"); define('_AUTH_LDAP_CANT_READ_ENTRY',"Can't read entry %s"); -define('_AUTH_LDAP_XOOPS_USER_NOTFOUND',"Sorry no corresponding user information has been found in the XOOPS database for connection: %s <br>" . "Please verify your user datas or set on the automatic provisionning"); -define('_AUTH_LDAP_START_TLS_FAILED',"Failed to open a TLS connection"); - -?> \ No newline at end of file +define('_AUTH_LDAP_XOOPS_USER_NOTFOUND',"Sorry, no corresponding user information has been found in the XOOPS database for connection: %s <br>" . "Please verify your user data or set on the automatic provisioning"); +define('_AUTH_LDAP_START_TLS_FAILED',"Failed to open a TLS connection"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/backend.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/backend.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/backend.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -5,6 +5,4 @@ // Translator: XOOPS Translation Team // RSS feed URLs -return array( - 'http://www.xoops.org/backend.php'); -?> \ No newline at end of file +return array('http://www.xoops.org/backend.php'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -53,5 +53,4 @@ define('_BANNERS_NO_LOGIN_DATA','No login data detected'); define('_BANNERS_NO_REFERER','No referer detected'); -define('_BANNERS_NO_ID','No valid ID detected'); -?> \ No newline at end of file +define('_BANNERS_NO_ID','No valid ID detected'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -71,5 +71,4 @@ define("_CAL_DRAGMOVE", "Drag to move"); define("_CAL_TODAY", "Today"); define("_CAL_DISPM1ST", "Display Monday first"); -define("_CAL_DISPS1ST", "Display Sunday first"); -?> \ No newline at end of file +define("_CAL_DISPS1ST", "Display Sunday first"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -18,6 +18,4 @@ /** * Error defines */ -define('_CAPTCHA_LOADFILEERROR','Error: Could not load file %u in file %s at line %s. '); - -?> \ No newline at end of file +define('_CAPTCHA_LOADFILEERROR','Error: Could not load file %u in file %s at line %s. '); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -43,6 +43,4 @@ define('_CM_USER', 'Name'); define('_CM_EMAIL', 'Email'); -define('_CM_URL', 'Website'); - -?> \ No newline at end of file +define('_CM_URL', 'Website'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -260,5 +260,4 @@ define('_COUNTRY_ZA','South Africa'); define('_COUNTRY_ZM','Zambia'); define('_COUNTRY_ZR','Zaire'); // Not listed in ISO 3166 -define('_COUNTRY_ZW','Zimbabwe'); -?> \ No newline at end of file +define('_COUNTRY_ZW','Zimbabwe'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/errors.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/errors.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/errors.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -3,6 +3,4 @@ // _CHARSET : UTF-8 // Translator: XOOPS Translation Team define('_XO_ER_FILENOTFOUND','Requested file: <b>%s</b> was not found '); -define('_XO_ER_CLASSNOTFOUND','Requested class %s was not found'); - -?> \ No newline at end of file +define('_XO_ER_CLASSNOTFOUND','Requested class %s was not found'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -61,5 +61,4 @@ //2.5.4 define('_MA_USER_FACEBOOK','Facebook Link'); //TO DO -define('_MA_USER_SKYPE','Skype Link');//TO DO -?> \ No newline at end of file +define('_MA_USER_SKYPE','Skype Link');//TO DO \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -79,5 +79,4 @@ define('_XOOPS_FORM_ALT_LENGTH_MAX','Maximum length: '); define('_XOOPS_FORM_PREVIEW_CONTENT','Click the <strong>' . _PREVIEW . '</strong> to see the content in action.'); -define('_XOOPS_FORM_ALTYOUTUBE','Youtube'); -?> +define('_XOOPS_FORM_ALTYOUTUBE','Youtube'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/global.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/global.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/global.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -218,5 +218,4 @@ **/ define('_DBDATESTRING','Y-m-d'); define('_DBTIMESTRING','H:i:s'); -define('_DBTIMESTAMPSTRING','Y-m-d H:i:s'); -?> \ No newline at end of file +define('_DBTIMESTAMPSTRING','Y-m-d H:i:s'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -67,5 +67,4 @@ setlocale(LC_MONETARY, 'en_US'); return money_format($format, $number); } -} -?> \ No newline at end of file +} \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -54,6 +54,4 @@ define('_LOGGER_E_NOTICE',"Notice"); define('_LOGGER_E_WARNING',"Warning"); define('_LOGGER_E_STRICT',"Strict"); -define('_LOGGER_FILELINE',"%s in file %s line %s"); - -?> \ No newline at end of file +define('_LOGGER_FILELINE',"%s in file %s line %s"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/mail.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/mail.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/mail.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -10,6 +10,4 @@ define('_MAIL_SENDMAILNG','Could not send mail to %s.'); define('_MAIL_MAILGOOD','Mail sent to %s.'); define('_MAIL_SENDPMNG','Could not send private message to %s.'); -define('_MAIL_PMGOOD','Private message sent to %s.'); - -?> \ No newline at end of file +define('_MAIL_PMGOOD','Private message sent to %s.'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -25,7 +25,4 @@ define('_MSC_CLICK_TO_OPEN_IMAGE','Click to see original Image in a new window'); define('_MSC_RESIZED_IMAGE','Resized Image'); -define('_MSC_ORIGINAL_IMAGE','Original Image'); - - -?> \ No newline at end of file +define('_MSC_ORIGINAL_IMAGE','Original Image'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/notification.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/notification.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/notification.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -68,6 +68,4 @@ define('_NOT_MODE_SENDALWAYS','Notify me of all selected updates'); define('_NOT_MODE_SENDONCE','Notify me only once'); define('_NOT_MODE_SENDONCEPERLOGIN','Notify me once then disable until I log in again'); -define('_NOT_NOTHINGTODELETE','There is nothing to delete.'); - -?> \ No newline at end of file +define('_NOT_NOTHINGTODELETE','There is nothing to delete.'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/search.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/search.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/search.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -22,6 +22,4 @@ define('_SR_KEYTOOSHORT','Keywords must be at least <strong>%s</strong> characters long'); define('_SR_KEYIGNORE','Keywords shorter than <strong>%s</strong> characters will be ignored'); define('_SR_SEARCHRULE','Search Rule'); -define('_SR_IGNOREDWORDS','The following words are shorter than allowed minmum length (%u chars) and were not included in your search:'); - -?> \ No newline at end of file +define('_SR_IGNOREDWORDS','The following words are shorter than allowed minimum length (%u chars) and were not included in your search:'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/timezone.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/timezone.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/timezone.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -33,6 +33,4 @@ define('_TZ_GMTP95','(GMT+9:30) Adelaide, Darwin'); define('_TZ_GMTP10','(GMT+10:00) Brisbane, Canberra, Melbourne, Sydney, Guam,Vlasdiostok'); define('_TZ_GMTP11','(GMT+11:00) Magadan, Solomon Islands, New Caledonia'); -define('_TZ_GMTP12','(GMT+12:00) Auckland, Wellington, Fiji, Kamchatka, Marshall Island'); - -?> \ No newline at end of file +define('_TZ_GMTP12','(GMT+12:00) Auckland, Wellington, Fiji, Kamchatka, Marshall Island'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/uploader.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/uploader.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/uploader.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -3,7 +3,7 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team -define('_ER_UP_MIMETYPELOAD','Error loading mimetypes definition'); +define('_ER_UP_MIMETYPELOAD','Error loading mime types definition'); define('_ER_UP_FILENOTFOUND','File not found'); define('_ER_UP_INVALIDFILESIZE','Invalid File Size'); define('_ER_UP_FILENAMEEMPTY','Filename Is Missing'); @@ -23,6 +23,4 @@ define('_ER_UP_INVALIDIMAGEFILE','Invalid image file'); define('_ER_UP_SUSPICIOUSREFUSED','Suspicious image upload refused'); define('_ER_UP_INVALIDFILENAME','Invalid file name'); -define('_ER_UP_FAILEDSAVEFILE','Failed to save file to %s'); - -?> \ No newline at end of file +define('_ER_UP_FAILEDSAVEFILE','Failed to save file to %s'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -127,6 +127,4 @@ //XOOPS 2.5.4 define('_US_SKYPE','Skype'); -define('_US_FACEBOOK','Facebook'); - -?> \ No newline at end of file +define('_US_FACEBOOK','Facebook'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -59,5 +59,4 @@ // $text = "=?{$this->charSet}?B?".base64_encode($text)."?="; return $text; } -} -?> \ No newline at end of file +} \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -12,6 +12,4 @@ define("_PM_AM_NOTIFYUSERS","Notify affected users about the prune?"); define("_PM_AM_MESSAGESPRUNED","%u Messages Pruned"); -define("_PM_AM_ERRORWHILEPRUNING","An error occurred during prune"); - -?> +define("_PM_AM_ERRORWHILEPRUNING","An error occurred during prune"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -88,6 +88,4 @@ //XOOPS 2.5.2 define("_PM_READ","Already Read"); -define("_PM_SUBJECT_ICONS","Subject Icons: "); - -?> +define("_PM_SUBJECT_ICONS","Subject Icons: "); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/admin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/admin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -119,6 +119,4 @@ define('_PROFILE_AM_SAVESTEP_TOGGLE','Toggle Save'); define('_PROFILE_AM_SAVESTEP_TOGGLE_SUCCESS','Successfully Changed Save After Step'); -define('_PROFILE_AM_SAVESTEP_TOGGLE_FAILED',"Changing 'Save After Step' Failed"); - -?> +define('_PROFILE_AM_SAVESTEP_TOGGLE_FAILED',"Changing 'Save After Step' Failed"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/main.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/main.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -54,5 +54,4 @@ define("_PROFILE_MA_REGISTER","Registration form"); define("_PROFILE_MA_ACTUS","Active Users: %s"); -define("_PROFILE_MA_FOUNDUSER","%s users found"); -?> +define("_PROFILE_MA_FOUNDUSER","%s users found"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/modinfo.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/modinfo.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/modinfo.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -53,7 +53,4 @@ //1.62 define("_PROFILE_MI_ABOUT","About"); -define("_PROFILE_MI_HOME","Home"); - - -?> +define("_PROFILE_MI_HOME","Home"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/avatars.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/avatars.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/avatars.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -30,6 +30,4 @@ <ul id='newsticker' class='newsticker'> <li>Manage all System or Custom avatars</li> <li>Site members can optionally create their own online personality called avatars.<br />This option can be turned off from System User preferences.</li> -</ul>"); - -?> \ No newline at end of file +</ul>"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/banners.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/banners.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/banners.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -79,6 +79,4 @@ <ul> <li>Add, modify and update category, banners and client.</li> </ul> -"); - -?> \ No newline at end of file +"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/blocksadmin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/blocksadmin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/blocksadmin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -79,6 +79,4 @@ <li>You can easily change side or order position with the drag\'n drop, click on <img class="tooltip" src="%s" alt="'._AM_SYSTEM_BLOCKS_DRAG.'" title="'._AM_SYSTEM_BLOCKS_DRAG.'" /> this image and set your site just the way you want it</li> <li>Add a new custom block</li> <li>Set block online or offline by clicking on <img class="tooltip" width="16" src="%s" alt="'._AM_SYSTEM_BLOCKS_DISPLAY.'" title="'._AM_SYSTEM_BLOCKS_DISPLAY.'"/> or <img class="tooltip" width="16" src="%s" alt="'._AM_SYSTEM_BLOCKS_HIDE.'" title="'._AM_SYSTEM_BLOCKS_HIDE.'" /></li> -</ul>'); - -?> \ No newline at end of file +</ul>'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/comments.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/comments.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/comments.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -45,8 +45,4 @@ define("_AM_SYSTEM_COMMENTS_VIEW","See comment"); define("_AM_SYSTEM_COMMENTS_NO_COMMENTS","No comments"); -define("_AM_SYSTEM_COMMENTS_COMMENTS_FOUND","%s comment(s) found."); - - - -?> \ No newline at end of file +define("_AM_SYSTEM_COMMENTS_COMMENTS_FOUND","%s comment(s) found."); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/groups.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/groups.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/groups.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -34,6 +34,4 @@ define("_AM_SYSTEM_GROUPS_SUREDEL","Are you sure you want to delete this group?"); define("_AM_SYSTEM_GROUPS_SYSTEMRIGHTS","System Admin rights"); -define("_AM_SYSTEM_GROUPS_DBUPDATED",_AM_SYSTEM_DBUPDATED); - -?> \ No newline at end of file +define("_AM_SYSTEM_GROUPS_DBUPDATED",_AM_SYSTEM_DBUPDATED); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/images.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/images.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/images.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -48,6 +48,4 @@ define("_AM_SYSTEM_IMAGES_FAILUNLINK","Failed deleting image %s from the server directory"); // Tips -define("_AM_SYSTEM_IMAGES_TIPS","<ul><li>Manage categories of images and users permissions</li></ul>"); - -?> \ No newline at end of file +define("_AM_SYSTEM_IMAGES_TIPS","<ul><li>Manage categories of images and users permissions</li></ul>"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/mailusers.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/mailusers.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/mailusers.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -49,6 +49,4 @@ define("_AM_SYSTEM_MAILUSERS_SENDTOUSERS2","Send to:"); define("_AM_SYSTEM_MAILUSERS_SENT","Sent Users"); define("_AM_SYSTEM_MAILUSERS_SENTNUM","%s - %s (total: %s users)"); -define("_AM_SYSTEM_MAILUSERS_TIMEFORMAT","(Format yyyy-mm-dd, optional)"); - -?> \ No newline at end of file +define("_AM_SYSTEM_MAILUSERS_TIMEFORMAT","(Format yyyy-mm-dd, optional)"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/maintenance.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/maintenance.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/maintenance.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -66,6 +66,4 @@ define("_AM_SYSTEM_MAINTENANCE_TIPS", "<ul> <li>You can do a simple maintenance of your XOOPS Installation: clear your cache and session table, and do maintenance of your tables</li> -</ul>"); - -?> +</ul>"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/modulesadmin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/modulesadmin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/modulesadmin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -179,6 +179,4 @@ define("_AM_SYSTEM_MODULES_CONFIRM_TIPS", "<ul> <li>Check all modifications for validate.</li> -</ul>"); - -?> \ No newline at end of file +</ul>"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/preferences.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/preferences.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/preferences.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -336,5 +336,4 @@ // Preference module system -define("_AM_SYSTEM_PREFERENCES_SETTINGS","System Module Settings"); -?> \ No newline at end of file +define("_AM_SYSTEM_PREFERENCES_SETTINGS","System Module Settings"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/smilies.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/smilies.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/smilies.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -34,6 +34,4 @@ define("_AM_SYSTEM_SMILIES_SUREDEL","Are you sure you want to delete this smilie?"); define("_AM_SYSTEM_SMILIES_UPLOADS","Upload"); -define("_AM_SYSTEM_SMILIES_SAVE",_AM_SYSTEM_DBUPDATED); - -?> \ No newline at end of file +define("_AM_SYSTEM_SMILIES_SAVE",_AM_SYSTEM_DBUPDATED); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/tplsets.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/tplsets.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/tplsets.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -13,9 +13,9 @@ //Tips define("_AM_SYSTEM_TEMPLATES_NAV_TIPS"," <ul> -<li>Edit theme and modules templates, stylsheet online.</li> -<li>Generate all overide modules templates.</li> -<li>If you force generate, this will erase all previous modification.</li> +<li>Edit theme and modules templates, stylesheet online.</li> +<li>Generate all override modules templates.</li> +<li>If you force generation, this will erase all previous modification.</li> </ul> "); @@ -40,7 +40,6 @@ define("_AM_SYSTEM_TEMPLATES_BLOCKS","Blocks"); define("_AM_SYSTEM_TEMPLATES_SELECT_TEMPLATES","Select Templates"); define("_AM_SYSTEM_TEMPLATES_ALL_MODULES","All modules"); -define("_AM_SYSTEM_TEMPLATES_RESTORE_OK","Successfuly restored"); -define("_AM_SYSTEM_TEMPLATES_RESTORE_NOTOK","Successfuly not restored"); -define("_AM_SYSTEM_TEMPLATES_SET","Choose Template"); -?> \ No newline at end of file +define("_AM_SYSTEM_TEMPLATES_RESTORE_OK","Successfully restored"); +define("_AM_SYSTEM_TEMPLATES_RESTORE_NOTOK","Failed to restore"); +define("_AM_SYSTEM_TEMPLATES_SET","Choose Template"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/userrank.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/userrank.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/userrank.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -33,6 +33,4 @@ // Tips define("_AM_SYSTEM_USERRANK_TIPS","<ul><li>Add, update or delete user rank</li></ul>"); define("_AM_SYSTEM_USERRANK_TIPS_FORM1","<ul><li>Authorized mime types: %s</li>"); -define("_AM_SYSTEM_USERRANK_TIPS_FORM2","<li>Max uploaded files size: %s KB</li></ul>"); - -?> \ No newline at end of file +define("_AM_SYSTEM_USERRANK_TIPS_FORM2","<li>Max uploaded files size: %s KB</li></ul>"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/users.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/users.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/users.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -151,6 +151,4 @@ define("_AM_SYSTEM_USERS_MAIL_ERROR","User email %s already exists"); //2.5.4 -define("_AM_SYSTEM_USERS_ACCEPT_EMAIL","Accept email from Admin"); - -?> \ No newline at end of file +define("_AM_SYSTEM_USERS_ACCEPT_EMAIL","Accept email from Admin"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -76,6 +76,4 @@ define("_MD_AM_PERMRESETNG","Could not reset group permission for module %s"); define("_MD_AM_PERMADDNGP","All parent items must be selected."); -define("_AM_SYSTEM_UNINSTALL","Uninstall"); - -?> \ No newline at end of file +define("_AM_SYSTEM_UNINSTALL","Uninstall"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/blocks.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/blocks.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/blocks.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -48,6 +48,4 @@ define("_MB_SYSTEM_NUMTHEME","%s themes"); define("_MB_SYSTEM_THSHOW","Display screenshot image"); define("_MB_SYSTEM_THWIDTH","Screenshot image width"); -define("_MB_SYSTEM_REMEMBERME","Remember me"); - -?> \ No newline at end of file +define("_MB_SYSTEM_REMEMBERME","Remember me"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/cpanel.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/cpanel.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/cpanel.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -24,5 +24,4 @@ define("_MD_CPANEL_SITE_ADMINISTRATION","%s administration"); // for help page -define("_MD_CPANEL_HELPCENTER","Welcome to XOOPS Help Center"); -?> \ No newline at end of file +define("_MD_CPANEL_HELPCENTER","Welcome to XOOPS Help Center"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/preferences.html =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/preferences.html 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/preferences.html 2013-04-07 03:14:28 UTC (rev 11355) @@ -13,7 +13,7 @@ <h4 class="odd">Meta Tags and Footer</h4> <p class="even"> -Meta tags provide information about your information – they describe the nature of your website. Their main use is to help search engines and their robots to index your website correctly, i.e. to help the right people find it. The information you supply is included in the header of each webpage. It should represent the content of the site as a whole - the meta information is the same on every page, it currently cannot be customised for different modules or pages.<br /><br /> +Meta tags provide information about your information – they describe the nature of your website. Their main use is to help search engines and their robots to index your website correctly, i.e. to help the right people find it. The information you supply is included in the header of each web page. It should represent the content of the site as a whole - the meta information is the same on every page, it currently cannot be customised for different modules or pages.<br /><br /> Be aware that the major search engines use different strategies for indexing websites. They may place different weightings on meta tags or even ignore them completely. Careful use of meta information may help your website to gain better search engine rankings and it is useful to seek information on the indexing strategies of your dominant referrers (see your website logfile). This may help you to optimise your meta information or other aspects of your site design and content to improve your rankings. <br /><br /> @@ -49,7 +49,7 @@ <p class="even"> Just leave it at Xoops Database and you can ignore all the other options in there.<br /><br /> -LDAP or Microsoft Active directory servers have been added for authentification as an alternate to the normal Xoops users. The reason is that in many company you already have a user database in ADS or LDAP and they can use that to logon to Xoops and don´t have to register yet another account. +LDAP or Microsoft Active directory servers have been added for authentication as an alternate to the normal Xoops users. The reason is that in many company you already have a user database in ADS or LDAP and they can use that to logon to Xoops and don´t have to register yet another account. </p> <h4 class="odd">System Module Settings</h4> Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/modinfo.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/modinfo.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/modinfo.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -87,5 +87,4 @@ define("_MI_SYSTEM_PREFERENCE_ANONPOST",""); define("_MI_SYSTEM_PREFERENCE_REDIRECT",""); -define("_MI_SYSTEM_PREFERENCE_JQUERY_THEME","jQuery theme"); -?> \ No newline at end of file +define("_MI_SYSTEM_PREFERENCE_JQUERY_THEME","jQuery theme"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/admin.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/admin.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -27,7 +27,7 @@ define("_AM_BUTTON_REMOVE" , "Remove!"); define("_AM_JS_REMOVECONFIRM" , "Remove OK?"); define("_AM_MSG_IPFILESUPDATED" , "Files for IPs have been updated"); -define("_AM_MSG_BADIPSCANTOPEN" , "The file for badip cannot be opened"); +define("_AM_MSG_BADIPSCANTOPEN" , "The file for bad IP cannot be opened"); define("_AM_MSG_GROUP1IPSCANTOPEN" , "The file for allowing group=1 cannot be opened"); define("_AM_MSG_REMOVED" , "Records are removed"); define("_AM_FMT_CONFIGSNOTWRITABLE" , "Turn the configs directory writable: %s"); @@ -55,10 +55,8 @@ define("_AM_ADV_DBFACTORYUNPATCHED","Your databasefactory is not ready for DBLayer Trapping anti-SQL-Injection. Some patches are required."); define("_AM_ADV_SUBTITLECHECK","Check if Protector works well"); -define("_AM_ADV_CHECKCONTAMI","Contaminations"); +define("_AM_ADV_CHECKCONTAMI","Contamination"); define("_AM_ADV_CHECKISOCOM","Isolated Comments"); //XOOPS 2.5.4 -define("_AM_ADV_REGISTERGLOBALS2","and place in it the line below:"); - -?> \ No newline at end of file +define("_AM_ADV_REGISTERGLOBALS2","and place in it the line below:"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/main.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -5,5 +5,4 @@ define('_MD_PROTECTOR_BANDWIDTHLIMITED',"This website is very busy now. Please try later."); define('_MD_PROTECTOR_TURNJAVASCRIPTON',"Turn JavaScript ON"); define('_MD_PROTECTOR_DENYBYRBL',"Protector rejects your post, because your IP is registered in RBL"); -define('_MD_PROTECTOR_FMT_REGISTER_MORATORIUM',"Post it again %s minutes later(for Anti-SPAMMING, sorry)."); -?> \ No newline at end of file +define('_MD_PROTECTOR_FMT_REGISTER_MORATORIUM',"Post it again %s minutes later(for Anti-SPAMMING, sorry)."); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/modinfo.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/modinfo.php 2013-04-07 02:20:00 UTC (rev 11354) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/modinfo.php 2013-04-07 03:14:28 UTC (rev 11355) @@ -11,10 +11,10 @@ define($constpref."_NAME","Protector"); // A brief description of this module -define($constpref."_DESC","This module protects your xoops site from various attacks like DoS , SQL Injection , and Variables contaminations."); +define($constpref."_DESC","This module protects your XOOPS site from various attacks like DoS, SQL Injection, and Variables contamination."); // Menu -define($constpref."_ADMININDEX","Protect Center"); +define($constpref."_ADMININDEX","Protector Center"); define($constpref."_ADVISORY","Security Advisory"); define($constpref."_PREFIXMANAGER","Prefix Manager"); define($constpref.'_ADMENU_MYBLOCKSADMIN','Permissions'); @@ -57,7 +57,7 @@ define($constpref.'_UNION_ACTIONDSC','Anti SQL Injection:<br />Select the action when some syntax like UNION of SQL.<br />"Sanitizing" means changing "union" to "uni-on".<br />(recommended option is Sanitizing)'); define($constpref.'_ID_INTVAL','Force intval to variables like id'); define($constpref.'_ID_INTVALDSC','All requests named "*id" will be treated as integer.<br />This option protects you from some kind of XSS and SQL Injections.<br />Though I recommend to turn this option on, it can cause problems with some modules.'); -define($constpref.'_FILE_DOTDOT','Protection from Directroy Traversals'); +define($constpref.'_FILE_DOTDOT','Protection from Directory Traversals'); define($constpref.'_FILE_DOTDOTDSC','It eliminates ".." from all requests looks like Directory Traversals'); define($constpref.'_BF_COUNT','Anti Brute Force'); @@ -120,5 +120,4 @@ //3.50 define($constpref.'_STOPFORUMSPAM_ACTION','Stop Forum Spam'); define($constpref.'_STOPFORUMSPAM_ACTIONDSC','Checks POST data against spammers registered on www.stopforumspam.com database. Requires php CURL lib.'); - -} +} \ No newline at end of file |
From: <be...@us...> - 2013-04-21 04:15:04
|
Revision: 11416 http://sourceforge.net/p/xoops/svn/11416 Author: beckmi Date: 2013-04-21 04:14:58 +0000 (Sun, 21 Apr 2013) Log Message: ----------- Preparing for XOOPS 2.5.6 Final release Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/include/version.php Removed Paths: ------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/install/img/xoops_2.5.6-RC1.png Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/include/version.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/include/version.php 2013-04-21 03:24:16 UTC (rev 11415) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/include/version.php 2013-04-21 04:14:58 UTC (rev 11416) @@ -30,6 +30,6 @@ /** * Define XOOPS version */ -define('XOOPS_VERSION', 'XOOPS 2.5.6-RC1'); +define('XOOPS_VERSION', 'XOOPS 2.5.6'); ?> \ No newline at end of file Deleted: XoopsCore/branches/2.5.x/2.5.6/htdocs/install/img/xoops_2.5.6-RC1.png =================================================================== (Binary files differ) |
From: <ce...@us...> - 2013-04-27 01:35:47
|
Revision: 11465 http://sourceforge.net/p/xoops/svn/11465 Author: cesag Date: 2013-04-27 01:35:21 +0000 (Sat, 27 Apr 2013) Log Message: ----------- Xoops 2.5.6 branche: formatting english languages files ?\226?\128?\139?\226?\128?\139for Transifex (cesag) Modified Paths: -------------- XoopsCore/branches/2.5.x/2.5.6/htdocs/Frameworks/moduleclasses/moduleadmin/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/dhtmltextarea/language/english.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/textarea/language/english.php XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/language/english.php XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install.php XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install2.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/modinfo.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/profile/language/english/modinfo.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/avatars.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/banners.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/blocksadmin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/comments.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/groups.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/images.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/mailusers.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/maintenance.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/modulesadmin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/preferences.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/smilies.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/tplsets.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/userrank.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin/users.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/blocks.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/cpanel.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/avatars.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/banners.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/blocksadmin.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/comments.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/groups.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/help_center.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/images.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/mailusers.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/maintenance.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/module_index.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/modulesadmin.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/preferences.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/smilies.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/tplsets.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/userrank.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/help/users.html XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/language/english/modinfo.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/themes/default/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/system/themes/zetadigme/language/english/admin.php XoopsCore/branches/2.5.x/2.5.6/htdocs/themes/suico/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/themes/zetagenesis/language/english/main.php XoopsCore/branches/2.5.x/2.5.6/htdocs/xoops_lib/modules/protector/language/english/admin.php Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/Frameworks/moduleclasses/moduleadmin/language/english/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/Frameworks/moduleclasses/moduleadmin/language/english/main.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/Frameworks/moduleclasses/moduleadmin/language/english/main.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -13,18 +13,15 @@ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) * @author Grégory Mage (Aka Mage) */ - // Info define('_AM_MODULEADMIN_CONFIG','Configuration Check'); -define('_AM_MODULEADMIN_CONFIG_CHMOD',"The folder '%s' must be with a chmod '%s' (it's now set on %s).'"); +define('_AM_MODULEADMIN_CONFIG_CHMOD',"The folder '%s' must be with a chmod '%s' (it's now set on %s)."); define('_AM_MODULEADMIN_CONFIG_FOLDERKO',"The folder '%s' does not exist"); define('_AM_MODULEADMIN_CONFIG_FOLDEROK',"The folder '%s' exists"); define('_AM_MODULEADMIN_CONFIG_PHP','Minimum PHP required: %s (your version is %s)'); define('_AM_MODULEADMIN_CONFIG_XOOPS','Minimum XOOPS required: %s (your version is %s)'); - -define('_AM_MODULEADMIN_CONFIG_DB','minimum version required: %s (your version is %s)'); +define('_AM_MODULEADMIN_CONFIG_DB','Minimum version required: %s (your version is %s)'); define('_AM_MODULEADMIN_CONFIG_ADMIN','Minimum ModuleAdmin required: %s (your version is %s)'); - // About define('_AM_MODULEADMIN_ABOUT_CHANGELOG','Change log'); define('_AM_MODULEADMIN_ABOUT_DESCRIPTION','Description'); @@ -32,18 +29,15 @@ define('_AM_MODULEADMIN_ABOUT_MODULESTATUS','Status:'); define('_AM_MODULEADMIN_ABOUT_UPDATEDATE','Updated:'); define('_AM_MODULEADMIN_ABOUT_WEBSITE',"Website:"); - define("_AM_MODULEADMIN_ABOUT_RELEASEDATE","Released: "); define("_AM_MODULEADMIN_ABOUT_AUTHOR","Author: "); define("_AM_MODULEADMIN_ABOUT_CREDITS","Credits: "); define("_AM_MODULEADMIN_ABOUT_LICENSE","License: "); define("_AM_MODULEADMIN_ABOUT_AUTHOR_NAME","Author name: "); define("_AM_MODULEADMIN_ABOUT_AUTHOR_INFO","Author Info"); - define("_AM_MODULEADMIN_HOME","Home"); define("_AM_MODULEADMIN_DASHBOARD","Dashboard"); define("_AM_MODULEADMIN_ABOUT","About"); define("_AM_MODULEADMIN_PERMISSIONS","Permissions"); - //ModuleAdmin define("_AM_MODULEADMIN_ADMIN_FOOTER","<div class='center smallsmall italic pad5'>This module is maintained by the <a class='tooltip' rel='external' href='http://xoops.org/' title='Visit XOOPS Community'>XOOPS Community</a></div>"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/dhtmltextarea/language/english.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/dhtmltextarea/language/english.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/dhtmltextarea/language/english.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -13,5 +13,4 @@ * Assocated with editor_registry.php */ define('_XOOPS_EDITOR_DHTMLTEXTAREA','DHTML Form with xCode'); - -?> +?> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/textarea/language/english.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/textarea/language/english.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/textarea/language/english.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -9,9 +9,8 @@ * @version $Id$ * @package xoopseditor */ - /* * Assocated with editor_registry.php */ -define("_XOOPS_EDITOR_TEXTAREA","Plain Text"); -?> +define('_XOOPS_EDITOR_TEXTAREA',"Plain Text"); +?> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/language/english.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/language/english.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/class/xoopseditor/tinymce/language/english.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -14,12 +14,10 @@ * Assocated with editor_registry.php */ // Name of the editor -define("_XOOPS_EDITOR_TINYMCE","TinyMCE"); - +define('_XOOPS_EDITOR_TINYMCE',"TinyMCE"); // The value must be the same as /tinymce/jscripts/langs/your_language_code, for example, "en" for English, "fr" for French // For details, check http://tinymce.moxiecode.com/download_i18n.php -define("_XOOPS_EDITOR_TINYMCE_LANGUAGE","en"); - +define('_XOOPS_EDITOR_TINYMCE_LANGUAGE',"en"); // FONT LIST, FORMAT: "Name=value1,value2;Name=value" -define("_XOOPS_EDITOR_TINYMCE_FONTS","Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings"); +define('_XOOPS_EDITOR_TINYMCE_FONTS',"Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;WingDings=wingdings"); ?> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -13,204 +13,169 @@ * @author dugris <du...@fr...> * @version $Id$ */ - // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team - -define("SHOW_HIDE_HELP","Show/hide help text"); - +define('SHOW_HIDE_HELP',"Show/hide help text"); // License define('LICENSE_NOT_WRITEABLE','License is %s . <br/><font style="colour:#ff0000">Make ../include/license.php Writable</font>'); define('LICENSE_IS_WRITEABLE','License is %s'); - // Configuration check page -define("SERVER_API","Server API"); -define("PHP_EXTENSION","%s extension"); -define("CHAR_ENCODING","Character encoding"); -define("XML_PARSING","XML parsing"); -define("REQUIREMENTS","Requirements"); -define("_PHP_VERSION","PHP version"); -define("RECOMMENDED_SETTINGS","Recommended settings"); -define("RECOMMENDED_EXTENSIONS","Recommended extensions"); -define("SETTING_NAME","Setting name"); -define("RECOMMENDED","Recommended"); -define("CURRENT","Current"); -define("RECOMMENDED_EXTENSIONS_MSG","These extensions are not required for normal use, but may be necessary to explore +define('SERVER_API',"Server API"); +define('PHP_EXTENSION',"%s extension"); +define('CHAR_ENCODING',"Character encoding"); +define('XML_PARSING',"XML parsing"); +define('REQUIREMENTS',"Requirements"); +define('_PHP_VERSION',"PHP version"); +define('RECOMMENDED_SETTINGS',"Recommended settings"); +define('RECOMMENDED_EXTENSIONS',"Recommended extensions"); +define('SETTING_NAME',"Setting name"); +define('RECOMMENDED',"Recommended"); +define('CURRENT',"Current"); +define('RECOMMENDED_EXTENSIONS_MSG',"These extensions are not required for normal use, but may be necessary to explore some specific features (like the multi-language or RSS support). Thus, it is recommended to have them installed."); -define("NONE","None"); -define("SUCCESS","Success"); -define("WARNING","Warning"); -define("FAILED","Failed"); - +define('NONE',"None"); +define('SUCCESS',"Success"); +define('WARNING',"Warning"); +define('FAILED',"Failed"); // Titles (main and pages) -define("XOOPS_INSTALL_WIZARD","XOOPS Installation Wizard"); - -define("LANGUAGE_SELECTION","Language selection"); -define("LANGUAGE_SELECTION_TITLE","Select your language"); // L128 -define("INTRODUCTION","Introduction"); -define("INTRODUCTION_TITLE","Welcome to the XOOPS Installation Wizard"); // L0 -define("CONFIGURATION_CHECK","Configuration check"); -define("CONFIGURATION_CHECK_TITLE","Checking your server configuration"); -define("PATHS_SETTINGS","Paths settings"); -define("PATHS_SETTINGS_TITLE","Paths settings"); -define("DATABASE_CONNECTION","Database connection"); -define("DATABASE_CONNECTION_TITLE","Database connection"); -define("DATABASE_CONFIG","Database configuration"); -define("DATABASE_CONFIG_TITLE","Database configuration"); -define("CONFIG_SAVE","Save Configuration"); -define("CONFIG_SAVE_TITLE","Saving your system configuration"); -define("TABLES_CREATION","Tables creation"); -define("TABLES_CREATION_TITLE","Database tables creation"); -define("INITIAL_SETTINGS","Initial settings"); -define("INITIAL_SETTINGS_TITLE","Please enter your initial settings"); -define("DATA_INSERTION","Data insertion"); -define("DATA_INSERTION_TITLE","Saving your settings to the database"); -define("WELCOME","Welcome"); -define("WELCOME_TITLE","Welcome to your XOOPS site"); // L0 - - +define('XOOPS_INSTALL_WIZARD',"XOOPS Installation Wizard"); +define('LANGUAGE_SELECTION',"Language selection"); +define('LANGUAGE_SELECTION_TITLE',"Select your language"); // L128 +define('INTRODUCTION',"Introduction"); +define('INTRODUCTION_TITLE',"Welcome to the XOOPS Installation Wizard"); // L0 +define('CONFIGURATION_CHECK',"Configuration check"); +define('CONFIGURATION_CHECK_TITLE',"Checking your server configuration"); +define('PATHS_SETTINGS',"Paths settings"); +define('PATHS_SETTINGS_TITLE',"Paths settings"); +define('DATABASE_CONNECTION',"Database connection"); +define('DATABASE_CONNECTION_TITLE',"Database connection"); +define('DATABASE_CONFIG',"Database configuration"); +define('DATABASE_CONFIG_TITLE',"Database configuration"); +define('CONFIG_SAVE',"Save Configuration"); +define('CONFIG_SAVE_TITLE',"Saving your system configuration"); +define('TABLES_CREATION',"Tables creation"); +define('TABLES_CREATION_TITLE',"Database tables creation"); +define('INITIAL_SETTINGS',"Initial settings"); +define('INITIAL_SETTINGS_TITLE',"Please enter your initial settings"); +define('DATA_INSERTION',"Data insertion"); +define('DATA_INSERTION_TITLE',"Saving your settings to the database"); +define('WELCOME',"Welcome"); +define('WELCOME_TITLE',"Welcome to your XOOPS site"); // L0 // Settings (labels and help text) -define("XOOPS_PATHS","XOOPS Physical paths"); -define("XOOPS_URLS","Web locations"); - -define("XOOPS_ROOT_PATH_LABEL","XOOPS documents root physical path"); -define("XOOPS_ROOT_PATH_HELP","Physical path to the XOOPS documents (served) directory WITHOUT trailing slash"); - -define("XOOPS_LIB_PATH_LABEL","XOOPS library directory"); -define("XOOPS_LIB_PATH_HELP","Physical path to the XOOPS library directory WITHOUT trailing slash, for forward compatibility. Locate the folder out of " . XOOPS_ROOT_PATH_LABEL . " to make it secure."); -define("XOOPS_DATA_PATH_LABEL","XOOPS data files directory"); -define("XOOPS_DATA_PATH_HELP","Physical path to the XOOPS data files (writable) directory WITHOUT trailing slash, for forward compatibility. Locate the folder out of " . XOOPS_ROOT_PATH_LABEL . " to make it secure."); - -define("XOOPS_URL_LABEL","Website location (URL)"); // L56 -define("XOOPS_URL_HELP","Main URL that will be used to access your XOOPS installation"); // L58 - -define("LEGEND_CONNECTION","Server connection"); -define("LEGEND_DATABASE","Database"); // L51 - -define("DB_HOST_LABEL","Server hostname"); // L27 -define("DB_HOST_HELP", "Hostname of the database server. If you are unsure, <em>localhost</em> works in most cases"); // L67 -define("DB_USER_LABEL","User name"); // L28 -define("DB_USER_HELP", "Name of the user account that will be used to connect to the database server"); // L65 -define("DB_PASS_LABEL","Password"); // L52 -define("DB_PASS_HELP", "Password of your database user account"); // L68 -define("DB_NAME_LABEL","Database name"); // L29 -define("DB_NAME_HELP", "The name of database on the host. The installer will attempt to create the database if not exist"); // L64 -define("DB_CHARSET_LABEL","Database character set"); -define("DB_CHARSET_HELP", "MySQL includes character set support that enables you to store data using a variety of character sets and perform comparisons according to a variety of collations."); -define("DB_COLLATION_LABEL","Database collation"); -define("DB_COLLATION_HELP", "A collation is a set of rules for comparing characters in a character set."); -define("DB_PREFIX_LABEL","Table prefix"); // L30 -define("DB_PREFIX_HELP", "This prefix will be added to all new tables created to avoid name conflicts in the database. If you are unsure, just keep the default"); // L63 -define("DB_PCONNECT_LABEL","Use persistent connection"); // L54 -define("DB_PCONNECT_HELP", "Default is 'No'. Leave it blank if you are unsure"); // L69 -define("DB_DATABASE_LABEL","Database"); - -define("LEGEND_ADMIN_ACCOUNT","Administrator account"); -define("ADMIN_LOGIN_LABEL","Admin login"); // L37 -define("ADMIN_EMAIL_LABEL","Admin e-mail"); // L38 -define("ADMIN_PASS_LABEL","Admin password"); // L39 -define("ADMIN_CONFIRMPASS_LABEL","Confirm password"); // L74 - +define('XOOPS_PATHS',"XOOPS Physical paths"); +define('XOOPS_URLS',"Web locations"); +define('XOOPS_ROOT_PATH_LABEL',"XOOPS documents root physical path"); +define('XOOPS_ROOT_PATH_HELP',"Physical path to the XOOPS documents (served) directory WITHOUT trailing slash"); +define('XOOPS_LIB_PATH_LABEL',"XOOPS library directory"); +define('XOOPS_LIB_PATH_HELP',"Physical path to the XOOPS library directory WITHOUT trailing slash, for forward compatibility. Locate the folder out of " . XOOPS_ROOT_PATH_LABEL . " to make it secure."); +define('XOOPS_DATA_PATH_LABEL',"XOOPS data files directory"); +define('XOOPS_DATA_PATH_HELP',"Physical path to the XOOPS data files (writable) directory WITHOUT trailing slash, for forward compatibility. Locate the folder out of " . XOOPS_ROOT_PATH_LABEL . " to make it secure."); +define('XOOPS_URL_LABEL',"Website location (URL)"); // L56 +define('XOOPS_URL_HELP',"Main URL that will be used to access your XOOPS installation"); // L58 +define('LEGEND_CONNECTION',"Server connection"); +define('LEGEND_DATABASE',"Database"); // L51 +define('DB_HOST_LABEL',"Server hostname"); // L27 +define('DB_HOST_HELP',"Hostname of the database server. If you are unsure, <em>localhost</em> works in most cases"); // L67 +define('DB_USER_LABEL',"User name"); // L28 +define('DB_USER_HELP',"Name of the user account that will be used to connect to the database server"); // L65 +define('DB_PASS_LABEL',"Password"); // L52 +define('DB_PASS_HELP',"Password of your database user account"); // L68 +define('DB_NAME_LABEL',"Database name"); // L29 +define('DB_NAME_HELP',"The name of database on the host. The installer will attempt to create the database if not exist"); // L64 +define('DB_CHARSET_LABEL',"Database character set"); +define('DB_CHARSET_HELP',"MySQL includes character set support that enables you to store data using a variety of character sets and perform comparisons according to a variety of collations."); +define('DB_COLLATION_LABEL',"Database collation"); +define('DB_COLLATION_HELP',"A collation is a set of rules for comparing characters in a character set."); +define('DB_PREFIX_LABEL',"Table prefix"); // L30 +define('DB_PREFIX_HELP',"This prefix will be added to all new tables created to avoid name conflicts in the database. If you are unsure, just keep the default"); // L63 +define('DB_PCONNECT_LABEL',"Use persistent connection"); // L54 +define('DB_PCONNECT_HELP',"Default is 'No'. Leave it blank if you are unsure"); // L69 +define('DB_DATABASE_LABEL',"Database"); +define('LEGEND_ADMIN_ACCOUNT',"Administrator account"); +define('ADMIN_LOGIN_LABEL',"Admin login"); // L37 +define('ADMIN_EMAIL_LABEL',"Admin e-mail"); // L38 +define('ADMIN_PASS_LABEL',"Admin password"); // L39 +define('ADMIN_CONFIRMPASS_LABEL',"Confirm password"); // L74 // Buttons -define("BUTTON_PREVIOUS","Previous"); // L42 -define("BUTTON_NEXT","Next"); // L47 - +define('BUTTON_PREVIOUS',"Previous"); // L42 +define('BUTTON_NEXT',"Next"); // L47 // Messages -define("XOOPS_FOUND","%s found"); -define("CHECKING_PERMISSIONS","Checking file and directory permissions..."); // L82 -define("IS_NOT_WRITABLE","%s is NOT writable."); // L83 -define("IS_WRITABLE","%s is writable."); // L84 - -define("XOOPS_PATH_FOUND","Path found."); - -define("READY_CREATE_TABLES","No XOOPS tables were detected.<br />The installer is now ready to create the XOOPS system tables.<br />Press <em>next</em> to proceed."); -define("XOOPS_TABLES_FOUND","The XOOPS system tables already exists in your database.<br />Press <em>next</em> to go to the next step."); // L131 -define("XOOPS_TABLES_CREATED","XOOPS system tables have been created.<br />Press <em>next</em> to go to the next step."); -define("READY_INSERT_DATA","The installer is now ready to insert initial data into your database."); -define("READY_SAVE_MAINFILE","The installer is now ready to save the specified settings to <em>mainfile.php</em>.<br />Press <em>next</em> to proceed."); -define("SAVED_MAINFILE","Settings saved in mainfile.php"); -define("SAVED_MAINFILE_MSG","The installer has saved the specified settings to <em>mainfile.php</em> and <em>secure.php</em>. Press <em>next</em> to go to the next step."); -define("DATA_ALREADY_INSERTED","XOOPS data found in database.<br />Press <em>next</em> to go to the next step."); -define("DATA_INSERTED","Initial data has been inserted into database.<br />Press <em>next</em> to go to the next step."); - - +define('XOOPS_FOUND',"%s found"); +define('CHECKING_PERMISSIONS',"Checking file and directory permissions..."); // L82 +define('IS_NOT_WRITABLE',"%s is NOT writable."); // L83 +define('IS_WRITABLE',"%s is writable."); // L84 +define('XOOPS_PATH_FOUND',"Path found."); +define('READY_CREATE_TABLES',"No XOOPS tables were detected.<br />The installer is now ready to create the XOOPS system tables.<br />Press <em>next</em> to proceed."); +define('XOOPS_TABLES_FOUND',"The XOOPS system tables already exists in your database.<br />Press <em>next</em> to go to the next step."); // L131 +define('XOOPS_TABLES_CREATED',"XOOPS system tables have been created.<br />Press <em>next</em> to go to the next step."); +define('READY_INSERT_DATA',"The installer is now ready to insert initial data into your database."); +define('READY_SAVE_MAINFILE',"The installer is now ready to save the specified settings to <em>mainfile.php</em>.<br />Press <em>next</em> to proceed."); +define('SAVED_MAINFILE',"Settings saved in mainfile.php"); +define('SAVED_MAINFILE_MSG',"The installer has saved the specified settings to <em>mainfile.php</em> and <em>secure.php</em>. Press <em>next</em> to go to the next step."); +define('DATA_ALREADY_INSERTED',"XOOPS data found in database.<br />Press <em>next</em> to go to the next step."); +define('DATA_INSERTED',"Initial data has been inserted into database.<br />Press <em>next</em> to go to the next step."); // %s is database name -define("DATABASE_CREATED","Database %s created!"); // L43 +define('DATABASE_CREATED',"Database %s created!"); // L43 // %s is table name -define("TABLE_NOT_CREATED","Unable to create table %s"); // L118 -define("TABLE_CREATED","Table %s created."); // L45 -define("ROWS_INSERTED","%d entries inserted to table %s."); // L119 -define("ROWS_FAILED","Failed inserting %d entries to table %s."); // L120 -define("TABLE_ALTERED","Table %s updated."); // L133 -define("TABLE_NOT_ALTERED","Failed updating table %s."); // L134 -define("TABLE_DROPPED","Table %s dropped."); // L163 -define("TABLE_NOT_DROPPED","Failed deleting table %s."); // L164 - +define('TABLE_NOT_CREATED',"Unable to create table %s"); // L118 +define('TABLE_CREATED',"Table %s created."); // L45 +define('ROWS_INSERTED',"%d entries inserted to table %s."); // L119 +define('ROWS_FAILED',"Failed inserting %d entries to table %s."); // L120 +define('TABLE_ALTERED',"Table %s updated."); // L133 +define('TABLE_NOT_ALTERED',"Failed updating table %s."); // L134 +define('TABLE_DROPPED',"Table %s dropped."); // L163 +define('TABLE_NOT_DROPPED',"Failed deleting table %s."); // L164 // Error messages -define("ERR_COULD_NOT_ACCESS","Could not access the specified folder. Please verify that it exists and is readable by the server."); -define("ERR_NO_XOOPS_FOUND","No XOOPS installation could be found in the specified folder."); -define("ERR_INVALID_EMAIL","Invalid Email"); // L73 -define("ERR_REQUIRED","Information is required."); // L41 -define("ERR_PASSWORD_MATCH","The two passwords do not match"); -define("ERR_NEED_WRITE_ACCESS","The server must be given write access to the following files and folders<br />(i.e. <em>chmod 777 directory_name</em> on a UNIX/LINUX server)<br />If they are not available or not created correctly, please create manually and set proper permissions."); -define("ERR_NO_DATABASE","Could not create database. Contact the server administrator for details."); // L31 -define("ERR_NO_DBCONNECTION","Could not connect to the database server."); // L106 -define("ERR_WRITING_CONSTANT","Failed writing constant %s."); // L122 - -define("ERR_COPY_MAINFILE","Could not copy the distribution file to mainfile.php"); -define("ERR_WRITE_MAINFILE","Could not write into mainfile.php. Please check the file permission and try again."); -define("ERR_READ_MAINFILE","Could not open mainfile.php for reading"); - -define("ERR_INVALID_DBCHARSET","The charset '%s' is not supported."); -define("ERR_INVALID_DBCOLLATION","The collation '%s' is not supported."); -define("ERR_CHARSET_NOT_SET","Default character set is not set for XOOPS database."); - - -define("_INSTALL_CHARSET","UTF-8"); - -define("SUPPORT","Supports"); - -define("LOGIN","Authentication"); -define("LOGIN_TITLE","Authentication"); -define("USER_LOGIN","Administrator Login"); -define("USERNAME","Username :"); -define("PASSWORD","Password :"); - -define("ICONV_CONVERSION","Character set conversion"); -define("ZLIB_COMPRESSION","Zlib Compression"); -define("IMAGE_FUNCTIONS","Image functions"); -define("IMAGE_METAS","Image meta data (exif)"); -define("FILTER_FUNCTIONS","Filter functions"); - -define("ADMIN_EXIST","The administrator account already exists.<br />Press <strong>next</strong> to go to the next step."); - -define("CONFIG_SITE","Site configuration"); -define("CONFIG_SITE_TITLE","Site configuration"); -define("MODULES","Modules installation"); -define("MODULES_TITLE","Modules installation"); -define("THEME","Select theme"); -define("THEME_TITLE","Select the default theme"); - -define("INSTALLED_MODULES","The following modules have been installed.<br />Press <strong>next</strong> to go to the next step."); -define("NO_MODULES_FOUND","No modules found.<br />Press <strong>next</strong> to go to the next step."); -define("NO_INSTALLED_MODULES","No module installed.<br />Press <strong>next</strong> to go to the next step."); - -define("THEME_NO_SCREENSHOT","No screenshot found"); - -define("IS_VALOR"," => "); - +define('ERR_COULD_NOT_ACCESS',"Could not access the specified folder. Please verify that it exists and is readable by the server."); +define('ERR_NO_XOOPS_FOUND',"No XOOPS installation could be found in the specified folder."); +define('ERR_INVALID_EMAIL',"Invalid Email"); // L73 +define('ERR_REQUIRED',"Information is required."); // L41 +define('ERR_PASSWORD_MATCH',"The two passwords do not match"); +define('ERR_NEED_WRITE_ACCESS',"The server must be given write access to the following files and folders<br />(i.e. <em>chmod 777 directory_name</em> on a UNIX/LINUX server)<br />If they are not available or not created correctly, please create manually and set proper permissions."); +define('ERR_NO_DATABASE',"Could not create database. Contact the server administrator for details."); // L31 +define('ERR_NO_DBCONNECTION',"Could not connect to the database server."); // L106 +define('ERR_WRITING_CONSTANT',"Failed writing constant %s."); // L122 +define('ERR_COPY_MAINFILE',"Could not copy the distribution file to mainfile.php"); +define('ERR_WRITE_MAINFILE',"Could not write into mainfile.php. Please check the file permission and try again."); +define('ERR_READ_MAINFILE',"Could not open mainfile.php for reading"); +define('ERR_INVALID_DBCHARSET',"The charset '%s' is not supported."); +define('ERR_INVALID_DBCOLLATION',"The collation '%s' is not supported."); +define('ERR_CHARSET_NOT_SET',"Default character set is not set for XOOPS database."); +define('_INSTALL_CHARSET',"UTF-8"); +define('SUPPORT',"Supports"); +define('LOGIN',"Authentication"); +define('LOGIN_TITLE',"Authentication"); +define('USER_LOGIN',"Administrator Login"); +define('USERNAME',"Username :"); +define('PASSWORD',"Password :"); +define('ICONV_CONVERSION',"Character set conversion"); +define('ZLIB_COMPRESSION',"Zlib Compression"); +define('IMAGE_FUNCTIONS',"Image functions"); +define('IMAGE_METAS',"Image meta data (exif)"); +define('FILTER_FUNCTIONS',"Filter functions"); +define('ADMIN_EXIST',"The administrator account already exists.<br />Press <strong>next</strong> to go to the next step."); +define('CONFIG_SITE',"Site configuration"); +define('CONFIG_SITE_TITLE',"Site configuration"); +define('MODULES',"Modules installation"); +define('MODULES_TITLE',"Modules installation"); +define('THEME',"Select theme"); +define('THEME_TITLE',"Select the default theme"); +define('INSTALLED_MODULES',"The following modules have been installed.<br />Press <strong>next</strong> to go to the next step."); +define('NO_MODULES_FOUND',"No modules found.<br />Press <strong>next</strong> to go to the next step."); +define('NO_INSTALLED_MODULES',"No module installed.<br />Press <strong>next</strong> to go to the next step."); +define('THEME_NO_SCREENSHOT',"No screenshot found"); +define('IS_VALOR'," => "); // password message -define("PASSWORD_LABEL","Password strength : "); -define("PASSWORD_DESC","Password not entered"); -define("PASSWORD_GENERATOR","Password generator"); -define("PASSWORD_GENERATE","Generate"); -define("PASSWORD_COPY","Copy"); - -define("PASSWORD_VERY_WEAK","Very Weak"); -define("PASSWORD_WEAK","Weak"); -define("PASSWORD_BETTER","Better"); -define("PASSWORD_MEDIUM","Medium"); -define("PASSWORD_STRONG","Strong"); -define("PASSWORD_STRONGEST","Strongest"); +define('PASSWORD_LABEL',"Password strength : "); +define('PASSWORD_DESC',"Password not entered"); +define('PASSWORD_GENERATOR',"Password generator"); +define('PASSWORD_GENERATE',"Generate"); +define('PASSWORD_COPY',"Copy"); +define('PASSWORD_VERY_WEAK',"Very Weak"); +define('PASSWORD_WEAK',"Weak"); +define('PASSWORD_BETTER',"Better"); +define('PASSWORD_MEDIUM',"Medium"); +define('PASSWORD_STRONG',"Strong"); +define('PASSWORD_STRONGEST',"Strongest"); ?> \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install2.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install2.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/install/language/english/install2.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -3,11 +3,9 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team - // License define('LICENSE_NOT_WRITEABLE','License is %s . <br/><font style="colour:#ff0000">Make ../include/license.php Writable</font>'); define('LICENSE_IS_WRITEABLE','License is %s'); - define('_INSTALL_WEBMASTER','Webmasters'); define('_INSTALL_WEBMASTERD','Webmasters of this site'); define('_INSTALL_REGUSERS','Registered Users'); @@ -25,10 +23,9 @@ define('_INSTALL_SUBMITTERUSERSD','This group can submit articles to your website'); define('_INSTALL_DEVELOPEUSERS','Developer'); define('_INSTALL_DEVELOPEUSERSD','This user has developer privileges and can see developer debugging messages.'); - -define("_INSTALL_L165","The site is currently closed for maintenance. Please come back later."); -define("_INSTALL_ANON","Anonymous"); -define("_INSTALL_DISCLMR","While the administrators and moderators of this site will attempt to remove +define('_INSTALL_L165',"The site is currently closed for maintenance. Please come back later."); +define('_INSTALL_ANON',"Anonymous"); +define('_INSTALL_DISCLMR',"While the administrators and moderators of this site will attempt to remove or edit any generally objectionable material as quickly as possible, it is impossible to review every message. Therefore you acknowledge that all posts made to this site express the views and opinions of the author and not the @@ -56,5 +53,4 @@ new passwords should you forget your current one). By clicking Register below you agree to be bound by these conditions."); - ?> Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/admin.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -3,7 +3,6 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team - define('_AD_NORIGHT','You don\'t have the permission to access this area'); define('_AD_ACTION','Action'); define('_AD_EDIT','Edit'); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/auth.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -3,7 +3,6 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team - define('_AUTH_MSG_AUTH_METHOD',"using %s authentication method"); define('_AUTH_LDAP_EXTENSION_NOT_LOAD','PHP LDAP extension not loaded (verify your PHP configuration file php.ini)'); define('_AUTH_LDAP_SERVER_NOT_FOUND',"Can't connect to the server"); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/banners.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -50,7 +50,6 @@ define('_BANNERS_DBUPDATED','Item modified and database updated'); define('_BANNERS_DBERROR','Database was not updated due to an error!'); define('_BANNERS_CHANGE','Change'); - define('_BANNERS_NO_LOGIN_DATA','No login data detected'); define('_BANNERS_NO_REFERER','No referer detected'); define('_BANNERS_NO_ID','No valid ID detected'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/calendar.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -8,67 +8,66 @@ // Revision by TXMod Xoops - Added shot text: 30/06/2012 // //%%%%% Time Zone %%%% -define("_CAL_FORMAT","Y-m-d"); +define('_CAL_FORMAT',"Y-m-d"); //%%%%% JQuery Calendar Time Zone %%%% -define("_CAL_JQUERY_FORMAT","yy/mm/dd"); +define('_CAL_JQUERY_FORMAT',"yy/mm/dd"); // Week Mini Text -define("_CAL_MIN_SUNDAY", "Su"); -define("_CAL_MIN_MONDAY", "Mo"); -define("_CAL_MIN_TUESDAY", "Tu"); -define("_CAL_MIN_WEDNESDAY", "We"); -define("_CAL_MIN_THURSDAY", "Th"); -define("_CAL_MIN_FRIDAY", "Fr"); -define("_CAL_MIN_SATURDAY", "Sa"); +define('_CAL_MIN_SUNDAY',"Su"); +define('_CAL_MIN_MONDAY',"Mo"); +define('_CAL_MIN_TUESDAY',"Tu"); +define('_CAL_MIN_WEDNESDAY',"We"); +define('_CAL_MIN_THURSDAY',"Th"); +define('_CAL_MIN_FRIDAY',"Fr"); +define('_CAL_MIN_SATURDAY',"Sa"); // Week Short Text -define("_CAL_SHORT_SUNDAY", "Sun"); -define("_CAL_SHORT_MONDAY", "Mon"); -define("_CAL_SHORT_TUESDAY", "Tue"); -define("_CAL_SHORT_WEDNESDAY", "Wed"); -define("_CAL_SHORT_THURSDAY", "Thu"); -define("_CAL_SHORT_FRIDAY", "Fri"); -define("_CAL_SHORT_SATURDAY", "Sat"); - -define("_CAL_SHORT_JANUARY", "January"); -define("_CAL_SHORT_FEBRUARY", "February"); -define("_CAL_SHORT_MARCH", "March"); -define("_CAL_SHORT_APRIL", "April"); -define("_CAL_SHORT_MAY", "May"); -define("_CAL_SHORT_JUNE", "June"); -define("_CAL_SHORT_JULY", "July"); -define("_CAL_SHORT_AUGUST", "August"); -define("_CAL_SHORT_SEPTEMBER", "September"); -define("_CAL_SHORT_OCTOBER", "October"); -define("_CAL_SHORT_NOVEMBER", "November"); -define("_CAL_SHORT_DECEMBER", "December"); +define('_CAL_SHORT_SUNDAY',"Sun"); +define('_CAL_SHORT_MONDAY',"Mon"); +define('_CAL_SHORT_TUESDAY',"Tue"); +define('_CAL_SHORT_WEDNESDAY',"Wed"); +define('_CAL_SHORT_THURSDAY',"Thu"); +define('_CAL_SHORT_FRIDAY',"Fri"); +define('_CAL_SHORT_SATURDAY',"Sat"); +define('_CAL_SHORT_JANUARY',"January"); +define('_CAL_SHORT_FEBRUARY',"February"); +define('_CAL_SHORT_MARCH',"March"); +define('_CAL_SHORT_APRIL',"April"); +define('_CAL_SHORT_MAY',"May"); +define('_CAL_SHORT_JUNE',"June"); +define('_CAL_SHORT_JULY',"July"); +define('_CAL_SHORT_AUGUST',"August"); +define('_CAL_SHORT_SEPTEMBER',"September"); +define('_CAL_SHORT_OCTOBER',"October"); +define('_CAL_SHORT_NOVEMBER',"November"); +define('_CAL_SHORT_DECEMBER',"December"); // Normal Text -define("_CAL_SUNDAY", "Sunday"); -define("_CAL_MONDAY", "Monday"); -define("_CAL_TUESDAY", "Tuesday"); -define("_CAL_WEDNESDAY", "Wednesday"); -define("_CAL_THURSDAY", "Thursday"); -define("_CAL_FRIDAY", "Friday"); -define("_CAL_SATURDAY", "Saturday"); -define("_CAL_JANUARY", "January"); -define("_CAL_FEBRUARY", "February"); -define("_CAL_MARCH", "March"); -define("_CAL_APRIL", "April"); -define("_CAL_MAY", "May"); -define("_CAL_JUNE", "June"); -define("_CAL_JULY", "July"); -define("_CAL_AUGUST", "August"); -define("_CAL_SEPTEMBER", "September"); -define("_CAL_OCTOBER", "October"); -define("_CAL_NOVEMBER", "November"); -define("_CAL_DECEMBER", "December"); +define('_CAL_SUNDAY',"Sunday"); +define('_CAL_MONDAY',"Monday"); +define('_CAL_TUESDAY',"Tuesday"); +define('_CAL_WEDNESDAY',"Wednesday"); +define('_CAL_THURSDAY',"Thursday"); +define('_CAL_FRIDAY',"Friday"); +define('_CAL_SATURDAY',"Saturday"); +define('_CAL_JANUARY',"January"); +define('_CAL_FEBRUARY',"February"); +define('_CAL_MARCH',"March"); +define('_CAL_APRIL',"April"); +define('_CAL_MAY',"May"); +define('_CAL_JUNE',"June"); +define('_CAL_JULY',"July"); +define('_CAL_AUGUST',"August"); +define('_CAL_SEPTEMBER',"September"); +define('_CAL_OCTOBER',"October"); +define('_CAL_NOVEMBER',"November"); +define('_CAL_DECEMBER',"December"); // Others -define("_CAL_TGL1STD", "Toggle first day of week"); -define("_CAL_PREVYR", "Prev. year (hold for menu)"); -define("_CAL_PREVMNTH", "Prev. month (hold for menu)"); -define("_CAL_GOTODAY", "Go Today"); -define("_CAL_NXTMNTH", "Next month (hold for menu)"); -define("_CAL_NEXTYR", "Next year (hold for menu)"); -define("_CAL_SELDATE", "Select date"); -define("_CAL_DRAGMOVE", "Drag to move"); -define("_CAL_TODAY", "Today"); -define("_CAL_DISPM1ST", "Display Monday first"); -define("_CAL_DISPS1ST", "Display Sunday first"); \ No newline at end of file +define('_CAL_TGL1STD',"Toggle first day of week"); +define('_CAL_PREVYR',"Prev. year (hold for menu)"); +define('_CAL_PREVMNTH',"Prev. month (hold for menu)"); +define('_CAL_GOTODAY',"Go Today"); +define('_CAL_NXTMNTH',"Next month (hold for menu)"); +define('_CAL_NEXTYR',"Next year (hold for menu)"); +define('_CAL_SELDATE',"Select date"); +define('_CAL_DRAGMOVE',"Drag to move"); +define('_CAL_TODAY',"Today"); +define('_CAL_DISPM1ST',"Display Monday first"); +define('_CAL_DISPS1ST',"Display Sunday first"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/captcha.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -14,7 +14,6 @@ define('_CAPTCHA_REFRESH','Click to refresh the image if it is not clear enough.'); // For text mode define('_CAPTCHA_RULE_TEXT','Input the result from the expression'); - /** * Error defines */ Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/comment.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -3,44 +3,43 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team -define('_CM_TITLE', 'Title'); -define('_CM_MESSAGE', 'Message'); -define('_CM_DOSMILEY', 'Enable Smiley Icons'); -define('_CM_DOHTML', 'Enable HTML Tags'); -define('_CM_DOAUTOWRAP', 'Auto wrap lines'); -define('_CM_DOXCODE', 'Enable XOOPS Codes'); -define('_CM_REFRESH', 'Refresh'); -define('_CM_PENDING', 'Pending'); -define('_CM_HIDDEN', 'Hidden'); -define('_CM_ACTIVE', 'Active'); -define('_CM_STATUS', 'Status'); -define('_CM_POSTCOMMENT', 'Publish Comment'); -define('_CM_REPLIES', 'Replies'); -define('_CM_PARENT', 'Parent'); -define('_CM_TOP', 'Top'); -define('_CM_BOTTOM', 'Bottom'); -define('_CM_ONLINE', 'Online!'); -define('_CM_POSTED', 'Published'); // Posted date -define('_CM_UPDATED', 'Updated'); -define('_CM_THREAD', 'Thread'); -define('_CM_POSTER', 'Author'); -define('_CM_JOINED', 'Joined'); -define('_CM_POSTS', 'Comments'); -define('_CM_FROM', 'From'); -define('_CM_COMDELETED', 'Comment(s) deleted.'); -define('_CM_COMDELETENG', 'Could not delete comment.'); -define('_CM_DELETESELECT', 'Delete all its child comments?'); -define('_CM_DELETEONE', 'No, delete only this comment'); -define('_CM_DELETEALL', 'Yes, delete all'); -define('_CM_THANKSPOST', 'Thanks for your comments!'); +define('_CM_TITLE','Title'); +define('_CM_MESSAGE','Message'); +define('_CM_DOSMILEY','Enable Smiley Icons'); +define('_CM_DOHTML','Enable HTML Tags'); +define('_CM_DOAUTOWRAP','Auto wrap lines'); +define('_CM_DOXCODE','Enable XOOPS Codes'); +define('_CM_REFRESH','Refresh'); +define('_CM_PENDING','Pending'); +define('_CM_HIDDEN','Hidden'); +define('_CM_ACTIVE','Active'); +define('_CM_STATUS','Status'); +define('_CM_POSTCOMMENT','Publish Comment'); +define('_CM_REPLIES','Replies'); +define('_CM_PARENT','Parent'); +define('_CM_TOP','Top'); +define('_CM_BOTTOM','Bottom'); +define('_CM_ONLINE','Online!'); +define('_CM_POSTED','Published'); // Posted date +define('_CM_UPDATED','Updated'); +define('_CM_THREAD','Thread'); +define('_CM_POSTER','Author'); +define('_CM_JOINED','Joined'); +define('_CM_POSTS','Comments'); +define('_CM_FROM','From'); +define('_CM_COMDELETED','Comment(s) deleted.'); +define('_CM_COMDELETENG','Could not delete comment.'); +define('_CM_DELETESELECT','Delete all its child comments?'); +define('_CM_DELETEONE','No, delete only this comment'); +define('_CM_DELETEALL','Yes, delete all'); +define('_CM_THANKSPOST','Thanks for your comments!'); define('_CM_NOTICE', "The comments are owned by the author. We aren't responsible for their content."); -define('_CM_COMRULES', 'Comment Rules'); -define('_CM_COMAPPROVEALL', 'Comments are always approved'); -define('_CM_COMAPPROVEUSER', 'Comments by registered users are always approved'); -define('_CM_COMAPPROVEADMIN', 'All comments need to be approved by administrator'); -define('_CM_COMANONPOST', 'Allow anonymous comments?'); -define('_CM_COMNOCOM', 'Disable comments'); - -define('_CM_USER', 'Name'); -define('_CM_EMAIL', 'Email'); -define('_CM_URL', 'Website'); \ No newline at end of file +define('_CM_COMRULES','Comment Rules'); +define('_CM_COMAPPROVEALL','Comments are always approved'); +define('_CM_COMAPPROVEUSER','Comments by registered users are always approved'); +define('_CM_COMAPPROVEADMIN','All comments need to be approved by administrator'); +define('_CM_COMANONPOST','Allow anonymous comments?'); +define('_CM_COMNOCOM','Disable comments'); +define('_CM_USER','Name'); +define('_CM_EMAIL','Email'); +define('_CM_URL','Website'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/countries.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -7,7 +7,6 @@ * Website: http://www.iso.org/iso/country_codes.htm * */ - define('_COUNTRY_AD','Andorra'); define('_COUNTRY_AE','United Arab Emirates'); define('_COUNTRY_AF','Afghanistan'); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/findusers.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -5,7 +5,6 @@ // Translator: XOOPS Translation Team define('_MA_USER_MORE','Search users'); define('_MA_USER_REMOVE','Remove unselected users'); - //%%%%%% File Name findusers.php %%%%% define('_MA_USER_ADD_SELECTED','Add selected users'); define('_MA_USER_GROUP','Group'); @@ -58,7 +57,6 @@ define('_MA_USER_NOUSERSELECTED','No user selected'); define('_MA_USER_USERADDED','Users have been added'); define('_MA_USER_SENDMAIL','Send Email'); - //2.5.4 define('_MA_USER_FACEBOOK','Facebook Link'); //TO DO define('_MA_USER_SKYPE','Skype Link');//TO DO \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/formdhtmltextarea.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -18,7 +18,6 @@ * @version $Id$ */ defined('XOOPS_ROOT_PATH') or die('Restricted access'); - // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team @@ -78,5 +77,4 @@ define('_XOOPS_FORM_ALT_LENGTH','Current content length: %s'); define('_XOOPS_FORM_ALT_LENGTH_MAX','Maximum length: '); define('_XOOPS_FORM_PREVIEW_CONTENT','Click the <strong>' . _PREVIEW . '</strong> to see the content in action.'); - define('_XOOPS_FORM_ALTYOUTUBE','Youtube'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/locale.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -8,7 +8,6 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ - /** * Xoops locale * @@ -21,9 +20,7 @@ * @todo To be handled by i18n/l10n */ defined('XOOPS_ROOT_PATH') or die('Restricted access'); - setlocale(LC_ALL, 'en_US'); - // !!IMPORTANT!! insert '\' before any char among reserved chars: "a","A","B","c","d","D","F","g","G","h","H","i","I","j","l","L","m","M","n","O","r","s","S","t","T","U","w","W","Y","y","z","Z" // insert double '\' before 't','r','n' define("_TODAY","\T\o\d\a\y G:i"); @@ -32,7 +29,6 @@ define("_YEARMONTHDAY","Y/n/j G:i"); define("_ELAPSE","%s ago"); define("_TIMEFORMAT_DESC","Valid formats: \"s\" - " . _SHORTDATESTRING . "; \"m\" - " . _MEDIUMDATESTRING . "; \"l\" - " . _DATESTRING . ";<br />" . "\"c\" or \"custom\" - format determined according to interval to present; \"e\" - Elapsed; \"mysql\" - Y-m-d H:i:s;<br />" . "specified string - Refer to <a href=\"http://php.net/manual/en/function.date.php\" rel=\"external\">PHP manual</a>."); - /** * A Xoops Local * Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/logger.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -8,7 +8,6 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ - /** * Xoops Language * @@ -21,7 +20,6 @@ * @version $Id$ */ defined('XOOPS_ROOT_PATH') or die('Restricted access'); - // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team @@ -38,15 +36,10 @@ 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"); Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/misc.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -22,7 +22,6 @@ define('_MSC_CLICKASMILIE','Click a smilie to insert it into your message.'); define('_MSC_CODE','Code'); define('_MSC_EMOTION','Emotion'); - define('_MSC_CLICK_TO_OPEN_IMAGE','Click to see original Image in a new window'); define('_MSC_RESIZED_IMAGE','Resized Image'); define('_MSC_ORIGINAL_IMAGE','Original Image'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/user.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -124,7 +124,6 @@ define('_US_REMEMBERME','Remember me'); // Welcoming emai/PM subject define('_US_WELCOME_SUBJECT','Welcome to %s'); - //XOOPS 2.5.4 define('_US_SKYPE','Skype'); define('_US_FACEBOOK','Facebook'); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/language/english/xoopsmailerlocal.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -8,7 +8,6 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ - /** * Xoops Language * @@ -21,7 +20,6 @@ * @version $Id$ */ defined('XOOPS_ROOT_PATH') or die('Restricted access'); - /** * Localize the mail functions * @@ -42,16 +40,14 @@ $this->charSet = strtolower(_CHARSET); // You MUST specify the language code value so that the file exists: XOOPS_ROOT_PAT/class/mail/phpmailer/language/lang-["your-language-code"].php $this->multimailer->SetLanguage("en"); - } - + } // Multibyte languages are encouraged to make their proper method for encoding FromName function encodeFromName($text) { // Activate the following line if needed // $text = "=?{$this->charSet}?B?".base64_encode($text)."?="; return $text; - } - + } // Multibyte languages are encouraged to make their proper method for encoding Subject function encodeSubject($text) { Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/admin.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -3,13 +3,11 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team - -define("_PM_AM_PRUNE","Prune"); -define("_PM_AM_PRUNEAFTER","Prune messages posted after this date (leave blank for no start date)"); -define("_PM_AM_PRUNEBEFORE","Prune messages posted before this date (leave blank for no end date)"); -define("_PM_AM_ONLYREADMESSAGES","Prune only read messages"); -define("_PM_AM_INCLUDESAVE","Include messages in users' \"save\" folders"); -define("_PM_AM_NOTIFYUSERS","Notify affected users about the prune?"); - -define("_PM_AM_MESSAGESPRUNED","%u Messages Pruned"); -define("_PM_AM_ERRORWHILEPRUNING","An error occurred during prune"); \ No newline at end of file +define('_PM_AM_PRUNE',"Prune"); +define('_PM_AM_PRUNEAFTER',"Prune messages posted after this date (leave blank for no start date)"); +define('_PM_AM_PRUNEBEFORE',"Prune messages posted before this date (leave blank for no end date)"); +define('_PM_AM_ONLYREADMESSAGES',"Prune only read messages"); +define('_PM_AM_INCLUDESAVE',"Include messages in users' \"save\" folders"); +define('_PM_AM_NOTIFYUSERS',"Notify affected users about the prune?"); +define('_PM_AM_MESSAGESPRUNED',"%u Messages Pruned"); +define('_PM_AM_ERRORWHILEPRUNING',"An error occurred during prune"); \ No newline at end of file Modified: XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php =================================================================== --- XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php 2013-04-26 21:44:56 UTC (rev 11464) +++ XoopsCore/branches/2.5.x/2.5.6/htdocs/modules/pm/language/english/main.php 2013-04-27 01:35:21 UTC (rev 11465) @@ -3,89 +3,77 @@ // _LANGCODE: en // _CHARSET : UTF-8 // Translator: XOOPS Translation Team - //%%%%%% File Name readpmsg.php %%%%% -define("_PM_DELETED","Your message(s) has been deleted"); -define("_PM_PRIVATEMESSAGE","Private Messages"); -define("_PM_INBOX","Inbox"); -define("_PM_FROM","From"); -define("_PM_YOUDONTHAVE","You don't have any private messages"); -define("_PM_FROMC","From: "); -define("_PM_SENTC","Sent: "); // The date of message sent -define("_PM_PROFILE","Profile"); - +define('_PM_DELETED',"Your message(s) has been deleted"); +define('_PM_PRIVATEMESSAGE',"Private Messages"); +define('_PM_INBOX',"Inbox"); +define('_PM_FROM',"From"); +define('_PM_YOUDONTHAVE',"You don't have any private messages"); +define('_PM_FROMC',"From: "); +define('_PM_SENTC',"Sent: "); // The date of message sent +define('_PM_PROFILE',"Profile"); // %s is a username -define("_PM_PREVIOUS","Previous Message"); -define("_PM_NEXT","Next Message"); - +define('_PM_PREVIOUS',"Previous Message"); +define('_PM_NEXT',"Next Message"); //%%%%%% File Name pmlite.php %%%%% -define("_PM_SORRY","Sorry! You are not a registered user."); -define("_PM_REGISTERNOW","Register Now!"); -define("_PM_GOBACK","Go Back"); -define("_PM_USERNOEXIST","The selected user doesn't exist in the database."); -define("_PM_PLZTRYAGAIN","Please check the name and try again."); -define("_PM_MESSAGEPOSTED","Your message has been posted"); -define("_PM_CLICKHERE","You can click here to view your private messages"); -define("_PM_ORCLOSEWINDOW","Or click here to close this window."); -define("_PM_USERWROTE","%s wrote:"); -define("_PM_TO","To: "); -define("_PM_SUBJECTC","Subject: "); -define("_PM_MESSAGEC","Message: "); -define("_PM_CLEAR","Clear"); -define("_PM_CANCELSEND","Cancel Send"); -define("_PM_SUBMIT","Submit"); -define("_PM_SAVEINOUTBOX","Save a copy in your outbox?"); - +define('_PM_SORRY',"Sorry! You are not a registered user."); +define('_PM_REGISTERNOW',"Register Now!"); +define('_PM_GOBACK',"Go Back"); +define('_PM_USERNOEXIST',"The selected user doesn't exist in the database."); +define('_PM_PLZTRYAGAIN',"Please check the name and try again."); +define('_PM_MESSAGEPOSTED',"Your message has been posted"); +define('_PM_CLICKHERE',"You can click here to view your private messages"); +define('_PM_ORCLOSEWINDOW',"Or click here to close this window."); +define('_PM_USERWROTE',"%s wrote:"); +define('_PM_TO',"To: "); +define('_PM_SUBJECTC',"Subject: "); +define('_PM_MESSAGEC',"Message: "); +define('_PM_CLEAR',"Clear"); +define('_PM_CANCELSEND',"Cancel Send"); +define('_PM_SUBMIT',"Submit"); +define('_PM_SAVEINOUTBOX',"Save a copy in your outbox?"); //%%%%%% File Name viewpmsg.php %%%%% -define("_PM_SUBJECT","Subject"); -define("_PM_DATE","Date"); -define("_PM_NOTREAD","Not Read"); -define("_PM_SEND","Send new message"); -define("_PM_DELETE","Delete"); -define("_PM_TOSAVE","Move to Savebox"); -define("_PM_UNSAVE","Move out of Savebox"); -define("_PM_EMPTY","Empty"); -define("_PM_REPLY","Reply"); -define("_PM_PLZREG","Please register first to send private messages!"); -define("_PM_SAVED_PART","You are allowed %d in your Savebox and you saved %d messages for this time"); -define("_PM_SAVED_ALL","Messages have been moved to Savebox"); -define("_PM_UNSAVED","Messages have been removed from Savebox"); -define("_PM_EMPTIED","The box has been emptied"); -define("_PM_RUSUREEMPTY","Are you sure to empty the box?"); -define("_PM_SURE_TO_DELETE","Are you sure to delete these message(s)?"); - -define("_PM_ONLINE","Online"); - -define("_PM_OUTBOX","Outbox"); -define("_PM_SAVEBOX","Savebox"); -define("_PM_SAVE","SAVE"); - +define('_PM_SUBJECT',"Subject"); +define('_PM_DATE',"Date"); +define('_PM_NOTREAD',"Not Read"); +define('_PM_SEND',"Send new message"); +define('_PM_DELETE',"Delete"); +define('_PM_TOSAVE',"Move to Savebox"); +define('_PM_UNSAVE',"Move out of Savebox"); +define('_PM_EMPTY',"Empty"); +define('_PM_REPLY',"Reply"); +define('_PM_PLZREG',"Please register first to send private messages!"); +define('_PM_SAVED_PART',"You are allowed %d in your Savebox and you saved %d messages for this time"); +d... [truncated message content] |